Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[mc] FIXME MC_cut()
[simgrid.git] / src / mc / mc_client_api.cpp
1 /* Copyright (c) 2008-2015. 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 <xbt/log.h>
8 #include <xbt/fifo.h>
9 #include <xbt/sysdep.h>
10 #include <simgrid/modelchecker.h>
11
12 #include "src/mc/mc_record.h"
13 #include "src/mc/mc_private.h"
14 #include "src/mc/mc_ignore.h"
15 #include "src/mc/mc_protocol.h"
16 #include "src/mc/Client.hpp"
17 #include "src/mc/ModelChecker.hpp"
18
19 /** \file mc_client_api.cpp
20  *
21  *  This is the implementation of the API used by the user simulated program to
22  *  communicate with the MC (declared in modelchecker.h).
23  */
24
25 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_client_api, mc,
26   "Public API for the model-checked application");
27
28 // MC_random() is in mc_base.cpp
29
30 void MC_assert(int prop)
31 {
32   if (MC_is_active() && !prop) {
33     if (simgrid::mc::Client::get()->getChannel().send(MC_MESSAGE_ASSERTION_FAILED))
34       xbt_die("Could not send assertion to model-checker");
35     simgrid::mc::Client::get()->handleMessages();
36   }
37 }
38
39 void MC_cut(void)
40 {
41   // FIXME, this is a function called in the model-checked
42   // but the variable must be set in the model-checker.
43   // We should send a message here instead.
44   user_max_depth_reached = 1;
45 }
46
47 void MC_ignore(void* addr, size_t size)
48 {
49   xbt_assert(mc_mode != MC_MODE_SERVER);
50   if (mc_mode != MC_MODE_CLIENT)
51     return;
52
53   s_mc_ignore_memory_message_t message;
54   message.type = MC_MESSAGE_IGNORE_MEMORY;
55   message.addr = (std::uintptr_t) addr;
56   message.size = size;
57   if (simgrid::mc::Client::get()->getChannel().send(message))
58     xbt_die("Could not send IGNORE_MEMORY mesage to model-checker");
59 }
60
61 void MC_automaton_new_propositional_symbol(const char *id, int(*fct)(void))
62 {
63   xbt_assert(mc_mode != MC_MODE_SERVER);
64   if (mc_mode != MC_MODE_CLIENT)
65     return;
66
67   xbt_die("Support for client-side function proposition is not implemented: "
68     "use MC_automaton_new_propositional_symbol_pointer instead."
69   );
70 }
71
72 void MC_automaton_new_propositional_symbol_pointer(const char *name, int* value)
73 {
74   xbt_assert(mc_mode != MC_MODE_SERVER);
75   if (mc_mode != MC_MODE_CLIENT)
76     return;
77
78   s_mc_register_symbol_message_t message;
79   message.type = MC_MESSAGE_REGISTER_SYMBOL;
80   if (strlen(name) + 1 > sizeof(message.name))
81     xbt_die("Symbol is too long");
82   strncpy(message.name, name, sizeof(message.name));
83   message.callback = nullptr;
84   message.data = value;
85   if (simgrid::mc::Client::get()->getChannel().send(message))
86     xbt_die("Could send REGISTER_SYMBOL message to model-checker");
87 }