Salome HOME
Merge branch 'master' into V9_merge
[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             with open(filename) as fd :
57                 self.text=fd.read()
58         except:
59             self.cr.exception(tr("Impossible d'ouvrir le fichier %s" ,str(filename)))
60             self.cr.fatal(tr("Impossible d'ouvrir le fichier %s" ,str(filename)))
61             return
62
63
64
65     def convert(self, outformat, appliEficas=None):
66     # ici on ne fait rien
67     # on le fera a la creation du JDC
68         try:
69             return self.text
70         except EficasException:
71             # Erreur lors de la conversion
72             l=traceback.format_exception(sys.exc_info()[0],sys.exc_info()[1],
73                                          sys.exc_info()[2])
74             self.cr.exception(tr("Impossible de convertir le fichier XML\n %s", ''.join(l)))
75             return ""