]> SALOME platform Git repositories - tools/eficas.git/commitdiff
Salome HOME
Fix opening of OT study with inconsistent or inexistent definition of variables ...
authorRenaud Barate <renaud.barate@edf.fr>
Thu, 10 Nov 2011 15:54:41 +0000 (15:54 +0000)
committerRenaud Barate <renaud.barate@edf.fr>
Thu, 10 Nov 2011 15:54:41 +0000 (15:54 +0000)
convert/convert_openturns_study.py

index ba62b9f9da1c4d0d0de5714d4724f680a17327e8..d1727ad32ac96fa6aa81a29976697aba88656eec 100644 (file)
@@ -1,4 +1,3 @@
-# -*- coding: utf-8 -*-
 #            CONFIGURATION MANAGEMENT OF EDF VERSION
 # ======================================================================
 # COPYRIGHT (C) 1991 - 2002  EDF R&D                  WWW.CODE-ASTER.ORG
 #
 #
 # ======================================================================
-"""
-"""
 
-import parseur_python
-from convert_python import *
+import re
+from convert_python import PythonParser
 
 def entryPoint():
    """
-       Retourne les informations nécessaires pour le chargeur de plugins
-       Ces informations sont retournées dans un dictionnaire
+   Return a dictionary containing the description needed to load the plugin
    """
    return {
-        # Le nom du plugin
           'name' : 'openturns_study',
-        # La factory pour créer une instance du plugin
-          'factory' : PythonParser,
+          'factory' : OTStudyParser
           }
 
+class OTStudyParser(PythonParser):
+   """
+   This converter works like PythonParser, except that it also initializes all
+   model variables to None in order to avoid Python syntax errors when loading
+   a file with a different or inexistent definition of variables.
+   """
+   # We look for pattern "ModelVariable=NOMVAR,"
+   pattern_model_variable = re.compile(r'ModelVariable\s*=\s*(\w+)\s*,')
 
+   def convert(self, outformat, appli=None):
+      text = PythonParser.convert(self, outformat, appli)
+      varnames = self.pattern_model_variable.findall(text)
+      newtext = ""
+      for var in varnames:
+         newtext += "%s = None\n" % var
+      newtext += text
+      return newtext