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
|
import sys
import libxml2
# import time
# from pprint import pprint
class callback:
def __init__(self):
self.inRevision = 0
self.inAuthor = 0
self.inLog = 0
self.inFile = 0
self.filelist = []
self.author = ""
self.revision = ""
self.logmessage = ""
def startElement(self, tag, attrs):
if tag == "revision":
self.buffer = ""
self.inRevision = 1
if tag == "author":
self.buffer = ""
self.inAuthor = 1
if tag == "log":
self.buffer = ""
self.inLog = 1
if tag == "file":
self.buffer = ""
self.inFile = 1
def characters(self, data):
if self.inRevision == 1 or self.inAuthor == 1 or self.inLog == 1 or self.inFile == 1:
self.buffer += data
def endElement(self, tag):
if tag == "revision":
self.inRevision = 0
self.revision = self.buffer
if tag == "author":
self.inAuthor = 0
self.author = self.buffer
if tag == "log":
self.inLog = 0
self.logmessage = self.buffer
if tag == "file":
self.inFile = 0
self.filelist.append(self.buffer)
class CommitParser:
def __init__(self):
self.filename = ""
self.author = ""
self.revision = ""
self.pathline = ""
self.logmessage = ""
self.filecount = 0
self.dircount = 0
self.filelist = []
self.path = ""
def parse(self):
handler = callback()
ctxt = libxml2.createPushParser(handler,"",0,"temp.xml")
myfile = file(self.filename)
for line in myfile.readlines():
ctxt.parseChunk(line,len(line),0)
ctxt.parseChunk("",0,1)
# Let's find out what dirs were touched
filelist = handler.filelist
finished = 0
path = ""
multidir = 0
while finished == 0:
ok = 1
i = 0
subdirlinecount = 0
subdirslashpos = 0
maxi = len(filelist)
if (i+1) == maxi:
ok = 0
while i < maxi and ok == 1:
search = filelist[i].find("/")
if search == -1:
#okay, we have a fil in the "top" dir let's stop it
ok = 0
break
if search > -1:
# we have a subdir in here, so count ;)
subdirlinecount += 1
i += 1
if ok == 1 and multidir == 0:
if subdirlinecount == maxi:
#okay all dirs still have a slash
# everything in the same dir?
subdirlinecount = 0
lastdir = ""
# count dirs
filelist.sort()
for dir in filelist:
if dir.find("/") > -1:
if dir[:dir.find("/")+1] != lastdir:
subdirlinecount += 1
lastdir = dir[:dir.find("/")+1]
if subdirlinecount == 1:
# okay, all lines have the same slashpos.
# strip everything up to it
i = 0
path += filelist[0][:search+1]
while i < maxi:
filelist[i] = filelist[i][search+1:]
i += 1
filelist.sort()
for line in filelist:
if line == "":
filelist.remove("")
else:
#no we seem to have the topdir now..
dircount = subdirlinecount
multidir = 1
else:
finished=1
filecount = 0
dircount = 0
lastdir = ""
# count dirs
filelist.sort()
for dir in filelist:
if dir.find("/") > -1:
if dir[:dir.find("/")+1] != lastdir:
dircount += 1
lastdir = dir[:dir.find("/")+1]
filecount = maxi
self.author = handler.author
self.revision = handler.revision
self.logmessage = handler.logmessage
self.dircount = dircount
self.filecount = filecount
self.filelist = filelist
self.path = path
def generate_pathline(self):
self.pathline = ""
if (len(self.filelist) == 1):
self.pathline = self.path + self.filelist[0]
elif (self.filecount > 1 or self.filecount < 4) and self.dircount == 0:
self.pathline = self.path + " ("
for file in self.filelist:
self.pathline += file + " "
self.pathline = self.pathline[:-1] + ")"
elif self.filecount >= 1 and self.dircount >= 1 and self.filecount+self.dircount < 4:
self.pathline = self.path + " ("
for file in self.filelist:
self.pathline += file + " "
self.pathline = self.pathline[:-1] + ")"
elif self.filecount >= 1 and self.dircount >= 1 and self.filecount+self.dircount >= 4:
self.pathline = self.path + " ("
if self.filecount == 1:
self.pathline += "1 file"
if self.filecount > 1:
self.pathline += "%i files" % self.filecount
if self.dircount == 1:
self.pathline += " in 2 dirs"
if self.dircount > 1:
self.pathline += " in %i dirs" % (self.dircount)
self.pathline += ")"
def doit(self):
self.parse()
self.generate_pathline()
|