X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/ef0de8a7383b8ceb975c064c292030f156e346bf..82f71f716643bf7c4ba1c63793439b753fcfa954:/src/surf/surf_routing.hpp diff --git a/src/surf/surf_routing.hpp b/src/surf/surf_routing.hpp index af8f6102ba..e404638daa 100644 --- a/src/surf/surf_routing.hpp +++ b/src/surf/surf_routing.hpp @@ -16,7 +16,6 @@ #include #include -#include SG_BEGIN_DECL() XBT_PUBLIC(void) routing_model_create(Link *loopback); @@ -27,11 +26,13 @@ SG_END_DECL() namespace simgrid { namespace surf { + XBT_PUBLIC_DATA(simgrid::xbt::signal) asCreatedCallbacks; + XBT_PUBLIC_DATA(simgrid::xbt::signal) netcardCreatedCallbacks; + /*********** * Classes * ***********/ -class XBT_PRIVATE RoutingModelDescription; class XBT_PRIVATE Onelink; class RoutingPlatf; @@ -44,36 +45,41 @@ class NetCard { public: virtual ~NetCard(){}; virtual int id()=0; // Our rank in the vertices_ array of our containing AS. - virtual void setId(int id)=0; virtual char *name()=0; virtual AsImpl *containingAS()=0; // This is the AS in which I am virtual bool isAS()=0; virtual bool isHost()=0; virtual bool isRouter()=0; + enum class Type { + Host, Router, As + }; }; struct XBT_PRIVATE NetCardImpl : public NetCard { public: - NetCardImpl(const char *name, e_surf_network_element_type_t componentType, AsImpl *as) + NetCardImpl(const char *name, NetCard::Type componentType, AsImpl *containingAS) : name_(xbt_strdup(name)), componentType_(componentType), - containingAS_(as) - {} + containingAS_(containingAS) + { + if (containingAS != nullptr) + id_ = containingAS->addComponent(this); + simgrid::surf::netcardCreatedCallbacks(this); + } ~NetCardImpl() { xbt_free(name_);}; int id() override {return id_;} - void setId(int id) override {id_ = id;} char *name() override {return name_;} AsImpl *containingAS() override {return containingAS_;} - bool isAS() override {return componentType_ == SURF_NETWORK_ELEMENT_AS;} - bool isHost() override {return componentType_ == SURF_NETWORK_ELEMENT_HOST;} - bool isRouter() override {return componentType_ == SURF_NETWORK_ELEMENT_ROUTER;} + bool isAS() override {return componentType_ == Type::As;} + bool isHost() override {return componentType_ == Type::Host;} + bool isRouter() override {return componentType_ == Type::Router;} private: int id_ = -1; char *name_; - e_surf_network_element_type_t componentType_; + NetCard::Type componentType_; AsImpl *containingAS_; }; @@ -94,7 +100,7 @@ public: */ XBT_PUBLIC_CLASS RoutingPlatf { public: - RoutingPlatf(Link *loopback); + explicit RoutingPlatf(Link *loopback); ~RoutingPlatf(); AsImpl *root_ = nullptr; Link *loopback_; @@ -102,13 +108,6 @@ public: void getRouteAndLatency(NetCard *src, NetCard *dst, std::vector * links, double *latency); }; -/************* - * Callbacks * - *************/ - -XBT_PUBLIC_DATA(simgrid::xbt::signal) netcardCreatedCallbacks; -XBT_PUBLIC_DATA(simgrid::xbt::signal) asCreatedCallbacks; - } }