Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of git+ssh://scm.gforge.inria.fr//gitroot/simgrid/simgrid
[simgrid.git] / src / simix / smx_deployment.cpp
1 /* Copyright (c) 2007, 2009-2015. 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 #include "smx_private.h"
8 #include "xbt/sysdep.h"
9 #include "xbt/log.h"
10 #include "xbt/dict.h"
11 #include "src/surf/xml/platf_private.hpp" // FIXME: KILLME. There must be a better way than mimicking XML here
12
13 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(simix_deployment, simix,
14                                 "Logging specific to SIMIX (deployment)");
15
16 extern int surf_parse_lineno;
17
18 void SIMIX_init_application(void)
19 {
20   sg_platf_exit();
21   sg_platf_init();
22 }
23
24 /**
25  * \brief An application deployer.
26  *
27  * Creates the process described in \a file.
28  * \param file a filename of a xml description of the application. This file
29  * follows this DTD :
30  *
31  *     \include surfxml.dtd
32  *
33  * Here is a small example of such a platform
34  *
35  *     \include small_deployment.xml
36  *
37  */
38 void SIMIX_launch_application(const char *file)
39 {
40   XBT_ATTRIB_UNUSED int parse_status;
41   xbt_assert(simix_global,
42               "SIMIX_global_init has to be called before SIMIX_launch_application.");
43
44   SIMIX_init_application();
45
46   surf_parse_open(file);
47   try {
48     parse_status = surf_parse();
49     surf_parse_close();
50     xbt_assert(!parse_status, "Parse error at %s:%d", file,surf_parse_lineno);
51   }
52   catch (xbt_ex& e) {
53     XBT_ERROR("Unrecoverable error at %s:%d. The full exception stack follows, in case it helps you to diagnose the problem.",
54         file, surf_parse_lineno);
55     throw;
56   }
57 }
58
59 /**
60  * \brief Registers a #xbt_main_func_t code in a global table.
61  *
62  * Registers a code function in a global table.
63  * This table is then used by #SIMIX_launch_application.
64  * \param name the reference name of the function.
65  * \param code the function
66  */
67 void SIMIX_function_register(const char *name, xbt_main_func_t code)
68 {
69   xbt_assert(simix_global, "SIMIX_global_init has to be called before SIMIX_function_register.");
70   xbt_dict_set(simix_global->registered_functions, name, (void*) code, nullptr);
71 }
72
73 static xbt_main_func_t default_function = nullptr;
74 /**
75  * \brief Registers a #xbt_main_func_t code as default value.
76  *
77  * Registers a code function as being the default value. This function will get used by SIMIX_launch_application() when there is no registered function of the requested name in.
78  * \param code the function
79  */
80 void SIMIX_function_register_default(xbt_main_func_t code)
81 {
82   xbt_assert(simix_global, "SIMIX_global_init has to be called before SIMIX_function_register.");
83
84   default_function = code;
85 }
86
87 /**
88  * \brief Gets a #smx_process_t code from the global table.
89  *
90  * Gets a code function from the global table. Returns nullptr if there are no function registered with the name.
91  * This table is then used by #SIMIX_launch_application.
92  * \param name the reference name of the function.
93  * \return The #smx_process_t or nullptr.
94  */
95 xbt_main_func_t SIMIX_get_registered_function(const char *name)
96 {
97   xbt_main_func_t res = nullptr;
98   xbt_assert(simix_global,
99               "SIMIX_global_init has to be called before SIMIX_get_registered_function.");
100
101   res = (xbt_main_func_t)xbt_dict_get_or_null(simix_global->registered_functions, name);
102   return res ? res : default_function;
103 }
104
105
106 /**
107  * \brief Bypass the parser, get arguments, and set function to each process
108  */
109
110 void SIMIX_process_set_function(const char *process_host,
111                                 const char *process_function,
112                                 xbt_dynar_t arguments,
113                                 double process_start_time,
114                                 double process_kill_time)
115 {
116   s_sg_platf_process_cbarg_t process;
117   memset(&process,0,sizeof(process));
118
119   sg_host_t host = sg_host_by_name(process_host);
120   if (!host)
121     THROWF(arg_error, 0, "Host '%s' unknown", process_host);
122   process.host = sg_host_get_name(host);
123
124   process.argc = 1 + xbt_dynar_length(arguments);
125   process.argv = (const char**)xbt_new(char *, process.argc + 1);
126   process.argv[0] = xbt_strdup(process_function);
127   /* add arguments */
128   unsigned int i;
129   char *arg;
130   xbt_dynar_foreach(arguments, i, arg) {
131     process.argv[i + 1] = xbt_strdup(arg);
132   }
133   process.argv[process.argc] = nullptr;
134
135   xbt_main_func_t parse_code = SIMIX_get_registered_function(process_function);
136   xbt_assert(parse_code, "Function '%s' unknown", process_function);
137   process.function = process_function;
138
139   process.host = process_host;
140   process.kill_time = process_kill_time;
141   process.start_time = process_start_time;
142   process.on_failure = SURF_PROCESS_ON_FAILURE_DIE;
143
144   sg_platf_new_process(&process);
145 }