Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
eff376117828ce7ff6999602d6805e69388fdbc5
[simgrid.git] / examples / msg / tracing / categories.c
1 /*      $Id$     */
2
3 /* Copyright (c) 2002,2003,2004 Arnaud Legrand. All rights reserved.        */
4
5 /* This program is free software; you can redistribute it and/or modify it
6  * under the terms of the license (GNU LGPL) which comes with this package. */
7
8 #include <stdio.h>
9 #include "msg/msg.h"
10 #include "xbt/sysdep.h" /* calloc, printf */
11
12 /* Create a log channel to have nice outputs. */
13 #include "xbt/log.h"
14 #include "xbt/asserts.h"
15 XBT_LOG_NEW_DEFAULT_CATEGORY(msg_test,"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, const char *application_file);
20
21 /** Emitter function  */
22 int master(int argc, char *argv[])
23 {
24   long number_of_tasks = atol(argv[1]);
25   long slaves_count = atol(argv[4]);
26
27   int i;
28   for (i = 0; i < number_of_tasks; i++) {
29     m_task_t task = NULL;
30
31     //creating task and setting its category
32     if (i%2){
33       task = MSG_task_create ("task_compute", 10000000, 0, NULL);
34       TRACE_msg_set_task_category (task, "compute");
35     }else if (i%3){
36       task = MSG_task_create ("task_request", 10, 10, NULL);
37       TRACE_msg_set_task_category (task, "request");
38     }else{
39       task = MSG_task_create ("task_data", 10, 10000000, NULL);
40       TRACE_msg_set_task_category (task, "data");
41     }
42     MSG_task_send(task, "master_mailbox");
43   }
44   
45    for (i = 0; i < slaves_count; i++) { 
46      m_task_t finalize = MSG_task_create ("finalize", 0, 1000, 0);
47      TRACE_msg_set_task_category(finalize, "finalize");
48      MSG_task_send(finalize, "master_mailbox");
49    } 
50   
51   return 0;
52 }
53
54 /** Receiver function  */
55 int slave(int argc, char *argv[])
56 {
57   m_task_t task = NULL;
58   int res;
59
60   while(1) {
61     res = MSG_task_receive(&(task), "master_mailbox");
62
63     if (!strcmp(MSG_task_get_name(task),"finalize")) {
64       MSG_task_destroy(task);
65         break;
66     }
67
68     MSG_task_execute(task);
69     MSG_task_destroy(task);
70     task = NULL;
71   }
72   return 0;
73 }
74
75 /** Test function */
76 MSG_error_t test_all(const char *platform_file,
77                             const char *application_file)
78 {
79   MSG_error_t res = MSG_OK;
80
81   {                             /*  Simulation setting */
82     MSG_set_channel_number(0);
83     MSG_create_environment(platform_file);
84   }
85   {                            /*   Application deployment */
86     MSG_function_register("master", master);
87     MSG_function_register("slave", slave);
88     MSG_launch_application(application_file);
89   }
90   res = MSG_main();
91   
92   INFO1("Simulation time %g",MSG_get_clock());
93   return res;
94 }
95
96
97 /** Main function */
98 int main(int argc, char *argv[])
99 {
100   MSG_error_t res = MSG_OK;
101
102   //starting the simulation tracing
103   TRACE_start ("categories.trace");
104
105   //declaring user categories
106   TRACE_category ("compute");
107   TRACE_category ("request");
108   TRACE_category ("data");
109   TRACE_category ("finalize");
110
111   MSG_global_init(&argc,argv);
112   if (argc < 3) {
113      printf ("Usage: %s platform_file deployment_file\n",argv[0]);
114      printf ("example: %s msg_platform.xml msg_deployment.xml\n",argv[0]);
115      exit(1);
116   }
117   res = test_all(argv[1],argv[2]);
118   MSG_clean();
119
120   //ending the simulation tracing
121   TRACE_end();
122
123   if(res==MSG_OK)
124     return 0;
125   else
126     return 1;
127 } /* end_of_main */