Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of scm.gforge.inria.fr:/gitroot/simgrid/simgrid
[simgrid.git] / src / surf / callbacks.cpp
1 /* Copyright (c) 2015. 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 <xbt/asserts.h>
8
9 #include "src/surf/callbacks.h"
10 #include "src/surf/surf_interface.hpp"
11 #include "src/surf/host_interface.hpp"
12
13 void surf_on_storage_created(void (*callback)(sg_storage_t))
14 {
15   simgrid::surf::storageCreatedCallbacks.connect([callback](simgrid::surf::Storage* storage) {
16     const char* id = storage->getName();
17     // TODO, create sg_storage_by_name
18     sg_storage_t s = xbt_lib_get_elm_or_null(storage_lib, id);
19     xbt_assert(s != NULL, "Storage not found for name %s", id);
20     callback(s);
21   });
22 }