-
Notifications
You must be signed in to change notification settings - Fork 3
/
Util.py
569 lines (511 loc) · 15.9 KB
/
Util.py
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
#!/usr/bin/env python
# from Log import Log
import codecs
import random
import struct
import fcntl
import os
import stat
import mmap
import string
import re
import hashlib
import Defs
import datetime
BAD_EMAILS = ("root@", "gopher@", "bbs@", "guest@")
class Util:
gbkDecoder = codecs.getdecoder('gbk')
gbkEncoder = codecs.getencoder('gbk')
utfDecoder = codecs.getdecoder('utf-8')
utfEncoder = codecs.getencoder('utf-8')
random = random.Random()
strChecker = re.compile('^[a-z0-9A-Z]+$')
@staticmethod
def gbkDec(string):
return Util.gbkDecoder(string, errors='fixterm')[0]
@staticmethod
def gbkEnc(string):
gbk_str = ''
for c in string:
if (c == u'\xa0'):
# gbk does not have 'nbsp'
# replace it with 'sp'
c = ' '
try:
v = c.encode('gbk')
except:
try:
v = c.encode('gb18030')
except:
# so not in gbk or gb18030
# ....
v = '\u%d' % ord(c)
gbk_str += v
out_str = ''
ci = 0
buf = ''
curpos = 0
while (curpos < len(gbk_str)):
c = gbk_str[curpos]
curpos += 1
if (ci == 0):
if (c == '\x1b'):
if (gbk_str[curpos : curpos + 5] == '[50m\x1b'):
# got a prefix tag
curpos += 5
ci = 1
buf = '\x1b'
else:
out_str += c
else:
out_str += c
elif (ci == 1):
buf += c
ci = 2
elif (ci == 2):
buf += c
if (ord(c) >= 64 and ord(c) <= 126):
# internal tag end
ci = 3
elif (ci == 3):
out_str += c
out_str += buf
buf = ''
ci = 0
return out_str
@staticmethod
def utfDec(string):
return Util.utfDecoder(string, errors='ignore')[0]
@staticmethod
def utfEnc(string):
return Util.utfEncoder(string, errors='ignore')[0]
@staticmethod
def CheckRange(start, end, count, defcount, maxend):
'''start
end
count
---: Last, default count
--+: Last
-+-: To end, default count
-++: To end
+--: From start, default count
+-+: From start
++-: From start, to end
+++: Illegal
'''
if (count == 0):
if ((start != 0) and (end != 0)):
count = end - start + 1
else:
count = defcount
if (start != 0):
if (end == 0):
end = min(start + count - 1, maxend)
else:
if (end == 0):
end = maxend
start = max(1, end - count + 1)
return start, end
@staticmethod
def GetInt(params, name, defval = 0):
if (params.has_key(name)):
return int(params[name])
else:
return defval
@staticmethod
def GetString(params, name, defval = ''):
if (params.has_key(name)):
return params[name]
else:
return defval
@staticmethod
def Unpack(obj, data):
Util.UnpackX(obj, data, obj._fields)
@staticmethod
def UnpackX(obj, data, fields):
if (len(data) != len(fields)):
raise Exception("Unpack: count mismatch!")
for i in range(0, len(fields)):
if (type(fields[i]) == type(list())):
if (fields[i][1] == 1):
setattr(obj, fields[i][0], Util.CString(data[i]))
if (fields[i][1] == 2):
setattr(obj, fields[i][0], list(struct.unpack(fields[i][2], data[i])))
else:
setattr(obj, fields[i], data[i])
@staticmethod
def Pack(obj):
return Util.PackX(obj, obj._fields)
@staticmethod
def PackX(obj, fields):
ret = []
for i in range(0, len(fields)):
if (type(fields[i]) == type(list())):
if (fields[i][1] == 1):
if (len(fields[i]) >= 3):
# terminal zero
ret.append(getattr(obj, fields[i][0])[:fields[i][2]-1])
else:
ret.append(getattr(obj, fields[i][0]))
if (fields[i][1] == 2):
ret.append(struct.pack(fields[i][2], *getattr(obj, fields[i][0])))
else:
ret.append(getattr(obj, fields[i]))
return ret
@staticmethod
def InitStruct(obj):
obj.unpack('\0' * obj.size)
# fields = obj._fields
# for i in range(len(fields)):
# if (type(fields[i]) == type(list())):
# if (fields[i][1] == 1):
# setattr(obj, fields[i][0], '')
# elif (fields[i][1] == 2):
# setattr(obj, fields[i][0], [])
# else:
# setattr(obj, fields[i], 0)
@staticmethod
def CString(string):
i = string.find('\0')
if (i != -1):
return string[:i]
else:
return string
@staticmethod
def ReadString(fp):
line = ''
while 1:
c = fp.read(1)
if (c == '\0'):
break
if (c == ''):
break
line += c
return line
@staticmethod
def RandomStr(len):
ret = ''
for i in range(0, len):
randchr = Util.random.randint(48, 109)
if (randchr > 57):
if (randchr > 83):
randchr = randchr + 13
else:
randchr = randchr + 7
ret = ret + chr(randchr)
return ret
@staticmethod
def RandomInt(len):
return ''.join(random.choice(string.digits) for x in range(len))
@staticmethod
def FLock(file, shared = False, nonBlock = False):
fcntl.flock(file, (fcntl.LOCK_SH if shared else fcntl.LOCK_EX) | (fcntl.LOCK_NB if nonBlock else 0));
@staticmethod
def FUnlock(file):
fcntl.flock(file, fcntl.LOCK_UN)
@staticmethod
def LockFile(file, op):
lockdata = struct.pack('hhlll', op, 0, 0, 0, 0)
ret = fcntl.fcntl(file, fcntl.F_SETLKW, lockdata)
return (ret != -1)
@staticmethod
def RLockFile(file): # file: file descriptor
fcntl.lockf(file, fcntl.LOCK_SH)
return True
# return Util.LockFile(file, fcntl.F_RDLCK)
@staticmethod
def WLockFile(file):
fcntl.lockf(file, fcntl.LOCK_EX)
return True
# return Util.LockFile(file, fcntl.F_WRLCK)
@staticmethod
def UnlockFile(file):
fcntl.lockf(file, fcntl.LOCK_UN)
return True
# return Util.LockFile(file, fcntl.F_UNLCK)
@staticmethod
def SizeGeneral(file):
return os.fstat(file.fileno()).st_size
@staticmethod
def GetSize(path):
try:
return os.stat(path).st_size
except:
return -1
@staticmethod
def ReadInt(fd):
return struct.unpack('=i', fd.read(4))[0]
@staticmethod
def ReadChar(fd):
return struct.unpack('=b', fd.read(1))[0]
@staticmethod
def Mmap(fd, pro, flag):
if (fd.fileno() < 0):
return (None, 0)
fstat = os.fstat(fd.fileno())
if (fstat == None):
fd.close()
return (None, 0)
if (not stat.S_ISREG(fstat.st_mode)):
fd.close()
return (None, 0)
if (fstat.st_size < 0):
fd.close()
return (None, 0)
return (mmap.mmap(fd.fileno(), fstat.st_size, flags = flag, prot = pro),
fstat.st_size)
@staticmethod
def GetRecordCount(path, size):
try:
st = os.stat(path)
return st.st_size / size;
except OSError:
# Log.error("fail to get record count: %s" % path)
return -1
@staticmethod
def GetRecords(path, size, index, count):
ret = []
fp = open(path, 'r+b')
fp.seek(size * (index - 1))
for i in range(count):
ret.append(fp.read(size))
return ret
@staticmethod
def SHMGetString(shm, offset, size):
return Util.CString(shm.read(size, offset))
@staticmethod
def SHMGetVal(shm, offset, format, size=0):
if (size == 0):
return struct.unpack(format, shm.read(struct.calcsize(format), offset))[0]
else:
return struct.unpack(format, shm.read(size, offset))[0]
@staticmethod
def SHMPutVal(shm, offset, val, format):
return shm.write(struct.pack(format, val), offset)
@staticmethod
def SHMGetInt(shm, offset):
return Util.SHMGetVal(shm, offset, '=i', 4)
@staticmethod
def SHMGetUInt(shm, offset):
return Util.SHMGetVal(shm, offset, '=I', 4)
@staticmethod
def SHMPutInt(shm, offset, val):
return Util.SHMPutVal(shm, offset, val, '=i')
@staticmethod
def SHMPutUInt(shm, offset, val):
return Util.SHMPutVal(shm, offset, val, '=I')
@staticmethod
def RemoveTags(str):
ret = ''
intag = False
for ch in str:
if (intag):
if (ch.isalpha()):
intag = False
else:
if (ch == '\033'):
intag = True
else:
ret += ch
return ret
@staticmethod
def AppendRecord(filename, record):
try:
with open(filename, "ab") as f:
os.fchmod(f.fileno(), 0664)
fcntl.flock(f, fcntl.LOCK_EX)
# no lseek: append
try:
f.write(record)
finally:
fcntl.flock(f, fcntl.LOCK_UN)
except IOError:
return -1
return 0
@staticmethod
def SeekInFile(filename, str):
try:
with open(filename, "r") as f:
line = f.readline()
while (line != ""):
line = re.split('[: \n\r\t]', line)[0]
if (line.lower() == str.lower()):
return True
line = f.readline()
except IOError:
return False
return False
@staticmethod
def InitFields(cls):
base = 0
for field in cls._fields:
name = field[0]
ftype = field[1]
size = ftype.size
ftype.setbase(base)
base += size
setattr(cls, name, ftype)
cls.size = base
@staticmethod
def HashGen(data, key):
''' igenpass() '''
m = hashlib.md5()
m.update(Defs.PASSMAGIC)
m.update(data)
m.update(Defs.PASSMAGIC)
m.update(key)
return m.digest()
@staticmethod
def CheckStr(str):
return Util.strChecker.match(str)
@staticmethod
def CutLine(buf, length):
cur_len = 0
i = 0
in_gb = False
while i < len(buf):
ch = ord(buf[i])
if in_gb:
if ch >= 0x40:
my_len = 2
elif ch >= 0x30:
my_len = 4
else:
my_len = 2
in_gb = False
else:
if ch >= 0x81:
in_gb = True
else:
my_len = 1
if not in_gb:
if cur_len + my_len > length:
return buf[:cur_len]
cur_len += my_len
i += 1
return buf
@staticmethod
def IsValidEmail(email):
for bad_email in BAD_EMAILS:
if bad_email in email:
return False
return re.match('[^@]+@[^@]+\.[^@]+', email)
@staticmethod
def IsValidDate(y, m, d):
try:
datetime.datetime(y, m, d)
return True
except:
return False
def fixterm_handler(exc):
fixterm_debug = False
if isinstance(exc, UnicodeDecodeError):
s = u""
buf = ''
ci = 0
ss = 0 # saved state
pos = exc.start
for c in exc.object[exc.start:]:
pos = pos + 1
if (ci == 0):
if fixterm_debug: print "State: initial"
if (ord(c) < 128):
if fixterm_debug: print "ASCII"
s += c
break
elif (ord(c) == 128):
# hack: gbk does not allow 0x80
# but microsoft made it a euro sign
s += u'\u20ac'
break
else:
if fixterm_debug: print "Got first half"
buf = c
ci = 1
elif (ci == 1):
if fixterm_debug: print "State: after first half"
if (ord(c) == 0x1b):# \ESC
if fixterm_debug: print "Got tag inside. First half:", buf
s += '\x1b[50m\x1b'
ss = ci
ci = 2
elif (ord(c) >= 0x30 and ord(c) <= 0x39):
# gb18030
buf += c
ci = 5
elif (ord(c) < 0x40):
if fixterm_debug: print "Unknown thing inside...", c
s += '?'
try:
s += c
except:
s += '?'
ci = 0
break
else:
# valid range: 0x40~0x7e, 0x80~0xfe
# anyway, try to decode
if fixterm_debug: print "Got second half. decode."
ci = 0
buf += c
# if (ord(c) >= 0x40 and ord(c) <= 0xfe and ord(c) != 0x7f):
try:
s += buf.decode("gbk")
except:
# maybe 2-byte gb18030?
try:
s += buf.decode("gb18030")
except:
# no idea...
s += '??'
buf = ''
break
elif (ci == 2): # '['
if fixterm_debug: print "[", ord(c)
try:
s += c
except:
s += '?'
ci = 3
elif (ci == 3): # 'i;jm'
if fixterm_debug: print "num: ", ord(c)
try:
s += c
except:
s += '?'
if ((ord(c) >= 64) and (ord(c) <= 126)):
ci = ss
elif (ci == 5):
# gb18030 3rd
if (ord(c) >= 0x81 and ord(c) <= 0xfe):
buf += c
ci = 6
elif (ord(c) == 0x1b):
s += "\x1b[50m\x1b"
ss = ci
ci = 2
else:
buf = ''
s += '???'
ci = 0
break
elif (ci == 6):
# gb18030 4th
if (ord(c) == 0x1b):
s += "\x1b[50m\x1b"
ss = ci
ci = 2
else:
buf += c
# if (ord(c) >= 0x30 and ord(c) <= 0x39):
try:
s += buf.decode('gb18030')
except:
s += '????'
ci = 0
buf = ''
break
return (s, pos)
else:
raise TypeError()
codecs.register_error("fixterm", fixterm_handler)