forked from klendathu2k/slurp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbachi.py
executable file
·256 lines (208 loc) · 6.8 KB
/
bachi.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
#!/usr/bin/env python3
"""
bachi (japanese for ramen bowl) ... script for dataset creation, finalization and status updates
Manages the production dataset status table
"""
import pyodbc
import argparse
import pprint
import datetime
import time
import random
import sh
import sys
import signal
import json
import hashlib
import os
import shutil
try:
statusdb = pyodbc.connect("DSN=ProductionStatusWrite")
statusdbc = statusdb.cursor()
except pyodbc.InterfaceError:
for s in [ 10*random.random(), 20*random.random(), 30*random.random(), 60*random.random(), 120*random.random() ]:
print(f"Could not connect to DB... retry in {s}s")
time.sleep(s)
try:
statusdb = pyodbc.connect("DSN=ProductionStatusWrite")
statusdbc = statusdb.cursor()
except:
pass
try:
statusdbr_ = pyodbc.connect("DSN=ProductionStatus")
statusdbr = statusdbr_.cursor()
except pyodbc.InterfaceError:
for s in [ 10*random.random(), 20*random.random(), 30*random.random(), 60*random.random(), 120*random.random() ]:
print(f"Could not connect to DB... retry in {s}s")
time.sleep(s)
try:
statusdbr_ = pyodbc.connect("DSN=ProductionStatus")
statusdbr = statusdbr_.cursor()
except:
pass
except pyodbc.Error as e:
print(e)
exit(1)
parser = argparse.ArgumentParser(prog='bachi')
subparsers = parser.add_subparsers(dest="subcommand")
parser.add_argument("--blame", default="bachi" )
parser.add_argument("--timestamp" ,
dest="timestamp" ,
default=str( datetime.datetime.now(datetime.timezone.utc).replace(microsecond=0) ),
help="Sets the timestamp, default is now (and highly recommended)"
)
def subcommand(args=[], parent=subparsers):
def decorator(func):
parser = parent.add_parser(func.__name__, description=func.__doc__)
for arg in args:
parser.add_argument(*arg[0], **arg[1])
parser.set_defaults(func=func)
return decorator
def argument(*name_or_flags, **kwargs):
return ([*name_or_flags], kwargs)
def getLatestId( tablename, dstname, run ):
cache="cups.cache"
result = 0
query=f"""
select id,dstname from {tablename} where run={run} order by id desc;
"""
results = list( statusdbr.execute(query).fetchall() )
# Find the most recent ID with the given dstname
for r in results:
if r.dstname == dstname:
result = r.id
break
if result==0: print(f"Warning: could not find {dstname} with run={run} ... this may not end well.")
return result
@subcommand([
argument( "DSTNAME", help="Specifies the dataset name" ),
argument( "RUN", help="Specifies the run (or first/last run) in the dataset", type=int, action="extend", nargs="+" ),
argument( "--parent", help="Specify the parent of this dataset", default=None ),
])
def created(args):
"""
Signals the creation of a dataset
"""
dstname = args.DSTNAME
run = args.RUN[0]
lastrun = 0
if len( args.RUN ) > 1:
lastrun = args.RUN[1]
blame = args.blame
status = "created "
now = str( args.timestamp )
upsert=""
if args.parent:
upsert=f"""
insert into dataset_status ( dstname , run , lastrun, revision, created, status, blame, parent )
values ( '{dstname}', {run}, {lastrun}, 1, '{now}', 'created', '{blame}', '{args.parent}' )
on conflict
on constraint dataset_status_pkey
do update set
revision=dataset_status.revision+1,
created=EXCLUDED.created,
status=EXCLUDED.status,
blame=EXCLUDED.blame
"""
else:
upsert=f"""
insert into dataset_status ( dstname , run , lastrun, revision, created, status, blame )
values ( '{dstname}', {run}, {lastrun}, 1, '{now}', 'created', '{blame}' )
on conflict
on constraint dataset_status_pkey
do update set
revision=dataset_status.revision+1,
created=EXCLUDED.created,
status=EXCLUDED.status,
blame=EXCLUDED.blame
"""
print(upsert)
statusdbc.execute( upsert )
statusdbc.commit()
@subcommand([
argument( "DSTNAME", help="Specifies the dataset name" ),
argument( "RUN", help="Specifies the run (or first/last run) in the dataset", type=int, action="extend", nargs="+" )
])
def finalized(args):
"""
Signals the finalization of a dataset
"""
dstname = args.DSTNAME
run = args.RUN[0]
lastrun = 0
if len( args.RUN ) > 1:
lastrun = args.RUN[1]
blame = args.blame
status = "finalized"
now = str( args.timestamp )
id_ = getLatestId('dataset_status',dstname,run)
upsert=f"""
update dataset_status
set finalized='{now}',
status='finalized',
blame='{blame}'
where id={id_};
"""
statusdbc.execute( upsert )
statusdbc.commit()
@subcommand([
argument( "DSTNAME", help="Specifies the dataset name" ),
argument( "RUN", help="Specifies the run (or first/last run) in the dataset", type=int, action="extend", nargs="+" )
])
def updated(args):
"""
Signals that a file is added to the dataset
"""
dstname = args.DSTNAME
run = args.RUN[0]
lastrun = 0
if len( args.RUN ) > 1:
lastrun = args.RUN[1]
blame = args.blame
status = "updated"
now = str( args.timestamp )
id_ = getLatestId('dataset_status',dstname,run)
upsert=f"""
update dataset_status
set updated='{now}',
status='updated',
nsegments=nsegments+1,
blame='{blame}'
where id={id_};
"""
statusdbc.execute( upsert )
statusdbc.commit()
@subcommand([
argument( "DSTNAME", help="Specifies the dataset name" ),
argument( "RUN", help="Specifies the run (or first/last run) in the dataset", type=int, action="extend", nargs="+" )
])
def broken(args):
"""
Signals the finalization of a dataset
"""
dstname = args.DSTNAME
run = args.RUN[0]
lastrun = 0
if len( args.RUN ) > 1:
lastrun = args.RUN[1]
blame = args.blame
status = "broken"
now = str( args.timestamp )
id_ = getLatestId('dataset_status',dstname,run)
upsert=f"""
update dataset_status
set broken='{now}',
status='broken',
blame='{blame}'
where id={id_};
"""
statusdbc.execute( upsert )
statusdbc.commit()
def main():
args=parser.parse_args()
if args.subcommand is None:
parser.print_help()
else:
args.func(args)
if __name__ == '__main__':
main()