Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Second commit for cmake in an other directory.
[simgrid.git] / examples / msg / priority / priority.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"            /* Yeah! If you want to use msg, you need to 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,
16                              "Messages specific for this msg example");
17
18 static int test(int argc, char *argv[])
19 {
20   double computation_amount = 0.0;
21   double priority = 1.0;
22   m_task_t task = NULL;
23
24
25   xbt_assert1(sscanf(argv[1], "%lg", &computation_amount),
26               "Invalid argument %s\n", argv[1]);
27   xbt_assert1(sscanf(argv[2], "%lg", &priority),
28               "Invalid argument %s\n", argv[2]);
29
30   INFO2("Hello! Running a task of size %g with priority %g",
31         computation_amount, priority);
32   task = MSG_task_create("Task", computation_amount, 0.0, NULL);
33   MSG_task_set_priority(task, priority);
34
35   MSG_task_execute(task);
36
37
38   INFO0("Goodbye now!");
39   return 0;
40 }
41
42 static MSG_error_t test_all(const char *platform_file,
43                             const char *application_file)
44 {
45   MSG_error_t res = MSG_OK;
46
47   {                             /*  Simulation setting */
48     MSG_set_channel_number(1);
49     MSG_create_environment(platform_file);
50   }
51   {                             /*   Application deployment */
52     MSG_function_register("test", test);
53     MSG_launch_application(application_file);
54   }
55   res = MSG_main();
56
57   INFO1("Simulation time %g", MSG_get_clock());
58   return res;
59 }
60
61 int main(int argc, char *argv[])
62 {
63   MSG_error_t res = MSG_OK;
64
65 #ifdef _MSC_VER
66   unsigned int prev_exponent_format = _set_output_format(_TWO_DIGIT_EXPONENT);
67 #endif
68
69
70   MSG_global_init(&argc, argv);
71   if (argc < 3) {
72     printf("Usage: %s platform_file deployment_file\n", argv[0]);
73     printf("example: %s msg_platform.xml msg_deployment.xml\n", argv[0]);
74     exit(1);
75   }
76   res = test_all(argv[1], argv[2]);
77   MSG_clean();
78
79 #ifdef _MSC_VER
80   _set_output_format(prev_exponent_format);
81 #endif
82
83   if (res == MSG_OK)
84     return 0;
85   else
86     return 1;
87 }