Salome HOME
bos #26594 Failed KERNEL test: fix typemap for swig 4x
[modules/yacs.git] / src / yacsloader / containerParsers.cxx
index d3aae264e0be30da0344c347ff64437b6e2adf3a..e285e2f76a2226017b12d23ca07b07baea099af8 100644 (file)
@@ -1,23 +1,28 @@
-//  Copyright (C) 2006-2008  CEA/DEN, EDF R&D
+// Copyright (C) 2006-2021  CEA/DEN, EDF R&D
 //
-//  This library is free software; you can redistribute it and/or
-//  modify it under the terms of the GNU Lesser General Public
-//  License as published by the Free Software Foundation; either
-//  version 2.1 of the License.
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License, or (at your option) any later version.
 //
-//  This library is distributed in the hope that it will be useful,
-//  but WITHOUT ANY WARRANTY; without even the implied warranty of
-//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-//  Lesser General Public License for more details.
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+// Lesser General Public License for more details.
 //
-//  You should have received a copy of the GNU Lesser General Public
-//  License along with this library; if not, write to the Free Software
-//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+// You should have received a copy of the GNU Lesser General Public
+// License along with this library; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 //
-//  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 //
+
 #include "containerParsers.hxx"
 #include "propertyParsers.hxx"
+#include "HomogeneousPoolContainer.hxx"
+
+//#define _DEVDEBUG_
+#include "YacsTrace.hxx"
 
 namespace YACS
 {
@@ -27,6 +32,8 @@ namespace YACS
 
   void machinetypeParser::buildAttr(const XML_Char** attr)
     {
+      if (!attr)
+        return;
       required("name",attr);
       for (int i = 0; attr[i]; i += 2)
       {
@@ -42,6 +49,8 @@ namespace YACS
 
   void containertypeParser::buildAttr(const XML_Char** attr)
     {
+      if (!attr)
+        return;
       required("name",attr);
       for (int i = 0; attr[i]; i += 2)
       {
@@ -54,6 +63,7 @@ namespace YACS
       parser* pp=&parser::main_parser;
       if(element == "machine")pp=&machinetypeParser::machineParser;
       if(element == "property")pp=&propertytypeParser::propertyParser;
+      if(element == "initializescriptkey")pp=&codetypeParser::codeParser;
       SetUserDataAndPush(pp);
       pp->init();
       pp->pre();
@@ -64,6 +74,7 @@ namespace YACS
       std::string element(el);
       if(element == "machine")machine_(((machinetypeParser*)child)->post());
       if(element == "property")property(((propertytypeParser*)child)->post());
+      if(element == "initializescriptkey")initializescriptkey(((codetypeParser*)child)->post());
     }
   void containertypeParser::pre ()
     {
@@ -81,6 +92,11 @@ namespace YACS
       DEBTRACE( "property_set: " << prop._name << " " << prop._value );
       _container._props[prop._name]=prop._value;
     }
+  void containertypeParser::initializescriptkey(const myfunc& f)
+  {
+    _container._props[YACS::ENGINE::HomogeneousPoolContainer::INITIALIZE_SCRIPT_KEY]=f._code;
+  }
+
   mycontainer containertypeParser::post()
     {
       //mincount("machine",1);
@@ -89,6 +105,8 @@ namespace YACS
 
   void loadtypeParser::buildAttr(const XML_Char** attr)
     {
+      if (!attr)
+        return;
       required("container",attr);
       for (int i = 0; attr[i]; i += 2)
       {