Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
5d07714fc83aa1ccd2e939d5df468dd29d8f00bf
[simgrid.git] / src / surf / xml / platf.hpp
1 /* Copyright (c) 2006-2023. 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/base.h>
10 #include <xbt/signal.hpp>
11 #include <vector>
12
13 /* Module management functions */
14 XBT_PUBLIC void sg_platf_parser_finalize();
15
16 XBT_PUBLIC void simgrid_parse_open(const std::string& file);
17 XBT_PUBLIC void simgrid_parse_close();
18 XBT_PUBLIC void simgrid_parse_assert(bool cond, const std::string& msg);
19 XBT_ATTRIB_NORETURN XBT_PUBLIC void simgrid_parse_error(const std::string& msg);
20 XBT_PUBLIC void simgrid_parse_assert_netpoint(const std::string& hostname, const std::string& pre,
21                                               const std::string& post);
22
23 XBT_PUBLIC double simgrid_parse_get_double(const std::string& s);
24 XBT_PUBLIC int simgrid_parse_get_int(const std::string& s);
25
26 XBT_PUBLIC void simgrid_parse(); /* Entry-point to the parser */
27 XBT_PUBLIC void parse_platform_file(const std::string& file);
28
29 #endif