/usr/share/pyshared/Traducteur/parseur.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 | # -*- coding: utf-8 -*-
import re,string
import compiler
debug=0
escapedQuotesRE = re.compile(r"(\\\\|\\\"|\\\')")
stringsAndCommentsRE = \
re.compile("(\"\"\".*?\"\"\"|'''.*?'''|\"[^\"]*\"|\'[^\']*\'|#.*?\n)", re.DOTALL)
allchars = string.maketrans("", "")
allcharsExceptNewline = allchars[: allchars.index('\n')]+allchars[allchars.index('\n')+1:]
allcharsExceptNewlineTranstable = string.maketrans(allcharsExceptNewline, '*'*len(allcharsExceptNewline))
#------------------------------
def maskStringsAndComments(src):
#------------------------------
"""Remplace tous les caracteres dans commentaires et strings par des * """
src = escapedQuotesRE.sub("**", src)
allstrings = stringsAndCommentsRE.split(src)
# every odd element is a string or comment
for i in xrange(1, len(allstrings), 2):
if allstrings[i].startswith("'''")or allstrings[i].startswith('"""'):
allstrings[i] = allstrings[i][:3]+ \
allstrings[i][3:-3].translate(allcharsExceptNewlineTranstable)+ \
allstrings[i][-3:]
else:
allstrings[i] = allstrings[i][0]+ \
allstrings[i][1:-1].translate(allcharsExceptNewlineTranstable)+ \
allstrings[i][-1]
return "".join(allstrings)
#un nombre queconque de blancs,un nom,des blancs
pattern_oper = re.compile(r"^\s*(.*?=\s*)?([a-zA-Z_]\w*)(\s*)(\()(.*)",re.DOTALL)
pattern_proc = re.compile(r"^\s*([a-zA-Z_]\w*)(\s*)(\()(.*)",re.DOTALL)
implicitContinuationChars = (('(', ')'), ('[', ']'), ('{', '}'))
linecontinueRE = re.compile(r"\\\s*(#.*)?$")
emptyHangingBraces = [0,0,0,0,0]
#--------------------------------------
class UnbalancedBracesException: pass
#--------------------------------------
#-----------
class Node:
#-----------
def __init__(self):
self.childNodes=[]
def addChild(self,node):
self.childNodes.append(node)
#-------------------
class FactNode(Node):
#-------------------
pass
#-------------------
class JDCNode(Node):
#-------------------
def __init__(self,src):
Node.__init__(self)
self.src=src
#-------------------
class Command(Node):
#-------------------
def __init__(self,name,lineno,colno,firstparen):
Node.__init__(self)
self.name=name
self.lineno=lineno
self.colno=colno
self.firstparen=firstparen
#-------------------
class Keyword(Node):
#-------------------
def __init__(self,name,lineno,colno,endline,endcol):
Node.__init__(self)
self.name=name
self.lineno=lineno
self.colno=colno
self.endline=endline
self.endcol=endcol
def getText(self,jdc):
if self.endline > self.lineno:
debut=jdc.getLines()[self.lineno-1][self.colno:]
fin = jdc.getLines()[self.endline-1][:self.endcol]
texte=debut
lignecourante=self.lineno
while lignecourante < self.endline -1 :
texte = texte + jdc.getLines()[lignecourante]
lignecourante = lignecourante + 1
if chaineBlanche(fin) == 0 :
texte=texte + fin
if texte[-1] == "\n" :
texte=texte[0:-1]
else:
texte = jdc.getLines()[self.lineno-1][self.colno:self.endcol]
return texte
#-------------------------
def chaineBlanche(texte) :
#-------------------------
# retourne 1 si la chaine est composee de " "
# retourne 0 sinon
bool = 1 ;
for i in range(len(texte)) :
if texte[i] != " " : bool = 0
return bool
#-------------------
def printNode(node):
#-------------------
if hasattr(node,'name'):
print node.name
else:
print "pas de nom pour:",node
for c in node.childNodes:
printNode(c)
#------------------------
def Parser(src,atraiter):
#------------------------
"""Parse le texte src et retourne un arbre syntaxique (root).
Cet arbre syntaxique a comme noeuds (childNodes) les commandes à traiter (liste atraiter)
"""
lines=src.splitlines(1)
maskedSrc=maskStringsAndComments(src)
maskedLines=maskedSrc.splitlines(1)
root=JDCNode(src)
# (a) dans un premier temps on extrait les commandes et on les insère
# dans un arbre (root) les noeuds fils sont stockés dans
# root.childNodes (liste)
lineno=0
for line in maskedLines:
lineno=lineno+1
if debug:print "line",lineno,":",line
m=pattern_proc.match(line)
if m and (m.group(1) in atraiter):
if debug:print m.start(3),m.end(3),m.start(4)
root.addChild(Command(m.group(1),lineno,m.start(1),m.end(3)))
else:
m=pattern_oper.match(line)
if m and (m.group(2) in atraiter):
root.addChild(Command(m.group(2),lineno,m.start(2),m.end(4)))
#(b) dans un deuxième temps , on récupère le texte complet de la commande
# jusqu'à la dernière parenthèse fermante
# iterateur sur les lignes physiques masquées
iterlines=iter(maskedLines)
linenum=0
for c in root.childNodes:
lineno=c.lineno
colno=c.colno # début de la commande
while linenum < lineno:
line=iterlines.next()
linenum=linenum+1
if linenum != lineno:
if debug:print "line %s:"%linenum, line
tmp = []
hangingBraces = list(emptyHangingBraces)
hangingComments = 0
while 1:
# update hanging braces
for i in range(len(implicitContinuationChars)):
contchar = implicitContinuationChars[i]
numHanging = hangingBraces[i]
hangingBraces[i] = numHanging+line.count(contchar[0]) - \
line.count(contchar[1])
hangingComments ^= line.count('"""') % 2
hangingComments ^= line.count("'''") % 2
if hangingBraces[0] < 0 or hangingBraces[1] < 0 or hangingBraces[2] < 0:
raise UnbalancedBracesException()
if linecontinueRE.search(line):
tmp.append(lines[linenum-1])
elif hangingBraces != emptyHangingBraces:
tmp.append(lines[linenum-1])
elif hangingComments:
tmp.append(lines[linenum-1])
else:
tmp.append(lines[linenum-1])
src="".join(tmp)
c.src=src
c.endline=linenum
decal=len(line)-line.rindex(')')
c.lastparen=len(src)-decal
if debug:print "logical line %s %s:" % (c.lineno,c.endline),src
break
line=iterlines.next()
linenum=linenum+1
return root
#-----------------
def lastparen(src):
#-----------------
"""Retourne la position de la derniere parenthese fermante dans src a partir du debut de la string
La string doit contenir la premiere parenthese ouvrante
"""
src=maskStringsAndComments(src)
level=0
i,n=0,len(src)
while i < n:
ch=src[i]
i=i+1
if ch in ('(','['):
level=level+1
if ch in (')',']'):
if level == 0:
raise UnbalancedBracesException()
level=level-1
if level == 0:
#derniere parenthese fermante
return i
#-------------------
def lastparen2(src):
#-------------------
"""Retourne la position de la derniere parenthese fermante dans src a partir du debut de la string
La string ne contient pas la premiere parenthese ouvrante
"""
src=maskStringsAndComments(src)
level=1
i,n=0,len(src)
while i < n:
ch=src[i]
i=i+1
if ch in ('(','['):
level=level+1
if ch in (')',']'):
if level == 0:
raise UnbalancedBracesException()
level=level-1
if level == 0:
#derniere parenthese fermante
return i
|