/usr/share/pyshared/Traducteur/movemocle.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 | # -*- coding: utf-8 -*-
import logging
import removemocle
import inseremocle
from parseur import lastparen
from dictErreurs import jdcSet
debug=0
#-----------------------------------------------------
def moveMotCleFromFactToFather(jdc,command,fact,mocle):
#-----------------------------------------------------
# exemple type : IMPR_GENE
if command not in jdcSet : return
boolChange=0
commands= jdc.root.childNodes[:]
commands.reverse()
for c in commands:
if c.name != command:continue
boolchange_c=0
for mc in c.childNodes:
if mc.name != fact:continue
l=mc.childNodes[:]
for ll in l:
for n in ll.childNodes:
if n.name != mocle:continue
# test boolchange_c :il faut le faire une seule fois par commande sinon duplication du mot clé
if boolchange_c != 0 :continue
if debug : print "Changement de place :", n.name, n.lineno, n.colno
MonTexte=n.getText(jdc);
boolChange=1
boolchange_c=1
inseremocle.insereMotCle(jdc,c,MonTexte)
logging.info("Changement de place %s ligne %s ",n.name, n.lineno)
if boolChange : jdc.reset(jdc.getSource())
removemocle.removeMotCleInFact(jdc,command,fact,mocle)
#----------------------------------------------------------------------------
def moveMotCleFromFactToFactMulti(jdc,oper,factsource,mocle,liste_factcible):
#----------------------------------------------------------------------------
# exemple type STAT_NON_LINE et RESI_INTER_RELA
for factcible in liste_factcible :
moveMotCleFromFactToFact(jdc,oper,factsource,mocle,factcible)
removemocle.removeMotCleInFact(jdc,oper,factsource,mocle)
#----------------------------------------------------------------------------
def moveMotCleFromFactToFact(jdc,oper,factsource,mocle,factcible):
#----------------------------------------------------------------------------
if oper not in jdcSet : return
if debug : print "moveMotCleFromFactToFact pour " ,oper,factsource,mocle,factcible
boolChange=0
commands= jdc.root.childNodes[:]
commands.reverse()
for c in commands:
if c.name != oper : continue
cible=None
for mc in c.childNodes:
if mc.name != factcible :
continue
else :
cible=mc
break
if cible==None :
if debug : print "Pas de changement pour ", oper, " ", factsource, " ",mocle, "cible non trouvée"
continue
for mc in c.childNodes:
source=None
if mc.name != factsource:
continue
else :
source=mc
break
if source==None :
if debug : print "Pas de changement pour ", oper, " ", factsource, " ",mocle, "source non trouvée"
continue
if debug : print "Changement pour ", oper, " ", factsource, " ",mocle, "cible et source trouvées"
l=source.childNodes[:]
for ll in l:
for n in ll.childNodes:
if n.name != mocle:continue
MonTexte=n.getText(jdc);
inseremocle.insereMotCleDansFacteur(jdc,cible,MonTexte)
boolChange=1
logging.info("Changement de place %s ligne %s vers %s",n.name, n.lineno, cible.name)
if boolChange : jdc.reset(jdc.getSource())
#------------------------------------------------------
def moveMotClefInOperToFact(jdc,oper,mocle,factcible):
#------------------------------------------------------
# Attention le cas type est THETA_OLD dans calc_G
if oper not in jdcSet : return
if debug : print "movemocleinoper pour " ,oper,mocle,factcible
boolChange=9
commands= jdc.root.childNodes[:]
commands.reverse()
for c in commands:
if c.name != oper : continue
cible=None
for mc in c.childNodes:
if mc.name != factcible :
continue
else :
cible=mc
break
if cible==None :
if debug : print "Pas de changement pour ", oper, " ", factcible, " ", "cible non trouvée"
continue
source=None
for mc in c.childNodes:
if mc.name != mocle:
continue
else :
source=mc
break
if source==None :
if debug : print "Pas de changement pour ", oper, " ", mocle, " source non trouvée"
continue
MonTexte=source.getText(jdc);
boolChange=1
inseremocle.insereMotCleDansFacteur(jdc,cible,MonTexte)
if boolChange : jdc.reset(jdc.getSource())
removemocle.removeMotCle(jdc,oper,mocle)
#------------------------------------------------------
def copyMotClefInOperToFact(jdc,oper,mocle,factcible):
#------------------------------------------------------
if oper not in jdcSet : return
if debug : print "movemocleinoper pour " ,oper,mocle,factcible
boolChange=9
commands= jdc.root.childNodes[:]
commands.reverse()
for c in commands:
if c.name != oper : continue
cible=None
for mc in c.childNodes:
if mc.name != factcible :
continue
else :
cible=mc
break
if cible==None :
if debug : print "Pas de changement pour ", oper, " ", factcible, " ", "cible non trouvée"
continue
source=None
for mc in c.childNodes:
if mc.name != mocle:
continue
else :
source=mc
break
if source==None :
if debug : print "Pas de changement pour ", oper, " ", mocle, " source non trouvée"
continue
MonTexte=source.getText(jdc);
boolChange=1
inseremocle.insereMotCleDansFacteur(jdc,cible,MonTexte)
if boolChange : jdc.reset(jdc.getSource())
#----------------------------------------------------------------------
def moveMCFToCommand(jdc,command,factsource,commandcible,factcible):
#----------------------------------------------------------------------
# exemple CONTACT en 10
# CONTACT devient commande DEFI_CONTACT/ZONE
#
if command not in jdcSet : return
boolChange=0
commands= jdc.root.childNodes[:]
commands.reverse()
for c in commands:
if c.name != command : continue
for mcF in c.childNodes:
if mcF.name != factsource : continue
l=mcF.getText(jdc)
texte=l.replace(factsource,factcible)
texte='xxxx='+commandcible+'('+texte+')\n'
jdc.splitLine(c.lineno,0)
jdc.addLine(texte,c.lineno)
logging.info("Deplacement de %s dans %s ligne %s",factsource,commandcible,c.lineno)
boolChange=1
if boolChange :
jdc.reset(jdc.getSource())
jdcSet.add(commandcible)
#--------------------------------------------------------------------
def EclaMotCleToFact(jdc,command,motcle,mot1,mot2,defaut=0):
#--------------------------------------------------------------------------
# exemple STA10 pesanteur devient MCF avec eclatement des valeurs dans les MC
# On suppose que le MC est sur une seule ligne
if command not in jdcSet : return
boolChange=0
for c in jdc.root.childNodes:
if c.name != command : continue
trouveUnMC=0
for mc in c.childNodes:
if mc.name != motcle : continue
trouveUnMC=1
TexteMC=mc.getText(jdc)
indexLigneGlob=mc.lineno-1
MaLigneGlob=jdc.getLines()[indexLigneGlob]
Ligne=TexteMC.split('(')[1].split(')')[0].split(',')
motcle1=mot1+"="+Ligne[0]
motcle2=mot2+"=("+Ligne[1]+','+Ligne[2]+','+Ligne[3]+')'
texte=motcle+'=_F('+motcle1+','+motcle2+')'
num=lastparen(TexteMC)
Nouveau=MaLigneGlob.replace(TexteMC[0:num],texte)
jdc.getLines()[indexLigneGlob]=Nouveau
logging.info("Transformation de %s dans %s ligne %s",motcle,command,c.lineno)
boolChange=1
if boolChange : jdc.reset(jdc.getSource())
|