Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
71851e2f673e2c1e4889c33cdab087060f2e982c
[simgrid.git] / doc / doxygen / module-msg.doc
1 /** \addtogroup MSG_API
2
3 MSG was the first distributed programming environment provided within SimGrid,
4 and is still the most commonly used nowadays. If you are unsure of the interface
5 you should use, they you probably want to use MSG. It constitutes a convenient
6 simplification of the reality of distributed systems. It can be used to build
7 rather realistic simulations, but remains simple to use: most unpleasant
8 technical elements can be abstracted away rather easily.  If you want to use the
9 C programming language, your are in the right section. If you prefer not to use
10 this venerable but demanding language, please refer to the @ref MSG_Java section.
11
12 If you think that MSG may not be the interface you need, please consider the
13 other user interfaces provided by SimGrid: If you want to use DAGs, have a look
14 at the \ref SD_API programming environment. If you want to study an existing MPI
15 program, have a look at the \ref SMPI_API one. If none of those programming
16 environments fits your needs, you may consider implementing your own directly on
17 top of \ref SIMIX_API, or even on top of \ref SURF_API (but you want to contact
18 us before digging into these badly documented internal modules).
19
20
21
22 \section MSG_funct Offered functionalities
23    - \ref msg_simulation
24    - \ref m_process_management
25    - \ref m_host_management
26    - \ref m_task_management
27    - \ref msg_mailbox_management
28    - \ref msg_file_management
29    - \ref msg_task_usage
30    - \ref msg_VMs
31    - \ref msg_synchro
32    - \ref msg_trace_driven
33    - \ref MSG_examples
34
35
36   Also make sure to visit the page @ref MSG_examples.
37 */
38
39
40
41 /**
42 @defgroup msg_simulation   Main MSG simulation Functions
43 @ingroup MSG_API
44 @brief Describes how to setup and control your simulation.
45
46 The basic workflow is the following (check the \ref MSG_examples for
47 details).
48
49  -# Initialize the library with #MSG_init
50  -# Create a platform (usually by parsing a file with
51     #MSG_create_environment)
52  -# Register the functions that your processes are supposed to run with
53     #MSG_function_register (and maybe #MSG_function_register_default)
54  -# Launch your processes from a deployment file with #MSG_launch_application
55  -# Run the simulation with #MSG_main
56 */
57
58 /** @defgroup m_process_management Process Management Functions
59  *  @ingroup MSG_API
60  *  @brief This section describes the process structure of MSG
61  *         (#msg_process_t) and the functions for managing it.
62  */
63
64 /** @defgroup m_host_management Host Management Functions
65  *  @ingroup MSG_API
66  *  @brief This section describes the host structure of MSG
67  */
68
69 /** @defgroup m_task_management Task Management Functions
70  *  @ingroup MSG_API
71  *  @brief This section describes the task structure of MSG
72  *         (#msg_task_t) and the functions for managing it. See
73  *         \ref msg_task_usage to see how to put the tasks in action.
74  */
75
76 /** @defgroup msg_mailbox_management Mailbox Management Functions
77  *  @ingroup MSG_API
78  *  @brief This section describes the mailbox structure of MSG
79  *         (#msg_mailbox_t) and the functions for managing it.
80  */
81
82 /** @defgroup msg_task_usage Task Actions
83  *  @ingroup MSG_API
84  *  @brief This section describes the functions that can be used
85  *         by a process to execute, communicate or otherwise handle some task.
86  */
87
88 /** @defgroup msg_synchro Explicit Synchronization Functions
89  *  @ingroup MSG_API
90  *  @brief This section describes several explicit synchronization
91  *         mechanisms existing in MSG: semaphores (#msg_sem_t) and friends.
92  *
93  * In some situations, these things are very helpful to synchronize processes without message exchanges.
94  */
95
96 /** @defgroup msg_VMs VMs
97  *  @ingroup MSG_API
98  *  @brief This section describes the interface created to mimic IaaS clouds.
99  *
100  *  With it, you can create virtual machines to put your processes
101  *  into, and interact directly with the VMs to manage groups of
102  *  processes.
103  *
104  *  This interface is highly experimental at this point. Testing is
105  *  welcomed, but do not expect too much of it right now. Even the
106  *  interfaces may be changed in future releases of SimGrid (although
107  *  things are expected to stabilize nicely before SimGrid v3.8).
108  *  There is no guaranty on the rest of SimGrid, and there is less
109  *  than that on this part.
110  *
111  */
112
113 /** @defgroup msg_storage_management Storage Management Functions
114  *  @ingroup MSG_API
115  *  @brief This section describes the storage structure of MSG
116  *         (#msg_storage_t) and the functions for managing it. It
117  *   is based on POSIX functions.
118  */
119
120 /** @defgroup msg_file_management File Management Functions
121  *  @ingroup MSG_API
122  *  @brief This section describes the file structure of MSG
123  *         (#msg_file_t) and the functions for managing it. It
124  *   is based on POSIX functions.
125  */
126
127 /**
128 @defgroup msg_trace_driven Trace-driven simulations
129 @ingroup MSG_API
130 @brief This section describes the functions allowing to build trace-driven simulations.
131
132 This is very handy when you want to test an algorithm or protocol that
133 does nothing unless it receives some events from outside. For example,
134 a P2P protocol reacts to requests from the user, but does nothing if
135 there is no such event.
136
137 In such situations, SimGrid allows to write your protocol in your C
138 file, and the events to react to in a separate text file. Declare a
139 function handling each of the events that you want to accept in your
140 trace files, register them using #xbt_replay_action_register in your main,
141 and then use #MSG_action_trace_run to launch the simulation. You can
142 either have one trace file containing all your events, or a file per
143 simulated process.
144
145 Check the examples in <b>examples/msg/actions/actions.c</b> for details.
146
147  */