Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Removed master message to improve output readability.
[simgrid.git] / examples / msg / gtnets / gtnets.c
1 /* Copyright (c) 2007, 2008, 2009, 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 <stdlib.h>
9 #include "msg/msg.h"
10 #include "xbt/log.h"
11 #include "xbt/asserts.h"
12
13 XBT_LOG_NEW_DEFAULT_CATEGORY(msg_test,
14                              "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,
19                      const char *application_file);
20
21 typedef enum {
22   PORT_22 = 0,
23   MAX_CHANNEL
24 } channel_t;
25
26 //keep a pointer to all surf running tasks.
27 #define NTASKS 1500
28 int bool_printed = 0;
29 double start_time, end_time, elapsed_time;
30 double gl_data_size[NTASKS];
31 m_task_t gl_task_array[NTASKS];
32 const char *slavenames[NTASKS];
33 const char *masternames[NTASKS];
34 int gl_task_array_id = 0;
35
36 #define FINALIZE ((void*)221297)        /* a magic number to tell people to stop working */
37
38 /** master */
39 int master(int argc, char *argv[])
40 {
41   char *slavename = NULL;
42   double task_comm_size = 0;
43   m_task_t todo;
44   m_host_t slave;
45   char id_alias[10];
46   //unique id to control statistics
47   int id = -1;
48
49   if (argc != 4) {
50     INFO1("Strange number of arguments expected 3 got %d", argc - 1);
51   }
52
53   /* data size */
54   xbt_assert1(sscanf(argv[1], "%lg", &task_comm_size),
55               "Invalid argument %s\n", argv[1]);
56
57   /* slave name */
58   slavename = argv[2];
59   id = atoi(argv[3]);
60   sprintf(id_alias, "flow_%d", id);
61   slavenames[id] = slavename;
62   TRACE_category(id_alias);
63
64   masternames[id] = MSG_host_get_name(MSG_host_self());
65
66   {                             /*  Task creation.  */
67     char sprintf_buffer[64] = "Task_0";
68     todo = MSG_task_create(sprintf_buffer, 0, task_comm_size, NULL);
69     TRACE_msg_set_task_category(todo, id_alias);
70     //keep track of running tasks
71     gl_task_array[id] = todo;
72     gl_data_size[id] = task_comm_size;
73   }
74
75   {                             /* Process organisation */
76     slave = MSG_get_host_by_name(slavename);
77   }
78
79   /* time measurement */
80   sprintf(id_alias, "%d", id);
81   start_time = MSG_get_clock();
82   MSG_task_send(todo, id_alias);
83   end_time = MSG_get_clock();
84
85
86   return 0;
87 }                               /* end_of_master */
88
89 /** Receiver function  */
90 int slave(int argc, char *argv[])
91 {
92
93   m_task_t task = NULL;
94   int a;
95   int id = 0;
96 #ifdef HAVE_LATENCY_BOUND_TRACKING
97   int limited_latency = 0;
98 #endif
99   double remaining = 0;
100   char id_alias[10];
101
102   if (argc != 2) {
103     INFO1("Strange number of arguments expected 1 got %d", argc - 1);
104   }
105
106   id = atoi(argv[1]);
107   sprintf(id_alias, "%d", id);
108   int trace_id = id;
109
110   a = MSG_task_receive(&(task), id_alias);
111
112   if (a != MSG_OK) {
113     INFO0("Hey?! What's up?");
114     xbt_assert0(0, "Unexpected behavior.");
115   }
116
117   elapsed_time = MSG_get_clock() - start_time;
118   
119   
120   if (!bool_printed) {
121     bool_printed = 1;
122     
123     for (id = 0; id < NTASKS; id++) {
124       if (gl_task_array[id] == NULL) {
125       } else if (gl_task_array[id] == task) {
126 #ifdef HAVE_LATENCY_BOUND_TRACKING
127         limited_latency = MSG_task_is_latency_bounded(gl_task_array[id]);
128         if (limited_latency) {
129           INFO1("WARNING FLOW[%d] is limited by latency!!", id);
130         }
131 #endif
132         INFO5
133             ("===> Estimated Bw of FLOW[%d] : %f ;  message from %s to %s  with remaining : %f",
134              id, gl_data_size[id] / elapsed_time, masternames[id],
135              slavenames[id], 0.0);
136       } else {
137         remaining =
138             MSG_task_get_remaining_communication(gl_task_array[id]);
139 #ifdef HAVE_LATENCY_BOUND_TRACKING
140         limited_latency = MSG_task_is_latency_bounded(gl_task_array[id]);
141
142         if (limited_latency) {
143           INFO1("WARNING FLOW[%d] is limited by latency!!", id);
144         }
145 #endif
146         INFO5
147             ("===> Estimated Bw of FLOW[%d] : %f ;  message from %s to %s  with remaining : %f",
148              id, (gl_data_size[id] - remaining) / elapsed_time,
149              masternames[id], slavenames[id], remaining);
150       }
151
152     }
153   }
154   char mark[100];
155   snprintf(mark, 100, "flow_%d_finished", trace_id);
156   TRACE_mark("endmark", mark);
157
158   MSG_task_destroy(task);
159   return 0;
160 }                               /* end_of_slave */
161
162 /** Test function */
163 MSG_error_t test_all(const char *platform_file,
164                      const char *application_file)
165 {
166   MSG_error_t res = MSG_OK;
167
168   /* MSG_config("workstation/model", "GTNETS"); */
169   /* MSG_config("workstation/model","KCCFLN05"); */
170   {                             /*  Simulation setting */
171     MSG_set_channel_number(MAX_CHANNEL);
172     MSG_create_environment(platform_file);
173   }
174   {                             /*   Application deployment */
175     MSG_function_register("master", master);
176     MSG_function_register("slave", slave);
177     MSG_launch_application(application_file);
178   }
179   res = MSG_main();
180   return res;
181 }                               /* end_of_test_all */
182
183 /** Main function */
184 int main(int argc, char *argv[])
185 {
186   MSG_error_t res = MSG_OK;
187   bool_printed = 0;
188
189   MSG_global_init(&argc, argv);
190   if (argc < 3) {
191     printf("Usage: %s platform_file deployment_file\n", argv[0]);
192     exit(1);
193   }
194
195   TRACE_declare_mark("endmark");
196
197   res = test_all(argv[1], argv[2]);
198
199   MSG_clean();
200
201   if (res == MSG_OK)
202     return 0;
203   else
204     return 1;
205 }                               /* end_of_main */