Salome HOME
mergefrom branch BR_V511_PR tag mergeto_trunk_03feb09
[modules/yacs.git] / src / runtime / PresetPorts.cxx
index 2cb21bf61af51ad3d8d7ea3863f0d1b2f745ace9..40b2cfdf0d884f0ce1d664de3ca974992c959876 100644 (file)
@@ -1,5 +1,24 @@
-
+//  Copyright (C) 2006-2008  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 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
+//
+//  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+//
+#include "TypeConversions.hxx"
 #include "PresetPorts.hxx"
+#include "PythonPorts.hxx"
 #include "TypeCode.hxx"
 #include <iostream>
 
@@ -84,6 +103,30 @@ std::string OutputPresetPort::dump()
   return getData();
 }
 
+PyObject * OutputPresetPort::getPyObj()
+{
+  DEBTRACE(getData());
+  if(_storeData=="")
+    {
+      Py_INCREF(Py_None);
+      return Py_None;
+    }
+  else
+    return convertXmlStrPyObject(edGetType(),getData());
+}
+
+std::string OutputPresetPort::getAsString()
+{
+  InterpreterUnlocker loc;
+  PyObject* ob=getPyObj();
+  DEBTRACE(PyObject_Str(ob));
+  std::string s=convertPyObjectToString(ob);
+  DEBTRACE(s);
+  Py_DECREF(ob);
+  return s;
+}
+
+
 InputPresetPort::InputPresetPort(const std::string& name,  Node* node, TypeCode* type)
   : InputXmlPort(name, node, type),
     DataPort(name, node, type),
@@ -116,3 +159,26 @@ std::string InputPresetPort::dump()
   return _data;
 }
 
+PyObject * InputPresetPort::getPyObj()
+{
+  DEBTRACE(dump());
+  if(_data=="")
+    {
+      Py_INCREF(Py_None);
+      return Py_None;
+    }
+  else
+    return convertXmlStrPyObject(edGetType(),dump());
+}
+
+std::string InputPresetPort::getAsString()
+{
+  InterpreterUnlocker loc;
+  PyObject* ob=getPyObj();
+  DEBTRACE(PyObject_Str(ob));
+  std::string s=convertPyObjectToString(ob);
+  DEBTRACE(s);
+  Py_DECREF(ob);
+  return s;
+}
+