forked from lcnetdev/lds-processing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbf2marc.py
242 lines (193 loc) · 6.38 KB
/
bf2marc.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
#!/usr/bin/env python
import yaml
import sys
import os
import subprocess
import glob
import datetime
from time import gmtime, strftime, sleep
from shutil import rmtree
from multiprocessing.dummy import Pool as ThreadPool
from lxml import etree
from io import StringIO, BytesIO
import itertools
from os import listdir
from os.path import isdir, isfile, join
from modules.config_parser import args
def Convert(config, j):
config = config
n = j["pos"]
# processing job is bf2marc xslt
graphcmd = "cd %TMPDIR% && xsltproc %MODULES%/graphiphy.xsl %TMPFILE% > %TMPFILE%.rdf "
graphcmd = graphcmd.replace('%MODULES%', j["modulesdir"])
graphcmd = graphcmd.replace('%TMPDIR%', j["tmpdir"])
graphcmd = graphcmd.replace('%TMPFILE%', j["tmpfile"])
print ("Graphcmd :", graphcmd)
returned_value = subprocess.Popen(graphcmd, shell=True).wait()
#
print("Processing job: " + str(n) + "; " + j["infile"] + "; " + j["outfile"])
cmd = config["command"]
cmd = cmd.replace('%INFILE%', j["infile"])
cmd = cmd.replace('%OUTFILE%', j["tmpfile"])
returned_value = subprocess.Popen(cmd, shell=True).wait()
# rmtree(j["tmpdir"])
def dircontents(path, files):
for f in listdir(path):
fpath = join(path, f)
if isfile(fpath) and fpath.endswith('.xml'):
files.append(fpath)
elif isdir(fpath):
dircontents(fpath, files)
return files
config = yaml.safe_load(open(args.config))
print()
print("Config:")
print(config)
print()
jobconfig = config["bf2marc"]
print("Job config:")
print(jobconfig)
print()
files = []
files = dircontents(jobconfig["source_directory"], files)
#print(str(len(files)))
# files = files[:10]
#print(files)
#print(str(len(files)))
#print()
pos = 1
dirs = []
jobs = []
for f in files:
infile = f
fo = open(infile , "rb", 1)
parser = etree.XMLParser(remove_blank_text=True)
root = etree.XML(fo, parser)
modulesdir = jobconfig["modules_directory"]
tmpdir = jobconfig["tmp_processing_directory"]
if jobconfig["target_directory_single_dir"]:
outfile = f.replace(jobconfig["source_directory"], '')
outfile = jobconfig["target_directory"] + outfile
tmpfile = tmpdir + f.replace(jobconfig["source_directory"], "")
else:
outfile = f.replace(jobconfig["source_directory"], jobconfig["target_directory"])
dirs.append(outfile)
j = {
"pos": pos,
"infile": infile,
"outfile": outfile,
"tmpdir": tmpdir,
"modulesdir": modulesdir,
"tmpfile": tmpfile
}
jobs.append(j)
pos += 1
if jobconfig["clean_target_directory"]:
for f in glob.glob(jobconfig["target_directory"] + "*", recursive=True):
if isfile(f):
os.unlink(f)
for d in dirs:
os.makedirs(os.path.dirname(d), exist_ok=True)
print()
print("Number of threads: " + str(jobconfig["threads"]))
print("Total number of jobs: " + str(len(jobs)))
print()
st = datetime.datetime.now()
starttime = strftime("%Y-%m-%d %H:%M:%S", gmtime())
# make the Pool of workers
pool = ThreadPool(jobconfig["threads"])
# open the urls in their own threads
# and return the results
results = pool.starmap(Convert, zip(itertools.repeat(jobconfig), jobs))
# close the pool and wait for the work to finish
pool.close()
pool.join()
gt = gmtime()
endtime = strftime("%Y-%m-%d %H:%M:%S", gt)
et = datetime.datetime.now()
timedelta = et - st
print()
print()
print ("Task started at: " + starttime)
print ("Task ended at: " + endtime)
print ("Elapsed time: ", str(timedelta))
print()
print()
=======
#!/usr/bin/python2
#####!/marklogic/data/kefo/work/fmenv/bin/python3.7
#####!/usr/bin/python fails on from modules
###### !/usr/bin/env python: fails on lxml
######!/marklogic/data/kefo/work/fmenv/bin/python3
#works on atom feed url of instances loaded (instance Ids in bfdb) works on a curl of an instance id: c0213880820001
# https://preprod-8230.id.loc.gov/resources/instances/c0213880820001.marc-pkg.xml
#
import glob
import sys
from lxml import etree as ET
from lxml.builder import ElementMaker
import os
import shutil
import multiprocessing
import subprocess
import urllib2
from datetime import date, timedelta
# *** Main Program *****
print("*** BF to MARC testing tool ***")
print("*** Converts the latest feed to MARC ***")
print('*** results #in "out/mrc.xml" ***')
####################
indir= "in/"
shutil.rmtree("in")
os.mkdir("in")
outdir="out/"
if len(sys.argv) >1 :
path_to_data = sys.argv[1]
else:
# path_to_data = "/marklogic/nate/python-tutorial/"
path_to_data= os.getcwd()
yesterday = date.today() - timedelta(days=1)
yesterday.strftime('%Y-%m-%d')
infile = urllib2.urlopen("https://preprod-8231.id.loc.gov/resources/bfedits/2021-01-12/feed/1").read()
curl = "curl -L 'https://preprod-8230.id.loc.gov/resources/instances/%BIBID%.marc-pkg.xml' > in/%OUTFILE%.rdf"
outfile = outdir + 'mrc.xml'
efilename= outdir + '/error.txt'
#atom= ET.parse(bytes(infile))
atom=ET.XML(infile)
bf2marc=ET.parse("/marklogic/applications/bibframe2marc/bibframe2marc.xsl")
bf2marcxsl=ET.XSLT(bf2marc)
count=0
for entry in atom.iterfind('.//{http://www.w3.org/2005/Atom}entry'):
for id in entry:
if( id.tag=="{http://www.w3.org/2005/Atom}id" and "instances" in id.text ):
bibid= id.text.rsplit("/")[4]
curlcmd = curl.replace('%BIBID%', bibid)
curlcmd = curlcmd.replace('%OUTFILE%', bibid)
returned_value = subprocess.Popen(curlcmd, shell=True).wait()
bibfiles=list(glob.glob(indir+'*.rdf'))
counter = 0
# create output marcxml:collection:
M= ElementMaker(namespace="http://www.loc.gov/MARC21/slim" ,
nsmap={"marc":"http://www.loc.gov/MARC21/slim"})
coll=M.collection()
with open(outfile,'wb') as out:
for file in bibfiles:
counter+=1
if counter % 100 == 0:
print(counter,'/',len(bibfiles))
print ("converting to marc: "+file)
bftree = ET.parse(file)
bfroot = bftree.getroot()
# result has marc
try:
result=bf2marcxsl(bfroot)
except:
print("Unexpected error:", sys.exc_info()[0], sys.exc_info()[1] )
for info in sys.exc_info():
print(info)
record= ET.XML(bytes(result))
coll.insert(counter,record)
out.write(ET.tostring(coll))
out.close
#os.system("cat out/mrc.xml")
#print(glob.glob("out/*xml"))