2 # -*- coding: utf-8 -*-
3 # Copyright (C) 2007-2013 EDF R&D
5 # This library is free software; you can redistribute it and/or
6 # modify it under the terms of the GNU Lesser General Public
7 # License as published by the Free Software Foundation; either
8 # version 2.1 of the License.
10 # This library is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 # Lesser General Public License for more details.
15 # You should have received a copy of the GNU Lesser General Public
16 # License along with this library; if not, write to the Free Software
17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
24 repIni=os.path.abspath(os.path.join(os.path.dirname(os.path.abspath(__file__)),".."))
25 from determine import monEnvQT5
27 ihmQTDir=os.path.join(repIni,"UiQT5")
28 from PyQt5.QtWidgets import QApplication
30 ihmQTDir=os.path.join(repIni,"UiQT4")
31 from PyQt4.QtGui import QApplication
32 editeurDir=os.path.join(repIni,"Editeur")
33 ihmDir=os.path.join(repIni,"InterfaceQT4")
34 if ihmDir not in sys.path : sys.path.append(ihmDir)
35 if ihmQTDir not in sys.path : sys.path.append(ihmQTDir)
36 if editeurDir not in sys.path :sys.path.append(editeurDir)
39 def lance_eficas(code=None,fichier=None,ssCode=None,multi=False,langue='en'):
43 # Analyse des arguments de la ligne de commande
44 from Editeur import session
45 options=session.parse(sys.argv)
46 if options.code!= None : code=options.code
47 if options.ssCode!= None : ssCode=options.ssCode
49 from qtEficas import Appli
50 from Extensions import localisation
51 app = QApplication(sys.argv)
52 localisation.localise(app,langue)
53 Eficas=Appli(code=code,ssCode=ssCode,multi=multi,langue=langue)
60 def lance_eficas_ssIhm(code=None,fichier=None,ssCode=None,version=None):
62 Lance l'appli EFICAS pour trouver les noms des groupes
64 # Analyse des arguments de la ligne de commande
65 from Editeur import session
66 options=session.parse(sys.argv)
67 if version!=None and options.cata==None : options.cata=version
68 if fichier==None : fichier=options.comm[0]
69 if code == None : code=options.code
71 from qtEficas import Appli
72 app = QApplication(sys.argv)
73 Eficas=Appli(code=code,ssCode=ssCode,ssIhm=True)
75 from ssIhm import QWParentSSIhm
76 parent=QWParentSSIhm(code,Eficas,version)
79 if not hasattr ( Eficas, 'readercata'):
80 monreadercata = readercata.READERCATA( parent, Eficas )
81 Eficas.readercata=monreadercata
83 from editor import JDCEditor
84 monEditeur=JDCEditor(Eficas,fichier)
87 def lance_eficas_ssIhm_cherche_Groupes(code=None,fichier=None,ssCode=None,version=None):
88 monEditeur=lance_eficas_ssIhm(code,fichier,ssCode,version)
89 print monEditeur.cherche_Groupes()
91 def lance_eficas_ssIhm_cherche_cr(code=None,fichier=None,ssCode=None,version=None):
92 monEditeur=lance_eficas_ssIhm(code,fichier,ssCode,version)
93 print monEditeur.jdc.cr
95 def lance_eficas_ssIhm_reecrit(code=None,fichier=None,ssCode=None,version=None):
96 monEditeur=lance_eficas_ssIhm(code,fichier,ssCode,version)
98 fileName=fichier.split(".")[0]+"_reecrit.comm"
99 monEditeur.saveFileAs(fileName=fileName)
101 def lance_eficas_param(code='Adao',fichier=None,version='V0',macro='ASSIMILATION_STUDY'):
103 Lance l'appli EFICAS pour trouver les noms des groupes
105 # Analyse des arguments de la ligne de commande
106 from Editeur import session
107 options=session.parse(sys.argv)
109 from qtEficas import Appli
110 app = QApplication(sys.argv)
111 Eficas=Appli(code=code,ssCode=None)
113 from ssIhm import QWParentSSIhm
114 parent=QWParentSSIhm(code,Eficas,version)
117 if not hasattr ( Eficas, 'readercata'):
118 monreadercata = readercata.READERCATA( parent, Eficas )
119 Eficas.readercata=monreadercata
121 from editor import JDCEditor
122 monEditeur=JDCEditor(Eficas,fichier)
123 texte=loadJDC(fichier)
124 parameters=getJdcParameters(texte,macro)
127 def getJdcParameters(jdc,macro):
129 This function converts the data from the specified macro of the
130 specified jdc text to a python dictionnary whose keys are the
131 names of the data of the macro.
134 source = "def args_to_dict(**kwargs): return kwargs \n"
135 source+= "%s = _F = args_to_dict \n"%macro
136 source+= "parameters="+jdc+" \n"
137 source+= "context['parameters'] = parameters \n"
138 code = compile(source, 'file.py', 'exec')
140 parameters = context['parameters']
143 def loadJDC(filename):
145 This function loads the text from the specified JdC file. A JdC
146 file is the persistence file of Eficas (*.comm).
148 fcomm=open(filename,'r')
150 for line in fcomm.readlines():
151 if not (line[0]=='#'):
154 # Warning, we have to make sure that the jdc comes as a simple
155 # string without any extra spaces/newlines
158 if __name__ == "__main__":
160 sys.path.insert(0,os.path.abspath(os.path.join(os.getcwd(),'..')))
161 lance_eficas(code=None,fichier=None,ssCode=None,multi=True)