Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Indent include and src using this command:
[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,"Messages specific for this msg example");
15
16 int master(int argc, char *argv[]);
17 int slave(int argc, char *argv[]);
18 MSG_error_t test_all(const char *platform_file, const char *application_file);
19
20 /** Emitter function  */
21 int master(int argc, char *argv[])
22 {
23   long number_of_tasks = atol(argv[1]);
24   double task_comp_size = atof(argv[2]);
25   double task_comm_size = atof(argv[3]);
26   long slaves_count = atol(argv[4]);
27
28   //setting the variable "is_master" (previously declared) to value 1
29   TRACE_host_variable_set ("is_master", 1);
30
31   TRACE_mark ("msmark", "start_send_tasks");
32   int i;
33   for (i = 0; i < number_of_tasks; i++) {
34     m_task_t task=NULL;
35     task = MSG_task_create("task", task_comp_size, task_comm_size, NULL);
36
37     //setting the variable "task_creation" to value i
38     TRACE_host_variable_set ("task_creation", i);
39
40     //setting the category of task to "compute"
41     //the category of a task must be defined before it is sent or executed
42     TRACE_msg_set_task_category (task, "compute");
43     MSG_task_send(task, "master_mailbox");
44   }
45   TRACE_mark ("msmark", "finish_send_tasks");
46   
47    for (i = 0; i < slaves_count; i++) { 
48      m_task_t finalize = MSG_task_create ("finalize", 0, 0, 0);
49      TRACE_msg_set_task_category(finalize, "finalize");
50      MSG_task_send(finalize, "master_mailbox");
51    } 
52   
53   return 0;
54 }
55
56 /** Receiver function  */
57 int slave(int argc, char *argv[])
58 {
59   m_task_t task = NULL;
60   int res;
61
62   TRACE_host_variable_set ("is_slave", 1);
63   while(1) {
64     res = MSG_task_receive(&(task), "master_mailbox");
65
66     if (!strcmp(MSG_task_get_name(task),"finalize")) {
67       MSG_task_destroy(task);
68         break;
69     }
70
71     //adding the value returned by MSG_task_get_compute_duration(task)
72     //to the variable "task_computation"
73     TRACE_host_variable_add ("task_computation",
74         MSG_task_get_compute_duration(task));
75     MSG_task_execute(task);
76     MSG_task_destroy(task);
77     task = NULL;
78   }
79   return 0;
80 }
81
82 /** Test function */
83 MSG_error_t test_all(const char *platform_file,
84                             const char *application_file)
85 {
86   MSG_error_t res = MSG_OK;
87
88   {                             /*  Simulation setting */
89     MSG_set_channel_number(0);
90     MSG_create_environment(platform_file);
91   }
92   {                            /*   Application deployment */
93     MSG_function_register("master", master);
94     MSG_function_register("slave", slave);
95     MSG_launch_application(application_file);
96   }
97   res = MSG_main();
98   
99   INFO1("Simulation time %g",MSG_get_clock());
100   return res;
101 }
102
103
104 /** Main function */
105 int main(int argc, char *argv[])
106 {
107   MSG_error_t res = MSG_OK;
108
109   MSG_global_init(&argc,argv);
110   if (argc < 3) {
111      printf ("Usage: %s platform_file deployment_file\n",argv[0]);
112      printf ("example: %s msg_platform.xml msg_deployment.xml\n",argv[0]);
113      exit(1);
114   }
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 */