/usr/share/pyshared/InterfaceTK/bureau.py is in eficas 2.0.3-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 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 | # -*- 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 contient la classe BUREAU qui gere les JDC ouverts
"""
# Modules Python
import os,string,sys,re
import traceback
import Pmw
from widgets import askopenfilename,asksaveasfilename
from widgets import showinfo,askyesno,showerror
# Modules Eficas
import splash
import prefs
name='prefs_'+prefs.code
prefsCode=__import__(name)
import convert
import generator
import AIDE
import os
from jdcdisplay import JDCDISPLAY
from Editeur.utils import extension_fichier,stripPath,save_in_file
from widgets import Fenetre,Ask_Format_Fichier,FenetreSurLigneWarning
from fenetre_mc_inconnus import fenetre_mc_inconnus
from Ihm import CONNECTOR
try :
from Traducteur import traduitV7V8
from Traducteur import traduitV8V9
except :
pass
from Editeur import comploader
dict_defext = {"ASTER":".comm","HOMARD":".py","OPENTURNS":".comm"}
dict_filtyp = {"ASTER":(("ASTER", ".comm"),),"HOMARD":(("HOMARD", ".py"),),"OPENTURNS":(("OPENTURNS", ".comm"),)}
class BUREAU:
menu_defs=[
('Fichier',[
('Nouveau','newJDC','<Control-n>'),
('Ouvrir','openJDC','<Control-o>'),
('Enregistrer','saveJDC','<Control-e>'),
('Enregistrer sous','saveasJDC','<Control-s>'),
None,
('Fermer','closeJDC','<Control-f>'),
('Quitter','exitEFICAS','<Control-q>'),
]
),
('Edition',[
('Copier','copy','<Control-c>'),
('Couper','cut','<Control-x>'),
('Coller','paste','<Control-v>'),
]
),
('Jeu de commandes',[
('Rapport de validation','visuCRJDC','<Control-r>'),
('Fichier a plat','visu_a_plat','<Control-p>'),
('Fichier .py','visuJDC_py'),
('Fichier source','visu_txt_brut_JDC','<Control-b>'),
('Parametres Eficas','affichage_fichier_ini'),
('Mots-cles inconnus','mc_inconnus'),
]
),
('Traduction',[
('Traduction v7 en v8','TraduitFichier','<Control-t>','Ctrl+T')
]
),
('Aide',[
('Aide EFICAS','aideEFICAS','<Control-a>','Ctrl+A'),
]
),
]
button_defs = (('New24',"newJDC","Creation d'un nouveau fichier",'always'),
('Open24',"openJDC","Ouverture d'un fichier existant",'always'),
('Save24',"saveJDC","Sauvegarde du fichier courant",'always'),
('Fermer24',"closeJDC","Fermeture du fichier courant",'always'),
('Zoom24',"visuJDC","Visualisation du fichier de commandes",'always'),
None,
('Copy24',"copy","Copie l'objet courant",'jdc'),
('Cut24',"cut","Coupe l'objet courant",'jdc'),
('Paste24',"paste","Colle l'objet copie apres l'objet courant",'jdc'),
None,
('Delete24',"delete","Supprime l'objet courant",'jdc'),
('Help24',"view_doc","Documentation de l'objet courant",'jdc')
)
try:
menu_defs=prefsCode.menu_defs['bureau']
except:
pass
try:
button_defs=prefsCode.button_defs['bureau']
except:
pass
def __init__(self,appli,parent):
self.parent=parent
self.appli=appli
if self.appli.test == 0 :
splash._splash.configure(text = "Creation du bureau")
self.nb = Pmw.NoteBook(self.parent,raisecommand=self.selectJDC)
self.nb.pack(fill='both',expand=1)
self.JDCDisplay_courant=None
self.fileName=None
self.liste_JDCDisplay=[]
self.charger_composants()
self.cree_cataitem()
self.text_reel=""
self.savedir = self.appli.CONFIGURATION.savedir
def charger_composants(self):
comploader.charger_composants()
def cree_cataitem(self):
"""
On recupere dans l'appli_composant readercata les variables
qui servent par la suite pour la creation des JDC
"""
self.cataitem=self.appli.readercata.cataitem
self.cata=self.appli.readercata.cata
self.cata_ordonne_dico=self.appli.readercata.cata_ordonne_dico
self.code=self.appli.readercata.code
self.version_code=self.appli.readercata.version_code
self.fic_cata=self.appli.readercata.fic_cata
def selectJDC(self,event=None):
"""
Cette methode est appelee chaque fois que l'on selectionne
l'onglet d'un JDC dans le NoteBook des JDC.
Elle permet de stocker dans les variable self.JDC et
self.JDCDisplay_courant les valeurs concernant le JDC courant
"""
if len(self.liste_JDCDisplay) == 0 : return
#if self.JDCDisplay_courant : self.JDCDisplay_courant.jdc.unset_context()
numero_jdc = self.nb.index(self.nb.getcurselection())
self.JDCDisplay_courant.unselect()
self.JDCDisplay_courant = self.liste_JDCDisplay[numero_jdc]
self.JDC = self.JDCDisplay_courant.jdc
self.JDCName = self.JDC.nom
self.JDCDisplay_courant.select()
#print "selectJDC",numero_jdc,self.JDCDisplay_courant,self.JDCName
def newJDC_include(self,event=None):
"""
Initialise un nouveau JDC include vierge
"""
import Extensions.jdc_include
JdC_aux=Extensions.jdc_include.JdC_include
self.appli.statusbar.reset_affichage_infos()
CONTEXT.unset_current_step()
jaux=self.cata[0].JdC(procedure="",appli=self.appli,
cata=self.cata,cata_ord_dico=self.cata_ordonne_dico,
rep_mat=self.appli.CONFIGURATION.rep_mat,
)
jaux.analyse()
J=JdC_aux(procedure="",appli=self.appli,
cata=self.cata,cata_ord_dico=self.cata_ordonne_dico,
jdc_pere=jaux,
rep_mat=self.appli.CONFIGURATION.rep_mat,
)
J.analyse()
self.JDCName=J.nom
self.fileName=None
self.ShowJDC(J,self.JDCName)
self.appli.toolbar.active_boutons()
return J
def newJDC(self,event=None):
"""
Initialise un nouveau JDC vierge
"""
self.appli.statusbar.reset_affichage_infos()
CONTEXT.unset_current_step()
J=self.cata[0].JdC(procedure="",appli=self.appli,
cata=self.cata,cata_ord_dico=self.cata_ordonne_dico,
rep_mat=self.appli.CONFIGURATION.rep_mat,
)
J.analyse()
self.JDCName=J.nom
self.fileName=None
self.ShowJDC(J,self.JDCName)
self.appli.toolbar.active_boutons()
return J
def ShowJDC(self,JDC,nom,label_onglet=None,JDCDISPLAY=JDCDISPLAY,enregistre="non"):
"""
Lance l'affichage du JDC cad creation du JDCDisplay
Rajoute le JDCDisplay a la liste des JDCDisplay si label_onglet == None cad si on cree
bien un nouveau JDCDisplay et non si on remplace (renommage de l'onglet)
"""
self.JDC=JDC
self.JDCName = self.JDC.nom = nom
if label_onglet == None :
# On veut un nouvel onglet
label_onglet = self.GetLabelJDC()
self.nb.add(label_onglet,tab_text = nom,tab_width=20)
new = 'oui'
else :
new = 'non'
self.JDCDisplay_courant=JDCDISPLAY(self.JDC,nom,appli=self.appli,parent=self.nb.page(label_onglet))
if new == 'oui':
self.liste_JDCDisplay.append(self.JDCDisplay_courant)
self.JDCDisplay_courant.modified='n'
if enregistre != "non" :
self.JDCDisplay_courant.fichier=self.fileName
else :
self.savedir = self.appli.CONFIGURATION.rep_user
self.nb.selectpage(label_onglet)
self.nb.setnaturalsize()
self.nb.bind_all("<Key-Next>",lambda e,s=self:s.selectArbreDown())
self.nb.bind_all("<Key-Prior>",lambda e,s=self:s.selectArbreUp())
self.nb.bind_all("<Insert>",lambda e,s=self:s.deplieReplieNode())
texte = "Jeu de commandes :" + self.JDCName+" ouvert"
CONNECTOR.Connect(JDC,"close",self.onClose,(self.JDCDisplay_courant,))
self.appli.affiche_infos(texte)
def onClose(self,jdcdisplay):
#print "onClose",jdcdisplay
self.closeJDCDISPLAY(jdcdisplay)
def closeJDCDISPLAY(self,jdc):
"""
Ferme le jdcdisplay specifie par l'argument jdc
"""
if jdc is self.JDCDisplay_courant:
# on ferme le jdcdisplay courant
self.closeSelectedJDC()
else:
# on ferme un autre jdcdisplay que le courant
old_JDCDisplay=self.JDCDisplay_courant
old_page=self.nb.getcurselection()
self.JDCDisplay_courant=jdc
self.JDC=jdc.jdc
numero_jdc=self.liste_JDCDisplay.index(jdc)
self.nb.selectpage(numero_jdc)
#print numero_jdc
self.closeSelectedJDC()
self.JDCDisplay_courant=old_JDCDisplay
self.JDC=old_JDCDisplay.jdc
self.nb.selectpage(old_page)
def closeJDC (self,event=None) :
"""
Ferme le JDC associe au JDCDISPLAY selectionne
"""
if self.JDCDisplay_courant :
self.JDCDisplay_courant.jdc.close()
def closeSelectedJDC (self) :
"""
Ferme le JDC courant et detruit l'onglet associe dans le notebook self.nb
"""
if self.JDCDisplay_courant.modified == 'o' :
message = "Voulez-vous sauvegarder le jeu de commandes "+self.JDC.nom+" courant ?"
reponse = askyesno(title="Sauvegarde du jdc courant",
message=message)
if reponse :
test = self.saveJDC()
if test == 0 :
self.appli.affiche_infos("Sauvegarde impossible")
return
CONNECTOR.Disconnect(self.JDCDisplay_courant.jdc,"close",self.onClose,(self.JDCDisplay_courant,))
self.JDCDisplay_courant.supprime()
self.JDCDisplay_courant.jdc.supprime()
self.liste_JDCDisplay.remove(self.JDCDisplay_courant)
# Active le mecanisme de selection du notebook (selectJDC)
self.nb.delete(self.nb.getcurselection())
try:
index = self.nb.index(self.nb.getcurselection())
self.JDCDisplay_courant = self.liste_JDCDisplay[index]
self.JDC = self.JDCDisplay_courant.jdc
except:
self.JDC = None
self.JDCDisplay_courant = None
self.appli.toolbar.inactive_boutons()
def visuCRJDC(self,event=None):
return self.visuCR(mode='JDC')
def visuCR(self,mode):
"""
Methode permettant l'affichage du rapport de validation
"""
if mode == 'JDC':
if not hasattr(self,'JDC') : return
if self.JDC == None : return
titre="rapport de validation du jeu de commandes courant"
cr = self.JDC.report()
#self.update_jdc_courant()
elif mode == 'CATA':
from Noyau.N_CR import CR
cr = CR()
cr.debut = "Debut rapport de validation du catalogue"
cr.fin = "Fin rapport de validation du catalogue"
titre="rapport de validation du catalogue"
if hasattr(self,'cata_ordonne_cr') :
cr.add(self.cata_ordonne_cr)
if hasattr(self,'cata_dev_ordonne_cr') :
cr.add(self.cata_dev_ordonne_cr)
for cata in self.cata:
if hasattr(cata,'JdC'):
cr.add(cata.JdC.report())
texte_cr = str(cr)
self.visu_texte_cr = Fenetre(self.appli,titre=titre,texte=texte_cr)
def openJDC(self,event=None,file=None,units=None,enregistre="oui"):
"""
Demande a l'utilisateur quel JDC existant il veut ouvrir
"""
if self.code == 'ASTER':
filetypes = ( ("format "+self.appli.format_fichier.get(), ".com*"),("Tous",'*'))
elif self.code == 'HOMARD' :
filetypes = ( ("format "+self.appli.format_fichier.get(), ".py"),("Tous",'*'))
elif self.code == 'OPENTURNS' :
filetypes = ( ("format "+self.appli.format_fichier.get(), ".com*"),("Tous",'*'))
else:
filetypes = ( ("format "+self.appli.format_fichier.get(), ".py"),)
if not hasattr(self,'savedir'):
self.savedir = self.appli.CONFIGURATION.savedir
if not file :
file = askopenfilename(title="Ouverture d'un fichier de commandes Aster",
defaultextension=".comm",
filetypes = filetypes,
initialdir = self.savedir)
if file :
self.fileName = file
e=extension_fichier(file)
self.JDCName=stripPath(file)
self.savedir = os.path.dirname(os.path.abspath(file))
else :
return
# Il faut convertir le contenu du fichier en fonction du format
format=self.appli.format_fichier.get()
if convert.plugins.has_key(format):
# Le convertisseur existe on l'utilise
p=convert.plugins[format]()
p.readfile(file)
text=p.convert('exec',self.appli)
if not p.cr.estvide():
self.appli.affiche_infos("Erreur a la conversion")
Fenetre(self.appli,
titre="compte-rendu d'erreurs, EFICAS ne sait pas convertir ce fichier",
texte = str(p.cr)).wait()
return
if enregistre == "oui" :
self.appli.listeFichiers.aOuvert(file)
else:
# Il n'existe pas c'est une erreur
self.appli.affiche_infos("Type de fichier non reconnu")
showerror("Type de fichier non reconnu","EFICAS ne sait pas ouvrir ce type de fichier")
return
# On se met dans le repertoire ou se trouve le fichier de commandes
# pour trouver les eventuels fichiers include ou autres
# localises a cote du fichier de commandes
os.chdir(self.savedir)
CONTEXT.unset_current_step()
J=self.cata[0].JdC(procedure=text,appli=self.appli,
cata=self.cata,cata_ord_dico=self.cata_ordonne_dico,
nom = self.JDCName,
rep_mat=self.appli.CONFIGURATION.rep_mat,
)
if units is not None:
J.recorded_units=units
J.old_recorded_units=units
J.analyse()
txt_exception = J.cr.get_mess_exception()
if txt_exception :
# des exceptions ont ete levees a la creation du JDC
# --> on affiche les erreurs mais pas le JDC
self.JDC=J
self.appli.affiche_infos("Erreur fatale au chargement de %s" %file)
if self.appli.test == 0 :
showerror("Erreur fatale au chargement d'un fichier",txt_exception)
else:
self.ShowJDC(J,self.JDCName,enregistre=enregistre)
self.appli.toolbar.active_boutons()
# si le JDC ne contient rien (vide), on retourne ici
if len(self.JDC.etapes) == 0 : return
# dans le cas ou le JDC est invalide, on affiche son CR
if not self.JDC.isvalid():
self.appli.top.update()
self.visuCR(mode='JDC')
return J
def deplieReplieNode(self):
self.JDCDisplay_courant.tree.tree.deplieReplieNode()
def selectArbreDown(self):
self.JDCDisplay_courant.tree.tree.canvas.focus_set()
self.JDCDisplay_courant.tree.tree.mot_down_force()
def selectArbreUp(self):
self.JDCDisplay_courant.tree.tree.canvas.focus_set()
self.JDCDisplay_courant.tree.tree.mot_up_force()
def GetLabelJDC(self,nb_jdc = 'absent'):
"""
Retourne le label de l'onglet du NoteBook associe au JDC a afficher
"""
if nb_jdc == 'absent':
nb_jdc = len(self.nb.pagenames())
nb_jdc = nb_jdc+1
label_onglet = 'JDC'+`nb_jdc`
if label_onglet not in self.nb.pagenames() :
return label_onglet
else :
return self.GetLabelJDC(nb_jdc)
def saveasJDC(self,event=None):
"""
Sauvegarde le JDC courant en demandant imperativement a l'utilisateur de
donner le nom du fichier de sauvegarde
"""
self.saveJDC(echo='oui')
def saveJDC(self,echo='non'):
"""
Sauvegarde le JDC courant.
Retourne 1 si la sauvegarde s'est bien faite, 0 sinon.
- Si echo = 'oui' : interactif (l'utilisateur donne le nom sous lequel il
veut sauver le JDC
- Si echo = 'non' : muet (sauvegarde le JDC dans JDC.procedure)
"""
ok = 0
if not hasattr(self,'JDC') : return 0
format=self.appli.format_fichier.get()
if generator.plugins.has_key(format):
# Le generateur existe on l'utilise
g=generator.plugins[format]()
jdc_formate=g.gener(self.JDC,format='beautifie')
if format == 'homard':
self.jdc_homard=g.get_homard()
#print "hhhhhhhh"
elif format == 'openturns' :
self.jdc_openturn_xml=g.getOpenturnsXML()
self.jdc_openturn_std=g.getOpenturnsSTD()
if not g.cr.estvide():
self.appli.affiche_infos("Erreur a la generation")
showerror("Erreur a la generation","EFICAS ne sait pas convertir ce JDC")
return
else:
# Il n'existe pas c'est une erreur
self.appli.affiche_infos("Format %s non reconnu" % format)
showerror("Format %s non reconnu" % format,"EFICAS ne sait pas convertir le JDC")
return
self.jdc_fini = string.replace(jdc_formate,'\r\n','\n')
if echo =='oui' or self.JDCDisplay_courant.fichier == None:
ok = self.asknomsauvegardeJDC()
elif self.JDCDisplay_courant.fichier != None :
# le JDC a deja un nom : on sauvegarde directement sans demander
# un autre nom au developpeur
if not save_in_file(self.JDCDisplay_courant.fichier,self.jdc_fini,self.appli.dir) :
showinfo("Erreur","Probleme a la sauvegarde du fichier :" + `self.JDCDisplay_courant.fichier`)
#return 0
ok = 0
else :
if self.appli.format_fichier.get() == 'homard':
self.save_homard(self.JDCDisplay_courant.fichier,self.jdc_homard)
elif self.appli.format_fichier.get() == 'openturns':
self.save_openturns(self.JDCDisplay_courant.fichier[0:-3],
self.jdc_openturn_xml,
self.jdc_openturn_std)
self.JDCDisplay_courant.stop_modif()
self.appli.affiche_infos("sauvegarde de "+`self.JDCDisplay_courant.fichier`+" effectuee")
ok = 1
if ok and self.appli.salome:
# eficas a ete lance a partir deSalome
#1)ajout dans l'arbre d'etude du nom du jdc
if self.appli.salome==0 : return 0
ok, msg = self.appli.addJdcInSalome( self.JDCDisplay_courant.fichier )
#2)CS_pbruno ??
from panelsSalome import SALOME_UNIQUE_BASE_Panel
if len(SALOME_UNIQUE_BASE_Panel.dict_fichier_unite) > 0 :
print 'CS_pbruno if len(SALOMchier_unite) > 0 :???????'
self.appli.creeConfigTxt( self.appli.CONFIGURATION.savedir, SALOME_UNIQUE_BASE_Panel.dict_fichier_unite )
#3)creation/mise a jours d'un maillage dans Salome
if self.code == 'ASTER':
self.appli.createOrUpdateMesh()
return ok
def asknomsauvegardeJDC(self):
""" Demande a l'utilsateur le nom sous lequel il veut sauvegarder le JDC courant """
titre = "Sauvegarde d'un fichier de commandes "+self.code
if dict_defext.has_key(self.code) :
defext = dict_defext[self.code]
filtyp = dict_filtyp[self.code]
else :
defext = ".py"
filtyp = ( (self.code, ".py"),)
sauvegarde = asksaveasfilename(title=titre,
defaultextension=defext,
filetypes = filtyp,
initialdir = self.savedir)
if sauvegarde :
if not save_in_file(sauvegarde,self.jdc_fini,None) :
showinfo("Erreur","Probleme a la sauvegarde du fichier "+`sauvegarde`)
return 0
else :
if self.appli.format_fichier.get() == 'homard':
self.save_homard(sauvegarde,self.jdc_homard)
elif self.appli.format_fichier.get() == 'openturns':
self.save_openturns(sauvegarde,
self.jdc_openturn_xml,
self.jdc_openturn_std)
self.JDCDisplay_courant.stop_modif()
self.appli.affiche_infos("Sauvegarde effectuee")
if sauvegarde != self.JDCDisplay_courant.fichier :
# l'utilisateur a sauvegarde le JDC sous un autre nom
self.JDCDisplay_courant.fichier = sauvegarde
self.JDCName = self.JDC.nom = stripPath(sauvegarde)
self.JDC.changefichier(sauvegarde)
self.changeNomPage()
return 1
else :
return 0
def changeNomPage(self):
""" Change le nom de l'onglet contenant le JDC courant : en fait detruit l'actuel
et recree un autre onglet a la même place avec le bon nom
"""
nom = self.JDCName
self.JDCDisplay_courant.jdc.nom = nom
nom_page = self.nb.getcurselection()
num_page = self.nb.index(nom_page)
tab = self.nb.tab(num_page)
tab.configure(text = nom)
def exitEFICAS(self,event=None):
"""
Permet de sortir d'EFICAS en demandant a l'utilisateur
s'il veut sauvegarder les modifications en cours
"""
liste = self.GetListeJDCaSauvegarder()
if liste != [] :
# Certains fichiers n'ont pas ete sauvegardes ...
if askyesno("Enregistrer modifications","Enregistrer les modifications ?") :
test = self.saveall(liste)
if test != 1 :
return
if askyesno ("Quitter","Voulez-vous vraiment quitter l'application ?") :
for JDCDisplay in self.liste_JDCDisplay:
JDCDisplay.jdc.supprime()
self.appli.quit()
return
def GetListeJDCaSauvegarder(self) :
""" Retourne parmi la liste de tous les JDC ouverts la liste de ceux qui ont ete modifies """
if not self.JDCDisplay_courant : return []
if len(self.liste_JDCDisplay) == 0 : return l
l = []
for JDCDisplay in self.liste_JDCDisplay:
if JDCDisplay.modified == 'o' :
l.append(JDCDisplay)
return l
def copy(self,event=None):
"""
Lance la copie sur le JDC courant
"""
if self.JDCDisplay_courant : self.JDCDisplay_courant.doCopy()
def paste(self,event=None):
"""
Lance le collage sur le JDC courant
"""
if self.JDCDisplay_courant : self.JDCDisplay_courant.doPaste()
def cut(self,event=None):
"""
Lance le cut sur le JDC courant
"""
if self.JDCDisplay_courant: self.JDCDisplay_courant.doCut()
def delete(self):
"""
Lance la suppression du noeud courant
"""
if not self.JDCDisplay_courant : return
self.JDCDisplay_courant.init_modif()
self.JDCDisplay_courant.node_selected.delete()
def visuJDC_py(self,event=None):
"""
Methode permettant d'afficher dans une fenêtre a part l'echo au
format python du jdc courant
"""
if not hasattr(self,'JDC') : return
jdc_fini = self.get_text_JDC('python')
if jdc_fini == None : return
Fenetre(self.appli,
titre = 'fichier '+ self.JDCName + ' a la syntaxe Python',
texte = jdc_fini)
def visuJDC(self):
"""
Methode permettant d'afficher dans une fenêtre a part l'echo au
format .comm ou .py du jdc courant
"""
if not hasattr(self,'JDC') : return
titre = 'fichier '+ self.JDCName + ' a la syntaxe '+ self.code
format=self.appli.format_fichier.get()
self.jdc_fini = self.get_text_JDC(format)
if self.jdc_fini == None : return
self.visu_fichier_cmd = Fenetre(self.appli,titre=titre,texte = self.jdc_fini)
def get_text_JDC(self,format):
if generator.plugins.has_key(format):
# Le generateur existe on l'utilise
g=generator.plugins[format]()
jdc_formate=g.gener(self.JDC,format='beautifie')
if not g.cr.estvide():
self.appli.affiche_infos("Erreur a la generation")
showerror("Erreur a la generation","EFICAS ne sait pas convertir ce JDC")
return
else:
return jdc_formate
else:
# Il n'existe pas c'est une erreur
self.appli.affiche_infos("Format %s non reconnu" % format)
showerror("Format %s non reconnu" % format,"EFICAS ne sait pas convertir le JDC en format %s "% format)
return
def view_doc(self):
"""
Permet d'ouvrir le fichier doc U de la commande au format pdf avec Acrobat Reader
- Ne fonctionne pas sous UNIX (chemin d'acces Acrobat Reader)
- indication du chemin d'acces aux fichiers pdf a revoir : trop statique
"""
if not self.JDCDisplay_courant : return
try:
cle_doc = self.JDCDisplay_courant.node_selected.item.get_docu()
if cle_doc == None : return
commande = self.appli.CONFIGURATION.exec_acrobat
fichier = os.path.abspath(os.path.join(self.appli.CONFIGURATION.path_doc,cle_doc))
if os.path.isfile(fichier) == 0:
showerror("Pas de Documentation", "Eficas ne trouve pas de fichier documentation associe a cette commande")
return
if os.name == 'nt':
os.spawnv(os.P_NOWAIT,commande,(commande,fichier,))
elif os.name == 'posix':
script ="#!/usr/bin/sh \n%s %s&" %(commande,fichier)
pid = os.system(script)
except AttributeError:
traceback.print_exc()
pass
def visu_a_plat(self,event=None):
"""
Methode permettant d'afficher dans une fenêtre a part l'echo 'a plat' du jdc courant
"""
if not hasattr(self,'JDC') : return
titre = 'fichier '+ self.JDCName + ' a plat '
self.jdc_fini = self.get_text_JDC('aplat')
if self.jdc_fini == None : return
self.visu_fichier_cmd = Fenetre(self.appli,titre=titre,texte = self.jdc_fini)
def visu_txt_brut_JDC(self,event=None):
"""
Methode permettant d'afficher le jeu de commandes tel qu'il a ete passe au JDC
"""
if not hasattr(self,'JDC') : return
titre = "fichier de commandes utilisateur"
#texte = self.JDC.procedure
#if texte == None:
if self.JDCDisplay_courant.fichier == None:
self.appli.affiche_infos("Pas de fichier initial")
showerror("Impossible de visualiser le fichier initial",
"EFICAS ne peut visualiser le fichier initial.\nIl s'agit d'un nouveau JDC")
return
os.chdir(self.appli.dir)
f=open(self.JDCDisplay_courant.fichier,'r')
texte=f.read()
f.close()
self.visu_texte_JDC = Fenetre(self.appli,titre=titre,texte=texte)
def affichage_fichier_ini(self):
"""
Affichage des valeurs des parametres relus par Eficas
"""
self.appli.CONFIGURATION.affichage_fichier_ini()
def saveall(self,liste):
"""
Sauvegarde tous les JDC contenus dans liste
"""
test = 1
for JDCDisplay in liste :
self.JDCDisplay_courant=JDCDisplay
self.JDC = JDCDisplay.jdc
test = test * self.saveJDC(echo = 'non')
return test
def save_homard(self,nom,texte):
file_homard=nom+'.conf_homard'
try:
f=open(file_homard,'w')
for ligne in texte:
f.write(ligne)
f.write('\n')
f.close()
except:
print "Pb a la sauvegarde sous le format homard"
if self.appli.salome:
import eficasEtude
self.appli.salome.rangeInStudy(file_homard,"_CONF")
def save_openturns(self,nom,texteXML,texteSTD):
nomSansSuf=nom[:nom.rfind(".")]
fileXML=nomSansSuf + '.xml'
fileSTD=nomSansSuf + '_Std.py'
try:
f=open(fileXML,'w')
f.write(texteXML)
f.close()
except:
print "Pb sauvegarde openturns pour le format xml"
try:
#print texteSTD
if nomSansSuf.rfind("/") > 0 :
nomSansSuf=nomSansSuf[nomSansSuf.rfind("/")+1:]
texteSTD=re.sub('XXXXXX',nomSansSuf,texteSTD)
#print texteSTD
f=open(fileSTD,'w')
f.write(texteSTD)
f.close()
except:
print "Pb sauvegarde openturns pour le format STD"
if self.appli.salome == 1:
ok, msg = self.appli.addJdcInSalome( fileSTD )
ok, msg = self.appli.addJdcInSalome( fileXML )
# ---------------------------------------------------------------------------
# Methodes liees aux mots-cles inconnus
# ---------------------------------------------------------------------------
def mc_inconnus(self):
l_mc = self.JDCDisplay_courant.jdc.get_liste_mc_inconnus()
o = fenetre_mc_inconnus(l_mc)
l = o.wait_new_list()
#print "mc_inconnus_new_list: ",l
#CCAR: Il n' y a pas de retour vers le JDC
def aideEFICAS(self,event=None):
AIDE.go(master=self.parent)
def update_jdc_courant(self):
self.JDCDisplay_courant.update()
def TraduitFichier7(self,event=None):
self.TraduitFichier(7)
def TraduitFichier8(self,event=None):
self.TraduitFichier(8)
def TraduitFichier(self,version):
FichieraTraduire = askopenfilename(title="Nom du Fichier a Traduire",
defaultextension=".comm",
initialdir = self.savedir
)
if (FichieraTraduire == "" or FichieraTraduire == () ) : return
i=FichieraTraduire.rfind(".")
Feuille=FichieraTraduire[0:i]
log=self.savedir+"/convert.log"
Pmw.showbusycursor()
FichierTraduit=""
os.system("rm -rf "+log)
if version == 7 :
FichierTraduit=Feuille+"v8.comm"
os.system("rm -rf "+FichierTraduit)
traduitV7V8.traduc(FichieraTraduire,FichierTraduit,log)
else :
FichierTraduit=Feuille+"v9.comm"
os.system("rm -rf "+FichierTraduit)
traduitV8V9.traduc(FichieraTraduire,FichierTraduit,log)
Pmw.hidebusycursor()
Entete="Fichier Traduit : "+FichierTraduit +"\n\n"
titre = "conversion de "+ FichieraTraduire
if os.stat(log)[6] != 0L :
f=open(log)
texte_cr= f.read()
f.close()
else :
texte_cr = Entete
commande="diff "+FichieraTraduire+" "+FichierTraduit+" >/dev/null"
try :
if os.system(commande) == 0 :
texte_cr = texte_cr + "Pas de difference entre le fichier initial et le fichier traduit"
except :
pass
cptrendu = FenetreSurLigneWarning(self.appli,titre=titre,texte=texte_cr)
|