Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add checking for simcalls
[simgrid.git] / src / simix / smx_host_private.h
1 /* Copyright (c) 2007-2010, 2012-2013. 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 SG_BEGIN_DECL()
14
15 /** @brief Host datatype */
16 typedef struct s_smx_host_priv {
17   xbt_swag_t process_list;
18   xbt_dynar_t auto_restart_processes;
19   xbt_dynar_t boot_processes; 
20   void *data;              /**< @brief user data */
21 } s_smx_host_priv_t;
22
23 static inline smx_host_priv_t SIMIX_host_priv(smx_host_t host){
24   return (smx_host_priv_t) xbt_lib_get_level(host, SIMIX_HOST_LEVEL);
25 }
26
27 void _SIMIX_host_free_process_arg(void *);
28 smx_host_t SIMIX_host_create(const char *name, void *workstation, void *data);
29 void SIMIX_host_destroy(void *host);
30
31 void SIMIX_host_add_auto_restart_process(smx_host_t host,
32                                          const char *name,
33                                          xbt_main_func_t code,
34                                          void *data,
35                                          const char *hostname,
36                                          double kill_time,
37                                          int argc, char **argv,
38                                          xbt_dict_t properties,
39                                          int auto_restart);
40
41 void SIMIX_host_restart_processes(smx_host_t host);
42 void SIMIX_host_autorestart(smx_host_t host);
43 xbt_dict_t SIMIX_host_get_properties(smx_host_t host);
44 int SIMIX_host_get_core(smx_host_t host);
45 xbt_swag_t SIMIX_host_get_process_list(smx_host_t host);
46 double SIMIX_host_get_speed(smx_host_t host);
47 double SIMIX_host_get_available_speed(smx_host_t host);
48 int SIMIX_host_get_state(smx_host_t host);
49 void SIMIX_host_on(smx_host_t host);
50 void SIMIX_host_off(smx_host_t host, smx_process_t issuer);
51 double SIMIX_host_get_current_power_peak(smx_host_t host);
52 double SIMIX_host_get_power_peak_at(smx_host_t host, int pstate_index);
53 int SIMIX_host_get_nb_pstates(smx_host_t host);
54 double SIMIX_host_get_consumed_energy(smx_host_t host);
55 void SIMIX_host_set_power_peak_at(smx_host_t host, int pstate_index);
56 smx_action_t SIMIX_host_execute(const char *name,
57     smx_host_t host, double computation_amount, double priority, double bound, unsigned long affinity_mask);
58 smx_action_t SIMIX_host_parallel_execute(const char *name,
59     int host_nb, smx_host_t *host_list,
60     double *computation_amount, double *communication_amount,
61     double amount, double rate);
62 void SIMIX_host_execution_destroy(smx_action_t action);
63 void SIMIX_host_execution_cancel(smx_action_t action);
64 double SIMIX_host_execution_get_remains(smx_action_t action);
65 e_smx_state_t SIMIX_host_execution_get_state(smx_action_t action);
66 void SIMIX_host_execution_set_priority(smx_action_t action, double priority);
67 void SIMIX_host_execution_set_bound(smx_action_t action, double bound);
68 void SIMIX_host_execution_set_affinity(smx_action_t action, smx_host_t host, unsigned long mask);
69 void SIMIX_pre_host_execution_wait(smx_simcall_t simcall, smx_action_t action);
70 xbt_dict_t SIMIX_host_get_storage_list(smx_host_t host);
71
72 // pre prototypes
73 smx_host_t SIMIX_pre_host_get_by_name(smx_simcall_t, const char*);
74 const char* SIMIX_pre_host_self_get_name(smx_simcall_t);
75 const char* SIMIX_pre_host_get_name(smx_simcall_t, smx_host_t);
76 void SIMIX_pre_host_on(smx_simcall_t, smx_host_t host);
77 void SIMIX_pre_host_off(smx_simcall_t, smx_host_t host);
78 xbt_dict_t SIMIX_pre_host_get_properties(smx_simcall_t, smx_host_t);
79 int SIMIX_pre_host_get_core(smx_simcall_t, smx_host_t);
80 xbt_swag_t SIMIX_pre_host_get_process_list(smx_simcall_t, smx_host_t host);
81 double SIMIX_pre_host_get_speed(smx_simcall_t, smx_host_t);
82 double SIMIX_pre_host_get_available_speed(smx_simcall_t, smx_host_t);
83 int SIMIX_pre_host_get_state(smx_simcall_t, smx_host_t);
84 double SIMIX_pre_host_get_current_power_peak(smx_simcall_t, smx_host_t);
85 double SIMIX_pre_host_get_power_peak_at(smx_simcall_t, smx_host_t host, int pstate_index);
86 int SIMIX_pre_host_get_nb_pstates(smx_simcall_t, smx_host_t host);
87 void SIMIX_pre_host_set_power_peak_at(smx_simcall_t, smx_host_t host, int pstate_index);
88 double SIMIX_pre_host_get_consumed_energy(smx_simcall_t, smx_host_t);
89 void* SIMIX_pre_host_self_get_data(smx_simcall_t);
90 void* SIMIX_pre_host_get_data(smx_simcall_t, smx_host_t);
91 void SIMIX_pre_host_set_data(smx_simcall_t, smx_host_t, void*);
92 smx_action_t SIMIX_pre_host_execute(smx_simcall_t, const char*, smx_host_t, double, double, double, unsigned long);
93 smx_action_t SIMIX_pre_host_parallel_execute(smx_simcall_t, const char*, int, smx_host_t*,
94                                              double*, double*, double, double);
95 void SIMIX_pre_host_execution_destroy(smx_simcall_t, smx_action_t);
96 void SIMIX_pre_host_execution_cancel(smx_simcall_t, smx_action_t);
97 double SIMIX_pre_host_execution_get_remains(smx_simcall_t, smx_action_t);
98 e_smx_state_t SIMIX_pre_host_execution_get_state(smx_simcall_t, smx_action_t);
99 void SIMIX_pre_host_execution_set_priority(smx_simcall_t, smx_action_t, double);
100 void SIMIX_pre_host_execution_set_bound(smx_simcall_t simcall, smx_action_t action, double bound);
101 void SIMIX_pre_host_execution_set_affinity(smx_simcall_t simcall, smx_action_t action, smx_host_t host, unsigned long mask);
102
103 void SIMIX_host_execution_suspend(smx_action_t action);
104 void SIMIX_host_execution_resume(smx_action_t action);
105
106 void SIMIX_post_host_execute(smx_action_t action);
107 xbt_dict_t SIMIX_pre_host_get_storage_list(smx_simcall_t, smx_host_t);
108 #ifdef HAVE_TRACING
109 void SIMIX_pre_set_category(smx_simcall_t simcall, smx_action_t action,
110                             const char *category);
111 void SIMIX_set_category(smx_action_t action, const char *category);
112 #endif
113 /* vm related stuff */
114 smx_host_t SIMIX_vm_create(const char *name, smx_host_t ind_phys_host);
115 smx_host_t SIMIX_pre_vm_create(smx_simcall_t simcall, const char *name, smx_host_t ind_phys_host);
116
117 void SIMIX_vm_destroy(smx_host_t ind_vm);
118 void SIMIX_pre_vm_destroy(smx_simcall_t simcall, smx_host_t ind_vm);
119 // --
120 void SIMIX_vm_resume(smx_host_t ind_vm, smx_process_t issuer);
121 void SIMIX_pre_vm_resume(smx_simcall_t simcall, smx_host_t ind_vm);
122
123 void SIMIX_vm_suspend(smx_host_t ind_vm, smx_process_t issuer);
124 void SIMIX_pre_vm_suspend(smx_simcall_t simcall, smx_host_t ind_vm);
125 // --
126 void SIMIX_vm_save(smx_host_t ind_vm, smx_process_t issuer);
127 void SIMIX_pre_vm_save(smx_simcall_t simcall, smx_host_t ind_vm);
128
129 void SIMIX_vm_restore(smx_host_t ind_vm, smx_process_t issuer);
130 void SIMIX_pre_vm_restore(smx_simcall_t simcall, smx_host_t ind_vm);
131 // --
132 void SIMIX_vm_start(smx_host_t ind_vm);
133 void SIMIX_pre_vm_start(smx_simcall_t simcall, smx_host_t ind_vm);
134
135 void SIMIX_vm_shutdown(smx_host_t ind_vm, smx_process_t issuer);
136 void SIMIX_pre_vm_shutdown(smx_simcall_t simcall, smx_host_t ind_vm);
137 // --
138 void SIMIX_vm_set_state(smx_host_t ind_vm, int state);
139 void SIMIX_pre_vm_set_state(smx_simcall_t simcall, smx_host_t ind_vm, int state);
140
141 int SIMIX_vm_get_state(smx_host_t ind_vm);
142 int SIMIX_pre_vm_get_state(smx_simcall_t simcall, smx_host_t ind_vm);
143 // --
144 void SIMIX_vm_migrate(smx_host_t ind_vm, smx_host_t ind_dst_pm);
145 void SIMIX_pre_vm_migrate(smx_simcall_t simcall, smx_host_t ind_vm, smx_host_t ind_dst_pm);
146
147 void *SIMIX_vm_get_pm(smx_host_t ind_vm);
148 void *SIMIX_pre_vm_get_pm(smx_simcall_t simcall, smx_host_t ind_vm);
149
150 void SIMIX_vm_set_bound(smx_host_t ind_vm, double bound);
151 void SIMIX_pre_vm_set_bound(smx_simcall_t simcall, smx_host_t ind_vm, double bound);
152
153 void SIMIX_vm_set_affinity(smx_host_t ind_vm, smx_host_t ind_pm, unsigned long mask);
154 void SIMIX_pre_vm_set_affinity(smx_simcall_t simcall, smx_host_t ind_vm, smx_host_t ind_pm, unsigned long mask);
155
156 void SIMIX_host_get_params(smx_host_t ind_vm, ws_params_t params);
157 void SIMIX_pre_host_get_params(smx_simcall_t simcall, smx_host_t ind_vm, ws_params_t params);
158
159 void SIMIX_host_set_params(smx_host_t ind_vm, ws_params_t params);
160 void SIMIX_pre_host_set_params(smx_simcall_t simcall, smx_host_t ind_vm, ws_params_t params);
161
162 SG_END_DECL()
163
164 #endif
165