Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of framagit.org:simgrid/simgrid
[simgrid.git] / include / simgrid / jedule / jedule_platform.hpp
1 /* Copyright (c) 2010-2019. 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 JED_SIMGRID_PLATFORM_H_
7 #define JED_SIMGRID_PLATFORM_H_
8
9 #include <simgrid/forward.h>
10
11 #include <memory>
12 #include <string>
13 #include <unordered_map>
14 #include <vector>
15
16 namespace simgrid {
17 namespace jedule{
18 class XBT_PUBLIC Container {
19 public:
20   explicit Container(const std::string& name);
21   Container(const Container&) = delete;
22   Container& operator=(const Container&) = delete;
23
24 private:
25   int last_id_   = 0;
26   int is_lowest_ = 0;
27
28 public:
29   std::string name;
30   std::unordered_map<const char*, unsigned int> name2id;
31   Container *parent = nullptr;
32   std::vector<std::unique_ptr<Container>> children;
33   std::vector<sg_host_t> resource_list;
34   void add_child(Container* child);
35   void add_resources(std::vector<sg_host_t> hosts);
36   void create_hierarchy(sg_netzone_t from_as);
37   std::vector<int> get_hierarchy();
38   std::string get_hierarchy_as_string();
39   void print(FILE *file);
40   void print_resources(FILE* file);
41 };
42
43 class XBT_PUBLIC Subset {
44 public:
45   Subset(int s, int n, Container* p);
46   int start_idx; // start idx in resource_list of container
47   int nres;      // number of resources spanning starting at start_idx
48   Container *parent;
49 };
50
51 }
52 }
53 typedef simgrid::jedule::Container * jed_container_t;
54 void get_resource_selection_by_hosts(std::vector<simgrid::jedule::Subset>& subset_list,
55                                      const std::vector<sg_host_t>& host_list);
56
57 #endif /* JED_SIMGRID_PLATFORM_H_ */