Salome HOME
Minor correction for Python 3
[modules/adao.git] / src / daComposant / daCore / BasicObjects.py
index a127da6c45f3a9be81517ca467bbecedfe08fc29..7de386ea829ad0637e9b3deb9f1025c8033e0209 100644 (file)
@@ -22,8 +22,6 @@
 
 """
     Définit les outils généraux élémentaires.
-
-    Ce module est destiné à être appelée par AssimilationStudy.
 """
 __author__ = "Jean-Philippe ARGAUD"
 __all__ = []
@@ -35,7 +33,9 @@ import copy
 import numpy
 from daCore import Persistence
 from daCore import PlatformInfo
+from daCore import Interfaces
 from daCore import Templates
+from daCore.Interfaces import ImportFromScript
 
 # ==============================================================================
 class CacheManager(object):
@@ -288,8 +288,8 @@ class FullOperator(object):
                  name             = "GenericFullOperator",
                  asMatrix         = None,
                  asOneFunction    = None, # Fonction
-                 asThreeFunctions = None, # Dictionnaire de fonctions
-                 asScript         = None,
+                 asThreeFunctions = None, # Fonctions dictionary
+                 asScript         = None, # Fonction(s) script
                  asDict           = None, # Parameters
                  appliedInX       = None,
                  avoidRC          = True,
@@ -732,136 +732,6 @@ class Algorithm(object):
                 self._parameters[k] = self.setParameterValue(k)
             logging.debug("%s %s : %s", self._name, self.__required_parameters[k]["message"], self._parameters[k])
 
