Salome HOME
Merge branch 'Pre_2.8.0_development'
[modules/shaper.git] / src / ExchangePlugin / ExchangePlugin_Tools.cpp
index c55689ed4bdac24a5c86d6971818ca605984b2d9..786a59d52570652c126285194881ea59cbfdb01c 100644 (file)
@@ -1,9 +1,22 @@
-/*
- * ExchangePlugin_Tools.cpp
- *
- *  Created on: May 15, 2015
- *      Author: spo
- */
+// Copyright (C) 2014-2017  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, 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.
+//
+// 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<mailto:webmaster.salome@opencascade.com>
+//
 
 #include <ExchangePlugin_Tools.h>
 
@@ -18,3 +31,63 @@ std::list<std::string> ExchangePlugin_Tools::split(const std::string& theString,
     theResult.push_back(aSection);
   return theResult;
 }
+
+std::string ExchangePlugin_Tools::selectionType2xaoDimension(const std::string& theType)
+{
+  if (theType == "Vertices" || theType == "vertex")
+    return "vertex";
+  else if (theType == "Edges" || theType == "edge")
+    return "edge";
+  else if (theType == "Faces" || theType == "face")
+    return "face";
+  else if (theType == "Solids" || theType == "solid")
+    return "solid";
+  else if (theType == "Part" || theType == "part")
+    return "part";
+
+  return std::string();
+}
+
+std::string ExchangePlugin_Tools::xaoDimension2selectionType(const std::string& theDimension)
+{
+  if (theDimension == "vertex")
+    return "vertex";
+  else if (theDimension == "edge")
+    return "edge";
+  else if (theDimension == "face")
+    return "face";
+  else if (theDimension == "solid")
+    return "solid";
+
+  return std::string();
+}
+
+
+std::string ExchangePlugin_Tools::valuesType2xaoType(
+  const ModelAPI_AttributeTables::ValueType& theType)
+{
+  switch(theType) {
+  case ModelAPI_AttributeTables::BOOLEAN:
+    return "boolean";
+  case ModelAPI_AttributeTables::INTEGER:
+    return "integer";
+  case ModelAPI_AttributeTables::DOUBLE:
+    return "double";
+  case ModelAPI_AttributeTables::STRING:
+    return "string";
+  }
+  return "";
+}
+
+ModelAPI_AttributeTables::ValueType ExchangePlugin_Tools::xaoType2valuesType(std::string theType)
+{
+  if (theType == "boolean")
+    return ModelAPI_AttributeTables::BOOLEAN;
+  if (theType == "integer")
+    return ModelAPI_AttributeTables::INTEGER;
+  if (theType == "double")
+    return ModelAPI_AttributeTables::DOUBLE;
+  if (theType == "string")
+    return ModelAPI_AttributeTables::STRING;
+  return ModelAPI_AttributeTables::DOUBLE;
+}