Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
d2f564711a14be5e786088e81c5b9b45dc03ccce
[simgrid.git] / examples / msg / tracing / procmig.c
1 /* Copyright (c) 2009 The SimGrid team. All rights reserved.                */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #include "msg/msg.h"            /* core library */
7 #include "xbt/sysdep.h"         /* calloc */
8
9 /* Create a log channel to have nice outputs. */
10 #include "xbt/log.h"
11 XBT_LOG_NEW_DEFAULT_CATEGORY(msg_test,
12                              "Messages specific for this msg example");
13
14 /** The guy we will move from host to host. It move alone and then is moved by policeman back  */
15 static int emigrant(int argc, char *argv[])
16 {
17   m_task_t task = NULL;
18   char *destination = NULL;
19
20   MSG_process_sleep(2);
21
22   while (1){ // I am an eternal emigrant
23     MSG_task_receive(&(task), "master_mailbox");
24     destination = (char*)MSG_task_get_data (task);
25     MSG_task_destroy (task);
26     if (!destination) break; //there is no destination, die
27     XBT_INFO("Migrating to %s", destination);
28     MSG_process_migrate(MSG_process_self(), MSG_get_host_by_name(destination));
29     MSG_process_sleep(2); // I am tired, have to sleep for 2 seconds
30     free (destination);
31     task = NULL;
32   }
33   return 0;
34 }
35
36 static int master(int argc, char *argv[])
37 {
38   m_task_t task = NULL;
39
40   // I am the master of emigrant process,
41   // I tell it where it must emigrate to.
42   xbt_dynar_t destinations = xbt_dynar_new (sizeof(char*), &xbt_free_ref);
43   xbt_dynar_push_as (destinations, char*, xbt_strdup ("Tremblay"));
44   xbt_dynar_push_as (destinations, char*, xbt_strdup ("Jupiter"));
45   xbt_dynar_push_as (destinations, char*, xbt_strdup ("Fafard"));
46   xbt_dynar_push_as (destinations, char*, xbt_strdup ("Ginette"));
47   xbt_dynar_push_as (destinations, char*, xbt_strdup ("Bourassa"));
48   xbt_dynar_push_as (destinations, char*, xbt_strdup ("Fafard"));
49   xbt_dynar_push_as (destinations, char*, xbt_strdup ("Tremblay"));
50   xbt_dynar_push_as (destinations, char*, xbt_strdup ("Ginette"));
51   xbt_dynar_push_as (destinations, char*, NULL);
52
53   char *destination;
54   unsigned int i;
55   xbt_dynar_foreach(destinations, i, destination){
56     task = MSG_task_create("task", 0, 0, NULL);
57     if (destination){
58       MSG_task_set_data(task, xbt_strdup (destination));
59     }
60     TRACE_msg_set_task_category(task, "migration_order");
61     MSG_task_send (task, "master_mailbox");
62     task = NULL;
63   }
64   xbt_dynar_free (&destinations);
65   return 0;
66 }
67
68 /** Main function */
69 int main(int argc, char *argv[])
70 {
71   MSG_error_t res = MSG_OK;
72
73   /* Argument checking */
74   MSG_global_init(&argc, argv);
75   if (argc < 3) {
76     XBT_CRITICAL("Usage: %s platform_file deployment_file\n", argv[0]);
77     exit(1);
78   }
79
80   char *platform_file = argv[1];
81   char *deployment_file = argv[2];
82   MSG_create_environment(platform_file);
83
84   TRACE_category ("migration_order");
85
86   /* Application deployment */
87   MSG_function_register("emigrant", emigrant);
88   MSG_function_register("master", master);
89   MSG_launch_application(deployment_file);
90
91   MSG_main();
92   MSG_clean();
93   return 0;
94 }                               /* end_of_main */