Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
change way disks are managed in the XML parsing
[simgrid.git] / src / surf / sg_platf.cpp
1 /* Copyright (c) 2006-2021. 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 #include "simgrid/Exception.hpp"
7 #include "simgrid/kernel/routing/ClusterZone.hpp"
8 #include "simgrid/kernel/routing/DijkstraZone.hpp"
9 #include "simgrid/kernel/routing/DragonflyZone.hpp"
10 #include "simgrid/kernel/routing/EmptyZone.hpp"
11 #include "simgrid/kernel/routing/FatTreeZone.hpp"
12 #include "simgrid/kernel/routing/FloydZone.hpp"
13 #include "simgrid/kernel/routing/FullZone.hpp"
14 #include "simgrid/kernel/routing/NetPoint.hpp"
15 #include "simgrid/kernel/routing/NetZoneImpl.hpp"
16 #include "simgrid/kernel/routing/TorusZone.hpp"
17 #include "simgrid/kernel/routing/VivaldiZone.hpp"
18 #include "simgrid/kernel/routing/WifiZone.hpp"
19 #include "simgrid/s4u/Engine.hpp"
20 #include "src/include/simgrid/sg_config.hpp"
21 #include "src/include/surf/surf.hpp"
22 #include "src/kernel/EngineImpl.hpp"
23 #include "src/kernel/resource/DiskImpl.hpp"
24 #include "src/kernel/resource/profile/Profile.hpp"
25 #include "src/simix/smx_private.hpp"
26 #include "src/surf/HostImpl.hpp"
27 #include "src/surf/xml/platf_private.hpp"
28
29 #include <string>
30
31 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(surf_parse);
32
33 namespace simgrid {
34 namespace kernel {
35 namespace routing {
36 xbt::signal<void(ClusterCreationArgs const&)> on_cluster_creation;
37 } // namespace routing
38 } // namespace kernel
39 } // namespace simgrid
40
41 /** The current NetZone in the parsing */
42 static simgrid::kernel::routing::NetZoneImpl* current_routing = nullptr;
43 static simgrid::kernel::routing::NetZoneImpl* routing_get_current()
44 {
45   return current_routing;
46 }
47 static simgrid::s4u::Host* current_host = nullptr;
48
49 /** Module management function: creates all internal data structures */
50 void sg_platf_init()
51 {
52   // Do nothing: just for symmetry of user code
53 }
54
55 /** Module management function: frees all internal data structures */
56 void sg_platf_exit()
57 {
58   simgrid::kernel::routing::on_cluster_creation.disconnect_slots();
59   simgrid::s4u::Engine::on_platform_created.disconnect_slots();
60
61   surf_parse_lex_destroy();
62 }
63
64 /** @brief Add a host to the current NetZone */
65 void sg_platf_new_host_begin(const simgrid::kernel::routing::HostCreationArgs* args)
66 {
67   current_host = routing_get_current()
68                      ->create_host(args->id, args->speed_per_pstate)
69                      ->set_coordinates(args->coord)
70                      ->set_core_count(args->core_amount)
71                      ->set_state_profile(args->state_trace)
72                      ->set_speed_profile(args->speed_trace);
73   //  host->get_impl()->set_disks(args->disks);
74 }
75
76 void sg_platf_new_host_set_properties(const std::unordered_map<std::string, std::string>& props)
77 {
78   xbt_assert(current_host, "Cannot set properties of the current host: none under construction");
79   current_host->set_properties(props);
80 }
81
82 void sg_platf_new_host_seal(int pstate)
83 {
84   xbt_assert(current_host, "Cannot seal the current Host: none under construction");
85   current_host->seal();
86
87   /* When energy plugin is activated, changing the pstate requires to already have the HostEnergy extension whose
88    * allocation is triggered by the on_creation signal. Then set_pstate must be called after the signal emission */
89
90   if (pstate != 0)
91     current_host->set_pstate(pstate);
92
93   current_host = nullptr;
94 }
95
96 /** @brief Add a "router" to the network element list */
97 simgrid::kernel::routing::NetPoint* sg_platf_new_router(const std::string& name, const std::string& coords)
98 {
99   xbt_assert(nullptr == simgrid::s4u::Engine::get_instance()->netpoint_by_name_or_null(name),
100              "Refusing to create a router named '%s': this name already describes a node.", name.c_str());
101
102   auto* netpoint = new simgrid::kernel::routing::NetPoint(name, simgrid::kernel::routing::NetPoint::Type::Router);
103   netpoint->set_englobing_zone(current_routing);
104   XBT_DEBUG("Router '%s' has the id %u", netpoint->get_cname(), netpoint->id());
105
106   if (not coords.empty())
107     netpoint->set_coordinates(coords);
108
109   return netpoint;
110 }
111
112 static void sg_platf_new_link(const simgrid::kernel::routing::LinkCreationArgs* args, const std::string& link_name)
113 {
114   routing_get_current()
115       ->create_link(link_name, args->bandwidths)
116       ->set_properties(args->properties)
117       ->get_impl() // this call to get_impl saves some simcalls but can be removed
118       ->set_sharing_policy(args->policy)
119       ->set_state_profile(args->state_trace)
120       ->set_latency_profile(args->latency_trace)
121       ->set_bandwidth_profile(args->bandwidth_trace)
122       ->set_latency(args->latency)
123       ->seal();
124 }
125
126 void sg_platf_new_link(const simgrid::kernel::routing::LinkCreationArgs* link)
127 {
128   if (link->policy == simgrid::s4u::Link::SharingPolicy::SPLITDUPLEX) {
129     sg_platf_new_link(link, link->id + "_UP");
130     sg_platf_new_link(link, link->id + "_DOWN");
131   } else {
132     sg_platf_new_link(link, link->id);
133   }
134 }
135
136 void sg_platf_new_disk(const simgrid::kernel::routing::DiskCreationArgs* disk)
137 {
138   simgrid::s4u::Disk* new_disk = routing_get_current()
139                                      ->create_disk(disk->id, disk->read_bw, disk->write_bw)
140                                      ->set_host(current_host)
141                                      ->set_properties(disk->properties)
142                                      ->seal();
143
144   current_host->add_disk(new_disk);
145 }
146
147 void sg_platf_new_cluster(simgrid::kernel::routing::ClusterCreationArgs* cluster)
148 {
149   using simgrid::kernel::routing::ClusterZone;
150   using simgrid::kernel::routing::DragonflyZone;
151   using simgrid::kernel::routing::FatTreeZone;
152   using simgrid::kernel::routing::TorusZone;
153
154   int rankId = 0;
155
156   // What an inventive way of initializing the NetZone that I have as ancestor :-(
157   simgrid::kernel::routing::ZoneCreationArgs zone;
158   zone.id = cluster->id;
159   switch (cluster->topology) {
160     case simgrid::kernel::routing::ClusterTopology::TORUS:
161       zone.routing = "ClusterTorus";
162       break;
163     case simgrid::kernel::routing::ClusterTopology::DRAGONFLY:
164       zone.routing = "ClusterDragonfly";
165       break;
166     case simgrid::kernel::routing::ClusterTopology::FAT_TREE:
167       zone.routing = "ClusterFatTree";
168       break;
169     default:
170       zone.routing = "Cluster";
171       break;
172   }
173   sg_platf_new_Zone_begin(&zone);
174   auto* current_zone = static_cast<ClusterZone*>(routing_get_current());
175   current_zone->parse_specific_arguments(cluster);
176   for (auto const& elm : cluster->properties)
177     current_zone->get_iface()->set_property(elm.first, elm.second);
178
179   if (cluster->loopback_bw > 0 || cluster->loopback_lat > 0) {
180     current_zone->set_loopback();
181   }
182
183   if (cluster->limiter_link > 0) {
184     current_zone->set_limiter();
185   }
186
187   for (int const& i : cluster->radicals) {
188     std::string host_id = std::string(cluster->prefix) + std::to_string(i) + cluster->suffix;
189
190     XBT_DEBUG("<host\tid=\"%s\"\tspeed=\"%f\">", host_id.c_str(), cluster->speeds.front());
191     current_zone->create_host(host_id, cluster->speeds)
192         ->set_core_count(cluster->core_amount)
193         ->set_properties(cluster->properties)
194         ->seal();
195
196     XBT_DEBUG("</host>");
197
198     std::string link_id = std::string(cluster->id) + "_link_" + std::to_string(i);
199     XBT_DEBUG("<link\tid=\"%s\"\tbw=\"%f\"\tlat=\"%f\"/>", link_id.c_str(), cluster->bw, cluster->lat);
200
201     // All links are saved in a matrix;
202     // every row describes a single node; every node may have multiple links.
203     // the first column may store a link from x to x if p_has_loopback is set
204     // the second column may store a limiter link if p_has_limiter is set
205     // other columns are to store one or more link for the node
206
207     // add a loopback link
208     if (cluster->loopback_bw > 0 || cluster->loopback_lat > 0) {
209       std::string loopback_name = link_id + "_loopback";
210       XBT_DEBUG("<loopback\tid=\"%s\"\tbw=\"%f\"/>", loopback_name.c_str(), cluster->loopback_bw);
211
212       auto* loopback = current_zone->create_link(loopback_name, std::vector<double>{cluster->loopback_bw})
213                            ->set_sharing_policy(simgrid::s4u::Link::SharingPolicy::FATPIPE)
214                            ->set_latency(cluster->loopback_lat)
215                            ->seal()
216                            ->get_impl();
217
218       current_zone->add_private_link_at(current_zone->node_pos(rankId), {loopback, loopback});
219     }
220
221     // add a limiter link (shared link to account for maximal bandwidth of the node)
222     if (cluster->limiter_link > 0) {
223       std::string limiter_name = std::string(link_id) + "_limiter";
224       XBT_DEBUG("<limiter\tid=\"%s\"\tbw=\"%f\"/>", limiter_name.c_str(), cluster->limiter_link);
225
226       auto* limiter =
227           current_zone->create_link(limiter_name, std::vector<double>{cluster->limiter_link})->seal()->get_impl();
228
229       current_zone->add_private_link_at(current_zone->node_pos_with_loopback(rankId), {limiter, limiter});
230     }
231
232     // call the cluster function that adds the others links
233     if (cluster->topology == simgrid::kernel::routing::ClusterTopology::FAT_TREE) {
234       static_cast<FatTreeZone*>(current_zone)->add_processing_node(i);
235     } else {
236       current_zone->create_links_for_node(cluster, i, rankId, current_zone->node_pos_with_loopback_limiter(rankId));
237     }
238     rankId++;
239   }
240
241   // Add a router.
242   XBT_DEBUG(" ");
243   XBT_DEBUG("<router id=\"%s\"/>", cluster->router_id.c_str());
244   if (cluster->router_id.empty())
245     cluster->router_id = std::string(cluster->prefix) + cluster->id + "_router" + cluster->suffix;
246   current_zone->set_router(sg_platf_new_router(cluster->router_id, ""));
247
248   // Make the backbone
249   if ((cluster->bb_bw > 0) || (cluster->bb_lat > 0)) {
250     std::string bb_name = std::string(cluster->id) + "_backbone";
251     XBT_DEBUG("<link\tid=\"%s\" bw=\"%f\" lat=\"%f\"/> <!--backbone -->", bb_name.c_str(), cluster->bb_bw,
252               cluster->bb_lat);
253
254     auto* backbone = current_zone->create_link(bb_name, std::vector<double>{cluster->bb_bw})
255                          ->set_sharing_policy(cluster->bb_sharing_policy)
256                          ->set_latency(cluster->bb_lat)
257                          ->seal();
258     current_zone->set_backbone(backbone->get_impl());
259   }
260
261   XBT_DEBUG("</zone>");
262   sg_platf_new_Zone_seal();
263
264   simgrid::kernel::routing::on_cluster_creation(*cluster);
265 }
266
267 void routing_cluster_add_backbone(simgrid::kernel::resource::LinkImpl* bb)
268 {
269   auto* cluster = dynamic_cast<simgrid::kernel::routing::ClusterZone*>(current_routing);
270
271   xbt_assert(cluster, "Only hosts from Cluster can get a backbone.");
272   xbt_assert(not cluster->has_backbone(), "Cluster %s already has a backbone link!", cluster->get_cname());
273
274   cluster->set_backbone(bb);
275   XBT_DEBUG("Add a backbone to zone '%s'", current_routing->get_cname());
276 }
277
278 void sg_platf_new_cabinet(const simgrid::kernel::routing::CabinetCreationArgs* cabinet)
279 {
280   auto* zone = static_cast<simgrid::kernel::routing::ClusterZone*>(routing_get_current());
281   for (int const& radical : cabinet->radicals) {
282     std::string id           = cabinet->prefix + std::to_string(radical) + cabinet->suffix;
283     simgrid::s4u::Host* host = zone->create_host(id, std::vector<double>{cabinet->speed})->seal();
284
285     simgrid::s4u::Link* link_up =
286         zone->create_link("link_" + id + "_UP", std::vector<double>{cabinet->bw})->set_latency(cabinet->lat)->seal();
287     simgrid::s4u::Link* link_down =
288         zone->create_link("link_" + id + "_DOWN", std::vector<double>{cabinet->bw})->set_latency(cabinet->lat)->seal();
289
290     zone->add_private_link_at(host->get_netpoint()->id(), {link_up->get_impl(), link_down->get_impl()});
291   }
292 }
293
294 void sg_platf_new_route(simgrid::kernel::routing::RouteCreationArgs* route)
295 {
296   routing_get_current()->add_route(route->src, route->dst, route->gw_src, route->gw_dst, route->link_list,
297                                    route->symmetrical);
298 }
299
300 void sg_platf_new_bypassRoute(simgrid::kernel::routing::RouteCreationArgs* bypassRoute)
301 {
302   routing_get_current()->add_bypass_route(bypassRoute->src, bypassRoute->dst, bypassRoute->gw_src, bypassRoute->gw_dst,
303                                           bypassRoute->link_list, bypassRoute->symmetrical);
304 }
305
306 void sg_platf_new_actor(simgrid::kernel::routing::ActorCreationArgs* actor)
307 {
308   sg_host_t host = sg_host_by_name(actor->host);
309   if (not host) {
310     // The requested host does not exist. Do a nice message to the user
311     std::string msg = std::string("Cannot create actor '") + actor->function + "': host '" + actor->host +
312                       "' does not exist\nExisting hosts: '";
313
314     std::vector<simgrid::s4u::Host*> list = simgrid::s4u::Engine::get_instance()->get_all_hosts();
315
316     for (auto const& some_host : list) {
317       msg += some_host->get_name();
318       msg += "', '";
319       if (msg.length() > 1024) {
320         msg.pop_back(); // remove trailing quote
321         msg += "...(list truncated)......";
322         break;
323       }
324     }
325     xbt_die("%s", msg.c_str());
326   }
327   const simgrid::kernel::actor::ActorCodeFactory& factory =
328       simgrid::kernel::EngineImpl::get_instance()->get_function(actor->function);
329   xbt_assert(factory, "Error while creating an actor from the XML file: Function '%s' not registered", actor->function);
330
331   double start_time = actor->start_time;
332   double kill_time  = actor->kill_time;
333   bool auto_restart = actor->restart_on_failure;
334
335   std::string actor_name                 = actor->args[0];
336   simgrid::kernel::actor::ActorCode code = factory(std::move(actor->args));
337
338   auto* arg = new simgrid::kernel::actor::ProcessArg(actor_name, code, nullptr, host, kill_time, actor->properties,
339                                                      auto_restart);
340
341   host->get_impl()->add_actor_at_boot(arg);
342
343   if (start_time > SIMIX_get_clock()) {
344     arg = new simgrid::kernel::actor::ProcessArg(actor_name, code, nullptr, host, kill_time, actor->properties,
345                                                  auto_restart);
346
347     XBT_DEBUG("Process %s@%s will be started at time %f", arg->name.c_str(), arg->host->get_cname(), start_time);
348     simgrid::simix::Timer::set(start_time, [arg, auto_restart]() {
349       simgrid::kernel::actor::ActorImplPtr new_actor =
350           simgrid::kernel::actor::ActorImpl::create(arg->name.c_str(), arg->code, arg->data, arg->host, nullptr);
351       new_actor->set_properties(arg->properties);
352       if (arg->kill_time >= 0)
353         new_actor->set_kill_time(arg->kill_time);
354       if (auto_restart)
355         new_actor->set_auto_restart(auto_restart);
356       delete arg;
357     });
358   } else { // start_time <= SIMIX_get_clock()
359     XBT_DEBUG("Starting Process %s(%s) right now", arg->name.c_str(), host->get_cname());
360
361     try {
362       simgrid::kernel::actor::ActorImplPtr new_actor = nullptr;
363       new_actor = simgrid::kernel::actor::ActorImpl::create(arg->name.c_str(), code, nullptr, host, nullptr);
364       new_actor->set_properties(arg->properties);
365       /* The actor creation will fail if the host is currently dead, but that's fine */
366       if (arg->kill_time >= 0)
367         new_actor->set_kill_time(arg->kill_time);
368       if (auto_restart)
369         new_actor->set_auto_restart(auto_restart);
370     } catch (simgrid::HostFailureException const&) {
371       XBT_WARN("Deployment includes some initially turned off Hosts ... nevermind.");
372     }
373   }
374 }
375
376 void sg_platf_new_peer(const simgrid::kernel::routing::PeerCreationArgs* peer)
377 {
378   auto* zone = dynamic_cast<simgrid::kernel::routing::VivaldiZone*>(current_routing);
379   xbt_assert(zone, "<peer> tag can only be used in Vivaldi netzones.");
380
381   simgrid::s4u::Host* host = zone->create_host(peer->id, std::vector<double>{peer->speed})
382                                  ->set_state_profile(peer->state_trace)
383                                  ->set_speed_profile(peer->speed_trace)
384                                  ->set_coordinates(peer->coord)
385                                  ->seal();
386
387   zone->set_peer_link(host->get_netpoint(), peer->bw_in, peer->bw_out);
388 }
389 /**
390  * @brief Auxiliary function to build the object NetZoneImpl
391  *
392  * Builds the objects, setting its father properties and root netzone if needed
393  * @param zone the parameters defining the Zone to build.
394  * @return Pointer to recently created netzone
395  */
396 static simgrid::kernel::routing::NetZoneImpl*
397 sg_platf_create_zone(const simgrid::kernel::routing::ZoneCreationArgs* zone)
398 {
399   /* search the routing model */
400   simgrid::kernel::routing::NetZoneImpl* new_zone = nullptr;
401
402   if (strcasecmp(zone->routing.c_str(), "Cluster") == 0) {
403     new_zone = new simgrid::kernel::routing::ClusterZone(zone->id);
404   } else if (strcasecmp(zone->routing.c_str(), "ClusterDragonfly") == 0) {
405     new_zone = new simgrid::kernel::routing::DragonflyZone(zone->id);
406   } else if (strcasecmp(zone->routing.c_str(), "ClusterTorus") == 0) {
407     new_zone = new simgrid::kernel::routing::TorusZone(zone->id);
408   } else if (strcasecmp(zone->routing.c_str(), "ClusterFatTree") == 0) {
409     new_zone = new simgrid::kernel::routing::FatTreeZone(zone->id);
410   } else if (strcasecmp(zone->routing.c_str(), "Dijkstra") == 0) {
411     new_zone = new simgrid::kernel::routing::DijkstraZone(zone->id, false);
412   } else if (strcasecmp(zone->routing.c_str(), "DijkstraCache") == 0) {
413     new_zone = new simgrid::kernel::routing::DijkstraZone(zone->id, true);
414   } else if (strcasecmp(zone->routing.c_str(), "Floyd") == 0) {
415     new_zone = new simgrid::kernel::routing::FloydZone(zone->id);
416   } else if (strcasecmp(zone->routing.c_str(), "Full") == 0) {
417     new_zone = new simgrid::kernel::routing::FullZone(zone->id);
418   } else if (strcasecmp(zone->routing.c_str(), "None") == 0) {
419     new_zone = new simgrid::kernel::routing::EmptyZone(zone->id);
420   } else if (strcasecmp(zone->routing.c_str(), "Vivaldi") == 0) {
421     new_zone = new simgrid::kernel::routing::VivaldiZone(zone->id);
422   } else if (strcasecmp(zone->routing.c_str(), "Wifi") == 0) {
423     new_zone = new simgrid::kernel::routing::WifiZone(zone->id);
424   } else {
425     xbt_die("Not a valid model!");
426   }
427   new_zone->set_parent(current_routing);
428
429   return new_zone;
430 }
431
432 /**
433  * @brief Add a Zone to the platform
434  *
435  * Add a new autonomous system to the platform. Any elements (such as host, router or sub-Zone) added after this call
436  * and before the corresponding call to sg_platf_new_Zone_seal() will be added to this Zone.
437  *
438  * Once this function was called, the configuration concerning the used models cannot be changed anymore.
439  *
440  * @param zone the parameters defining the Zone to build.
441  */
442 simgrid::kernel::routing::NetZoneImpl* sg_platf_new_Zone_begin(const simgrid::kernel::routing::ZoneCreationArgs* zone)
443 {
444   /* First create the zone.
445    * This order is important to assure that root netzone is set when models are setting
446    * the default mode for each resource (CPU, network, etc)
447    */
448   auto* new_zone = sg_platf_create_zone(zone);
449
450   _sg_cfg_init_status = 2; /* HACK: direct access to the global controlling the level of configuration to prevent
451                             * any further config now that we created some real content */
452
453   /* set the new current component of the tree */
454   current_routing = new_zone;
455   simgrid::s4u::NetZone::on_creation(*new_zone->get_iface()); // notify the signal
456
457   return new_zone;
458 }
459
460 void sg_platf_new_Zone_set_properties(const std::unordered_map<std::string, std::string>& props)
461 {
462   xbt_assert(current_routing, "Cannot set properties of the current Zone: none under construction");
463
464   current_routing->set_properties(props);
465 }
466
467 /**
468  * @brief Specify that the description of the current Zone is finished
469  *
470  * Once you've declared all the content of your Zone, you have to seal
471  * it with this call. Your Zone is not usable until you call this function.
472  */
473 void sg_platf_new_Zone_seal()
474 {
475   xbt_assert(current_routing, "Cannot seal the current Zone: none under construction");
476   current_routing->seal();
477   simgrid::s4u::NetZone::on_seal(*current_routing->get_iface());
478   current_routing = current_routing->get_parent();
479 }
480
481 /** @brief Add a link connecting a host to the rest of its Zone (which must be cluster or vivaldi) */
482 void sg_platf_new_hostlink(const simgrid::kernel::routing::HostLinkCreationArgs* hostlink)
483 {
484   const simgrid::kernel::routing::NetPoint* netpoint = simgrid::s4u::Host::by_name(hostlink->id)->get_netpoint();
485   xbt_assert(netpoint, "Host '%s' not found!", hostlink->id.c_str());
486   xbt_assert(dynamic_cast<simgrid::kernel::routing::ClusterZone*>(current_routing),
487              "Only hosts from Cluster and Vivaldi Zones can get a host_link.");
488
489   const simgrid::s4u::Link* linkUp   = simgrid::s4u::Link::by_name_or_null(hostlink->link_up);
490   const simgrid::s4u::Link* linkDown = simgrid::s4u::Link::by_name_or_null(hostlink->link_down);
491
492   xbt_assert(linkUp, "Link '%s' not found!", hostlink->link_up.c_str());
493   xbt_assert(linkDown, "Link '%s' not found!", hostlink->link_down.c_str());
494
495   auto* cluster_zone = static_cast<simgrid::kernel::routing::ClusterZone*>(current_routing);
496
497   if (cluster_zone->private_link_exists_at(netpoint->id()))
498     surf_parse_error(std::string("Host_link for '") + hostlink->id.c_str() + "' is already defined!");
499
500   XBT_DEBUG("Push Host_link for host '%s' to position %u", netpoint->get_cname(), netpoint->id());
501   cluster_zone->add_private_link_at(netpoint->id(), {linkUp->get_impl(), linkDown->get_impl()});
502 }
503
504 void sg_platf_new_trace(simgrid::kernel::routing::ProfileCreationArgs* profile)
505 {
506   simgrid::kernel::profile::Profile* mgr_profile;
507   if (not profile->file.empty()) {
508     mgr_profile = simgrid::kernel::profile::Profile::from_file(profile->file);
509   } else {
510     xbt_assert(not profile->pc_data.empty(), "Trace '%s' must have either a content, or point to a file on disk.",
511                profile->id.c_str());
512     mgr_profile = simgrid::kernel::profile::Profile::from_string(profile->id, profile->pc_data, profile->periodicity);
513   }
514   traces_set_list.insert({profile->id, mgr_profile});
515 }