Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove features marked with DEPRECATED_v323.
[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 #include <xbt/dynar.h>
11
12 #include <unordered_map>
13 #include <vector>
14 #include <string>
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   virtual ~Container();
24 private:
25   int last_id_;
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<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   virtual ~Subset()=default;
47   int start_idx; // start idx in resource_list of container
48   int nres;      // number of resources spanning starting at start_idx
49   Container *parent;
50 };
51
52 }
53 }
54 typedef simgrid::jedule::Container * jed_container_t;
55 typedef simgrid::jedule::Subset * jed_subset_t;
56 void get_resource_selection_by_hosts(std::vector<jed_subset_t>* subset_list, std::vector<sg_host_t> *host_list);
57
58 #endif /* JED_SIMGRID_PLATFORM_H_ */