X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/1175edd91aa4b1e90a0cd822eda961ee21d20a54..846b7de4a868bf8dc1270f76a01c33738576694d:/src/cxx/ApplicationHandler.cxx diff --git a/src/cxx/ApplicationHandler.cxx b/src/cxx/ApplicationHandler.cxx index f1a8077c04..3b48213267 100644 --- a/src/cxx/ApplicationHandler.cxx +++ b/src/cxx/ApplicationHandler.cxx @@ -12,15 +12,30 @@ /* ApplicationHandler member functions implementation. */ - + + +#include #include +#include +#include + + + + + +#include + +#include +#include + + namespace SimGrid { namespace Msg { - ApplicationHandler::ProcessFactory::processFactory = NULL; + ApplicationHandler::ProcessFactory* ApplicationHandler::processFactory = NULL; // Desable the default constructor, the copy constructor , the assignement operator // and the destructor of this class. Assume that this class is static. @@ -59,7 +74,7 @@ namespace SimGrid { // release the handler at the end of the parsing. if(processFactory) - delete processFactroy; + delete processFactory; } void ApplicationHandler::onBeginProcess(void) @@ -91,23 +106,30 @@ namespace SimGrid ApplicationHandler::ProcessFactory::ProcessFactory() { - this->args = xbt_dynar_new(sizeof(char*),ProcessFactory::freeCstr); + this->args = xbt_dynar_new(sizeof(char*),ApplicationHandler::ProcessFactory::freeCstr); this->properties = NULL; // TODO instanciate the dictionary this->hostName = NULL; this->function = NULL; - } + } + + ApplicationHandler::ProcessFactory::~ProcessFactory() + { + xbt_dynar_free(&(this->args)); + } // create the cxx process wrapper. void ApplicationHandler::ProcessFactory::createProcess() throw (ClassNotFoundException, HostNotFoundException) { Host host; + Class* c; Process* process; // try to dynamicaly create an instance fo the process from its name (which is specified by the element function // in the xml application file. // if this static method fails, it throws an exception of the class ClassNotFoundException - process = (Process*)Class::fromName(this->function); + c = Class::fromName(this->function); + process = reinterpret_cast(c->createObject()); // try to retrieve the host of the process from its name // if this method fails, it throws an exception of the class HostNotFoundException @@ -118,7 +140,7 @@ namespace SimGrid char** argv = (char**)calloc(argc, sizeof(char*)); - for(int i = 0; i < argc; i++) + for(int i = argc -1; i >= 0; i--) xbt_dynar_pop(this->args, &(argv[i])); // finaly create the process (for more detail on the process creation see Process::create() @@ -129,7 +151,7 @@ namespace SimGrid this->properties = new Properties();*/ } - void ApplicationHandler::ProcessFactory::setProcessIdentity(const string& hostName, const string& function) + void ApplicationHandler::ProcessFactory::setProcessIdentity(const char* hostName, const char* function) { this->hostName = hostName; this->function = function; @@ -144,12 +166,12 @@ namespace SimGrid // callback function used by the dynamic array to cleanup all of its elements. void ApplicationHandler::ProcessFactory::freeCstr(void* cstr) { - free(*(void**)str); + free(*(void**)cstr); } void ApplicationHandler::ProcessFactory::registerProcessArg(const char* arg) { - char* cstr = strdup(arg); + char* cstr = _strdup(arg); xbt_dynar_push(this->args, &cstr); } @@ -158,10 +180,11 @@ namespace SimGrid // TODO implement this function; } - const const char* ApplicationHandler::ProcessFactory::getHostName(void) + const char* ApplicationHandler::ProcessFactory::getHostName(void) { return this->hostName; } } // namespace Msg -} // namespace SimGrid \ No newline at end of file +} // namespace SimGrid +