Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
4ed05a19187d00927f451fd2f8d4c5472ad55dbb
[simgrid.git] / src / simix / smx_host_private.h
1 /* Copyright (c) 2007, 2008, 2009, 2010. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #ifndef _SIMIX_HOST_PRIVATE_H
8 #define _SIMIX_HOST_PRIVATE_H
9
10 #include "simgrid/simix.h"
11 #include "smx_smurf_private.h"
12
13 /** @brief Host datatype */
14 typedef struct s_smx_host_priv {
15   xbt_swag_t process_list;
16   xbt_dynar_t auto_restart_processes;
17   void *data;              /**< @brief user data */
18 } s_smx_host_priv_t;
19
20 static inline smx_host_priv_t SIMIX_host_priv(smx_host_t host){
21   return xbt_lib_get_level(host, SIMIX_HOST_LEVEL);
22 }
23
24
25 smx_host_t SIMIX_host_create(const char *name, void *workstation, void *data);
26 void SIMIX_host_destroy(void *host);
27
28 void SIMIX_host_add_auto_restart_process(smx_host_t host,
29                                          const char *name,
30                                          xbt_main_func_t code,
31                                          void *data,
32                                          const char *hostname,
33                                          double kill_time,
34                                          int argc, char **argv,
35                                          xbt_dict_t properties,
36                                          int auto_restart);
37
38 void SIMIX_host_restart_processes(smx_host_t host);
39 void SIMIX_host_autorestart(smx_host_t host);
40 xbt_dict_t SIMIX_host_get_properties(smx_host_t host);
41 int SIMIX_host_get_core(smx_host_t host);
42 double SIMIX_host_get_speed(smx_host_t host);
43 double SIMIX_host_get_available_speed(smx_host_t host);
44 int SIMIX_host_get_state(smx_host_t host);
45 void SIMIX_host_on(smx_host_t host);
46 void SIMIX_host_off(smx_host_t host);
47 smx_action_t SIMIX_host_execute(const char *name,
48     smx_host_t host, double computation_amount, double priority, double bound);
49 smx_action_t SIMIX_host_parallel_execute(const char *name,
50     int host_nb, smx_host_t *host_list,
51     double *computation_amount, double *communication_amount,
52     double amount, double rate);
53 void SIMIX_host_execution_destroy(smx_action_t action);
54 void SIMIX_host_execution_cancel(smx_action_t action);
55 double SIMIX_host_execution_get_remains(smx_action_t action);
56 e_smx_state_t SIMIX_host_execution_get_state(smx_action_t action);
57 void SIMIX_host_execution_set_priority(smx_action_t action, double priority);
58 void SIMIX_host_execution_set_bound(smx_action_t action, double bound);
59 void SIMIX_pre_host_execution_wait(smx_simcall_t simcall, smx_action_t action);
60
61 // pre prototypes
62 smx_host_t SIMIX_pre_host_get_by_name(smx_simcall_t, const char*);
63 const char* SIMIX_pre_host_self_get_name(smx_simcall_t);
64 const char* SIMIX_pre_host_get_name(smx_simcall_t, smx_host_t);
65 void SIMIX_pre_host_on(smx_simcall_t, smx_host_t host);
66 void SIMIX_pre_host_off(smx_simcall_t, smx_host_t host);
67 xbt_dict_t SIMIX_pre_host_get_properties(smx_simcall_t, smx_host_t);
68 int SIMIX_pre_host_get_core(smx_simcall_t, smx_host_t);
69 double SIMIX_pre_host_get_speed(smx_simcall_t, smx_host_t);
70 double SIMIX_pre_host_get_available_speed(smx_simcall_t, smx_host_t);
71 int SIMIX_pre_host_get_state(smx_simcall_t, smx_host_t);
72 void* SIMIX_pre_host_self_get_data(smx_simcall_t);
73 void* SIMIX_pre_host_get_data(smx_simcall_t, smx_host_t);
74 void SIMIX_pre_host_set_data(smx_simcall_t, smx_host_t, void*);
75 smx_action_t SIMIX_pre_host_execute(smx_simcall_t, const char*, smx_host_t, double, double, double);
76 smx_action_t SIMIX_pre_host_parallel_execute(smx_simcall_t, const char*, int, smx_host_t*,
77                                              double*, double*, double, double);
78 void SIMIX_pre_host_execution_destroy(smx_simcall_t, smx_action_t);
79 void SIMIX_pre_host_execution_cancel(smx_simcall_t, smx_action_t);
80 double SIMIX_pre_host_execution_get_remains(smx_simcall_t, smx_action_t);
81 e_smx_state_t SIMIX_pre_host_execution_get_state(smx_simcall_t, smx_action_t);
82 void SIMIX_pre_host_execution_set_priority(smx_simcall_t, smx_action_t, double);
83 void SIMIX_pre_host_execution_set_bound(smx_simcall_t simcall, smx_action_t action, double bound);
84
85 void SIMIX_host_execution_suspend(smx_action_t action);
86 void SIMIX_host_execution_resume(smx_action_t action);
87
88 void SIMIX_post_host_execute(smx_action_t action);
89
90 #ifdef HAVE_TRACING
91 void SIMIX_pre_set_category(smx_simcall_t simcall, smx_action_t action,
92                             const char *category);
93 void SIMIX_set_category(smx_action_t action, const char *category);
94 #endif
95
96
97
98 /* vm related stuff */
99 smx_host_t SIMIX_vm_create(const char *name, smx_host_t ind_phys_host);
100 smx_host_t SIMIX_pre_vm_create(smx_simcall_t simcall, const char *name, smx_host_t ind_phys_host);
101
102 void SIMIX_vm_destroy(smx_host_t ind_vm);
103 void SIMIX_pre_vm_destroy(smx_simcall_t simcall, smx_host_t ind_vm);
104 // --
105 void SIMIX_vm_resume(smx_host_t ind_vm, smx_process_t issuer);
106 void SIMIX_pre_vm_resume(smx_simcall_t simcall, smx_host_t ind_vm);
107
108 void SIMIX_vm_suspend(smx_host_t ind_vm, smx_process_t issuer);
109 void SIMIX_pre_vm_suspend(smx_simcall_t simcall, smx_host_t ind_vm);
110 // --
111 void SIMIX_vm_save(smx_host_t ind_vm, smx_process_t issuer);
112 void SIMIX_pre_vm_save(smx_simcall_t simcall, smx_host_t ind_vm);
113
114 void SIMIX_vm_restore(smx_host_t ind_vm, smx_process_t issuer);
115 void SIMIX_pre_vm_restore(smx_simcall_t simcall, smx_host_t ind_vm);
116 // --
117 void SIMIX_vm_start(smx_host_t ind_vm);
118 void SIMIX_pre_vm_start(smx_simcall_t simcall, smx_host_t ind_vm);
119
120 void SIMIX_vm_shutdown(smx_host_t ind_vm, smx_process_t issuer);
121 void SIMIX_pre_vm_shutdown(smx_simcall_t simcall, smx_host_t ind_vm);
122 // --
123 void SIMIX_vm_set_state(smx_host_t ind_vm, int state);
124 void SIMIX_pre_vm_set_state(smx_simcall_t simcall, smx_host_t ind_vm, int state);
125
126 int SIMIX_vm_get_state(smx_host_t ind_vm);
127 int SIMIX_pre_vm_get_state(smx_simcall_t simcall, smx_host_t ind_vm);
128 // --
129 void SIMIX_vm_migrate(smx_host_t ind_vm, smx_host_t ind_dst_pm);
130 void SIMIX_pre_vm_migrate(smx_simcall_t simcall, smx_host_t ind_vm, smx_host_t ind_dst_pm);
131
132 void *SIMIX_vm_get_pm(smx_host_t ind_vm);
133 void *SIMIX_pre_vm_get_pm(smx_simcall_t simcall, smx_host_t ind_vm);
134
135 void SIMIX_vm_set_bound(smx_host_t ind_vm, double bound);
136 void SIMIX_pre_vm_set_bound(smx_simcall_t simcall, smx_host_t ind_vm, double bound);
137
138 void SIMIX_host_get_params(smx_host_t ind_vm, ws_params_t params);
139 void SIMIX_pre_host_get_params(smx_simcall_t simcall, smx_host_t ind_vm, ws_params_t params);
140
141 void SIMIX_host_set_params(smx_host_t ind_vm, ws_params_t params);
142 void SIMIX_pre_host_set_params(smx_simcall_t simcall, smx_host_t ind_vm, ws_params_t params);
143
144 #endif
145