Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
cfe0cbdd4f989de4ae50394b52ad994bef1f538d
[simgrid.git] / src / mc / mc_record.cpp
1 /* Copyright (c) 2014. 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 <stdlib.h>
9
10 #include <xbt.h>
11 #include <simgrid/simix.h>
12
13 #include "mc_record.h"
14 #include "mc_base.h"
15
16 #ifdef HAVE_MC
17 #include "mc_private.h"
18 #include "mc_model_checker.h"
19 #include "mc_state.h"
20 #include "mc_smx.h"
21 #endif
22
23 extern "C" {
24
25 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_record, mc,
26   " Logging specific to MC record/replay facility");
27
28 char* MC_record_path = NULL;
29
30 void MC_record_replay(mc_record_item_t start, size_t len)
31 {
32   MC_wait_for_requests();
33   mc_record_item_t end = start + len;
34
35   // Choose the recorded simcall and execute it:
36   for (mc_record_item_t item=start;item!=end; ++item) {
37
38     XBT_DEBUG("Executing %i$%i", item->pid, item->value);
39 /*
40     if (xbt_dynar_is_empty(simix_global->process_to_run))
41       xbt_die("Unexpected end of application.");
42 */
43
44     // Choose a request:
45     smx_process_t process = SIMIX_process_from_PID(item->pid);
46     if (!process)
47       xbt_die("Unexpected process.");
48     smx_simcall_t simcall = &(process->simcall);
49     if(!simcall || simcall->call == SIMCALL_NONE)
50       xbt_die("No simcall for this process.");
51     if (!MC_request_is_visible(simcall) || !MC_request_is_enabled(simcall))
52       xbt_die("Unexpected simcall.");
53
54     // Execute the request:
55     SIMIX_simcall_handle(simcall, item->value);
56     MC_wait_for_requests();
57   }
58 }
59
60 xbt_dynar_t MC_record_from_string(const char* data)
61 {
62   XBT_INFO("path=%s", data);
63   if (!data || !data[0])
64     return NULL;
65
66   xbt_dynar_t dynar = xbt_dynar_new(sizeof(s_mc_record_item_t), NULL);
67
68   const char* current = data;
69   while (*current) {
70
71     s_mc_record_item_t item = { 0, 0 };
72     int count = sscanf(current, "%u/%u", &item.pid, &item.value);
73     if(count != 2 && count != 1)
74       goto fail;
75     xbt_dynar_push(dynar, &item);
76
77     // Find next chunk:
78     const char* end = strchr(current, ';');
79     if(end==NULL)
80       break;
81     else
82       current = end + 1;
83   }
84
85   return dynar;
86
87 fail:
88   xbt_dynar_free(&dynar);
89   return NULL;
90 }
91
92 #ifdef HAVE_MC
93 char* MC_record_stack_to_string(xbt_fifo_t stack)
94 {
95   xbt_fifo_item_t start = xbt_fifo_get_last_item(stack);
96
97   if (!start) {
98     char* res = (char*) malloc(1 * sizeof(char));
99     res[0] = '\0';
100     return res;
101   }
102
103   char* buffer;
104   size_t size;
105   FILE* file = open_memstream(&buffer, &size);
106
107   xbt_fifo_item_t item;
108   for (item = start; item; item = xbt_fifo_get_prev_item(item)) {
109
110     // Find (pid, value):
111     mc_state_t state = (mc_state_t) xbt_fifo_get_item_content(item);
112     int value = 0;
113     smx_simcall_t saved_req = MC_state_get_executed_request(state, &value);
114     const smx_process_t issuer = MC_smx_simcall_get_issuer(saved_req);
115     const int pid = issuer->pid;
116
117     // Serialization the (pid, value) pair:
118     const char* sep = (item!=start) ? ";" : "";
119     if (value)
120       fprintf(file, "%s%u/%u", sep, pid, value);
121     else
122       fprintf(file, "%s%u", sep, pid);
123   }
124
125   fclose(file);
126   return buffer;
127 }
128
129 void MC_record_dump_path(xbt_fifo_t stack)
130 {
131   if (MC_record_is_active()) {
132     char* path = MC_record_stack_to_string(stack);
133     XBT_INFO("Path = %s", path);
134     free(path);
135   }
136 }
137 #endif
138
139 void MC_record_replay_from_string(const char* path_string)
140 {
141   xbt_dynar_t path = MC_record_from_string(path_string);
142   mc_record_item_t start = &xbt_dynar_get_as(path, 0, s_mc_record_item_t);
143   MC_record_replay(start, xbt_dynar_length(path));
144   xbt_dynar_free(&path);
145 }
146
147 void MC_record_replay_init()
148 {
149   mc_time = xbt_new0(double, simix_process_maxpid);
150 }
151
152 }