Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix use after free when using SIMIX_network_wait().
[simgrid.git] / examples / msg / icomms / peer3.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 #include <math.h>
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   int diff_com = atol(argv[5]);
31   double coef = 0;
32   xbt_dynar_t d = NULL;
33   int i;
34   m_task_t task = NULL;
35   char mailbox[256];
36   char sprintf_buffer[256];
37   d = xbt_dynar_new(sizeof(msg_comm_t), NULL);
38   msg_comm_t *comm =
39       malloc((number_of_tasks + receivers_count) * sizeof(msg_comm_t));
40   msg_comm_t res_irecv = NULL;
41   for (i = 0; i < (number_of_tasks); i++) {
42     task = NULL;
43     if (diff_com == 0)
44       coef = 1;
45     else
46       coef = (i + 1);
47
48     sprintf(mailbox, "receiver-%ld", (i % receivers_count));
49     sprintf(sprintf_buffer, "Task_%d", i);
50     task =
51         MSG_task_create(sprintf_buffer, task_comp_size,
52                         task_comm_size / coef, NULL);
53     comm[i] = MSG_task_isend(task, mailbox);
54     MSG_task_refcount_dec(task);
55     xbt_dynar_push_as(d, msg_comm_t, comm[i]);
56     INFO3("Send to receiver-%ld %s comm_size %f", i % receivers_count,
57           sprintf_buffer, task_comm_size / coef);
58   }
59   /* Here we are waiting for the completion of all communications */
60
61   while (d->used) {
62     xbt_dynar_remove_at(d, MSG_comm_waitany(d), &res_irecv);
63   }
64   xbt_dynar_free(&d);
65
66
67   /* Here we are waiting for the completion of all tasks */
68   sprintf(mailbox, "finalize");
69
70   for (i = 0; i < receivers_count; i++) {
71     task = NULL;
72     res_irecv = NULL;
73     res_irecv = MSG_task_irecv(&(task), mailbox);
74     xbt_assert0(MSG_comm_wait(res_irecv, -1) == MSG_OK,
75                 "MSG_comm_wait failed");
76     MSG_task_destroy(task);
77   }
78
79   INFO0("Goodbye now!");
80   return 0;
81 }                               /* end_of_sender */
82
83 /** Receiver function  */
84 int receiver(int argc, char *argv[])
85 {
86   int id = -1;
87   int i;
88   char mailbox[80];
89   xbt_dynar_t comms = NULL;
90   int tasks = atof(argv[2]);
91   comms = xbt_dynar_new(sizeof(msg_comm_t), NULL);
92
93   xbt_assert1(sscanf(argv[1], "%d", &id),
94               "Invalid argument %s\n", argv[1]);
95   sprintf(mailbox, "receiver-%d", id);
96   MSG_process_sleep(10);
97   msg_comm_t res_irecv = NULL;
98   m_task_t task = NULL;
99   m_task_t task_com = NULL;
100   for (i = 0; i < tasks; i++) {
101     INFO1("Wait to receive task %d", i);
102     res_irecv = MSG_task_irecv(&task, mailbox);
103     xbt_dynar_push_as(comms, msg_comm_t, res_irecv);
104     task = NULL;
105     res_irecv = NULL;
106   }
107
108   /* Here we are waiting for the receiving of all communications */
109   while (comms->used) {
110     task_com = NULL;
111     res_irecv = NULL;
112     MSG_error_t err = MSG_OK;
113     int num = MSG_comm_waitany(comms);
114     xbt_dynar_remove_at(comms, num, &res_irecv);
115     task_com = MSG_comm_get_task(res_irecv);
116     INFO1("Processing \"%s\"", MSG_task_get_name(task_com));
117     MSG_task_execute(task_com);
118     INFO1("\"%s\" done", MSG_task_get_name(task_com));
119     err = MSG_task_destroy(task_com);
120     xbt_assert0(err == MSG_OK, "MSG_task_destroy failed");
121   }
122   xbt_dynar_free(&comms);
123
124   /* Here we tell to sender that all tasks are done */
125   sprintf(mailbox, "finalize");
126   res_irecv = MSG_task_isend(MSG_task_create(NULL, 0, 0, NULL), mailbox);
127   MSG_comm_wait(res_irecv, -1);
128   INFO0("I'm done. See you!");
129   return 0;
130 }                               /* end_of_receiver */
131
132 /** Test function */
133 MSG_error_t test_all(const char *platform_file,
134                      const char *application_file)
135 {
136   MSG_error_t res = MSG_OK;
137
138   /* MSG_config("workstation/model","KCCFLN05"); */
139   {                             /*  Simulation setting */
140     MSG_set_channel_number(0);
141     MSG_create_environment(platform_file);
142   }
143   {                             /*   Application deployment */
144     MSG_function_register("sender", sender);
145     MSG_function_register("receiver", receiver);
146     MSG_launch_application(application_file);
147   }
148   res = MSG_main();
149
150   INFO1("Simulation time %g", MSG_get_clock());
151   return res;
152 }                               /* end_of_test_all */
153
154
155 /** Main function */
156 int main(int argc, char *argv[])
157 {
158   MSG_error_t res = MSG_OK;
159
160   MSG_global_init(&argc, argv);
161   if (argc < 3) {
162     printf("Usage: %s platform_file deployment_file\n", argv[0]);
163     printf("example: %s msg_platform.xml msg_deployment.xml\n", argv[0]);
164     exit(1);
165   }
166   res = test_all(argv[1], argv[2]);
167   SIMIX_message_sizes_output("toto.txt");
168   MSG_clean();
169
170   if (res == MSG_OK)
171     return 0;
172   else
173     return 1;
174 }                               /* end_of_main */