Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
kill that example
[simgrid.git] / examples / simdag / dot / simulate_dot.c
1 /* simple test trying to load a DOT file.                                   */
2
3 /* Copyright (c) 2010-2016. The SimGrid Team.
4  * All rights reserved.                                                     */
5
6 /* This program is free software; you can redistribute it and/or modify it
7  * under the terms of the license (GNU LGPL) which comes with this package. */
8
9 #include <stdio.h>
10 #include "simgrid/simdag.h"
11 #include <string.h>
12 #include <libgen.h>
13
14 XBT_LOG_NEW_DEFAULT_CATEGORY(test, "Logging specific to this SimDag example");
15
16 int main(int argc, char **argv)
17 {
18   xbt_dynar_t dot;
19   unsigned int cursor;
20   SD_task_t task;
21
22   /* initialization of SD */
23   SD_init(&argc, argv);
24
25   /* Check our arguments */
26   xbt_assert(argc > 2, "Usage: %s platform_file dot_file [trace_file]"
27              "example: %s ../2clusters.xml dag.dot dag.mytrace", argv[0], argv[0]);
28
29   /* creation of the environment */
30   SD_create_environment(argv[1]);
31
32   /* load the DOT file  and schedule tasks */
33   dot = SD_dotload_with_sched(argv[2]);
34   if(!dot){
35     XBT_CRITICAL("The dot file with the provided scheduling is wrong,"
36                  " more information with the option : --log=sd_dotparse.thres:verbose");
37     SD_exit();
38     exit(2);
39   }
40
41   char *tracefilename;
42   char *last = strrchr(argv[2], '.');
43   tracefilename = bprintf("%.*s.trace", (int) (last == NULL ? strlen(argv[2]) : last - argv[2]),argv[2]);
44   if (argc == 4)
45     tracefilename = xbt_strdup(argv[3]);
46
47   /* Display all the tasks */
48   XBT_INFO("------------------- Display all tasks of the loaded DAG ---------------------------");
49   xbt_dynar_foreach(dot, cursor, task) {
50     SD_task_dump(task);
51   }
52
53   XBT_INFO("------------------- Run the schedule ---------------------------");
54   SD_simulate(-1);
55
56   XBT_INFO("------------------- Produce the trace file---------------------------");
57   XBT_INFO("Producing the trace of the run into %s", basename(tracefilename));
58   FILE *out = fopen(tracefilename, "w");
59   xbt_assert(out, "Cannot write to %s", tracefilename);
60   free(tracefilename);
61
62   xbt_dynar_foreach(dot, cursor, task) {
63     int kind = SD_task_get_kind(task);
64     sg_host_t *wsl = SD_task_get_workstation_list(task);
65     switch (kind) {
66     case SD_TASK_COMP_SEQ:
67       fprintf(out, "[%f->%f] %s compute %f flops # %s\n",
68           SD_task_get_start_time(task), SD_task_get_finish_time(task),
69           sg_host_get_name(wsl[0]), SD_task_get_amount(task), SD_task_get_name(task));
70       break;
71     case SD_TASK_COMM_E2E:
72       fprintf(out, "[%f -> %f] %s -> %s transfer of %.0f bytes # %s\n",
73           SD_task_get_start_time(task), SD_task_get_finish_time(task),
74           sg_host_get_name(wsl[0]), sg_host_get_name(wsl[1]), SD_task_get_amount(task), SD_task_get_name(task));
75       break;
76     default:
77       xbt_die("Task %s is of unknown kind %d", SD_task_get_name(task), SD_task_get_kind(task));
78     }
79     SD_task_destroy(task);
80   }
81   fclose(out);
82   xbt_dynar_free_container(&dot);
83
84   /* exit */
85   SD_exit();
86   return 0;
87 }