Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[mc] Add missing copyright notices (and update)
[simgrid.git] / src / mc / ModelChecker.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 <cassert>
8
9 #include "ModelChecker.hpp"
10 #include "PageStore.hpp"
11
12 ::simgrid::mc::ModelChecker* mc_model_checker = NULL;
13
14 namespace simgrid {
15 namespace mc {
16
17 ModelChecker::ModelChecker(pid_t pid, int socket)
18   : page_store_(500)
19 {
20   this->hostnames_ = xbt_dict_new();
21   MC_process_init(&this->process(), pid, socket);
22 }
23
24 ModelChecker::~ModelChecker()
25 {
26   MC_process_clear(&this->process_);
27   xbt_dict_free(&this->hostnames_);
28 }
29
30 const char* ModelChecker::get_host_name(const char* hostname)
31 {
32   // Lookup the host name in the dictionary (or create it):
33   xbt_dictelm_t elt = xbt_dict_get_elm_or_null(this->hostnames_, hostname);
34   if (!elt) {
35     xbt_mheap_t heap = mmalloc_set_current_heap(mc_heap);
36     xbt_dict_set(this->hostnames_, hostname, NULL, NULL);
37     elt = xbt_dict_get_elm_or_null(this->hostnames_, hostname);
38     assert(elt);
39     mmalloc_set_current_heap(heap);
40   }
41   return elt->key;
42 }
43
44 }
45 }