Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
ccf0ac425d55e0fb22fae6d62d51096e59013244
[simgrid.git] / examples / msg / icomms / peer.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"            /* Yeah! If you want to use msg, you need to 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 sender(int argc, char *argv[]);
18 int receiver(int argc, char *argv[]);
19
20 MSG_error_t test_all(const char *platform_file,
21                      const char *application_file);
22
23 /** Sender function  */
24 int sender(int argc, char *argv[])
25 {
26   long number_of_tasks = atol(argv[1]);
27   double task_comp_size = atof(argv[2]);
28   double task_comm_size = atof(argv[3]);
29   long receivers_count = atol(argv[4]);
30   double sleep_start_time = atof(argv[5]);
31   double sleep_test_time = atof(argv[6]);
32
33   INFO2("sleep_start_time : %f , sleep_test_time : %f", sleep_start_time,
34         sleep_test_time);
35
36   msg_comm_t comm = NULL;
37   int i;
38   m_task_t task = NULL;
39   MSG_process_sleep(sleep_start_time);
40   for (i = 0; i < number_of_tasks; i++) {
41     char mailbox[256];
42     char sprintf_buffer[256];
43
44     sprintf(mailbox, "receiver-%ld", i % receivers_count);
45     sprintf(sprintf_buffer, "Task_%d", i);
46
47     task =
48         MSG_task_create(sprintf_buffer, task_comp_size, task_comm_size,
49                         NULL);
50     comm = MSG_task_isend(task, mailbox);
51     INFO2("Send to receiver-%ld Task_%d", i % receivers_count, i);
52
53     if (sleep_test_time == 0) {
54       MSG_comm_wait(comm, -1);
55     } else {
56       while (MSG_comm_test(comm) == 0) {
57         MSG_process_sleep(sleep_test_time);
58       };
59       MSG_comm_destroy(comm);
60     }
61
62   }
63
64   for (i = 0; i < receivers_count; i++) {
65     char mailbox[80];
66     sprintf(mailbox, "receiver-%ld", i % receivers_count);
67     task = MSG_task_create("finalize", 0, 0, 0);
68     comm = MSG_task_isend(task, mailbox);
69     INFO1("Send to receiver-%ld finalize", i % receivers_count);
70     if (sleep_test_time == 0) {
71       MSG_comm_wait(comm, -1);
72     } else {
73       while (MSG_comm_test(comm) == 0) {
74         MSG_process_sleep(sleep_test_time);
75       };
76       MSG_comm_destroy(comm);
77     }
78
79   }
80
81   INFO0("Goodbye now!");
82   return 0;
83 }                               /* end_of_sender */
84
85 /** Receiver function  */
86 int receiver(int argc, char *argv[])
87 {
88   m_task_t task = NULL;
89   MSG_error_t res;
90   int id = -1;
91   char mailbox[80];
92   msg_comm_t res_irecv;
93   double sleep_start_time = atof(argv[2]);
94   double sleep_test_time = atof(argv[3]);
95   INFO2("sleep_start_time : %f , sleep_test_time : %f", sleep_start_time,
96         sleep_test_time);
97
98   xbt_assert1(sscanf(argv[1], "%d", &id),
99               "Invalid argument %s\n", argv[1]);
100
101   MSG_process_sleep(sleep_start_time);
102
103   sprintf(mailbox, "receiver-%d", id);
104   while (1) {
105     res_irecv = MSG_task_irecv(&(task), mailbox);
106     INFO0("Wait to receive a task");
107
108     if (sleep_test_time == 0) {
109       res = MSG_comm_wait(res_irecv, -1);
110       xbt_assert0(res == MSG_OK, "MSG_task_get failed");
111     } else {
112       while (MSG_comm_test(res_irecv) == 0) {
113         MSG_process_sleep(sleep_test_time);
114       };
115       MSG_comm_destroy(res_irecv);
116     }
117
118     INFO1("Received \"%s\"", MSG_task_get_name(task));
119     if (!strcmp(MSG_task_get_name(task), "finalize")) {
120       MSG_task_destroy(task);
121       break;
122     }
123
124     INFO1("Processing \"%s\"", MSG_task_get_name(task));
125     MSG_task_execute(task);
126     INFO1("\"%s\" done", MSG_task_get_name(task));
127     MSG_task_destroy(task);
128     task = NULL;
129   }
130   INFO0("I'm done. See you!");
131   return 0;
132 }                               /* end_of_receiver */
133
134 /** Test function */
135 MSG_error_t test_all(const char *platform_file,
136                      const char *application_file)
137 {
138   MSG_error_t res = MSG_OK;
139
140   /* MSG_config("workstation/model","KCCFLN05"); */
141   {                             /*  Simulation setting */
142     MSG_set_channel_number(0);
143     MSG_create_environment(platform_file);
144   }
145   {                             /*   Application deployment */
146     MSG_function_register("sender", sender);
147     MSG_function_register("receiver", receiver);
148     MSG_launch_application(application_file);
149   }
150   res = MSG_main();
151
152   INFO1("Simulation time %g", MSG_get_clock());
153   return res;
154 }                               /* end_of_test_all */
155
156
157 /** Main function */
158 int main(int argc, char *argv[])
159 {
160   MSG_error_t res = MSG_OK;
161
162   MSG_global_init(&argc, argv);
163   if (argc < 3) {
164     printf("Usage: %s platform_file deployment_file\n", argv[0]);
165     printf("example: %s msg_platform.xml msg_deployment.xml\n", argv[0]);
166     exit(1);
167   }
168   res = test_all(argv[1], argv[2]);
169   SIMIX_message_sizes_output("toto.txt");
170   MSG_clean();
171
172   if (res == MSG_OK)
173     return 0;
174   else
175     return 1;
176 }                               /* end_of_main */