-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcado-nfs-notlog.py
executable file
·246 lines (203 loc) · 9.23 KB
/
cado-nfs-notlog.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
#!/usr/bin/env python3
import os
import sys
import subprocess
import re
import itertools
if sys.hexversion < 0x03060000:
sys.exit("Python 3.6 or newer is required to run this program.")
# THIS PART MUST BE EXACTLY IDENTICAL IN cado-nfs.py and cado-nfs-client.py
# Three possible locations for this script
#
# The installed path. Then we should rely on the @-escaped paths, and
# determine the location of all our utility stuff based on that.
#
# The build directory. We rely on the presence of a magic file called
# source-location.txt, and we fetch the python source code from there
#
# The source tree. We call the ./scripts/build_environment.sh script to
# determine where the binaries are being put.
import locale
pathdict = dict()
one_pyfile_example_subpath = "scripts/cadofactor/workunit.py"
def detect_installed_tree(pathdict):
mydir = os.path.normpath(os.path.dirname(sys.argv[0]))
md = mydir.split(os.path.sep)
install_tree = mydir
bd = "@BINSUFFIX@".split(os.path.sep)
while md and bd and md[-1] == bd[-1]:
md.pop()
bd.pop()
install_tree = os.path.normpath(os.path.join(install_tree, ".."))
if bd:
if os.environ.get("CADO_NFS_DEBUG_PATHDETECT"):
print("{} does not end in @BINSUFFIX@".format(mydir))
return False
example = os.path.join(install_tree,
"@LIBSUFFIX@",
one_pyfile_example_subpath)
t = os.path.exists(example)
if not t:
if os.environ.get("CADO_NFS_DEBUG_PATHDETECT"):
print("{} does not exist".format(example))
return False
# make all this relocatable, it doesn't cost us much.
# (note though that the rpaths in the binaries are likely to still
# contain absolute paths)
pathdict["pylib"] = os.path.join(install_tree, "@LIBSUFFIX@/scripts")
pathdict["data"] = os.path.join(install_tree, "@DATASUFFIX@")
pathdict["lib"] = os.path.join(install_tree, "@LIBSUFFIX@")
pathdict["bin"] = os.path.join(install_tree, "@BINSUFFIX@")
if os.environ.get("CADO_NFS_DEBUG_PATHDETECT"):
print("cado-nfs running in installed tree")
return True
def detect_build_tree(pathdict):
# source-location.txt is created by our build system, and can be used
# *ONLY* when we call this script from the build directory. We don't
# want this to perspire in any installed file, of course.
mydir = os.path.normpath(os.path.dirname(sys.argv[0]))
source_location_subpath = "source-location.txt"
source_location_file = os.path.join(mydir, source_location_subpath)
if not os.path.exists(source_location_file):
if os.environ.get("CADO_NFS_DEBUG_PATHDETECT"):
print("{} does not exist".format(source_location_file))
return False
# ok, we're in the build tree, apparently
source_tree = open(source_location_file, "r").read().strip()
pathdict["pylib"] = os.path.join(source_tree, "scripts")
pathdict["data"] = os.path.join(source_tree, "parameters")
pathdict["lib"] = mydir
pathdict["bin"] = mydir
if os.environ.get("CADO_NFS_DEBUG_PATHDETECT"):
print("cado-nfs running in build tree")
return True
def detect_source_tree(pathdict):
mydir = os.path.normpath(os.path.dirname(sys.argv[0]))
helper = os.path.join(mydir, "scripts/build_environment.sh")
if not os.path.exists(helper):
if os.environ.get("CADO_NFS_DEBUG_PATHDETECT"):
print("{} does not exist".format(helper))
return False
pipe = subprocess.Popen([helper, "--show"], stdout=subprocess.PIPE)
loc = locale.getlocale()[1]
if not loc:
loc = "ascii"
output = pipe.communicate()[0].decode(loc)
cado_bin_path = [x.split("=", 2)[1]
for x in output.split("\n")
if re.match("^build_tree", x)][0]
cado_bin_path = re.sub("^\"(.*)\"$", "\\1", cado_bin_path)
pathdict["pylib"] = os.path.join(mydir, "scripts")
pathdict["data"] = os.path.join(mydir, "parameters")
pathdict["lib"] = cado_bin_path
pathdict["bin"] = cado_bin_path
if os.environ.get("CADO_NFS_DEBUG_PATHDETECT"):
print("cado-nfs running in source tree")
return True
if detect_installed_tree(pathdict):
pass
elif detect_build_tree(pathdict):
pass
elif detect_source_tree(pathdict):
pass
else:
raise RuntimeError("We're unable to determine"
" the location of the cado-nfs binaries"
" and python files")
sys.path.append(pathdict["pylib"])
# END OF THE PART THAT MUST BE IDENTICAL IN cado-nfs.py and cado-nfs-client.py
from cadofactor import toplevel, cadologger, cadotask # noqa: E402
from cadofactor.cadocommand import shellquote # noqa: E402
if __name__ == '__main__':
# Parse command line arguments
# Some command-line arguments are really parsed only here, while some
# others are relevant to the whole hierarchy of cado-nfs programs.
# The (hairy) logic which is used to form the definitive list of
# parameters (in the cadoparams sense) from what we got here on the
# command line is grouped in the Cado_NFS_toplevel class, down in
# scripts/cadofactor/toplevel.py
toplevel_params = toplevel.Cado_NFS_toplevel()
for key, value in pathdict.items():
toplevel_params.setpath(key, value)
logger = toplevel_params.logger
logger.handlers.clear()
parameters, db = toplevel_params.get_cooked_parameters()
# We have to remove the credential info from the database which gets
# stored in the parameter snapshot. We must also make sure that we
# store this info always at the root of the param tree, or we may end
# up do bizarre things with duplicated keys if we resume from a
# parameter snapshot file *and* we have something on the command
# line.
if parameters.get_or_set_default("database", None):
parameters.replace("database", db.uri_without_credentials)
# do this so that the parameter does not appear unused.
parameters.get_or_set_default("database")
# well, this *must* exist, right ?
name = parameters.get_or_set_default("tasks.name")
wdir = parameters.get_or_set_default("tasks.workdir")
# Add a logger to capture the command lines of programs we run
cmdfilename = os.path.join(wdir, name + ".cmd")
logger.addHandler(cadologger.CmdFileHandler(cmdfilename))
# Add a logger to write debugging information to a log file
filelvl = getattr(cadologger, toplevel_params.args.filelog.upper())
logfilename = os.path.join(wdir, name + ".log")
filehandler = cadologger.FileHandler(filename=logfilename, lvl=filelvl)
logger.addHandler(filehandler)
cmdline = " ".join([shellquote(arg, idx == 0)
for idx, arg in enumerate(sys.argv)])
cmdline = cmdline.replace(db.uri, db.uri_without_credentials)
logger.info("Command line parameters: %s", cmdline)
logger.debug("Root parameter dictionary:\n%s", parameters)
# Write a snapshot of the parameters to a file
for counter in itertools.count():
snapshot_basename = name + ".parameters_snapshot.%d" % counter
snapshot_filename = os.path.join(wdir, snapshot_basename)
if not os.path.isfile(snapshot_filename):
break
with open(snapshot_filename, "w") as snapshot_file:
logger.debug("Writing parameter snapshot to %s", snapshot_filename)
snapshot_file.write(str(parameters))
snapshot_file.write("\n")
logger.info("If this computation gets interrupted,"
" it can be resumed with %s %s",
sys.argv[0], snapshot_filename)
factorjob = cadotask.CompleteFactorization(db=db,
parameters=parameters,
path_prefix=[])
if toplevel_params.args.verboseparam:
logger.info("Summary of all recognized parameters\n" +
factorjob.parameter_help)
try:
factors = factorjob.run()
except cadotask.EarlyStopException:
sys.exit(0)
if factors is None:
toplevel_params.purge_temp_files(nopurge=True)
sys.exit("Error occurred, terminating")
else:
toplevel_params.purge_temp_files()
dlp_param = parameters.myparams({"dlp": False}, "")
dlp = dlp_param["dlp"]
target_param = parameters.myparams({"target": ""}, "")
target = target_param["target"]
if not dlp:
print(" ".join(factors))
else:
logger.info("If you want to compute"
" one or several new target(s),"
" run %s %s target=<target>[,<target>,...]",
sys.argv[0], snapshot_filename)
base = factors[0]
if target != "":
logtargets = factors[1:]
targets = [int(ts) for ts in target.split(",")]
logger.info("logbase = " + str(base))
for i in range(min(len(targets), len(logtargets))):
t = targets[i]
logt = logtargets[i]
logger.info("target = " + str(t))
logger.info("log(target) = " + str(logt) + " mod ell")
for i in range(len(logtargets), len(targets)):
t = targets[i]
logger.warning("NO LOG FOUND for target = " + str(t))
print(",".join([str(x) for x in logtargets]))