X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/121e1dc6ee0462b6f6f1f1570b0f48c61ee4ff9a..e595b191c3e10a96a9d896f6ecec9c4df6707aef:/include/simgrid/s4u/Engine.hpp diff --git a/include/simgrid/s4u/Engine.hpp b/include/simgrid/s4u/Engine.hpp index 9aab4fe0fa..a42becaef6 100644 --- a/include/simgrid/s4u/Engine.hpp +++ b/include/simgrid/s4u/Engine.hpp @@ -28,13 +28,11 @@ namespace s4u { */ XBT_PUBLIC_CLASS Engine { -private: - ~Engine(); - public: /** Constructor, taking the command line parameters of your main function */ Engine(int* argc, char** argv); + ~Engine(); /** Finalize the default engine and all its dependencies */ static void shutdown(); @@ -58,8 +56,8 @@ public: /** @brief Load a deployment file and launch the actors that it contains */ void loadDeployment(const char* deploy); - size_t hostCount(); - void hostList(std::vector * whereTo); + size_t getHostCount(); + void getHostList(std::vector * whereTo); /** @brief Run the simulation */ void run(); @@ -68,17 +66,17 @@ public: static double getClock(); /** @brief Retrieve the engine singleton */ - static s4u::Engine* instance(); + static s4u::Engine* getInstance(); /** @brief Retrieve the root netzone, containing all others */ - simgrid::s4u::NetZone* netRoot(); + simgrid::s4u::NetZone* getNetRoot(); /** @brief Retrieve the netzone of the given name (or nullptr if not found) */ - simgrid::s4u::NetZone* netzoneByNameOrNull(const char* name); + simgrid::s4u::NetZone* getNetzoneByNameOrNull(const char* name); /** @brief Retrieve the netcard of the given name (or nullptr if not found) */ - simgrid::kernel::routing::NetPoint* netpointByNameOrNull(const char* name); - void netpointList(std::vector * list); + simgrid::kernel::routing::NetPoint* getNetpointByNameOrNull(const char* name); + void getNetpointList(std::vector * list); void netpointRegister(simgrid::kernel::routing::NetPoint * card); void netpointUnregister(simgrid::kernel::routing::NetPoint * card); @@ -102,6 +100,15 @@ public: /** Returns whether SimGrid was initialized yet -- mostly for internal use */ static bool isInitialized(); + /** @brief set a configuration variable + * + * Do --help on any simgrid binary to see the list of currently existing configuration variables (see @ref options). + * + * Example: + * e->setConfig("host/model","ptask_L07"); + */ + void setConfig(std::string str); + simgrid::kernel::EngineImpl* pimpl; private: