Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
hide a (grave) warning in the tests
[simgrid.git] / src / instr / jedule / jedule_platform.cpp
1 /* Copyright (c) 2010-2016. 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 "simgrid/jedule/jedule.hpp"
8 #include "simgrid/jedule/jedule_platform.hpp"
9 #include "simgrid/s4u/NetZone.hpp"
10 #include "xbt/asserts.h"
11 #include "xbt/dynar.h"
12 #include <algorithm>
13
14 #if HAVE_JEDULE
15
16 namespace simgrid {
17 namespace jedule {
18 Subset::Subset(int start_idx, int end_idx, Container* parent)
19 : start_idx(start_idx), parent(parent)
20 {
21   nres=end_idx-start_idx+1;
22 }
23
24
25 Container::Container(std::string name): name(name)
26 {
27   container_name2container.insert({this->name, this});
28 }
29
30 Container::~Container()
31 {
32   if(!this->children.empty())
33     for (auto child: this->children)
34       delete child;
35 }
36
37 void Container::addChild(jed_container_t child)
38 {
39   xbt_assert(this != nullptr);
40   xbt_assert(child != nullptr);
41   this->children.push_back(child);
42   child->parent = this;
43 }
44
45 void Container::addResources(std::vector<sg_host_t> hosts)
46 {
47   this->is_lowest = 1;
48   this->children.clear();
49   this->last_id = 0;
50
51   //FIXME do we need to sort?: xbt_dynar_sort_strings(host_names);
52
53   for (auto host : hosts) {
54     const char *host_name = sg_host_get_name(host);
55     this->name2id.insert({host_name, this->last_id});
56     (this->last_id)++;
57     host2_simgrid_parent_container.insert({host_name, this});
58     this->resource_list.push_back(host);
59   }
60 }
61
62 void Container::createHierarchy(sg_netzone_t from_as)
63 {
64
65   if (from_as->children()->empty()) {
66     // I am no AS
67     // add hosts to jedule platform
68     this->addResources(*from_as->hosts());
69   } else {
70     for (auto nz : *from_as->children()) {
71       jed_container_t child_container = new simgrid::jedule::Container(std::string(nz->name()));
72       this->addChild(child_container);
73       child_container->createHierarchy(nz);
74     }
75   }
76 }
77
78 std::vector<int> Container::getHierarchy()
79 {
80   xbt_assert( this!= nullptr );
81
82   if(this->parent != nullptr ) {
83
84     if(!this->parent->children.empty()) {
85       // we are in the last level
86       return this->parent->getHierarchy();
87     } else {
88       unsigned int i =0;
89       int child_nb = -1;
90
91       for (auto child : this->parent->children) {
92         if( child == this) {
93           child_nb = i;
94           break;
95         }
96         i++;
97       }
98
99       xbt_assert( child_nb > - 1);
100       std::vector<int> heir_list = this->parent->getHierarchy();
101       heir_list.insert(heir_list.begin(), child_nb);
102       return heir_list;
103     }
104   } else {
105     int top_level = 0;
106     std::vector<int> heir_list = {top_level};
107     return heir_list;
108   }
109 }
110
111 std::string Container::getHierarchyAsString()
112 {
113   std::string output("");
114
115   std::vector<int> heir_list = this->getHierarchy();
116
117   unsigned int length = heir_list.size();
118   unsigned int i = 0;
119   for (auto id : heir_list) {
120     output += std::to_string(id);
121     if( i != length-1 ) {
122       output += ".";
123     }
124   }
125
126   return output;
127 }
128
129 void Container::printResources(FILE * jed_file)
130 {
131   unsigned int i=0;
132   xbt_assert(!this->resource_list.empty());
133
134   unsigned int res_nb = this->resource_list.size();
135   std::string resid = this->getHierarchyAsString();
136
137   fprintf(jed_file, "      <rset id=\"%s\" nb=\"%u\" names=\"", resid.c_str(), res_nb);
138   for (auto res: this->resource_list) {
139     const char * res_name = sg_host_get_name(res);
140     fprintf(jed_file, "%s", res_name);
141     if( i != res_nb-1 ) {
142       fprintf(jed_file, "|");
143     }
144     i++;
145   }
146   fprintf(jed_file, "\" />\n");
147 }
148
149 void Container::print(FILE* jed_file)
150 {
151   xbt_assert( this != nullptr );
152   fprintf(jed_file, "    <res name=\"%s\">\n", this->name.c_str());
153   if( !this->children.empty()){
154     for (auto child: this->children) {
155       child->print(jed_file);
156     }
157   } else {
158     this->printResources(jed_file);
159   }
160   fprintf(jed_file, "    </res>\n");
161 }
162
163 }
164 }
165
166 static void add_subsets_to(std::vector<jed_subset_t> *subset_list, std::vector<const char*> hostgroup, jed_container_t parent)
167 {
168   // get ids for each host
169   // sort ids
170   // compact ids
171   // create subset for each id group
172
173   xbt_assert( parent != nullptr );
174
175   std::vector<unsigned int> id_list;
176
177   for (auto host_name : hostgroup) {
178     xbt_assert( host_name != nullptr );
179     jed_container_t parent = host2_simgrid_parent_container.at(host_name);
180     unsigned int id = parent->name2id.at(host_name);
181     id_list.push_back(id);
182   }
183   unsigned int nb_ids = id_list.size();
184   std::sort(id_list.begin(), id_list.end());
185
186   if( nb_ids > 0 ) {
187     int start = 0;
188     int pos = start;
189     for(unsigned int i=0; i<nb_ids; i++) {
190       if( id_list[i] - id_list[pos] > 1 ) {
191         subset_list->push_back(new simgrid::jedule::Subset(id_list[start], id_list[pos], parent));
192         start = i;
193
194         if( i == nb_ids-1 ) {
195          subset_list->push_back(new simgrid::jedule::Subset(id_list[i], id_list[i], parent));
196         }
197       } else {
198         if( i == nb_ids-1 ) {
199           subset_list->push_back(new simgrid::jedule::Subset(id_list[start], id_list[i], parent));
200         }
201       }
202       pos = i;
203     }
204   }
205
206 }
207
208 void get_resource_selection_by_hosts(std::vector<jed_subset_t> *subset_list, std::vector<sg_host_t> *host_list)
209 {
210   xbt_assert( host_list != nullptr );
211   // for each host name
212   //  find parent container
213   //  group by parent container
214   std::unordered_map<const char*, std::vector<const char*>> parent2hostgroup;
215   for (auto host: *host_list) {
216     const char *host_name = sg_host_get_name(host);
217     jed_container_t parent = host2_simgrid_parent_container.at(host_name);
218     xbt_assert( parent != nullptr );
219
220     auto host_group = parent2hostgroup.find(parent->name.c_str());
221     if (host_group == parent2hostgroup.end())
222       parent2hostgroup.insert({parent->name.c_str(), std::vector<const char*>(1,host_name)});
223     else
224       host_group->second.push_back(host_name);
225   }
226
227   for (auto elm: parent2hostgroup) {
228     jed_container_t parent = container_name2container.at(elm.first);
229     add_subsets_to(subset_list, elm.second, parent);
230   }
231 }
232
233 #endif