/usr/share/pyshared/InterfaceQT4/readercata.py is in eficas 6.4.0-1-1.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 | # -*- coding: utf-8 -*-
# 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.
#
# 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.
#
# 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.
#
#
# ======================================================================
"""
Ce module sert a lire un catalogue et a construire
un objet CataItem pour Eficas.
Il s'appuie sur la classe READERCATA
"""
# Modules Python
import time
import os,sys,py_compile
import traceback
import cPickle
import re
import types
# Modules Eficas
from Noyau.N_CR import CR
from Editeur.catadesc import CatalogDescription
from Editeur.utils import init_rep_cata_dev
import analyse_catalogue
import analyse_catalogue_initial
import autre_analyse_cata
import uiinfo
from monChoixCata import MonChoixCata
from PyQt4 import *
from PyQt4.QtGui import *
from PyQt4.QtCore import *
class READERCATA:
def __init__(self,QWParent, appliEficas):
self.QWParent=QWParent
self.appliEficas=self.QWParent.appliEficas
self.VERSION_EFICAS=self.appliEficas.VERSION_EFICAS
self.code=self.QWParent.code
self.ssCode=self.appliEficas.ssCode
self.appliEficas.format_fichier='python'
if hasattr(self.appliEficas,'mode_nouv_commande'):
self.mode_nouv_commande=self.appliEficas.mode_nouv_commande
else :
self.mode_nouv_commande='alpha'
self.version_code=self.QWParent.version_code
self.version_cata=None
self.fic_cata=None
self.OpenCata()
self.cataitem=None
def OpenCata(self):
"""
Ouvre le catalogue standard du code courant, cad le catalogue présent
dans le répertoire Cata
"""
liste_cata_possibles=[]
self.Commandes_Ordre_Catalogue=[]
all_cata_list = []
for catalogue in self.appliEficas.CONFIGURATION.catalogues:
if isinstance(catalogue, CatalogDescription):
all_cata_list.append(catalogue)
elif isinstance(catalogue, types.TupleType):
all_cata_list.append(CatalogDescription.create_from_tuple(catalogue))
else:
print "Catalog description cannot be interpreted: ", catalogue
# This filter is only useful for codes that have subcodes (like MAP).
# Otherwise, the "code" attribute of the catalog description can (should) be None.
if self.ssCode is None:
liste_cata_possibles = all_cata_list
else:
for catalogue in all_cata_list:
#print catalogue.code
#print catalogue.file_format
if catalogue.code == self.code and catalogue.file_format == self.ssCode:
liste_cata_possibles.append(catalogue)
#print "___________"
#print self.ssCode
#print self.code
if len(liste_cata_possibles)==0:
QMessageBox.critical(self.QWParent, "Import du catalogue",
u"Pas de catalogue défini pour le code %s" % self.code)
self.appliEficas.close()
if self.appliEficas.salome == 0 :
sys.exit(1)
return
if self.version_code is not None:
# La version a ete fixee
for cata in liste_cata_possibles:
if self.version_code == cata.identifier:
self.fic_cata = cata.cata_file_path
self.appliEficas.format_fichier = cata.file_format
self.appliEficas.format_fichier_in = cata.file_format_in
else:
cata_choice_list = []
for cata in liste_cata_possibles:
if cata.selectable:
if cata.default:
cata_choice_list.insert(0, cata)
else :
cata_choice_list.append(cata)
if len(cata_choice_list) == 0:
QMessageBox.critical(self.QWParent, "Import du catalogue",
QString.fromUtf8("Aucun catalogue trouvé"))
self.appliEficas.close()
if self.appliEficas.salome == 0 :
sys.exit(1)
elif len(cata_choice_list) == 1:
self.fic_cata = cata_choice_list[0].cata_file_path
self.version_code = cata_choice_list[0].identifier
self.appliEficas.format_fichier = cata_choice_list[0].file_format
self.appliEficas.format_fichier_in = cata_choice_list[0].file_format_in
lab=QString("Eficas ")
lab+=QString(self.VERSION_EFICAS)
lab+=QString(" pour ")
lab+=QString(self.code)
lab+=QString(" avec le catalogue ")
lab+=self.version_code
try :
# souci pour les includes et sans Ihm
self.appliEficas.setWindowTitle(lab)
except :
pass
else:
# plusieurs catalogues sont disponibles : il faut demander a l'utilisateur
# lequel il veut utiliser ...
self.ask_choix_catalogue(cata_choice_list)
# On est dans Salome et il faut sortir proprement
if self.fic_cata == None :
if self.appliEficas.salome == 0 :
print "Pas de catalogue pour code %s, version %s" %(self.code,self.version_code)
sys.exit(1)
else :
self.appliEficas.close()
return
self.determineMater()
# détermination de fic_cata_c et fic_cata_p
self.fic_cata_c = self.fic_cata + 'c'
self.fic_cata_p = os.path.splitext(self.fic_cata)[0]+'_pickled.py'
# import du catalogue
self.cata = self.import_cata(self.fic_cata)
if not self.cata :
QMessageBox.critical( self.QWParent, "Import du catalogue","Impossible d'importer le catalogue %s" %self.fic_cata)
self.appliEficas.close()
if self.appliEficas.salome == 0 :
sys.exit(1)
#
# analyse du catalogue (ordre des mots-clés)
#
# Retrouve_Ordre_Cata_Standard fait une analyse textuelle du catalogue
# remplacé par Retrouve_Ordre_Cata_Standard_autre qui utilise une numerotation
# des mots clés a la création
self.Retrouve_Ordre_Cata_Standard_autre()
if self.mode_nouv_commande== "initial" :
self.Retrouve_Ordre_Cata_Standard()
#
# analyse des données liées a l'IHM : UIinfo
#
uiinfo.traite_UIinfo(self.cata)
#
# traitement des clefs documentaires
#
self.traite_clefs_documentaires()
self.cata=(self.cata,)
titre=self.VERSION_EFICAS + " avec le catalogue " + os.path.basename(self.fic_cata)
if self.appliEficas.top:
self.appliEficas.setWindowTitle(titre)
self.appliEficas.titre=titre
self.QWParent.titre=titre
def determineMater(self) :
# Determinination du repertoire materiau
v_codeSansPoint=self.version_code
if v_codeSansPoint == None : return
v_codeSansPoint=re.sub("\.","",v_codeSansPoint)
chaine="rep_mat_"+v_codeSansPoint
if hasattr(self.appliEficas.CONFIGURATION,chaine):
a=getattr(self.appliEficas.CONFIGURATION,chaine)
else :
try :
a=self.appliEficas.CONFIGURATION.dRepMat[self.version_code]
except :
if self.code == "ASTER" :
print "Probleme avec le repertoire materiau"
a='.'
self.appliEficas.CONFIGURATION.rep_mat=a
def import_cata(self,cata):
"""
Réalise l'import du catalogue dont le chemin d'acces est donné par cata
"""
nom_cata = os.path.splitext(os.path.basename(cata))[0]
rep_cata = os.path.dirname(cata)
sys.path[:0] = [rep_cata]
if sys.modules.has_key(nom_cata):
del sys.modules[nom_cata]
for k in sys.modules.keys():
if k[0:len(nom_cata)+1] == nom_cata+'.':
del sys.modules[k]
try :
o=__import__(nom_cata)
return o
except Exception,e:
traceback.print_exc()
return 0
def Retrouve_Ordre_Cata_Standard_autre(self):
"""
Construit une structure de données dans le catalogue qui permet
a EFICAS de retrouver l'ordre des mots-clés dans le texte du catalogue.
Pour chaque entité du catlogue on crée une liste de nom ordre_mc qui
contient le nom des mots clés dans le bon ordre
"""
self.cata_ordonne_dico,self.appliEficas.liste_simp_reel=autre_analyse_cata.analyse_catalogue(self.cata)
def Retrouve_Ordre_Cata_Standard(self):
"""
Retrouve l'ordre des mots-clés dans le catalogue, cad :
Attention s appuie sur les commentaires
"""
nom_cata = os.path.splitext(os.path.basename(self.fic_cata))[0]
rep_cata = os.path.dirname(self.fic_cata)
self.Commandes_Ordre_Catalogue = analyse_catalogue_initial.analyse_catalogue(self.fic_cata)
def ask_choix_catalogue(self, cata_choice_list):
"""
Ouvre une fenetre de sélection du catalogue dans le cas où plusieurs
ont été définis dans Accas/editeur.ini
"""
code = getattr(self.appliEficas.CONFIGURATION, "code", None)
if code != None :
title="Choix d une version du code "+str(code)
else :
title="Choix d une version "
widgetChoix = MonChoixCata(self.appliEficas, [cata.user_name for cata in cata_choice_list], title)
ret=widgetChoix.exec_()
lab=QString(self.VERSION_EFICAS)
lab+=QString(" pour ")
lab+=QString(self.code)
lab+=QString(" avec le catalogue ")
if ret == QDialog.Accepted:
cata = cata_choice_list[widgetChoix.CBChoixCata.currentIndex()]
self.version_cata = cata.identifier
self.fic_cata = cata.cata_file_path
self.version_code = self.version_cata
self.appliEficas.format_fichier = cata.file_format
self.appliEficas.format_fichier_in = cata.file_format_in
lab+=self.version_cata
self.appliEficas.setWindowTitle(lab)
#qApp.mainWidget().setCaption(lab)
else:
self.appliEficas.close()
if self.appliEficas.salome == 0 :
sys.exit(0)
def traite_clefs_documentaires(self):
try:
self.fic_cata_clef=os.path.splitext(self.fic_cata_c)[0]+'_clefs_docu'
#print self.fic_cata_clef
f=open(self.fic_cata_clef)
except:
#print "Pas de fichier associe contenant des clefs documentaires"
return
dict_clef_docu={}
for l in f.readlines():
clef=l.split(':')[0]
docu=l.split(':')[1]
docu=docu[0:-1]
dict_clef_docu[clef]=docu
for oper in self.cata.JdC.commandes:
if dict_clef_docu.has_key(oper.nom):
oper.docu=dict_clef_docu[oper.nom]
|