Code indexing in gitaly is broken and leads to code not being visible to the user. We work on the issue with highest priority.

Skip to content
Snippets Groups Projects
Commit bb2737b7 authored by ulrich_y's avatar ulrich_y
Browse files

3: vegas version guesser in re #17

parent c493c516
No related branches found
No related tags found
No related merge requests found
import struct
import re
def read_record(fp, typ):
......@@ -17,3 +18,29 @@ def read_record(fp, typ):
return body[0]
else:
return body
def guess_version(fp, inttype='i'):
fp.seek(0)
magic = fp.read(17).replace('\00', '')
if magic == '\t McMule \t':
version = read_record(fp, 'c').strip()
vers, intiness = re.match("v(\\d+)([NL])", version).groups()
return int(vers), {'N': 'i', 'L': 'q'}[intiness]
# Test v1 vs. v2
intsize = struct.calcsize(inttype)
fp.seek(6893 + 3*intsize)
nrq, nrbins = read_record(fp, inttype)
fp.seek(6925 + 5*intsize + 22*nrq + 16*nrbins*nrq)
try:
time = read_record(fp, 'd')
fp.seek(0)
return 2, inttype
except KeyError:
fp.seek(0)
return 1, inttype
except struct.error:
fp.seek(0)
return 1, inttype
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment