Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
A string utility class and a new Exception (used to throw out of band exception)
[simgrid.git] / src / cxx / MsgException.cxx
index e69de29..891588f 100644 (file)
@@ -0,0 +1,74 @@
+/*\r
+ * MsgException.cxx\r
+ *\r
+ * Copyright 2006,2007 Martin Quinson, Malek Cherier           \r
+ * All right reserved. \r
+ *\r
+ * This program is free software; you can redistribute \r
+ * it and/or modify it under the terms of the license \r
+ *(GNU LGPL) which comes with this package. \r
+ *\r
+ */\r
\r
+ /* MsgException member functions implementation.\r
+  */  \r
+\r
+#include <MsgException.hpp>\r
+\r
+#include <string.h>\r
+#include <stdlib.h>\r
+#include <stdio.h>\r
+\r
+namespace SimGrid\r
+{\r
+       namespace Msg\r
+       {\r
+               \r
+                       MsgException::MsgException()\r
+                       {\r
+                               this->reason = (char*) calloc(strlen("Internal exception : unknown reason") + 1, sizeof(char));\r
+                               strcpy(this->reason, "Internal exception : unknown reason");\r
+                       }\r
+               \r
+               \r
+                       MsgException::MsgException(const MsgException& rMsgException)\r
+                       {\r
+                               const char* reason = rMsgException.toString();\r
+                               this->reason = (char*) calloc(strlen(reason) + 1, sizeof(char));\r
+                               strcpy(this->reason, reason);\r
+                               \r
+                       }\r
+               \r
+                       MsgException::MsgException(const char* reason)\r
+                       {\r
+                               this->reason = (char*) calloc(strlen("Internal exception : ") + strlen(reason) + 1, sizeof(char));\r
+                               sprintf(this->reason, "Invalid exception : %s", reason);\r
+                       }\r
+               \r
+               \r
+                       MsgException::~MsgException()\r
+                       {\r
+                               if(this->reason)\r
+                                       free(this->reason);\r
+                       }\r
+                               \r
+                       const char* MsgException::toString(void) const\r
+                       {\r
+                               return (const char*)(this->reason);     \r
+                       }\r
+               \r
+               \r
+                       const MsgException& MsgException::operator = (const MsgException& rMsgException)\r
+                       {\r
+                               const char* reason = rMsgException.toString();\r
+                               this->reason = (char*) calloc(strlen(reason) + 1, sizeof(char));\r
+                               \r
+                               return *this;\r
+                       }\r
+               \r
+       } // namespace Msg      \r
+\r
+}// namespace SimGrid\r
+\r
+\r
+\r