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
|
#!/usr/bin/env python
#
# This file is part of htc_utils.
#
# htc_utils is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# htc_utils 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 htc_utils. If not, see <http://www.gnu.org/licenses/>.
import argparse
import htc_utils
import os
import time
# We create a reference Job object to make a copy of the initial class state
nulljob = htc_utils.Job('NULL')
parser = argparse.ArgumentParser()
parser.add_argument('--infile', nargs='?', type=argparse.FileType('r'))
parser.add_argument('--stdout', action='store_true', help='Output job to stdout instead of a file')
parser.add_argument('--logging', action='store', default='logs')
parser.add_argument('-n', '--jobname', action='store', default=str(int(time.time())), help='Output filename without extension (Default: {Unix Epoch}.job')
parser.add_argument('-q', '--queue', action='store', default='', help='Queue main job N times')
parser.add_argument('-b', '--subqueue', action='store', default='', help='Queue sub-job N times')
parser.add_argument('-s', '--subarg', action='append')
# Sort by key, then by value
sorted_args = sorted(nulljob.config.items(), key=lambda record: record[0], reverse=False)
sorted_args = sorted(sorted_args, key=lambda record: record[1], reverse=True)
# nulljob is no longer required
del nulljob
# Proccess argument list and assign default values to the argument parser
for attr, value in sorted_args:
if attr == 'executable':
continue
elif attr == 'arguments':
continue
default_value = '(Default: {0})'.format(value) if value else ''
parser.add_argument('--' + attr, default=value, help=default_value)
args = parser.parse_args()
if not args.infile:
parser.add_argument('executable')
parser.add_argument('args', nargs='*')
args = parser.parse_args()
# Let's begin writing our HTCondor job
job = htc_utils.Job(args.jobname)
# Populate job attributes based on argparse input
for key, value in vars(args).items():
# Ignore foreign keys
if key not in job.config:
continue
job.attr(key, value)
if args.logging:
job.logging(args.logging, create=True)
if args.infile:
warnings = []
cmd_groups = []
uniques = []
lines = args.infile.readlines()
lines = [ x.rstrip() for x in lines ]
# Generate set of unique commands in the input file
for line in lines:
if line.startswith('#'):
continue
if not line:
continue
cmd = line.split()
uniques.append(cmd[0])
uniques = set(uniques)
# Generate cmd_groups list to separate unique group records
for unique in uniques:
temp_group = []
for index, line in enumerate(lines):
if line.startswith(unique):
cmd = line.rstrip().split()
if not cmd[1:]:
warnings.append('#{0}:{1}:{2} - Warning, executable has no argument. Skipping...'.format(args.infile.name, index + 1, ''.join(line)))
continue
temp_group.append(cmd)
if temp_group:
cmd_groups.append(temp_group)
# Generate job data
for unique in uniques:
job.subattr('executable', unique)
for group in cmd_groups:
for cmd in group:
if unique in cmd:
cmd_args = cmd[1:]
if not cmd_args:
continue
job.subattr('arguments', cmd_args)
job.subattr('queue')
if args.infile:
args.infile.close()
for warning in warnings:
print(warning)
else:
# Manually assign important variables
job.attr('executable', args.executable)
job.attr('arguments', args.args)
job.attr('queue', args.queue)
# Process any sub-attributes we may have
if args.subarg is not None:
for subarg in args.subarg:
job.subattr('arguments', subarg)
job.subattr('queue', args.subqueue)
if args.stdout:
print(job.generate())
else:
job.commit()
print('Wrote: {0}'.format(job.filename))
|