-# ==============================================================================
-class Diagnostic(object):
-    """
-    Classe générale d'interface de type diagnostic
-
-    Ce template s'utilise de la manière suivante : il sert de classe "patron" en
-    même temps que l'une des classes de persistance, comme "OneScalar" par
-    exemple.
-
-    Une classe élémentaire de diagnostic doit implémenter ses deux méthodes, la
-    méthode "_formula" pour écrire explicitement et proprement la formule pour
-    l'écriture mathématique du calcul du diagnostic (méthode interne non
-    publique), et "calculate" pour activer la précédente tout en ayant vérifié
-    et préparé les données, et pour stocker les résultats à chaque pas (méthode
-    externe d'activation).
-    """
-    def __init__(self, name = "", parameters = {}):
-        "Initialisation"
-        self.name       = str(name)
-        self.parameters = dict( parameters )
-
-    def _formula(self, *args):
-        """
-        Doit implémenter l'opération élémentaire de diagnostic sous sa forme
-        mathématique la plus naturelle possible.
-        """
-        raise NotImplementedError("Diagnostic mathematical formula has not been implemented!")
-
-    def calculate(self, *args):
-        """
-        Active la formule de calcul avec les arguments correctement rangés
-        """
-        raise NotImplementedError("Diagnostic activation method has not been implemented!")
-
-# ==============================================================================
-class DiagnosticAndParameters(object):
-    """
-    Classe générale d'interface d'interface de type diagnostic
-    """
-    def __init__(self,
-                 name               = "GenericDiagnostic",
-                 asDiagnostic       = None,
-                 asIdentifier       = None,
-                 asDict             = None,
-                 asScript           = None,
-                 asUnit             = None,
-                 asBaseType         = None,
-                 asExistingDiags    = None,
-                ):
-        """
-        """
-        self.__name       = str(name)
-        self.__D          = None
-        self.__I          = None
-        self.__P          = {}
-        self.__U          = ""
-        self.__B          = None
-        self.__E          = tuple(asExistingDiags)
-        self.__TheDiag    = None
-        #
-        if asScript is not None:
-            __Diag = ImportFromScript(asScript).getvalue( "Diagnostic" )
-            __Iden = ImportFromScript(asScript).getvalue( "Identifier" )
-            __Dict = ImportFromScript(asScript).getvalue( self.__name, "Parameters" )
-            __Unit = ImportFromScript(asScript).getvalue( "Unit" )
-            __Base = ImportFromScript(asScript).getvalue( "BaseType" )
-        else:
-            __Diag = asDiagnostic
-            __Iden = asIdentifier
-            __Dict = asDict
-            __Unit = asUnit
-            __Base = asBaseType
-       #
-        if __Diag is not None:
-            self.__D = str(__Diag)
-        if __Iden is not None:
-            self.__I = str(__Iden)
-        else:
-            self.__I = str(__Diag)
-        if __Dict is not None:
-            self.__P.update( dict(__Dict) )
-        if __Unit is None or __Unit == "None":
-            self.__U = ""
-        if __Base is None or __Base == "None":
-            self.__B = None
-        #
-        self.__setDiagnostic( self.__D, self.__I, self.__U, self.__B, self.__P, self.__E )
-
-    def get(self):
-        "Renvoie l'objet"
-        return self.__TheDiag
-
-    def __setDiagnostic(self, __choice = None, __name = "", __unit = "", __basetype = None, __parameters = {}, __existings = () ):
-        """
-        Permet de sélectionner un diagnostic a effectuer
-        """
-        if __choice is None:
-            raise ValueError("Error: diagnostic choice has to be given")
-        __daDirectory = "daDiagnostics"
-        #
-        # Recherche explicitement le fichier complet
-        # ------------------------------------------
-        __module_path = None
-        for directory in sys.path:
-            if os.path.isfile(os.path.join(directory, __daDirectory, str(__choice)+'.py')):
-                __module_path = os.path.abspath(os.path.join(directory, __daDirectory))
-        if __module_path is None:
-            raise ImportError("No diagnostic module named \"%s\" was found in a \"%s\" subdirectory\n             The search path is %s"%(__choice, __daDirectory, sys.path))
-        #
-        # Importe le fichier complet comme un module
-        # ------------------------------------------
-        try:
-            __sys_path_tmp = sys.path ; sys.path.insert(0,__module_path)
-            self.__diagnosticFile = __import__(str(__choice), globals(), locals(), [])
-            sys.path = __sys_path_tmp ; del __sys_path_tmp
-        except ImportError as e:
-            raise ImportError("The module named \"%s\" was found, but is incorrect at the import stage.\n             The import error message is: %s"%(__choice,e))
-        #
-        # Instancie un objet du type élémentaire du fichier
-        # -------------------------------------------------
-        if __name in __existings:
-            raise ValueError("A default input with the same name \"%s\" already exists."%str(__name))
-        else:
-            self.__TheDiag = self.__diagnosticFile.ElementaryDiagnostic(
-                name       = __name,
-                unit       = __unit,
-                basetype   = __basetype,
-                parameters = __parameters )
-        return 0
-
 # ==============================================================================
 class AlgorithmAndParameters(object):
     """
@@ -885,7 +755,7 @@ class AlgorithmAndParameters(object):
         #
         self.updateParameters( asDict, asScript )
         #
-        if asScript is not None:
+        if asAlgorithm is None and asScript is not None:
             __Algo = ImportFromScript(asScript).getvalue( "Algorithm" )
         else:
             __Algo = asAlgorithm
@@ -901,7 +771,7 @@ class AlgorithmAndParameters(object):
                  asScript   = None,
                 ):
         "Mise a jour des parametres"
-        if asScript is not None:
+        if asDict is None and asScript is not None:
             __Dict = ImportFromScript(asScript).getvalue( self.__name, "Parameters" )
         else:
             __Dict = asDict
@@ -952,8 +822,15 @@ class AlgorithmAndParameters(object):
         "Permet de lancer le calcul d'assimilation"
         if FileName is None or not os.path.exists(FileName):
             raise ValueError("a YACS file name has to be given for YACS execution.\n")
-        if not PlatformInfo.has_salome or not PlatformInfo.has_yacs or not PlatformInfo.has_adao:
-            raise ImportError("Unable to get SALOME, YACS or ADAO environnement variables. Please launch SALOME before executing.\n")
+        else:
+            __file    = os.path.abspath(FileName)
+            logging.debug("The YACS file name is \"%s\"."%__file)
+        if not PlatformInfo.has_salome or \
+            not PlatformInfo.has_yacs or \
+            not PlatformInfo.has_adao:
+            raise ImportError("\n\n"+\
+                "Unable to get SALOME, YACS or ADAO environnement variables.\n"+\
+                "Please load the right environnement before trying to use it.\n")
         #
         import pilot
         import SALOMERuntime
@@ -964,13 +841,13 @@ class AlgorithmAndParameters(object):
         xmlLoader = loader.YACSLoader()
         xmlLoader.registerProcCataLoader()
         try:
-            catalogAd = r.loadCatalog("proc", os.path.abspath(FileName))
+            catalogAd = r.loadCatalog("proc", __file)
             r.addCatalog(catalogAd)
         except:
             pass
 
         try:
-            p = xmlLoader.load(os.path.abspath(FileName))
+            p = xmlLoader.load(__file)
         except IOError as ex:
             print("The YACS XML schema file can not be loaded: %s"%(ex,))
 
@@ -1219,6 +1096,45 @@ class AlgorithmAndParameters(object):
         #
         return 1
 
+# ==============================================================================
+class RegulationAndParameters(object):
+    """
+    Classe générale d'interface d'action pour la régulation et ses paramètres
+    """
+    def __init__(self,
+                 name               = "GenericRegulation",
+                 asAlgorithm        = None,
+                 asDict             = None,
+                 asScript           = None,
+                ):
+        """
+        """
+        self.__name       = str(name)
+        self.__P          = {}
+        #
+        if asAlgorithm is None and asScript is not None:
+            __Algo = ImportFromScript(asScript).getvalue( "Algorithm" )
+        else:
+            __Algo = asAlgorithm
+        #
+        if asDict is None and asScript is not None:
+            __Dict = ImportFromScript(asScript).getvalue( self.__name, "Parameters" )
+        else:
+            __Dict = asDict
+        #
+        if __Dict is not None:
+            self.__P.update( dict(__Dict) )
+        #
+        if __Algo is not None:
+            self.__P.update( {"Algorithm":self.__A} )
+
+    def get(self, key = None):
+        "Vérifie l'existence d'une clé de variable ou de paramètres"
+        if key in self.__P:
+            return self.__P[key]
+        else:
+            return self.__P
+
 # ==============================================================================
 class DataObserver(object):
     """
