-
Notifications
You must be signed in to change notification settings - Fork 123
/
ontload.py
executable file
·1023 lines (889 loc) · 41.8 KB
/
ontload.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
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/usr/bin/env python3
import tempfile
from pyontutils.config import auth
__doc__ = f"""Use SciGraph to load an ontology from a loacal git repository.
Remote imports are replaced with local imports.
NIF -> http://ontology.neuinfo.org/NIF
Usage:
ontload graph [options] <repo> <remote_base>
ontload config [options] <repo> <remote_base> <graph_path>
ontload scigraph [options]
ontload imports [options] <repo> <remote_base> <ontologies>...
ontload chain [options] <repo> <remote_base> <ontologies>...
ontload extra [options] <repo>
ontload patch [options] <repo>
ontload prov [blazegraph scigraph] [options] <path-out>
ontload prov [blazegraph scigraph] [options] <path-in> <path-out>
ontload [options]
Options:
-g --git-remote=GBASE remote git hosting [default: {auth.get('git-remote-base')}]
-l --git-local=LBASE local git folder [default: {auth.get_path('git-local-base')}]
-z --zip-location=ZIPLOC local path for build files [default: {auth.get_path('zip-location')}]
-t --graphload-config=CFG graphload.yaml location [default: {auth.get_path('scigraph-graphload')}]
THIS IS THE LOCATION OF THE BASE TEMPLATE FILE
-n --graphload-ontologies=YML ontologies-*.yaml file
-o --org=ORG user/org for ontology [default: {auth.get('ontology-org')}]
-b --branch=BRANCH ontology branch to load [default: master]
-c --commit=COMMIT ontology commit to load [default: HEAD]
-s --scp-loc=SCP scp zipped graph here [default: user@localhost:{tempfile.tempdir}/graph/]
-i --path-build-scigraph=PBS build scigraph at path
-O --scigraph-org=SORG user/org for scigraph [default: SciGraph]
-B --scigraph-branch=SBRANCH scigraph branch to build [default: master]
-C --scigraph-commit=SCOMMIT scigraph commit to build [default: HEAD]
-S --scigraph-scp-loc=SGSCP scp zipped services here [default: user@localhost:{tempfile.tempdir}/scigraph/]
-Q --scigraph-quiet silence mvn log output
-P --patch-config=PATCHLOC patchs.yaml location [default: {auth.get_path('patch-config')}]
-u --curies=CURIEFILE curie definition file [default: {auth.get_path('curies')}]
if only the filename is given assued to be in scigraph-config-folder
-p --patch retrieve ontologies to patch and modify import chain accordingly
-K --check-built check whether a local copy is present but do not build if it is not
-d --debug call breakpoint when done
-L --logfile=LOG log output here [default: ontload.log]
-v --view-defaults print out the currently configured default values
-f --graph-config-out=GCO output for graphload.yaml [default: {auth.get_path('scigraph-graphload')}]
only useful for `ontload config` ignored otherwise
-x --fix-imports-only prepare graph build but only fix the import chain do not build
--build-id=BUILD_ID
--nowish=NOWISH
"""
import os
import json
import uuid
import yaml
import shutil
import hashlib
import subprocess
from io import BytesIO
from glob import glob
from pathlib import Path
from os.path import join as jpth
from contextlib import contextmanager
from collections import namedtuple
import rdflib
from lxml import etree
from git.repo import Repo
from docopt import parse_defaults
from ttlser import CustomTurtleSerializer
from dateutil import parser as dateparser
from pyontutils.core import OntGraph
from pyontutils.utils import noneMembers, TODAY, setPS1, refile, TermColors as tc, log
from pyontutils.utils import utcnowtz, isoformat
from pyontutils.namespaces import getCuries, OntCuries, ilxtr, build, buildid
from pyontutils.hierarchies import creatTree
from pyontutils.closed_namespaces import rdf, rdfs, owl, skos, oboInOwl, dc
try:
breakpoint
except NameError:
from IPython import embed as breakpoint
defaults = {o.name:o.value if o.argcount else None for o in parse_defaults(__doc__)}
COMMIT_HASH_HEAD_LEN = 8
CONFIG_HASH_HEAD_LEN = 8
bigleaves = 'go.owl', 'uberon.owl', 'pr.owl', 'doid.owl', 'taxslim.owl', 'chebislim.ttl', 'ero.owl'
Query = namedtuple('Query', ['root','relationshipType','direction','depth'])
class NotBuiltError(FileNotFoundError):
pass
def prov_new(path_out, build_id=None, nowish=None, type=build.raw):
if build_id is None:
build_id = uuid.uuid4().urn[9:] # aka uuid -v 4
if nowish is None:
nowish = utcnowtz()
g = prov_graph(build_id, nowish, type)
g.write(path_out, format='nifttl')
return g
def prov_derive(path_in, path_out, type):
g = OntGraph().parse(path_in)
for o in list(g[build.prov:build.type]):
g.remove((build.prov, build.type, o))
g.add((build.prov, build.type, type))
# TODO add additional per-type information?
g.write(path_out, format='nifttl')
return g
def prov_graph(build_id, nowish, type):
# build id should probably be a uuid set at the start of the process
# nowish is the output of utcnowtz (usually), a datetime with a timezone
# type is build.SciGraph or build.Blazegraph for now
if type not in (build.raw, build.SciGraph, build.Blazegraph):
raise TypeError(f'unsupported type {type}')
g = OntGraph()
g.namespace_manager.bind('build', build)
g.namespace_manager.bind('buildid', buildid)
s = build.prov
posu = {
rdf.type: build.Record,
build.id : buildid[build_id],
build.type : type,
}
posl = {
rdfs.label: 'graph build and load provenance record',
build.metaVersion: '0', # metadata record structure version, helps with version migrations
build.epoch : int(nowish.timestamp()),
build.datetime : isoformat(nowish),
build.date : nowish.date().isoformat(),
build.time : nowish.time().isoformat(),
# other options
# build.system : '???', # not useful/leaks data
# build.resumed : resumed_count, # not really useful
# config hash (scigraph only)
# various repo commit hashes
# ontology commit hash
# apinatomy commit hash (not curretly possible)
# open physiology viewer commit hash
}
g.add((s, rdf.type, owl.NamedIndividual)) # ensure find by type in SciGraph
for p, o in posu.items():
g.add((s, p, o))
for p, o in posl.items():
g.add((s, p, rdflib.Literal(o)))
return g
def identity_json(blob, *, cls=None,
cypher=hashlib.blake2b, encoding='utf-8', sort_lists=False):
""" Return the checksum (default blake2b) of the json string
serialize of a python dict, list, etc. This is a hacky substitute
for a properly specified algorithm for normalizing and hashing python
objects. """
# this function may be called without arguments, but if it is
# called with arguments then the signature changes so we know that
# we are in a different regieme
if sort_lists:
# reminder that json.JSONEncoder.default is not extensible for
# known types >_< SIGH
rank = {dict:0,
list:1,
str:2,
float:3,}
def key(e):
if isinstance(e, dict):
return rank[dict], sorted([list(t) for t in e.items()], key=key)
elif isinstance(e, list):
return rank[list], e # should already be sorted
else:
return rank[type(e)], e
def sigh(blob):
if isinstance(blob, dict):
return {k: sigh(v) for k, v in blob.items()}
elif isinstance(blob, list) or isinstance(blob, tuple):
return sorted([sigh(e) for e in blob], key=key)
else:
return blob
blob = sigh(blob)
s = json.dumps(blob,
indent=0,
separators=(',', ':'),
ensure_ascii=True,
sort_keys=True,
cls=cls)
snn = s.replace('\n', '')
b = snn.encode(encoding)
m = cypher()
m.update(b)
checksum = m.digest()
return checksum
def make_catalog(itrips):
return '\n'.join(("""<?xml version="1.0" encoding="UTF-8" standalone="no"?>""",
"""<catalog prefer="public" xmlns="urn:oasis:names:tc:entity:xmlns:xml:catalog">""",
*[f""" <uri id="User Entered Import Resolution" name="{s}" uri="{o}"/>""" for s, p, o in itrips
if p == owl.sameAs],
"""</catalog>"""))
@contextmanager
def execute_regardless(function, only_exception=False):
try:
yield
except BaseException as e:
if only_exception:
function()
raise e
finally:
if not only_exception:
function()
def getBranch(repo, branch):
try:
return [b for b in repo.branches if b.name == branch][0]
except IndexError:
branches = [b.name for b in repo.branches]
raise ValueError('No branch %s found, options are %s' % (branch, branches))
class ReproLoader:
def __init__(self, zip_location, git_remote, org, git_local, repo_name, branch, commit,
remote_base, load_base, graphload_config_template, graphload_ontologies,
patch_config, patch, scigraph_commit, post_clone=lambda: None,
fix_imports_only=False, check_built=False):
date_today = TODAY()
load_from_repo=True
local_base = jpth(git_local, repo_name)
if load_from_repo:
repo, nob = self._set_up_repo_state(local_base,
git_remote,
org,
git_local,
repo_name,
branch,
commit,
post_clone)
ontology_commit = repo.head.object.hexsha[:COMMIT_HASH_HEAD_LEN]
else:
ontology_commit = 'NONE'
config_path, config = self.make_graphload_config(graphload_config_template, graphload_ontologies, zip_location, date_today)
config_hash = identity_json(config, sort_lists=True).hex()
(graph_path, zip_path, zip_command,
wild_zip_path) = self._set_up_paths(zip_location, repo_name, branch,
scigraph_commit, ontology_commit,
config_hash, date_today)
# NOTE config is modified in place
ontologies = self.configure_config(config, graph_path, remote_base, local_base, config_path)
load_command = load_base.format(config_path=config_path) # 'exit 1' to test
log.info(load_command)
if load_from_repo:
# replace raw github imports with ontology.neuinfor iris to simplify import chain
# FIXME this is hardcoded and will not generalize ...
fix_imports = ("find " + local_base +
(" -name '*.ttl' -exec sed -i"
" 's,<http.\+/ttl/,<http://ontology.neuinfo.org/NIF/ttl/,' {} \;"))
os.system(fix_imports)
if load_from_repo and not fix_imports_only:
def reset_state(original_branch=nob):
repo.git.checkout('--', local_base)
original_branch.checkout()
else:
reset_state = lambda : None
with execute_regardless(reset_state): # FIXME start this immediately after we obtain nob?
# main
if load_from_repo:
if patch:
# FIXME TODO XXX does scigraph load from the catalog!??!??
# because it seems like doid loads correctly without using local_versions
# which would be cool, if confusing
local_versions = tuple(do_patch(patch_config, local_base))
else:
local_versions = tuple()
itrips = local_imports(remote_base, local_base, ontologies,
local_versions=local_versions, dobig=True) # SciGraph doesn't support catalog.xml
catalog = make_catalog(itrips)
with open(Path(local_base, 'catalog.xml'), 'wt') as f:
f.write(catalog)
else:
itrips = []
pass
maybe_zip_path = glob(wild_zip_path)
if fix_imports_only:
pass
elif not maybe_zip_path:
if check_built:
print('The graph has not been loaded.')
raise NotBuiltError('The graph has not been loaded.')
#breakpoint()
failure = os.system(load_command)
if failure:
if os.path.exists(graph_path):
shutil.rmtree(graph_path)
else:
os.rename(config_path, # save the config for eaiser debugging
graph_path / config_path.name)
cpr = config_path.with_suffix(config_path.suffix + '.raw')
os.rename(cpr, graph_path / cpr.name)
failure = os.system(zip_command) # graphload zip
else:
zip_path = maybe_zip_path[0] # this way we get the actual date
print('Graph already loaded at', zip_path)
# this needs to be run when the branch is checked out
# FIXME might be worth adding this to the load config?
self.ontologies = [get_iri(load_header(rec['url'])) for rec in config['ontologies']]
self.zip_path = zip_path
self.itrips = itrips
self.config = config
@staticmethod
def _set_up_repo_state(local_base, git_remote, org, git_local,
repo_name, branch, commit, post_clone):
git_base = jpth(git_remote, org, repo_name)
if not os.path.exists(local_base):
repo = Repo.clone_from(git_base + '.git', local_base)
post_clone() # FIXME if this does not complete we need to warn or something, it causes errors
else:
repo = Repo(local_base)
nob = repo.active_branch
try:
nab = getBranch(repo, branch)
nab.checkout()
except ValueError: # usually indicates a remote branch
repo.git.checkout(branch)
nab = repo.active_branch
repo.remote().pull() # make sure we are up to date
if commit != 'HEAD':
repo.git.checkout(commit)
return repo, nob
@staticmethod
def _set_up_paths(zip_location, repo_name, branch, scigraph_commit, ontology_commit, config_hash, date_today):
# TODO consider dumping metadata in a file in the folder too?
def folder_name(scigraph_commit, wild=False):
return (repo_name +
'-' + branch +
'-graph' +
'-' + ('*' if wild else date_today) +
'-' + scigraph_commit[:COMMIT_HASH_HEAD_LEN] +
'-' + ontology_commit +
'-' + config_hash[:CONFIG_HASH_HEAD_LEN])
def make_folder_zip(wild=False):
folder = folder_name(scigraph_commit, wild)
graph_path = zip_location / folder
zip_path = graph_path.with_suffix('.zip')
if wild:
return graph_path, zip_path.as_posix()
zip_name = zip_path.name
zip_dir = os.path.dirname(zip_path)
zip_command = ' '.join(('cd', zip_dir, ';', 'zip -r', zip_name, folder))
return graph_path, zip_path, zip_command
graph_path, zip_path, zip_command = make_folder_zip()
wild_graph_path, wild_zip_path = make_folder_zip(wild=True)
return graph_path, zip_path, zip_command, wild_zip_path
@staticmethod
def make_graphload_config(graphload_config_template, graphload_ontologies,
zip_location, date_today, config_path=None):
config_n = 'graphload-' + date_today + '.yaml'
config_raw = config_n + '.raw'
if graphload_ontologies is not None:
with open(graphload_config_template, 'rt') as f1, open(graphload_ontologies, 'rt') as f2, open(zip_location / config_raw, 'wt') as out: # LOL PYTHON
out.write(f1.read())
out.write(f2.read())
else: # nothing will load, but that's ok
with open(graphload_config_template, 'rt') as f1, open(zip_location / config_raw, 'wt') as out: # LOL PYTHON
out.write(f1.read())
# config graphload.yaml from template
with open(zip_location / config_raw, 'rt') as f:
config = yaml.safe_load(f)
if config_path is None:
config_path = zip_location / config_n
return config_path, config
@staticmethod
def configure_config(config, graph_path, remote_base, local_base, config_path): # lel
config['graphConfiguration']['location'] = graph_path.as_posix()
if isinstance(local_base, Path):
lbasposix = local_base.as_posix()
else:
lbasposix = local_base
if 'ontologies' not in config:
# FIXME log a warning?
config['ontologies'] = []
config['ontologies'] = [{k:v.replace(remote_base, lbasposix)
if k == 'url'
else v
for k, v in ont.items()}
for ont in config['ontologies']]
with open(config_path, 'wt') as f:
yaml.dump(config, f, default_flow_style=False)
ontologies = [ont['url'] for ont in config['ontologies']]
return ontologies
def scigraph_build(zip_location, git_remote, org, git_local, branch, commit,
clean=False, check_built=False, cleanup_later=False, quiet=False):
COMMIT_LOG = 'last-built-commit.log'
repo_name = 'SciGraph'
remote = jpth(git_remote, org, repo_name)
local = jpth(git_local, repo_name)
commit_log_path = jpth(local, COMMIT_LOG)
if not os.path.exists(local):
repo = Repo.clone_from(remote + '.git', local)
elif not Path(local, '.git').exists():
repo = Repo.clone_from(remote + '.git', local)
else:
repo = Repo(local)
if not os.path.exists(commit_log_path):
last_commit = None
else:
with open(commit_log_path, 'rt') as f:
last_commit = f.read().strip()
sob = repo.active_branch
try:
sab = getBranch(repo, branch)
sab.checkout()
except ValueError: # usually indicates a remote branch
repo.git.checkout(branch)
sab = repo.active_branch
repo.remote().pull()
if commit != 'HEAD':
repo.git.checkout(commit)
scigraph_commit = repo.head.object.hexsha
scigraph_commit_short = scigraph_commit[:COMMIT_HASH_HEAD_LEN]
bin_location = zip_location / 'bin'
os.environ['PATH'] = bin_location.as_posix() + ':' + os.environ.get('PATH', '')
if not bin_location.exists():
bin_location.mkdir()
# hack to make the scigraph-load we are about to create available as a command
# so that it matches the usual scigraph-load behavior
def zip_name(wild=False):
return (repo_name +
'-' + branch +
'-services' +
'-' + ('*' if wild else TODAY()) +
'-' + scigraph_commit_short +
'.zip')
def reset_state(original_branch=sob):
original_branch.checkout()
with execute_regardless(reset_state, only_exception=cleanup_later): # FIXME this fails when we need to load the graph if we start on master :/
# main
if scigraph_commit != last_commit or clean:
print('SciGraph not built at commit', commit, 'last built at', last_commit)
quiet = '--quiet ' if quiet else ''
build_command = ('cd ' + local +
f';export HASH={scigraph_commit_short}'
';sed -i "/<name>SciGraph<\/name>/{N;s/<version>.\+<\/version>/<version>${HASH}<\/version>/}" pom.xml'
';sed -i "/<artifactId>scigraph<\/artifactId>/{N;s/<version>.\+<\/version>/<version>${HASH}<\/version>/}" SciGraph-analysis/pom.xml'
';sed -i "/<groupId>io.scigraph<\/groupId>/{N;s/<version>.\+<\/version>/<version>${HASH}<\/version>/}" SciGraph-core/pom.xml'
';sed -i "/<artifactId>scigraph<\/artifactId>/{N;s/<version>.\+<\/version>/<version>${HASH}<\/version>/}" SciGraph-entity/pom.xml'
';sed -i "/<groupId>io.scigraph<\/groupId>/{N;s/<version>.\+<\/version>/<version>${HASH}<\/version>/}" SciGraph-services/pom.xml'
f'; mvn {quiet}clean -DskipTests -DskipITs install'
'; cd SciGraph-services'
f'; mvn {quiet}-DskipTests -DskipITs package')
if check_built:
print('SciGraph has not been built.')
raise NotBuiltError('SciGraph has not been built.')
out = os.system(build_command)
print(out)
if out:
scigraph_commit = 'FAILURE'
with open(commit_log_path, 'wt') as f:
f.write(scigraph_commit)
else:
print('SciGraph already built at commit', scigraph_commit)
wildcard = jpth(zip_location, zip_name(wild=True))
try:
services_zip = glob(wildcard)[0] # this will error if the zip was moved
return scigraph_commit, services_zip, reset_state
except IndexError:
pass # we need to copy the zip out again
# services zip
zip_filename = f'scigraph-services-{scigraph_commit_short}.zip'
services_zip_temp = Path(local, 'SciGraph-services', 'target', zip_filename)
services_zip = jpth(zip_location, zip_name())
shutil.copy(services_zip_temp, services_zip)
core_jar = Path(local, 'SciGraph-core', 'target', f'scigraph-core-{scigraph_commit_short}-jar-with-dependencies.jar')
scigraph_load = f'''#!/usr/bin/env sh
/usr/bin/java \\
-cp "{core_jar.as_posix()}" \\
io.scigraph.owlapi.loader.BatchOwlLoader $@'''
slf = bin_location / 'scigraph-load'
with open(slf, 'wt') as f:
f.write(scigraph_load)
os.chmod(slf, 0o0755)
return scigraph_commit, services_zip, reset_state
def do_patch(patch_config, local_base):
import requests
repo_base = Path(local_base)
config_path = Path(patch_config)
with open(patch_config, 'rt') as f:
config = yaml.safe_load(f)
for patchset, patches in config.items():
for patch, target_remote in patches.items():
patchfile = config_path.parent / patch
if not patchfile.exists():
raise FileNotFoundError(f'Cannot find {patchfile} specified in {config_path}')
target = target_remote['target']
targetfile = repo_base / target
if 'remote' in target_remote and not targetfile.exists():
remote = target_remote['remote']
resp = requests.get(remote)
with open(targetfile, 'wb') as f:
f.write(resp.content)
print(tc.blue('INFO: patching'), patchset, patchfile, targetfile)
try:
out = subprocess.check_output(['patch', '-p1', '-N', '-i', patchfile.as_posix()],
cwd=repo_base.as_posix(),
stderr=subprocess.STDOUT).decode().rstrip()
print(out)
yield targetfile.as_posix()
except subprocess.CalledProcessError as e:
# FIXME this is not failing on other types of patching errors!
if e.returncode > 1: # 1 means already applied
print(e.stdout.decode())
raise e
def load_header(filepath, remote=False):
import requests
oo = b'owl:Ontology'
path = Path(filepath)
if path.suffix == '.ttl':
infmt = 'turtle'
else:
infmt = 'xml' # FIXME assumption
if remote:
resp = requests.get(filepath) # TODO nonblocking pull these out, fetch, run inner again until done
raw = resp.text.encode()
else:
with open(filepath, 'rb') as f: # do not catch FileNotFoundErrors
raw = f.read()
if oo in raw: # we only care if there are imports or an ontology iri
scratch = OntGraph()
if infmt == 'turtle':
data, rest = raw.split(b'###', 1)
elif infmt == None: # assume xml
xml_tree = etree.parse(BytesIO(raw))
xml_root = xml_tree.getroot()
xml_ontology = xml_tree.xpath("/*[local-name()='RDF']/*[local-name()='Ontology']")
xml_root.clear()
xml_root.append(xml_ontology[0])
data = etree.tostring(xml_root)
scratch.parse(data=data, format=infmt)
return scratch
def get_iri(graph):
gen = graph[:rdf.type:owl.Ontology]
return next(gen) # XXX WARNING does not check for > 1 bound name per file
def get_imports(graph):
yield from (p for p in graph[get_iri(graph):owl.imports:])
def local_imports(remote_base, local_base, ontologies, local_versions=tuple(), readonly=False, dobig=False, revert=False):
""" Read the import closure and use the local versions of the files. """
import requests
done = []
triples = set()
imported_iri_vs_ontology_iri = {}
p = owl.imports
oi = b'owl:imports'
oo = b'owl:Ontology'
def inner(local_filepath, remote=False):
if noneMembers(local_filepath, *bigleaves) or dobig:
ext = os.path.splitext(local_filepath)[-1]
if ext == '.ttl':
infmt = 'turtle'
else:
log.info((ext, local_filepath))
infmt = None
if remote:
resp = requests.get(local_filepath) # TODO nonblocking pull these out, fetch, run inner again until done
raw = resp.text.encode()
else:
try:
with open(local_filepath, 'rb') as f:
raw = f.read()
except FileNotFoundError as e:
if local_filepath.startswith('file://'):
log.info(f'local_imports has already been run, skipping {local_filepath}')
return
#raise ValueError('local_imports has already been run') from e
else:
log.exception(e) # TODO raise a warning if the file cannot be matched
# seems like good practice to have any imported ontology under
# version control so all imports are guaranteed to have good
# provenance and not split the prior informaiton between the
# scigraph config and the repository, the repository remains
# the source of truth, load.yaml files can then pick a subset
# of the properly tracked files to load as they see fit, but
# not add to them (at least in pyontutils land)
raw = b''
if oo in raw: # we only care if there are imports or an ontology iri
scratch = OntGraph()
if infmt == 'turtle':
data, rest = raw.split(b'###', 1)
elif infmt == None: # assume xml
xml_tree = etree.parse(BytesIO(raw))
xml_root = xml_tree.getroot()
xml_ontology = xml_tree.xpath("/*[local-name()='RDF']/*[local-name()='Ontology']")
xml_root.clear()
xml_root.append(xml_ontology[0])
data = etree.tostring(xml_root)
scratch.parse(data=data, format=infmt)
for s in scratch.subjects(rdf.type, owl.Ontology):
triples.add((s, owl.sameAs, rdflib.URIRef(local_filepath)))
# somehow this breaks computing the chain
#for p in (rdfs.comment, skos.definition, definition, dc.title, rdfs.label):
#for o in scratch[s:p]:
#triples.add((s, p, o))
for s, o in sorted(scratch.subject_objects(p)):
if revert:
raise NotImplementedError('TODO')
nlfp = o.replace(remote_base, local_base)
triples.add((s, p, o))
if 'http://' in local_filepath or 'external' in local_filepath: # FIXME what to do about https used inconsistently :/
if 'external' in local_filepath:
imported_iri = rdflib.URIRef(local_filepath.replace(local_base, remote_base)) # inefficient
else:
imported_iri = rdflib.URIRef(local_filepath)
if s != imported_iri:
imported_iri_vs_ontology_iri[imported_iri] = s # kept for the record
triples.add((imported_iri, p, s)) # bridge imported != ontology iri
if local_base in nlfp and 'file://' not in o: # FIXME file:// should not be slipping through here...
scratch.add((s, p, rdflib.URIRef('file://' + nlfp)))
scratch.remove((s, p, o))
if nlfp not in done:
done.append(nlfp)
if local_base in nlfp and 'external' not in nlfp: # skip externals TODO
inner(nlfp)
elif readonly: # read external imports
if 'external' in nlfp:
inner(nlfp)
else:
inner(nlfp, remote=True)
if not readonly:
_orp = CustomTurtleSerializer.roundtrip_prefixes # FIXME awful hack :/
CustomTurtleSerializer.roundtrip_prefixes = True
ttl = scratch.serialize(format='nifttl', encoding='utf-8')
CustomTurtleSerializer.roundtrip_prefixes = _orp
ndata, comment = ttl.split(b'###', 1)
out = ndata + b'###' + rest
with open(local_filepath, 'wb') as f:
f.write(out)
for start in ontologies:
log.info(f'START {start}')
done.append(start)
inner(start)
return sorted(triples)
def loadall(git_local, repo_name, local=False, dobig=False):
local_base = jpth(git_local, repo_name)
lb_ttl = os.path.realpath(jpth(local_base, 'ttl'))
#match = (rdflib.term.URIRef('http://purl.org/dc/elements/1.1/member'), # iao.owl
#rdflib.term.URIRef('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'),
#rdflib.term.URIRef('http://www.w3.org/2002/07/owl#AnnotationProperty'))
done = []
filenames = [f for g in ('*', '*/*', '*/*/*') for f in glob(lb_ttl + '/' + g + '.ttl')]
graph = OntGraph()
for f in filenames:
print(f)
done.append(os.path.basename(f))
graph.parse(f, format='turtle')
#if match in graph:
#raise BaseException('Evil file found %s' % f)
def repeat(dobig=dobig): # we don't really know when to stop, so just adjust
for s, o in graph.subject_objects(owl.imports):
if os.path.basename(o) not in done and o not in done:
#if (o, rdf.type, owl.Ontology) not in graph:
print(o)
done.append(o)
ext = os.path.splitext(o)[1]
fmt = 'turtle' if ext == '.ttl' else 'xml'
if noneMembers(o, *bigleaves) or dobig:
graph.parse(o, format=fmt)
#if match in graph:
#raise BaseException('Evil file found %s' % o)
#if local:
#repeat(False)
#else:
if not local:
for i in range(10):
repeat(True)
return graph
def normalize_prefixes(graph, curies):
new_graph = OntGraph()
oc = OntCuries.new()
curies.pop('', None)
curies['rdf'] = str(rdf)
curies['rdfs'] = str(rdfs)
oc(curies)
oc.populate(new_graph)
[new_graph.add(t) for t in graph]
return new_graph
def import_tree(graph, root, **kwargs):
OntCuries.populate(graph) # FIXME OntCuries trie not working for longest match !?
#log.debug(root)
j = graph.asOboGraph('owl:imports', restriction=False)
try:
t, te = creatTree(
*Query(root, 'owl:imports', 'OUTGOING', 30),
json=j, prefixes=dict(graph.namespace_manager), **kwargs)
return t, te
except KeyError:
print(tc.red('WARNING:'),
'could not find',
root,
'in import chain') # TODO zap onts w/o imports
return None, None
def for_burak(graph):
nm = graph.namespace_manager
syn_predicates = (nm.expand('OBOANN:synonym'),
nm.expand('OBOANN:acronym'),
nm.expand('OBOANN:abbrev'),
nm.expand('NIFRID:synonym'),
nm.expand('NIFRID:acronym'),
nm.expand('NIFRID:abbrev'),
oboInOwl.hasExactSynonym,
oboInOwl.hasNarrowSynonym,
oboInOwl.hasBroadSynonym,
oboInOwl.hasRelatedSynonym,
skos.prefLabel,
rdflib.URIRef('http://purl.obolibrary.org/obo/go#systematic_synonym'),
)
lab_predicates = rdfs.label,
def inner(graph):
for s in graph[:rdf.type:owl.Class]:
if not isinstance(s, rdflib.BNode):
curie = nm._qhrm(s) # FIXME
labels = [o for p in lab_predicates for o in graph[s:p]
if not isinstance(o, rdflib.BNode)]
synonyms = [o for p in syn_predicates for o in graph[s:p]
if not isinstance(o, rdflib.BNode)]
parents = [nm._qhrm(o) for o in graph[s:rdfs.subClassOf] # FIXME
if not isinstance(o, rdflib.BNode)]
yield [curie, labels, synonyms, parents]
records = {c:[l, s, p] for c, l, s, p in inner(graph) if l or s}
with open(os.path.expanduser('~/files/ontology-classes-with-labels-synonyms-parents.json'), 'wt') as f:
json.dump(records, f, sort_keys=True, indent=2)
def make_post_clone(git_local, repo_name, remote_base):
local_go = jpth(git_local, repo_name, 'ttl/external/go.owl')
if repo_name == 'NIF-Ontology' and not os.path.exists(local_go):
remote_go = jpth(remote_base, 'ttl/external/go.owl')
def post_clone():
print('Retrieving go.owl since it is not in the repo.')
os.system('wget -O' + local_go + ' ' + remote_go)
else:
post_clone = lambda: None
return post_clone
def run(args):
# modes
graph = args['graph']
scigraph = args['scigraph']
config = args['config']
imports = args['imports']
chain = args['chain']
extra = args['extra']
# required
repo_name = args['<repo>']
remote_base = args['<remote_base>']
ontologies = args['<ontologies>']
# options
git_remote = args['--git-remote']
git_local = Path(args['--git-local']).resolve()
zip_location = Path(args['--zip-location']).resolve()
graphload_config = Path(args['--graphload-config']).resolve()
graphload_config_template = graphload_config # NOTE XXX
if args['--graphload-ontologies'] is not None:
graphload_ontologies = Path(args['--graphload-ontologies']).resolve()
else:
graphload_ontologies = None
org = args['--org']
branch = args['--branch']
commit = args['--commit']
scp = args['--scp-loc']
sorg = args['--scigraph-org']
sbranch = args['--scigraph-branch']
scommit = args['--scigraph-commit']
sscp = args['--scigraph-scp-loc']
scigraph_quiet = args['--scigraph-quiet']
patch_config = args['--patch-config']
curies_location = args['--curies']
patch = args['--patch']
check_built = args['--check-built']
debug = args['--debug']
log = args['--logfile'] # TODO
fix_imports_only = args['--fix-imports-only']
load_base = 'scigraph-load -c {config_path}' # now _this_ is easier
if args['--view-defaults']:
for k, v in defaults.items():
print(f'{k:<22} {v}')
return
# post parse mods
if remote_base == 'NIF':
remote_base = 'http://ontology.neuinfo.org/NIF'
itrips = None
if repo_name is not None:
local_base = jpth(git_local, repo_name)
prov = args['prov']
path_in = Path(args['<path-in>']).resolve() if args['<path-in>'] else None
path_out = Path(args['<path-out>']).resolve() if args['<path-out>'] else None
if prov:
# yes the ordering of path-in and path-out is correct
# because most of the time path-out is the next path-in
if scigraph:
type = build.SciGraph
elif args['blazegraph']:
type = build.Blazegraph
else:
type = None
if path_in:
# TODO could add an integrity check on build-id matching
g = prov_derive(path_in, path_out, type)
else:
build_id = args['--build-id']
_nowish = args['--nowish']
nowish = dateparser.parse(_nowish) if _nowish else None
g = prov_new(path_out, build_id, nowish, type)
elif graph:
if args['--path-build-scigraph']: # path-build-scigraph
path_build_scigraph = Path(args['--path-build-scigraph'])
(scigraph_commit, services_zip,
scigraph_reset_state) = scigraph_build(path_build_scigraph, git_remote, sorg,
path_build_scigraph, sbranch, scommit,
check_built=check_built,
cleanup_later=True, quiet=scigraph_quiet)
else:
scigraph_commit = 'dev-9999'
services_zip = 'None'
scigraph_reset_state = lambda : None
with execute_regardless(scigraph_reset_state):
rl = ReproLoader(zip_location, git_remote, org,
git_local, repo_name, branch,
commit, remote_base, load_base,
graphload_config_template, graphload_ontologies,
patch_config, patch, scigraph_commit,
fix_imports_only=fix_imports_only,
check_built=check_built,)
if not fix_imports_only:
FILE_NAME_ZIP = Path(rl.zip_path).name
LATEST = Path(zip_location) / 'LATEST'
if LATEST.exists() and LATEST.is_symlink():
LATEST.unlink()
LATEST.symlink_to(FILE_NAME_ZIP)
itrips, config = rl.itrips, rl.config
if not ontologies:
ontologies = rl.ontologies
print(services_zip)
print(rl.zip_path)
if '--local' in args:
return
elif scigraph:
(scigraph_commit, services_zip,
_) = scigraph_build(zip_location, git_remote, sorg, git_local,
sbranch, scommit, check_built=check_built,
quiet=scigraph_quiet)
print(services_zip)
if '--local' in args:
return
elif config:
#graph_path = Path(args['<graph_path>']).resolve()
config_path = Path(args['--graph-config-out']).resolve()
#local_base = Path(git_local, repo_name).resolve()
date_today = TODAY()
ReproLoader.make_graphload_config(
graphload_config_template, graphload_ontologies,
zip_location, date_today, config_path)
elif imports:
# TODO mismatch between import name and file name needs a better fix
itrips = local_imports(remote_base, local_base, ontologies)
elif chain:
itrips = local_imports(remote_base, local_base, ontologies, readonly=True)
elif extra:
from nifstd_tools.utils import memoryCheck
curies = getCuries(curies_location)
curie_prefixes = set(curies.values())
memoryCheck(2665488384)
graph = loadall(git_local, repo_name)
new_graph = normalize_prefixes(graph, curies)
for_burak(new_graph)
debug = True
elif patch:
local_base = jpth(git_local, repo_name)
local_versions = tuple(do_patch(patch_config, local_base))
else:
raise BaseException('How did we possibly get here docopt?')
if itrips:
import_graph = OntGraph()
[import_graph.add(t) for t in itrips]
if len(ontologies) == 1:
ontology, = ontologies
else:
ontology = ontologies # FIXME will error
if ontology.startswith('/'):
ontology = 'file://' + ontology
for tree, extra in (import_tree(import_graph, ontology),):
if tree is not None:
name = Path(next(iter(tree.keys()))).name