Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'actor-priority' of https://github.com/Takishipp/simgrid into Takishipp...
[simgrid.git] / src / surf / xml / platf.hpp
1 /* Copyright (c) 2006-2017. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #ifndef SURF_SURFXML_PARSE_HPP
7 #define SURF_SURFXML_PARSE_HPP
8
9 #include <xbt/signal.hpp>
10
11 extern "C" {
12
13 /* Module management functions */
14 XBT_PUBLIC(void) sg_platf_init();;
15 XBT_PUBLIC(void) sg_platf_exit();
16
17 XBT_PUBLIC(void) surf_parse_open(const char *file);
18 XBT_PUBLIC(void) surf_parse_close();
19 XBT_PUBLIC(void) surf_parse_assert(bool cond, std::string msg);
20 XBT_ATTRIB_NORETURN XBT_PUBLIC(void) surf_parse_error(std::string msg);
21 XBT_PUBLIC(void) surf_parse_assert_netpoint(std::string hostname, std::string pre, std::string post);
22 XBT_PUBLIC(void) surf_parse_warn(std::string msg);
23
24 XBT_PUBLIC(double) surf_parse_get_double(std::string s);
25 XBT_PUBLIC(int) surf_parse_get_int(std::string s);
26 XBT_PUBLIC(double) surf_parse_get_time(const char* string, const char* entity_kind, std::string name);
27 XBT_PUBLIC(double) surf_parse_get_size(const char* string, const char* entity_kind, std::string name);
28 XBT_PUBLIC(double) surf_parse_get_bandwidth(const char* string, const char* entity_kind, std::string name);
29 XBT_PUBLIC(double) surf_parse_get_speed(const char* string, const char* entity_kind, std::string name);
30
31 XBT_PUBLIC(int) surf_parse(); /* Entry-point to the parser */
32 }
33
34 #endif