@@ -1339,8 +1255,9 @@ class State(object):
             self.size        = self.__V.size
         elif __Series is not None:
             self.__is_series  = True
-            if isinstance(__Series, (tuple, list, numpy.ndarray, numpy.matrix)):
+            if isinstance(__Series, (tuple, list, numpy.ndarray, numpy.matrix, str)):
                 self.__V = Persistence.OneVector(self.__name, basetype=numpy.matrix)
+                if isinstance(__Series, str): __Series = eval(__Series)
                 for member in __Series:
                     self.__V.store( numpy.matrix( numpy.asmatrix(member).A1, numpy.float ).T )
                 import sys ; sys.stdout.flush()
@@ -1717,11 +1634,14 @@ class CaseLogger(object):
         self.__objname  = str(__objname)
         self.__logSerie = []
         self.__switchoff = False
-        self.__viewers = self.__loaders = {
-            "TUI":_TUIViewer,
-            "DCT":_DCTViewer,
-            "SCD":_SCDViewer,
-            "YACS":_YACSViewer,
+        self.__viewers = {
+            "TUI" :Interfaces._TUIViewer,
+            "SCD" :Interfaces._SCDViewer,
+            "YACS":Interfaces._YACSViewer,
+            }
+        self.__loaders = {
+            "TUI" :Interfaces._TUIViewer,
+            "COM" :Interfaces._COMViewer,
             }
         if __addViewers is not None:
             self.__viewers.update(dict(__addViewers))
@@ -1738,485 +1658,21 @@ class CaseLogger(object):
         if not __switchoff:
             self.__switchoff = False
 
-    def dump(self, __filename=None, __format="TUI"):
-        "Restitution normalisée des commandes (par les *GenericCaseViewer)"
+    def dump(self, __filename=None, __format="TUI", __upa=""):
+        "Restitution normalisée des commandes"
         if __format in self.__viewers:
             __formater = self.__viewers[__format](self.__name, self.__objname, self.__logSerie)
         else:
             raise ValueError("Dumping as \"%s\" is not available"%__format)
-        return __formater.dump(__filename)
+        return __formater.dump(__filename, __upa)
 
-    def load(self, __filename=None, __format="TUI"):
+    def load(self, __filename=None, __content=None, __object=None, __format="TUI"):
         "Chargement normalisé des commandes"
         if __format in self.__loaders:
             __formater = self.__loaders[__format]()
         else:
             raise ValueError("Loading as \"%s\" is not available"%__format)
-        return __formater.load(__filename)
-
-# ==============================================================================
-class GenericCaseViewer(object):
-    """
-    Gestion des commandes de creation d'une vue de cas
-    """
-    def __init__(self, __name="", __objname="case", __content=None):
-        "Initialisation et enregistrement de l'entete"
-        self._name     = str(__name)
-        self._objname  = str(__objname)
-        self._lineSerie = []
-        self._switchoff = False
-        self._numobservers = 2
-        self._content = __content
-        self._missing = """raise ValueError("This case requires beforehand to import or define the variable named <%s>. When corrected, remove this command, correct and uncomment the following one.")\n# """
-    def _append(self):
-        "Transformation de commande individuelle en enregistrement"
-        raise NotImplementedError()
-    def _extract(self):
-        "Transformation d'enregistrement en commande individuelle"
-        raise NotImplementedError()
-    def _finalize(self):
-        "Enregistrement du final"
-        pass
-    def _addLine(self, line=""):
-        "Ajoute un enregistrement individuel"
-        self._lineSerie.append(line)
-    def dump(self, __filename=None):
-        "Restitution normalisée des commandes"
-        self._finalize()
-        __text = "\n".join(self._lineSerie)
-        __text +="\n"
-        if __filename is not None:
-            __file = os.path.abspath(__filename)
-            __fid = open(__file,"w")
-            __fid.write(__text)
-            __fid.close()
-        return __text
-    def load(self, __filename=None):
-        "Chargement normalisé des commandes"
-        if os.path.exists(__filename):
-            self._content = open(__filename, 'r').read()
-        __commands = self._extract(self._content)
-        return __commands
-
-    # --> Inutile d'accrocher l'interpretation au cas
-    # def _interpret(self):
-    #     "Interprétation d'une commande"
-    #     raise NotImplementedError()
-    # def execCase(self, __filename=None):
-    #     "Exécution normalisée des commandes"
-    #     if os.path.exists(__filename):
-    #         self._content = open(__filename, 'r').read()
-    #     __retcode = self._interpret(self._content)
-    #     return __retcode
-
-class _TUIViewer(GenericCaseViewer):
-    """
-    Etablissement des commandes d'un cas TUI
-    """
-    def __init__(self, __name="", __objname="case", __content=None):
-        "Initialisation et enregistrement de l'entete"
-        GenericCaseViewer.__init__(self, __name, __objname, __content)
-        self._addLine("# -*- coding: utf-8 -*-")
-        self._addLine("#\n# Python script for ADAO TUI\n#")
-        self._addLine("from numpy import array, matrix")
-        self._addLine("import adaoBuilder")
-        self._addLine("%s = adaoBuilder.New('%s')"%(self._objname, self._name))
-        if self._content is not None:
-            for command in self._content:
-                self._append(*command)
-    def _append(self, __command=None, __keys=None, __local=None, __pre=None, __switchoff=False):
-        "Transformation d'une commande individuelle en un enregistrement"
-        if __command is not None and __keys is not None and __local is not None:
-            __text  = ""
-            if __pre is not None:
-                __text += "%s = "%__pre
-            __text += "%s.%s( "%(self._objname,str(__command))
-            if "self" in __keys: __keys.remove("self")
-            if __command not in ("set","get") and "Concept" in __keys: __keys.remove("Concept")
-            for k in __keys:
-                __v = __local[k]
-                if __v is None: continue
-                if   k == "Checked" and not __v: continue
-                if   k == "Stored"  and not __v: continue
-                if   k == "AvoidRC" and __v: continue
-                if   k == "noDetails": continue
-                if isinstance(__v,Persistence.Persistence): __v = __v.values()
-                if callable(__v): __text = self._missing%__v.__name__+__text
-                if isinstance(__v,dict):
-                    for val in __v.values():
-                        if callable(val): __text = self._missing%val.__name__+__text
-                numpy.set_printoptions(precision=15,threshold=1000000,linewidth=1000*15)
-                __text += "%s=%s, "%(k,repr(__v))
-                numpy.set_printoptions(precision=8,threshold=1000,linewidth=75)
-            __text.rstrip(", ")
-            __text += ")"
-            self._addLine(__text)
-    def _extract(self, __content=""):
-        "Transformation un enregistrement en une commande individuelle"
-        __is_case = False
-        __commands = []
-        __content = __content.replace("\r\n","\n")
-        for line in __content.split("\n"):
-            if "adaoBuilder.New" in line and "=" in line:
-                self._objname = line.split("=")[0].strip()
-                __is_case = True
-            if not __is_case:
-                continue
-            else:
-                if self._objname+".set" in line:
-                    __commands.append( line.replace(self._objname+".","",1) )
-        return __commands
-
-    # def _interpret(self, __content=""):
-    #     "Interprétation d'une commande"
-    #     __content = __content.replace("\r\n","\n")
-    #     exec(__content)
-    #     return 0
-
-class _DCTViewer(GenericCaseViewer):
-    """
-    Etablissement des commandes d'un cas DCT
-    """
-    def __init__(self, __name="", __objname="case", __content=None):
-        "Initialisation et enregistrement de l'entete"
-        GenericCaseViewer.__init__(self, __name, __objname, __content)
-        self._observerIndex = 0
-        self._addLine("# -*- coding: utf-8 -*-")
-        self._addLine("#\n# Python script for ADAO DCT\n#")
-        self._addLine("from numpy import array, matrix")
-        self._addLine("#")
-        self._addLine("%s = {}"%__objname)
-        if self._content is not None:
-            for command in self._content:
-                self._append(*command)
-    def _append(self, __command=None, __keys=None, __local=None, __pre=None, __switchoff=False):
-        "Transformation d'une commande individuelle en un enregistrement"
-        if __command is not None and __keys is not None and __local is not None:
-            __text  = ""
-            if "execute" in __command: return
-            if "self" in __keys: __keys.remove("self")
-            if __command in ("set","get") and "Concept" in __keys:
-                __key = __local["Concept"]
-                __keys.remove("Concept")
-            else:
-                __key = __command.replace("set","").replace("get","")
-            if "Observer" in __key and 'Variable' in __keys:
-                self._observerIndex += 1
-                __key += "_%i"%self._observerIndex
-            __text += "%s['%s'] = {"%(self._objname,str(__key))
-            for k in __keys:
-                __v = __local[k]
-                if __v is None: continue
-                if   k == "Checked" and not __v: continue
-                if   k == "Stored"  and not __v: continue
-                if   k == "AvoidRC" and __v: continue
-                if   k == "noDetails": continue
-                if isinstance(__v,Persistence.Persistence): __v = __v.values()
-                if callable(__v): __text = self._missing%__v.__name__+__text
-                if isinstance(__v,dict):
-                    for val in __v.values():
-                        if callable(val): __text = self._missing%val.__name__+__text
-                numpy.set_printoptions(precision=15,threshold=1000000,linewidth=1000*15)
-                __text += "'%s':%s, "%(k,repr(__v))
-                numpy.set_printoptions(precision=8,threshold=1000,linewidth=75)
-            __text.rstrip(", ").rstrip()
-            __text += "}"
-            if __text[-2:] == "{}": return # Supprime les *Debug et les variables
-            self._addLine(__text)
-    def _extract(self, __content=""):
-        "Transformation un enregistrement en une commande individuelle"
-        __is_case = False
-        __commands = []
-        __content = __content.replace("\r\n","\n")
-        exec(__content)
-        self._objdata = None
-        __getlocals = locals()
-        for k in __getlocals:
-            try:
-                if 'AlgorithmParameters' in __getlocals[k] and type(__getlocals[k]) is dict:
-                    self._objname = k
-                    self._objdata = __getlocals[k]
-            except:
-                continue
-        if self._objdata is None:
-            raise ValueError("Impossible to load given content as a ADAO DCT one (no 'AlgorithmParameters' key found).")
-        for k in self._objdata:
-            if 'Observer_' in k:
-                __command = k.split('_',1)[0]
-            else:
-                __command = k
-            __arguments = ["%s = %s"%(k,repr(v)) for k,v in self._objdata[k].items()]
-            __commands.append( "set( Concept='%s', %s )"%(__command, ", ".join(__arguments)))
-        __commands.sort() # Pour commencer par 'AlgorithmParameters'
-        return __commands
-
-class _SCDViewer(GenericCaseViewer):
-    """
-    Etablissement des commandes d'un cas SCD (Study Config Dictionary)
-    """
-    def __init__(self, __name="", __objname="case", __content=None):
-        "Initialisation et enregistrement de l'entete"
-        GenericCaseViewer.__init__(self, __name, __objname, __content)
-        self._addLine("# -*- coding: utf-8 -*-")
-        self._addLine("#\n# Input for ADAO converter to YACS\n#")
-        self._addLine("from numpy import array, matrix")
-        self._addLine("#")
-        self._addLine("study_config = {}")
-        self._addLine("study_config['StudyType'] = 'ASSIMILATION_STUDY'")
-        self._addLine("study_config['Name'] = '%s'"%self._name)
-        self._addLine("observers = {}")
-        self._addLine("study_config['Observers'] = observers")
-        self._addLine("#")
-        self._addLine("inputvariables_config = {}")
-        self._addLine("inputvariables_config['Order'] =['adao_default']")
-        self._addLine("inputvariables_config['adao_default'] = -1")
-        self._addLine("study_config['InputVariables'] = inputvariables_config")
-        self._addLine("#")
-        self._addLine("outputvariables_config = {}")
-        self._addLine("outputvariables_config['Order'] = ['adao_default']")
-        self._addLine("outputvariables_config['adao_default'] = -1")
-        self._addLine("study_config['OutputVariables'] = outputvariables_config")
-        if __content is not None:
-            for command in __content:
-                self._append(*command)
-    def _append(self, __command=None, __keys=None, __local=None, __pre=None, __switchoff=False):
-        "Transformation d'une commande individuelle en un enregistrement"
-        if __command == "set": __command = __local["Concept"]
-        else:                  __command = __command.replace("set", "", 1)
-        #
-        __text  = None
-        if __command in (None, 'execute', 'executePythonScheme', 'executeYACSScheme', 'get'):
-            return
-        elif __command in ['Debug', 'setDebug']:
-            __text  = "#\nstudy_config['Debug'] = '1'"
-        elif __command in ['NoDebug', 'setNoDebug']:
-            __text  = "#\nstudy_config['Debug'] = '0'"
-        elif __command in ['Observer', 'setObserver']:
-            __obs   = __local['Variable']
-            self._numobservers += 1
-            __text  = "#\n"
-            __text += "observers['%s'] = {}\n"%__obs
-            if __local['String'] is not None:
-                __text += "observers['%s']['nodetype'] = '%s'\n"%(__obs, 'String')
-                __text += "observers['%s']['String'] = \"\"\"%s\"\"\"\n"%(__obs, __local['String'])
-            if __local['Script'] is not None:
-                __text += "observers['%s']['nodetype'] = '%s'\n"%(__obs, 'Script')
-                __text += "observers['%s']['Script'] = \"%s\"\n"%(__obs, __local['Script'])
-            if __local['Template'] is not None and __local['Template'] in Templates.ObserverTemplates:
-                __text += "observers['%s']['nodetype'] = '%s'\n"%(__obs, 'String')
-                __text += "observers['%s']['String'] = \"\"\"%s\"\"\"\n"%(__obs, Templates.ObserverTemplates[__local['Template']])
-            if __local['Info'] is not None:
-                __text += "observers['%s']['info'] = \"\"\"%s\"\"\"\n"%(__obs, __local['Info'])
-            else:
-                __text += "observers['%s']['info'] = \"\"\"%s\"\"\"\n"%(__obs, __obs)
-            __text += "observers['%s']['number'] = %s"%(__obs, self._numobservers)
-        elif __local is not None: # __keys is not None and
-            numpy.set_printoptions(precision=15,threshold=1000000,linewidth=1000*15)
-            __text  = "#\n"
-            __text += "%s_config = {}\n"%__command
-            if 'self' in __local: __local.pop('self')
-            __to_be_removed = []
-            for __k,__v in __local.items():
-                if __v is None: __to_be_removed.append(__k)
-            for __k in __to_be_removed:
-                __local.pop(__k)
-            for __k,__v in __local.items():
-                if __k == "Concept": continue
-                if __k in ['ScalarSparseMatrix','DiagonalSparseMatrix','Matrix','OneFunction','ThreeFunctions'] and 'Script' in __local: continue
-                if __k == 'Algorithm':
-                    __text += "study_config['Algorithm'] = %s\n"%(repr(__v))
-                elif __k == 'Script':
-                    __k = 'Vector'
-                    __f = 'Script'
-                    __v = "'"+repr(__v)+"'"
-                    for __lk in ['ScalarSparseMatrix','DiagonalSparseMatrix','Matrix']:
-                        if __lk in __local and __local[__lk]: __k = __lk
-                    if __command == "AlgorithmParameters": __k = "Dict"
-                    if 'OneFunction' in __local and __local['OneFunction']:
-                        __text += "%s_ScriptWithOneFunction = {}\n"%(__command,)
-                        __text += "%s_ScriptWithOneFunction['Function'] = ['Direct', 'Tangent', 'Adjoint']\n"%(__command,)
-                        __text += "%s_ScriptWithOneFunction['Script'] = {}\n"%(__command,)
-                        __text += "%s_ScriptWithOneFunction['Script']['Direct'] = %s\n"%(__command,__v)
-                        __text += "%s_ScriptWithOneFunction['Script']['Tangent'] = %s\n"%(__command,__v)
-                        __text += "%s_ScriptWithOneFunction['Script']['Adjoint'] = %s\n"%(__command,__v)
-                        __text += "%s_ScriptWithOneFunction['DifferentialIncrement'] = 1e-06\n"%(__command,)
-                        __text += "%s_ScriptWithOneFunction['CenteredFiniteDifference'] = 0\n"%(__command,)
-                        __k = 'Function'
-                        __f = 'ScriptWithOneFunction'
-                        __v = '%s_ScriptWithOneFunction'%(__command,)
-                    if 'ThreeFunctions' in __local and __local['ThreeFunctions']:
-                        __text += "%s_ScriptWithFunctions = {}\n"%(__command,)
-                        __text += "%s_ScriptWithFunctions['Function'] = ['Direct', 'Tangent', 'Adjoint']\n"%(__command,)
-                        __text += "%s_ScriptWithFunctions['Script'] = {}\n"%(__command,)
-                        __text += "%s_ScriptWithFunctions['Script']['Direct'] = %s\n"%(__command,__v)
-                        __text += "%s_ScriptWithFunctions['Script']['Tangent'] = %s\n"%(__command,__v)
-                        __text += "%s_ScriptWithFunctions['Script']['Adjoint'] = %s\n"%(__command,__v)
-                        __k = 'Function'
-                        __f = 'ScriptWithFunctions'
-                        __v = '%s_ScriptWithFunctions'%(__command,)
-                    __text += "%s_config['Type'] = '%s'\n"%(__command,__k)
-                    __text += "%s_config['From'] = '%s'\n"%(__command,__f)
-                    __text += "%s_config['Data'] = %s\n"%(__command,__v)
-                    __text = __text.replace("''","'")
-                elif __k in ('Stored', 'Checked'):
-                    if bool(__v):
-                        __text += "%s_config['%s'] = '%s'\n"%(__command,__k,int(bool(__v)))
-                elif __k in ('AvoidRC', 'noDetails'):
-                    if not bool(__v):
-                        __text += "%s_config['%s'] = '%s'\n"%(__command,__k,int(bool(__v)))
-                else:
-                    if __k == 'Parameters': __k = "Dict"
-                    if isinstance(__v,Persistence.Persistence): __v = __v.values()
-                    if callable(__v): __text = self._missing%__v.__name__+__text
-                    if isinstance(__v,dict):
-                        for val in __v.values():
-                            if callable(val): __text = self._missing%val.__name__+__text
-                    __text += "%s_config['Type'] = '%s'\n"%(__command,__k)
-                    __text += "%s_config['From'] = '%s'\n"%(__command,'String')
-                    __text += "%s_config['Data'] = \"\"\"%s\"\"\"\n"%(__command,repr(__v))
-            __text += "study_config['%s'] = %s_config"%(__command,__command)
-            numpy.set_printoptions(precision=8,threshold=1000,linewidth=75)
-            if __switchoff:
-                self._switchoff = True
-        if __text is not None: self._addLine(__text)
-        if not __switchoff:
-            self._switchoff = False
-    def _finalize(self):
-        self.__loadVariablesByScript()
-        self._addLine("#")
-        self._addLine("Analysis_config = {}")
-        self._addLine("Analysis_config['From'] = 'String'")
-        self._addLine("Analysis_config['Data'] = \"\"\"import numpy")
-        self._addLine("xa=numpy.ravel(ADD.get('Analysis')[-1])")
-        self._addLine("print 'Analysis:',xa\"\"\"")
-        self._addLine("study_config['UserPostAnalysis'] = Analysis_config")
-    def __loadVariablesByScript(self):
-        __ExecVariables = {} # Necessaire pour recuperer la variable
-        exec("\n".join(self._lineSerie), __ExecVariables)
-        study_config = __ExecVariables['study_config']
-        # Pour Python 3 : self.__hasAlgorithm = bool(study_config['Algorithm'])
-        if 'Algorithm' in study_config:
-            self.__hasAlgorithm = True
-        else:
-            self.__hasAlgorithm = False
-        if not self.__hasAlgorithm and \
-                "AlgorithmParameters" in study_config and \
-                isinstance(study_config['AlgorithmParameters'], dict) and \
-                "From" in study_config['AlgorithmParameters'] and \
-                "Data" in study_config['AlgorithmParameters'] and \
-                study_config['AlgorithmParameters']['From'] == 'Script':
-            __asScript = study_config['AlgorithmParameters']['Data']
-            __var = ImportFromScript(__asScript).getvalue( "Algorithm" )
-            __text = "#\nstudy_config['Algorithm'] = '%s'"%(__var,)
-            self._addLine(__text)
-        if self.__hasAlgorithm and \
-                "AlgorithmParameters" in study_config and \
-                isinstance(study_config['AlgorithmParameters'], dict) and \
-                "From" not in study_config['AlgorithmParameters'] and \
-                "Data" not in study_config['AlgorithmParameters']:
-            __text  = "#\n"
-            __text += "AlgorithmParameters_config['Type'] = 'Dict'\n"
-            __text += "AlgorithmParameters_config['From'] = 'String'\n"
-            __text += "AlgorithmParameters_config['Data'] = '{}'\n"
-            self._addLine(__text)
-        del study_config
-
-class _XMLViewer(GenericCaseViewer):
-    """
-    Etablissement des commandes de creation d'un cas XML
-    """
-    def __init__(self, __name="", __objname="case", __content=None):
-        "Initialisation et enregistrement de l'entete"
-        GenericCaseViewer.__init__(self, __name, __objname, __content)
-        raise NotImplementedError()
-
-class _YACSViewer(GenericCaseViewer):
-    """
-    Etablissement des commandes de creation d'un cas YACS
-    """
-    def __init__(self, __name="", __objname="case", __content=None):
-        "Initialisation et enregistrement de l'entete"
-        GenericCaseViewer.__init__(self, __name, __objname, __content)
-        self.__internalSCD = _SCDViewer(__name, __objname, __content)
-        self._append       = self.__internalSCD._append
-    def dump(self, __filename=None, __convertSCDinMemory=True):
-        "Restitution normalisée des commandes"
-        self.__internalSCD._finalize()
-        # -----
-        if __filename is None:
-            raise ValueError("A file name has to be given for YACS XML output.")
-        # -----
-        if not PlatformInfo.has_salome or \
-            not PlatformInfo.has_adao:
-            raise ImportError("\n\n"+\
-                "Unable to get SALOME or ADAO environnement variables.\n"+\
-                "Please load the right environnement before trying to use it.\n")
-        elif __convertSCDinMemory:
-            __file    = os.path.abspath(__filename)
-            __SCDdump = self.__internalSCD.dump()
-            if os.path.isfile(__file) or os.path.islink(__file):
-                os.remove(__file)
-            from daYacsSchemaCreator.run import create_schema_from_content
-            create_schema_from_content(__SCDdump, __file)
-        else:
-            __file    = os.path.abspath(__filename)
-            __SCDfile = __file[:__file.rfind(".")] + '_SCD.py'
-            __SCDdump = self.__internalSCD.dump(__SCDfile)
-            if os.path.isfile(__file) or os.path.islink(__file):
-                os.remove(__file)
-            __converterExe = os.path.join(os.environ["ADAO_ROOT_DIR"], "bin/salome", "AdaoYacsSchemaCreator.py")
-            __args = ["python", __converterExe, __SCDfile, __file]
-            import subprocess
-            __p = subprocess.Popen(__args)
-            (__stdoutdata, __stderrdata) = __p.communicate()
-            __p.terminate()
-            os.remove(__SCDfile)
-        # -----
-        if not os.path.exists(__file):
-            # logging.debug("-- Error YacsSchemaCreator with convert SCD in memory=%s --"%__convertSCDinMemory)
-            # logging.debug("-- Content of the file : --")
-            # logging.debug(__SCDdump)
-            __msg  = "An error occured during the ADAO YACS Schema build for\n"
-            __msg += "the target output file:\n"
-            __msg += "  %s\n"%__file
-            __msg += "See errors details in your launching terminal log.\n"
-            raise ValueError(__msg)
-        # -----
-        __fid = open(__file,"r")
-        __text = __fid.read()
-        __fid.close()
-        return __text
-
-# ==============================================================================
-class ImportFromScript(object):
-    """
-    Obtention d'une variable nommee depuis un fichier script importe
-    """
-    def __init__(self, __filename=None):
-        "Verifie l'existence et importe le script"
-        self.__filename = __filename.rstrip(".py")
-        if self.__filename is None:
-            raise ValueError("The name of the file, containing the variable to be read, has to be specified.")
-        if not os.path.isfile(str(self.__filename)+".py"):
-            raise ValueError("The file containing the variable to be imported doesn't seem to exist. Please check the file. The given file name is:\n  \"%s\""%self.__filename)
-        self.__scriptfile = __import__(self.__filename, globals(), locals(), [])
-        self.__scriptstring = open(self.__filename+".py",'r').read()
-    def getvalue(self, __varname=None, __synonym=None ):
-        "Renvoie la variable demandee"
-        if __varname is None:
-            raise ValueError("The name of the variable to be read has to be specified. Please check the content of the file and the syntax.")
-        if not hasattr(self.__scriptfile, __varname):
-            if __synonym is None:
-                raise ValueError("The imported script file \"%s\" doesn't contain the mandatory variable \"%s\" to be read. Please check the content of the file and the syntax."%(str(self.__filename)+".py",__varname))
-            elif not hasattr(self.__scriptfile, __synonym):
-                raise ValueError("The imported script file \"%s\" doesn't contain the mandatory variable \"%s\" to be read. Please check the content of the file and the syntax."%(str(self.__filename)+".py",__synonym))
-            else:
-                return getattr(self.__scriptfile, __synonym)
-        else:
-            return getattr(self.__scriptfile, __varname)
-    def getstring(self):
-        "Renvoie le script complet"
-        return self.__scriptstring
+        return __formater.load(__filename, __content, __object)
 
 # ==============================================================================
 def CostFunction3D(_x,