]> SALOME platform Git repositories - tools/eficas.git/blobdiff - generator/generator_ini.py
Salome HOME
onItem=Deplie
[tools/eficas.git] / generator / generator_ini.py
index 5e9ac103b8afd461f962b9727ae812e98c5c0d01..182c1f0c6dd9c11daa5d8a10fc7739327dc74a39 100644 (file)
@@ -1,22 +1,22 @@
-#            CONFIGURATION MANAGEMENT OF EDF VERSION
-# ======================================================================
-# COPYRIGHT (C) 1991 - 2002  EDF R&D                  WWW.CODE-ASTER.ORG
-# THIS PROGRAM IS FREE SOFTWARE; YOU CAN REDISTRIBUTE IT AND/OR MODIFY
-# IT UNDER THE TERMS OF THE GNU GENERAL PUBLIC LICENSE AS PUBLISHED BY
-# THE FREE SOFTWARE FOUNDATION; EITHER VERSION 2 OF THE LICENSE, OR
-# (AT YOUR OPTION) ANY LATER VERSION.
+# -*- coding: utf-8 -*-
+# Copyright (C) 2007-2013   EDF R&D
 #
-# THIS PROGRAM 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
-# GENERAL PUBLIC LICENSE FOR MORE DETAILS.
+# 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.
 #
-# YOU SHOULD HAVE RECEIVED A COPY OF THE GNU GENERAL PUBLIC LICENSE
-# ALONG WITH THIS PROGRAM; IF NOT, WRITE TO EDF R&D CODE_ASTER,
-#    1 AVENUE DU GENERAL DE GAULLE, 92141 CLAMART CEDEX, FRANCE.
+# 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
 #
-# ======================================================================
 """
     Ce module contient le plugin generateur de fichier
     au format ini pour EFICAS.
 """
 import traceback
 import types,string
+from Extensions.i18n import tr
+from Extensions.eficas_exception import EficasException
+
 
 from Noyau import N_CR
-from Accas import MCSIMP,MCFACT
+from Accas import MCSIMP,MCFACT,MCList
 
 def entryPoint():
    """
@@ -74,7 +77,7 @@ class IniGenerator:
       fp.write(self.text)
       fp.close()
 
-   def gener(self,obj):
+   def gener(self,obj,config=None):
       """
          Tous les mots-clés simples du niveau haut sont mis dans la section DEFAUT
          Tous les mots-clés facteurs sont convertis en sections
@@ -82,13 +85,25 @@ class IniGenerator:
       """
       liste_mcfact=[]
       sect_defaut=''
+      if isinstance(obj,MCList):
+        if len(obj.data) > 1:
+          raise EficasException(tr("Pas supporte"))
+        else:
+          obj=obj.data[0]
+
       for mocle in obj.mc_liste:
-         if isinstance(mocle,MCFACT):
-            liste_mcfact.append(self.generMCFACT(mocle))
-         elif isinstance(mocle,MCSIMP):
-            sect_defaut=sect_defaut+self.generMCSIMP(mocle)
-         else:
-            self.cr.fatal("Entite inconnue ou interdite : "+`mocle`)
+        if isinstance(mocle,MCList):
+          if len(mocle.data) > 1:
+            raise EficasException(tr("Pas supporte"))
+          else:
+            liste_mcfact.append(self.generMCFACT(mocle.data[0]))
+        elif isinstance(mocle,MCFACT):
+          liste_mcfact.append(self.generMCFACT(mocle))
+        elif isinstance(mocle,MCSIMP):
+          sect_defaut=sect_defaut+self.generMCSIMP(mocle)
+        else:
+          self.cr.fatal(tr("Entite inconnue ou interdite :%s",`mocle`))
+
       self.text=''
       if sect_defaut != '':
          self.text="[DEFAULT]\n"+sect_defaut
@@ -105,7 +120,7 @@ class IniGenerator:
          if isinstance(mocle,MCSIMP):
             sect_text=sect_text+self.generMCSIMP(mocle)
          else:
-            self.cr.fatal("Entite inconnue ou interdite : "+`mocle`+" Elle est ignorée")
+            self.cr.fatal(tr("Entite inconnue ou interdite :%s. Elle est ignoree",`mocle`))
       return sect_text
 
    def generMCSIMP(self,obj):
@@ -115,13 +130,13 @@ class IniGenerator:
       """
       s=''
       if type(obj.valeur) == types.TupleType :
-         self.cr.fatal("Les tuples ne sont pas supportés pour le format ini : "+ obj.nom)
+         self.cr.fatal(tr("Les tuples ne sont pas supportes pour le format ini :%s ", obj.nom))
          s="%s = %s\n" % (obj.nom,"ERREUR")
       else :
          try:
             s="%s = %s\n" % (obj.nom,obj.valeur)
-         except Exception,e :
-            self.cr.fatal("Type de valeur non supporté par le format ini : "+ obj.nom + '\n'+str(e))
-            s="%s = %s\n" % (obj.nom,"ERREUR")
+         except Exception as e :
+            self.cr.fatal(tr("Type de valeur non supportee par le format ini :%(nom)s\n%(exception)s", \
+                                         {'nom': obj.nom, 'exception': str(e)}))
       return s