Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
f9de66b1604e6e03a6d8b6af2983b505d43160d3
[simgrid.git] / src / simix / smx_host_private.h
1 /* Copyright (c) 2007-2010, 2012-2014. 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 "popping_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 } s_smx_host_priv_t;
21
22 static inline smx_host_priv_t SIMIX_host_priv(smx_host_t host){
23   return (smx_host_priv_t) xbt_lib_get_level(host, SIMIX_HOST_LEVEL);
24 }
25
26 void _SIMIX_host_free_process_arg(void *);
27 smx_host_t SIMIX_host_create(const char *name, void *workstation, void *data);
28 void SIMIX_host_destroy(void *host);
29
30 void SIMIX_host_add_auto_restart_process(smx_host_t host,
31                                          const char *name,
32                                          xbt_main_func_t code,
33                                          void *data,
34                                          const char *hostname,
35                                          double kill_time,
36                                          int argc, char **argv,
37                                          xbt_dict_t properties,
38                                          int auto_restart);
39
40 void SIMIX_host_restart_processes(smx_host_t host);
41 void SIMIX_host_autorestart(smx_host_t host);
42 xbt_dict_t SIMIX_host_get_properties(smx_host_t host);
43 int SIMIX_host_get_core(smx_host_t host);
44 xbt_swag_t SIMIX_host_get_process_list(smx_host_t host);
45 double SIMIX_host_get_speed(smx_host_t host);
46 double SIMIX_host_get_available_speed(smx_host_t host);
47 int SIMIX_host_get_state(smx_host_t host);
48 void SIMIX_host_on(smx_host_t host);
49 void SIMIX_host_off(smx_host_t host, smx_process_t issuer);
50 double SIMIX_host_get_current_power_peak(smx_host_t host);
51 double SIMIX_host_get_power_peak_at(smx_host_t host, int pstate_index);
52 int SIMIX_host_get_nb_pstates(smx_host_t host);
53 double SIMIX_host_get_consumed_energy(smx_host_t host);
54 void SIMIX_host_set_power_peak_at(smx_host_t host, int pstate_index);
55 smx_action_t SIMIX_host_execute(const char *name,
56     smx_host_t host, double computation_amount, double priority, double bound, unsigned long affinity_mask);
57 smx_action_t SIMIX_host_parallel_execute(const char *name,
58     int host_nb, smx_host_t *host_list,
59     double *computation_amount, double *communication_amount,
60     double amount, double rate);
61 void SIMIX_host_execution_destroy(smx_action_t action);
62 void SIMIX_host_execution_cancel(smx_action_t action);
63 double SIMIX_host_execution_get_remains(smx_action_t action);
64 e_smx_state_t SIMIX_host_execution_get_state(smx_action_t action);
65 void SIMIX_host_execution_set_priority(smx_action_t action, double priority);
66 void SIMIX_host_execution_set_bound(smx_action_t action, double bound);
67 void SIMIX_host_execution_set_affinity(smx_action_t action, smx_host_t host, unsigned long mask);
68 void simcall_HANDLER_host_execution_wait(smx_simcall_t simcall, smx_action_t action);
69 xbt_dict_t SIMIX_host_get_mounted_storage_list(smx_host_t host);
70 xbt_dynar_t SIMIX_host_get_attached_storage_list(smx_host_t host);
71 // handlers' prototypes
72 smx_host_t simcall_HANDLER_host_get_by_name(smx_simcall_t, const char*);
73 const char* simcall_HANDLER_host_self_get_name(smx_simcall_t);
74 const char* simcall_HANDLER_host_get_name(smx_simcall_t, smx_host_t);
75 void simcall_HANDLER_host_on(smx_simcall_t, smx_host_t host);
76 void simcall_HANDLER_host_off(smx_simcall_t, smx_host_t host);
77 xbt_dict_t simcall_HANDLER_host_get_properties(smx_simcall_t, smx_host_t);
78 int simcall_HANDLER_host_get_core(smx_simcall_t, smx_host_t);
79 xbt_swag_t simcall_HANDLER_host_get_process_list(smx_simcall_t, smx_host_t host);
80 double simcall_HANDLER_host_get_speed(smx_simcall_t, smx_host_t);
81 double simcall_HANDLER_host_get_available_speed(smx_simcall_t, smx_host_t);
82 int simcall_HANDLER_host_get_state(smx_simcall_t, smx_host_t);
83 double simcall_HANDLER_host_get_current_power_peak(smx_simcall_t, smx_host_t);
84 double simcall_HANDLER_host_get_power_peak_at(smx_simcall_t, smx_host_t host, int pstate_index);
85 int simcall_HANDLER_host_get_nb_pstates(smx_simcall_t, smx_host_t host);
86 void simcall_HANDLER_host_set_power_peak_at(smx_simcall_t, smx_host_t host, int pstate_index);
87 double simcall_HANDLER_host_get_consumed_energy(smx_simcall_t, smx_host_t);
88 void* simcall_HANDLER_host_self_get_data(smx_simcall_t);
89 smx_action_t simcall_HANDLER_host_execute(smx_simcall_t, const char*, smx_host_t, double, double, double, unsigned long);
90 smx_action_t simcall_HANDLER_host_parallel_execute(smx_simcall_t, const char*, int, smx_host_t*,
91                                              double*, double*, double, double);
92 void simcall_HANDLER_host_execution_destroy(smx_simcall_t, smx_action_t);
93 void simcall_HANDLER_host_execution_cancel(smx_simcall_t, smx_action_t);
94 double simcall_HANDLER_host_execution_get_remains(smx_simcall_t, smx_action_t);
95 e_smx_state_t simcall_HANDLER_host_execution_get_state(smx_simcall_t, smx_action_t);
96 void simcall_HANDLER_host_execution_set_priority(smx_simcall_t, smx_action_t, double);
97 void simcall_HANDLER_host_execution_set_bound(smx_simcall_t simcall, smx_action_t action, double bound);
98 void simcall_HANDLER_host_execution_set_affinity(smx_simcall_t simcall, smx_action_t action, smx_host_t host, unsigned long mask);
99
100 void SIMIX_host_execution_suspend(smx_action_t action);
101 void SIMIX_host_execution_resume(smx_action_t action);
102
103 void SIMIX_post_host_execute(smx_action_t action);
104 xbt_dict_t simcall_HANDLER_host_get_mounted_storage_list(smx_simcall_t, smx_host_t);
105 xbt_dynar_t simcall_HANDLER_host_get_attached_storage_list(smx_simcall_t, smx_host_t);
106 #ifdef HAVE_TRACING
107 void simcall_HANDLER_set_category(smx_simcall_t simcall, smx_action_t action,
108                             const char *category);
109 void SIMIX_set_category(smx_action_t action, const char *category);
110 #endif
111 /* vm related stuff */
112 smx_host_t SIMIX_vm_create(const char *name, smx_host_t ind_phys_host);
113 smx_host_t simcall_HANDLER_vm_create(smx_simcall_t simcall, const char *name, smx_host_t ind_phys_host);
114
115 void SIMIX_vm_destroy(smx_host_t ind_vm);
116 void simcall_HANDLER_vm_destroy(smx_simcall_t simcall, smx_host_t ind_vm);
117 // --
118 void SIMIX_vm_resume(smx_host_t ind_vm, smx_process_t issuer);
119 void simcall_HANDLER_vm_resume(smx_simcall_t simcall, smx_host_t ind_vm);
120
121 void SIMIX_vm_suspend(smx_host_t ind_vm, smx_process_t issuer);
122 void simcall_HANDLER_vm_suspend(smx_simcall_t simcall, smx_host_t ind_vm);
123 // --
124 void SIMIX_vm_save(smx_host_t ind_vm, smx_process_t issuer);
125 void simcall_HANDLER_vm_save(smx_simcall_t simcall, smx_host_t ind_vm);
126
127 void SIMIX_vm_restore(smx_host_t ind_vm, smx_process_t issuer);
128 void simcall_HANDLER_vm_restore(smx_simcall_t simcall, smx_host_t ind_vm);
129 // --
130 void SIMIX_vm_start(smx_host_t ind_vm);
131 void simcall_HANDLER_vm_start(smx_simcall_t simcall, smx_host_t ind_vm);
132
133 void SIMIX_vm_shutdown(smx_host_t ind_vm, smx_process_t issuer);
134 void simcall_HANDLER_vm_shutdown(smx_simcall_t simcall, smx_host_t ind_vm);
135 // --
136
137 int SIMIX_vm_get_state(smx_host_t ind_vm);
138 int simcall_HANDLER_vm_get_state(smx_simcall_t simcall, smx_host_t ind_vm);
139 // --
140 void SIMIX_vm_migrate(smx_host_t ind_vm, smx_host_t ind_dst_pm);
141 void simcall_HANDLER_vm_migrate(smx_simcall_t simcall, smx_host_t ind_vm, smx_host_t ind_dst_pm);
142
143 void *SIMIX_vm_get_pm(smx_host_t ind_vm);
144 void *simcall_HANDLER_vm_get_pm(smx_simcall_t simcall, smx_host_t ind_vm);
145
146 void SIMIX_vm_set_bound(smx_host_t ind_vm, double bound);
147 void simcall_HANDLER_vm_set_bound(smx_simcall_t simcall, smx_host_t ind_vm, double bound);
148
149 void SIMIX_vm_set_affinity(smx_host_t ind_vm, smx_host_t ind_pm, unsigned long mask);
150 void simcall_HANDLER_vm_set_affinity(smx_simcall_t simcall, smx_host_t ind_vm, smx_host_t ind_pm, unsigned long mask);
151
152 void SIMIX_host_get_params(smx_host_t ind_vm, ws_params_t params);
153 void simcall_HANDLER_host_get_params(smx_simcall_t simcall, smx_host_t ind_vm, ws_params_t params);
154
155 void SIMIX_host_set_params(smx_host_t ind_vm, ws_params_t params);
156 void simcall_HANDLER_host_set_params(smx_simcall_t simcall, smx_host_t ind_vm, ws_params_t params);
157
158 SG_END_DECL()
159
160 #endif
161