Salome HOME
BOUNDARY... dans Telemac2D
[tools/eficas.git] / generator / generator_ini.py
index 2e2ac93b0fc31a6ce05cc625298ff93d9c8be6fc..06c5f9f88e53e1472feeba6fb61c10739be2d49b 100644 (file)
@@ -1,63 +1,69 @@
-#            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.
-
-
 """
+from __future__ import absolute_import
+try :
+   from builtins import str
+   from builtins import object
+except : pass
+
 import traceback
-import types,string
+import types
+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():
    """
-       Retourne les informations nécessaires pour le chargeur de plugins
-       Ces informations sont retournées dans un dictionnaire
+       Retourne les informations necessaires pour le chargeur de plugins
+       Ces informations sont retournees dans un dictionnaire
    """
    return {
         # Le nom du plugin
           'name' : 'ini',
-        # La factory pour créer une instance du plugin
+        # La factory pour creer une instance du plugin
           'factory' : IniGenerator,
           }
 
 
-class IniGenerator:
+class IniGenerator(object):
    """
        Ce generateur parcourt un objet de type MCFACT et produit
        un fichier au format ini 
-       L'acquisition et le parcours sont réalisés par le méthode
+       L'acquisition et le parcours sont realises par le methode
        generator.gener(objet_mcfact)
-       L'écriture du fichier au format ini par appel de la méthode
+       L'ecriture du fichier au format ini par appel de la methode
        generator.writefile(nom_fichier)
 
-       Ses caractéristiques principales sont exposées dans des attributs 
+       Ses caracteristiques principales sont exposees dans des attributs 
        de classe :
-
-       - extensions : qui donne une liste d'extensions de fichier préconisées
+         - extensions : qui donne une liste d'extensions de fichier preconisees
 
    """
-   # Les extensions de fichier préconisées
+   # Les extensions de fichier preconisees
    extensions=('.ini','.conf')
 
    def __init__(self,cr=None):
@@ -67,7 +73,7 @@ class IniGenerator:
       else:
          self.cr=N_CR.CR(debut='CR generateur format ini',
                          fin='fin CR format ini')
-      # Le texte au format ini est stocké dans l'attribut text
+      # Le texte au format ini est stocke dans l'attribut text
       self.text=''
 
    def writefile(self,filename):
@@ -75,54 +81,66 @@ 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
-         Un mot-clé facteur ne peut contenir que des mots-clés simples. Sinon => erreur
+         Tous les mots-cles simples du niveau haut sont mis dans la section DEFAUT
+         Tous les mots-cles facteurs sont convertis en sections
+         Un mot-cle facteur ne peut contenir que des mots-cles simples. Sinon => erreur
       """
       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",repr(mocle)))
+
       self.text=''
       if sect_defaut != '':
          self.text="[DEFAULT]\n"+sect_defaut
-      self.text=self.text + string.join(liste_mcfact,'\n')
+      self.text=self.text + ''.join(liste_mcfact,'\n')
       return self.text
 
    def generMCFACT(self,obj):
       """
-         Cette méthode convertit un mot-clé facteur ne contenant que des mots-clés
-         simples en une chaine de caractères
+         Cette methode convertit un mot-cle facteur ne contenant que des mots-cles
+         simples en une chaine de caracteres
       """
       sect_text='[%s]\n' % obj.nom
       for mocle in obj.mc_liste:
          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",repr(mocle)))
       return sect_text
 
    def generMCSIMP(self,obj):
       """
-         Cette méthode convertit un mot-clé simple en une chaine de caractères
+         Cette methode convertit un mot-cle simple en une chaine de caracteres
          au format ini
       """
       s=''
-      if type(obj.valeur) == types.TupleType :
-         self.cr.fatal("Les tuples ne sont pas supportés pour le format ini : "+ obj.nom)
+      if type(obj.valeur) == tuple :
+         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