Salome HOME
.gitignore: test hook.
[tools/eficas.git] / convert / convert_XML.py
1 # Copyright (C) 2007-2017   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       self.text=''
48       if cr : self.cr=cr
49       else: self.cr=N_CR.CR(debut='CR convertisseur format XML',
50                          fin='fin CR format XML')
51
52    def readfile(self,filename):
53       self.filename=filename
54       try:
55          self.text=open(filename).read()
56       except:
57          self.cr.exception(tr("Impossible d'ouvrir le fichier %s" ,str(filename)))
58          self.cr.fatal(tr("Impossible d'ouvrir le fichier %s" ,str(filename)))
59          return
60
61
62
63    def convert(self, outformat, appli=None):
64    # ici on ne fait rien
65    # on le fera a la creation du JDC
66        try:
67             return self.text
68        except EficasException:
69             # Erreur lors de la conversion
70             l=traceback.format_exception(sys.exc_info()[0],sys.exc_info()[1],
71                                          sys.exc_info()[2])
72             self.cr.exception(tr("Impossible de convertir le fichier XML\n %s", ''.join(l)))
73             return ""
74          
75
76       
77
78