Salome HOME
gitignore V1
[tools/eficas.git] / generator / generator_pyth.py
index 34fa5cf726ec904a876bc5172d9278f18683971e..40d4b435d6e25615b56cc7c9cf930337a1b7fd6b 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 pyth pour EFICAS.
 
@@ -26,7 +26,10 @@ import traceback
 import types,string
 
 from Noyau import N_CR
-from Accas import MCSIMP,MCFACT
+from Accas import MCSIMP,MCFACT,MCList
+from Extensions.i18n import tr
+from Extensions.eficas_exception import EficasException
+
 
 def entryPoint():
    """
@@ -55,8 +58,7 @@ class PythGenerator:
 
        Ses caractéristiques principales sont exposées 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 préconisées
 
    """
    # Les extensions de fichier préconisées
@@ -77,7 +79,7 @@ class PythGenerator:
       fp.write(self.text)
       fp.close()
 
-   def gener(self,obj,format='standard'):
+   def gener(self,obj,format='standard',config=None):
       """
          Tous les mots-clés simples du niveau haut sont transformés en variables 
 
@@ -86,15 +88,28 @@ class PythGenerator:
          Les mots-clés multiples ne sont pas traités
       """
       s=''
+      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):
-            valeur=self.generMCFACT(mocle)
-            s=s+"%s = %s\n" % (mocle.nom,valeur)
-         elif isinstance(v,MCSIMP):
-            valeur = self.generMCSIMP(mocle)
+        if isinstance(mocle,MCList):
+          if len(mocle.data) > 1:
+            raise EficasException(tr("Pas supporte"))
+          else:
+            valeur=self.generMCFACT(mocle.data[0])
             s=s+"%s = %s\n" % (mocle.nom,valeur)
-         else:
-            self.cr.fatal("Entite inconnue ou interdite : "+`mocle`)
+        elif isinstance(mocle,MCFACT):
+          valeur=self.generMCFACT(mocle)
+          s=s+"%s = %s\n" % (mocle.nom,valeur)
+        elif isinstance(v,MCSIMP):
+          valeur = self.generMCSIMP(mocle)
+          s=s+"%s = %s\n" % (mocle.nom,valeur)
+        else:
+          self.cr.fatal("Entite inconnue ou interdite : "+`mocle`)
+
       self.text=s
       return self.text
 
@@ -112,7 +127,8 @@ class PythGenerator:
             valeur=self.generMCFACT(mocle)
             s=s+"'%s' : %s,\n" % (mocle.nom,valeur)
          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`))
+
       s=s+'}'
       return s
 
@@ -123,8 +139,11 @@ class PythGenerator:
       """
       try:
          s="%s" % obj.valeur
-      except Exception,e :
-         self.cr.fatal("Type de valeur non supporté par le format pyth : "+ obj.nom + '\n'+str(e))
+      except Exception as e :
+         self.cr.fatal(tr("Type de valeur non supporte par le format pyth : n %(exception)s", \
+                           {'nom': obj.nom, 'exception': unicode(e)}))
+
+
          s="ERREUR"
       return s