Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Indent the rest of the code (examples, buildtools, doc...) except for examples/SMPI...
[simgrid.git] / examples / msg / tracing / ms.c
1 /* Copyright (c) 2010. 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 <stdio.h>
8 #include "msg/msg.h"
9 #include "xbt/sysdep.h"         /* calloc, printf */
10
11 /* Create a log channel to have nice outputs. */
12 #include "xbt/log.h"
13 #include "xbt/asserts.h"
14 XBT_LOG_NEW_DEFAULT_CATEGORY(msg_test,
15                              "Messages specific for this msg example");
16
17 int master(int argc, char *argv[]);
18 int slave(int argc, char *argv[]);
19 MSG_error_t test_all(const char *platform_file,
20                      const char *application_file);
21
22 /** Emitter function  */
23 int master(int argc, char *argv[])
24 {
25   long number_of_tasks = atol(argv[1]);
26   double task_comp_size = atof(argv[2]);
27   double task_comm_size = atof(argv[3]);
28   long slaves_count = atol(argv[4]);
29
30   //setting the variable "is_master" (previously declared) to value 1
31   TRACE_host_variable_set("is_master", 1);
32
33   TRACE_mark("msmark", "start_send_tasks");
34   int i;
35   for (i = 0; i < number_of_tasks; i++) {
36     m_task_t task = NULL;
37     task = MSG_task_create("task", task_comp_size, task_comm_size, NULL);
38
39     //setting the variable "task_creation" to value i
40     TRACE_host_variable_set("task_creation", i);
41
42     //setting the category of task to "compute"
43     //the category of a task must be defined before it is sent or executed
44     TRACE_msg_set_task_category(task, "compute");
45     MSG_task_send(task, "master_mailbox");
46   }
47   TRACE_mark("msmark", "finish_send_tasks");
48
49   for (i = 0; i < slaves_count; i++) {
50     m_task_t finalize = MSG_task_create("finalize", 0, 0, 0);
51     TRACE_msg_set_task_category(finalize, "finalize");
52     MSG_task_send(finalize, "master_mailbox");
53   }
54
55   return 0;
56 }
57
58 /** Receiver function  */
59 int slave(int argc, char *argv[])
60 {
61   m_task_t task = NULL;
62   int res;
63
64   TRACE_host_variable_set("is_slave", 1);
65   while (1) {
66     res = MSG_task_receive(&(task), "master_mailbox");
67
68     if (!strcmp(MSG_task_get_name(task), "finalize")) {
69       MSG_task_destroy(task);
70       break;
71     }
72     //adding the value returned by MSG_task_get_compute_duration(task)
73     //to the variable "task_computation"
74     TRACE_host_variable_add("task_computation",
75                             MSG_task_get_compute_duration(task));
76     MSG_task_execute(task);
77     MSG_task_destroy(task);
78     task = NULL;
79   }
80   return 0;
81 }
82
83 /** Test function */
84 MSG_error_t test_all(const char *platform_file,
85                      const char *application_file)
86 {
87   MSG_error_t res = MSG_OK;
88
89   {                             /*  Simulation setting */
90     MSG_set_channel_number(0);
91     MSG_create_environment(platform_file);
92   }
93   {                             /*   Application deployment */
94     MSG_function_register("master", master);
95     MSG_function_register("slave", slave);
96     MSG_launch_application(application_file);
97   }
98   res = MSG_main();
99
100   INFO1("Simulation time %g", MSG_get_clock());
101   return res;
102 }
103
104
105 /** Main function */
106 int main(int argc, char *argv[])
107 {
108   MSG_error_t res = MSG_OK;
109
110   MSG_global_init(&argc, argv);
111   if (argc < 3) {
112     printf("Usage: %s platform_file deployment_file\n", argv[0]);
113     printf("example: %s msg_platform.xml msg_deployment.xml\n", argv[0]);
114     exit(1);
115   }
116   //starting the simulation tracing
117   TRACE_start();
118
119   //declaring user variables
120   TRACE_host_variable_declare("is_slave");
121   TRACE_host_variable_declare("is_master");
122   TRACE_host_variable_declare("task_creation");
123   TRACE_host_variable_declare("task_computation");
124
125   //declaring user markers
126   TRACE_declare_mark("msmark");
127
128   //declaring user categories
129   TRACE_category("compute");
130   TRACE_category("finalize");
131
132   res = test_all(argv[1], argv[2]);
133   MSG_clean();
134
135   //ending the simulation tracing
136   TRACE_end();
137
138   if (res == MSG_OK)
139     return 0;
140   else
141     return 1;
142 }                               /* end_of_main */