-
Notifications
You must be signed in to change notification settings - Fork 13
/
silentoopsslice
executable file
·68 lines (53 loc) · 1.76 KB
/
silentoopsslice
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
#!/usr/bin/env python
import os
import sys
# if you pip installed this is wrong but you have silent_tools installed anyways
silent_tools_dir = os.path.dirname(os.path.realpath(__file__))
if silent_tools_dir not in sys.path:
sys.path.append(silent_tools_dir)
import silent_tools
from silent_tools import eprint
import stat
# Don't throw an error when someone uses head
from signal import signal, SIGPIPE, SIG_DFL
signal(SIGPIPE, SIG_DFL)
if (len(sys.argv) == 1):
eprint("")
eprint('silentoopslice by bcov - an oops tool like silentslice')
eprint(' oops tool -- reads file once, because, "oops that\'s a lot of data"')
eprint("Usage:")
eprint(" cat list_of_tags.list | silentslicefast myfile.silent > new.silent")
eprint(" or")
eprint(" silentslicefast myfile.silent tag1 tag2 tag3 > new.silent")
sys.exit(1)
silent_file = sys.argv[1]
tag_buffers = []
if ( stat.S_ISFIFO(os.stat("/dev/stdin").st_mode) ):
tag_buffers += sys.stdin.readlines()
tag_buffers += sys.argv[2:]
tags = set()
for line in tag_buffers:
line = line.strip()
if (len(line) == 0):
continue
sp = line.split(" ")
for tag in sp:
tags.add(tag)
scoreline, f = silent_tools.assert_is_silent_and_get_scoreline(silent_file, return_f=True)
sys.stdout.write( silent_tools.silent_header_slim( "A", scoreline, "BINARY" ) )
sys.stdout.flush()
first_line = None
try:
first_line = next(f)
except:
pass
while (not first_line is None):
# try:
structure, first_line = silent_tools.rip_structure_by_lines_arbitrary_start(f, first_line)
# except:
# break
tag = structure[0].split()[-1]
if ( tag not in tags ):
continue
sys.stdout.write("".join(structure))
sys.stdout.flush()