Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
WIP stop using const char* in C++ layers
[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/sysdep.h>
9 #include <simgrid/modelchecker.h>
10
11 #include "src/mc/ModelChecker.hpp"
12 #include "src/mc/mc_ignore.h"
13 #include "src/mc/mc_private.h"
14 #include "src/mc/mc_record.h"
15 #include "src/mc/remote/Client.hpp"
16 #include "src/mc/remote/mc_protocol.h"
17
18 /** @file mc_client_api.cpp
19  *
20  *  This is the implementation of the API used by the user simulated program to
21  *  communicate with the MC (declared in modelchecker.h).
22  */
23
24 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_client_api, mc,
25   "Public API for the model-checked application");
26
27 // MC_random() is in mc_base.cpp
28
29 void MC_assert(int prop)
30 {
31   xbt_assert(mc_model_checker == nullptr);
32   if (MC_is_active() && !prop)
33     simgrid::mc::Client::get()->reportAssertionFailure();
34 }
35
36 void MC_cut(void)
37 {
38   xbt_assert(mc_model_checker == nullptr);
39   if (!MC_is_active())
40     return;
41   // FIXME, We want to do this in the model-checker:
42   xbt_die("MC_cut() not implemented");
43 }
44
45 void MC_ignore(void* addr, size_t size)
46 {
47   xbt_assert(mc_model_checker == nullptr);
48   if (!MC_is_active())
49     return;
50   simgrid::mc::Client::get()->ignoreMemory(addr, size);
51 }
52
53 void MC_automaton_new_propositional_symbol(const char *id, int(*fct)(void))
54 {
55   xbt_assert(mc_model_checker == nullptr);
56   if (!MC_is_active())
57     return;
58   xbt_die("Support for client-side function proposition is not implemented: "
59     "use MC_automaton_new_propositional_symbol_pointer instead.");
60 }
61
62 void MC_automaton_new_propositional_symbol_pointer(const char *name, int* value)
63 {
64   xbt_assert(mc_model_checker == nullptr);
65   if (!MC_is_active())
66     return;
67   simgrid::mc::Client::get()->declareSymbol(name, value);
68 }
69
70 /** @brief Register a stack in the model checker
71  *
72  *  The stacks are allocated in the heap. The MC handle them especially
73  *  when we analyze/compare the content of the heap so it must be told where
74  *  they are with this function.
75  *
76  *  @param stack
77  *  @param process Process owning the stack
78  *  @param context
79  *  @param size    Size of the stack
80  */
81 void MC_register_stack_area(void *stack, smx_actor_t process, ucontext_t* context, size_t size)
82 {
83   xbt_assert(mc_model_checker == nullptr);
84   if (!MC_is_active())
85     return;
86   simgrid::mc::Client::get()->declareStack(stack, size, process, context);
87 }
88
89 void MC_ignore_global_variable(const char *name)
90 {
91   xbt_assert(mc_model_checker == nullptr);
92   if (!MC_is_active())
93     return;
94   // TODO, send a message to the model_checker
95   xbt_die("Unimplemented");
96 }
97
98 void MC_ignore_heap(void *address, size_t size)
99 {
100   xbt_assert(mc_model_checker == nullptr);
101   if (!MC_is_active())
102     return;
103   simgrid::mc::Client::get()->ignoreHeap(address, size);
104 }
105
106 void MC_remove_ignore_heap(void *address, size_t size)
107 {
108   xbt_assert(mc_model_checker == nullptr);
109   if (!MC_is_active())
110     return;
111   simgrid::mc::Client::get()->unignoreHeap(address, size);
112 }