Salome HOME
68e226ba4e8fd08c3701ed4561bbf706d8ce7249
[tools/eficas.git] / convert / convert_XML.py
1 # Copyright (C) 2007-2021   EDF R&D
2 #
3 # This library is free software; you can redistribute it and/or
4 # modify it under the terms of the GNU Lesser General Public
5 # License as published by the Free Software Foundation; either
6 # version 2.1 of the License.
7 #
8 # This library is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 # Lesser General Public License for more details.
12 #
13 # You should have received a copy of the GNU Lesser General Public
14 # License along with this library; if not, write to the Free Software
15 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 #
17 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 #
19 from __future__ import absolute_import
20
21
22 import re
23 from Extensions.i18n import tr
24
25 #import traceback
26 #traceback.print_stack()
27
28 from Extensions import localisation
29 from Noyau import N_CR
30
31
32 def entryPoint():
33    """
34    Return a dictionary containing the description needed to load the plugin
35    """
36    return {
37           'name' : 'xml',
38           'factory' : XMLparser
39           }
40
41 class XMLparser:
42    """
43    This converter works like Pythonparser, except that it is supposed to read XML
44    """
45
46    def __init__(self,cr=None):
47       print ('dans XML convert')
48       self.text=''
49       if cr : self.cr=cr
50       else: self.cr=N_CR.CR(debut='CR convertisseur format XML',
51                          fin='fin CR format XML')
52
53    def readfile(self,filename):
54       self.filename=filename
55       try:
56          self.text=open(filename).read()
57       except:
58          self.cr.exception(tr("Impossible d'ouvrir le fichier %s" ,str(filename)))
59          self.cr.fatal(tr("Impossible d'ouvrir le fichier %s" ,str(filename)))
60          return
61
62
63
64    def convert(self, outformat, appliEficas=None):
65    # ici on ne fait rien
66    # on le fera a la creation du JDC
67        try:
68             return self.text
69        except EficasException:
70             # Erreur lors de la conversion
71             l=traceback.format_exception(sys.exc_info()[0],sys.exc_info()[1],
72                                          sys.exc_info()[2])
73             self.cr.exception(tr("Impossible de convertir le fichier XML\n %s", ''.join(l)))
74             return ""
75          
76
77       
78
79