/usr/share/pyshared/Traducteur/removemocle.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 | # -*- coding: utf-8 -*-
import logging
import regles
from parseur import FactNode
from dictErreurs import EcritErreur
from dictErreurs import jdcSet
#debug=1
debug=0
#on n'a qu'un mocle par commande. On peut donc supprimer le mocle sans trop de précautions (a part iterer a l'envers sur les commandes)
#avant de supprimer un autre mocle, on remet à jour l'arbre syntaxique (lineno,colno,etc.)
#-----------------------------------------------------------------------
def removeMotCle(jdc,command,mocle,ensemble=regles.SansRegle,erreur = 0):
#-----------------------------------------------------------------------
#on itere sur les commandes a l'envers pour ne pas polluer les numeros de ligne avec les modifications
if command not in jdcSet : return
boolChange=0
commands= jdc.root.childNodes[:]
commands.reverse()
for c in commands:
if c.name != command:continue
for mc in c.childNodes:
if mc.name != mocle:continue
if ensemble.verif(c) == 0 : continue
if erreur : EcritErreur((command,mocle),c.lineno)
boolChange=1
removeMC(jdc,c,mc)
if boolChange : jdc.reset(jdc.getSource())
#-------------------------------------------------------
def removeMotCleSiRegle(jdc,command,mocle,liste_regles) :
#-------------------------------------------------------
if command not in jdcSet : return
mesRegles=regles.ensembleRegles(liste_regles)
removeMotCle(jdc,command,mocle,mesRegles,erreur=0)
#----------------------------------------------------------------
def removeMotCleSiRegleAvecErreur(jdc,command,mocle,liste_regles) :
#--------------------------------------------------------------
if command not in jdcSet : return
mesRegles=regles.ensembleRegles(liste_regles)
removeMotCle(jdc,command,mocle,mesRegles,erreur=1)
#----------------------------------------------------------------
def removeMotCleAvecErreur(jdc,command,mocle) :
#--------------------------------------------------------------
if command not in jdcSet : return
removeMotCle(jdc,command,mocle,erreur=1)
#--------------------------------------------------------------------
def removeCommande(jdc,command,ensemble=regles.SansRegle,erreur=0):
#--------------------------------------------------------------------
if command not in jdcSet : return
boolChange=0
commands= jdc.root.childNodes[:]
commands.reverse()
for c in commands:
if c.name != command:continue
if ensemble.verif(c) == 0 : continue
boolChange=1
if erreur : EcritErreur((command,),c.lineno)
jdc.supLignes(c.lineno,c.endline)
logging.warning("Suppression de %s ligne %s",c.name,c.lineno)
if boolChange : jdc.reset(jdc.getSource())
#-------------------------------------------------------------
def removeCommandeSiRegleAvecErreur(jdc,command,liste_regles):
#-------------------------------------------------------------
if command not in jdcSet : return
mesRegles=regles.ensembleRegles(liste_regles)
removeCommande(jdc,command,mesRegles,1)
#---------------------------------
def removeMC(jdc,c,mc):
#---------------------------------
if debug : print "Suppression de:",c.name,mc.name,mc.lineno,mc.colno,mc.endline,mc.endcol
logging.info("Suppression de %s dans %s ligne %d",mc.name,c.name,mc.lineno)
if mc.endline > mc.lineno:
if debug:print "mocle sur plusieurs lignes--%s--" % jdc.getLines()[mc.lineno-1][mc.colno:]
jdc.getLines()[mc.lineno-1]=jdc.getLines()[mc.lineno-1][:mc.colno]
jdc.getLines()[mc.endline-1]=jdc.getLines()[mc.endline-1][mc.endcol:]
#attention : supprimer les lignes à la fin
jdc.getLines()[mc.lineno:mc.endline-1]=[]
else:
if debug:print "mocle sur une ligne--%s--" % jdc.getLines()[mc.lineno-1][mc.colno:mc.endcol]
s=jdc.getLines()[mc.lineno-1]
jdc.getLines()[mc.lineno-1]=s[:mc.colno]+s[mc.endcol:]
fusionne(jdc,mc.lineno-1)
#---------------------------------------------------------------------------------
def removeMotCleInFact(jdc,command,fact,mocle,ensemble=regles.SansRegle,erreur=0):
#----------------------------------------------------------------------------------
# on itere sur les commandes a l'envers pour ne pas polluer
# les numeros de ligne avec les modifications
if command not in jdcSet : return
commands= jdc.root.childNodes[:]
commands.reverse()
boolChange=0
for c in commands:
if c.name != command:continue
for mc in c.childNodes:
if mc.name != fact:continue
l=mc.childNodes[:]
l.reverse()
for ll in l:
for n in ll.childNodes:
if n.name != mocle:continue
if ensemble.verif(c) == 0 : continue
if erreur : EcritErreur((command,fact,mocle),c.lineno)
boolChange=1
removeMC(jdc,c,n)
if boolChange : jdc.reset(jdc.getSource())
#------------------------------------------------------------------
def removeMotCleInFactSiRegle(jdc,command,fact,mocle,liste_regles):
#------------------------------------------------------------------
if command not in jdcSet : return
erreur=0
mesRegles=regles.ensembleRegles(liste_regles)
removeMotCleInFact(jdc,command,fact,mocle,mesRegles,erreur)
#----------------------------------------------------------------------
def removeMotCleInFactSiRegleAvecErreur(jdc,command,fact,mocle,liste_regles):
#----------------------------------------------------------------------
if command not in jdcSet : return
erreur=1
mesRegles=regles.ensembleRegles(liste_regles)
removeMotCleInFact(jdc,command,fact,mocle,mesRegles,erreur)
#----------------------------------------------------------------------
def removeMotCleInFactCourantSiRegle(jdc,command,fact,mocle,liste_regles,erreur=0):
#----------------------------------------------------------------------
if command not in jdcSet : return
ensemble=regles.ensembleRegles(liste_regles)
commands= jdc.root.childNodes[:]
commands.reverse()
boolChange=0
for c in commands:
if c.name != command:continue
for mc in c.childNodes:
if mc.name != fact:continue
l=mc.childNodes[:]
l.reverse()
for ll in l:
if ensemble.verif(ll) == 0 : continue
for n in ll.childNodes:
if n.name != mocle:continue
if erreur : EcritErreur((command,fact,mocle),c.lineno)
boolChange=1
removeMC(jdc,c,n)
if boolChange : jdc.reset(jdc.getSource())
#------------------------------------------
def fusionne(jdc,numLigne):
#------------------------------------------
# fusionne la ligne numLigne et numLigne+1
# si la ligne numLigne+1 ne contient que des parentheses
# fermantes
# et si la ligne numLigne ne contient pas par un "#"
# Attention a la difference de numerotation
# jdc.getLines()[numLigne] donne la ligne numLigne + 1
# alors que joinLineandNext(numLigne) travaille sur le tableau
index=0
texte=jdc.getLines()[numLigne]
fusion=1
while (index < len(texte)) :
if texte[index] not in (" ",",",")",";","\n") :
fusion=0
break
index=index+1
if fusion == 0 : return;
texte=jdc.getLines()[numLigne -1]
if texte.find("#") < 0 :
fusion=1
else :
fusion=0
if fusion :
import load
jdc.joinLineandNext(numLigne)
|