-
Notifications
You must be signed in to change notification settings - Fork 13
/
strip_duplicates.py
executable file
·105 lines (91 loc) · 3.09 KB
/
strip_duplicates.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
#!/usr/bin/env python
# Copyright (C) 2009 Canonical Ltd
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 3 as
# published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
"""Remove duplicated object information.
To be memory efficient, 'scanner.dump_gc_objects()' does not track what objects
have already been dumped. This means that it occasionally dumps the same object
multiple times.
This script just takes 2 files, and filters the incoming one into purely unique
lines in the outgoing one.
"""
import os
import re
import sys
import time
from meliae import files
def strip_duplicate(infile, outfile, insize=None):
from meliae import _intset
seen = _intset.IntSet()
address_re = re.compile(
r'{"address": (?P<address>\d+)'
)
if insize is not None:
in_mb = ' / %5.1f MiB' % (insize / 1024. / 1024,)
else:
in_mb = ''
bytes_read = 0
last_bytes = 0
lines_out = 0
tstart = time.time()
tlast = time.time()
for line_num, line in enumerate(infile):
bytes_read += len(line)
m = address_re.match(line)
if m:
address = int(m.group('address'))
if address not in seen:
outfile.write(line)
lines_out += 1
seen.add(address)
tnow = time.time()
if tnow - tlast > 0.2:
tlast = tnow
mb_read = bytes_read / 1024. / 1024
tdelta = tnow - tstart
sys.stderr.write(
'loading... line %d, %d out, %5.1f%s read in %.1fs\r'
% (line_num, lines_out, mb_read, in_mb, tdelta))
def main(args):
import optparse
p = optparse.OptionParser(
'%prog [INFILE [OUTFILE]]')
opts, args = p.parse_args(args)
if len(args) > 2:
sys.stderr.write('We only support 2 filenames, not %d\n' % (len(args),))
return -1
cleanups = []
try:
if len(args) == 0:
infile = sys.stdin
insize = None
outfile = sys.stdout
else:
infile, cleanup = files.open_file(args[0])
if cleanup is not None:
cleanups.append(cleanup)
if isinstance(infile, file):
# pipes are files, but 0 isn't useful.
insize = os.fstat(infile.fileno()).st_size or None
else:
insize = None
if len(args) == 1:
outfile = sys.stdout
else:
outfile = open(args[1], 'wb')
strip_duplicate(infile, outfile, insize)
finally:
for cleanup in cleanups:
cleanup()
if __name__ == '__main__':
sys.exit(main(sys.argv[1:]))