Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove unnecessry files
[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 /** @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 (smx_host_priv_t) xbt_lib_get_level(host, SIMIX_HOST_LEVEL);
22 }
23
24 #ifdef __cplusplus
25 extern "C" {
26 #endif
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 double SIMIX_host_get_current_power_peak(smx_host_t host);
49 double SIMIX_host_get_power_peak_at(smx_host_t host, int pstate_index);
50 int SIMIX_host_get_nb_pstates(smx_host_t host);
51 double SIMIX_host_get_consumed_energy(smx_host_t host);
52 void SIMIX_host_set_power_peak_at(smx_host_t host, int pstate_index);
53 smx_action_t SIMIX_host_execute(const char *name,
54     smx_host_t host, double computation_amount, double priority);
55 smx_action_t SIMIX_host_parallel_execute(const char *name,
56     int host_nb, smx_host_t *host_list,
57     double *computation_amount, double *communication_amount,
58     double amount, double rate);
59 void SIMIX_host_execution_destroy(smx_action_t action);
60 void SIMIX_host_execution_cancel(smx_action_t action);
61 double SIMIX_host_execution_get_remains(smx_action_t action);
62 e_smx_state_t SIMIX_host_execution_get_state(smx_action_t action);
63 void SIMIX_host_execution_set_priority(smx_action_t action, double priority);
64 void SIMIX_pre_host_execution_wait(smx_simcall_t simcall, smx_action_t action);
65 xbt_dict_t SIMIX_host_get_storage_list(smx_host_t host);
66
67 // pre prototypes
68 smx_host_t SIMIX_pre_host_get_by_name(smx_simcall_t, const char*);
69 const char* SIMIX_pre_host_self_get_name(smx_simcall_t);
70 const char* SIMIX_pre_host_get_name(smx_simcall_t, smx_host_t);
71 xbt_dict_t SIMIX_pre_host_get_properties(smx_simcall_t, smx_host_t);
72 int SIMIX_pre_host_get_core(smx_simcall_t, smx_host_t);
73 xbt_swag_t SIMIX_pre_host_get_process_list(smx_simcall_t, smx_host_t host);
74 double SIMIX_pre_host_get_speed(smx_simcall_t, smx_host_t);
75 double SIMIX_pre_host_get_available_speed(smx_simcall_t, smx_host_t);
76 int SIMIX_pre_host_get_state(smx_simcall_t, smx_host_t);
77 double SIMIX_pre_host_get_current_power_peak(smx_simcall_t, smx_host_t);
78 double SIMIX_pre_host_get_power_peak_at(smx_simcall_t, smx_host_t host, int pstate_index);
79 int SIMIX_pre_host_get_nb_pstates(smx_simcall_t, smx_host_t host);
80 void SIMIX_pre_host_set_power_peak_at(smx_simcall_t, smx_host_t host, int pstate_index);
81 double SIMIX_pre_host_get_consumed_energy(smx_simcall_t, smx_host_t);
82 void* SIMIX_pre_host_self_get_data(smx_simcall_t);
83 void* SIMIX_pre_host_get_data(smx_simcall_t, smx_host_t);
84 void SIMIX_pre_host_set_data(smx_simcall_t, smx_host_t, void*);
85 smx_action_t SIMIX_pre_host_execute(smx_simcall_t, const char*, smx_host_t, double, double);
86 smx_action_t SIMIX_pre_host_parallel_execute(smx_simcall_t, const char*, int, smx_host_t*,
87                                              double*, double*, double, double);
88 void SIMIX_pre_host_execution_destroy(smx_simcall_t, smx_action_t);
89 void SIMIX_pre_host_execution_cancel(smx_simcall_t, smx_action_t);
90 double SIMIX_pre_host_execution_get_remains(smx_simcall_t, smx_action_t);
91 e_smx_state_t SIMIX_pre_host_execution_get_state(smx_simcall_t, smx_action_t);
92 void SIMIX_pre_host_execution_set_priority(smx_simcall_t, smx_action_t, double);
93
94 void SIMIX_host_execution_suspend(smx_action_t action);
95 void SIMIX_host_execution_resume(smx_action_t action);
96
97 void SIMIX_post_host_execute(smx_action_t action);
98 xbt_dict_t SIMIX_pre_host_get_storage_list(smx_simcall_t, smx_host_t);
99 #ifdef HAVE_TRACING
100 void SIMIX_pre_set_category(smx_simcall_t simcall, smx_action_t action,
101                             const char *category);
102 void SIMIX_set_category(smx_action_t action, const char *category);
103 #endif
104
105 #ifdef __cplusplus
106 }
107 #endif
108
109 #endif
110