ENIAM_NKJP.ml
46.7 KB
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
(*
* ENIAM_NKJP, an interface for National Corpus of Polish (NKJP).
* Copyright (C) 2017 Wojciech Jaworski <wjaworski atSPAMfree mimuw dot edu dot pl>
* Copyright (C) 2017 Institute of Computer Science Polish Academy of Sciences
*
* This library is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This library 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*)
open Xstd
type id = {corref: string; prefix: string; suffix: string; numbers: int list}
let empty_id = {corref = ""; prefix = ""; suffix = ""; numbers = []}
let parse_id id =
(* if String.length s = 0 then empty_id else *)
if String.length id < 6 then failwith "parse_id: za krótkie id" else
let corref,id = match Xstring.split "#" id with
[corref;id] -> corref,id
| [id] -> "",id
| _ -> failwith ("parse_id 1: " ^ id) in
let prefix,id = match Xstring.split "_" id with
[prefix;id] -> prefix,id
| _ -> failwith ("parse_id 2: " ^ id) in
let suffix,id = match Xstring.split "-" id with
[id;suffix] -> suffix,id
| _ -> failwith ("parse_id 3: " ^ id) in
let numbers = try Xlist.map (Xstring.split "\\." id) int_of_string with _ -> failwith ("parse_id 4: " ^ id) in
{corref=corref; prefix=prefix; suffix=suffix; numbers=numbers}
let process_header_type typ =
if Xstring.check_prefix "#typ_" typ then Xstring.cut_prefix "#typ_" typ
else failwith ("process_header_type: " ^ typ)
let process_header_channel c =
if Xstring.check_prefix "#kanal_" c then Xstring.cut_prefix "#kanal_" c
else failwith ("process_header_channel: " ^ c)
let load_header path name =
match Xml.parse_file (path ^ name ^ "/header.xml") with
Xml.Element("teiHeader",_,[Xml.Element("fileDesc",[],_);
Xml.Element("profileDesc",[],[Xml.Element("textClass",[],[
Xml.Element("catRef",["scheme","#taxonomy-NKJP-type";"target",typ],[]);
Xml.Element("catRef",["scheme","#taxonomy-NKJP-channel";"target",channel],[])])]);
Xml.Element("revisionDesc",_,_)]) ->
process_header_type typ,process_header_channel channel
| _ -> failwith "load_header"
let get_folders path =
Xlist.sort (Xlist.fold (Array.to_list (Sys.readdir path)) [] (fun l folder ->
if Sys.is_directory (path ^ folder) then folder :: l else l)) compare
let load_paragraph = function
Xml.Element("ab",["n",_;"xml:id",id_ab],[Xml.PCData paragraph]) ->
parse_id id_ab,paragraph
| xml -> failwith ("load_text_entry: " ^ Xml.to_string_fmt xml)
let load_text_entry = function
Xml.Element("div",["xml:id",id_div;"decls",_],paragraphs) ->
parse_id id_div,List.rev (Xlist.rev_map paragraphs load_paragraph)
| xml -> failwith ("load_text_entry: " ^ Xml.to_string_fmt xml)
let load_text path name =
match Xml.parse_file (path ^ name ^ "/text.xml") with
Xml.Element("teiCorpus", _,[Xml.Element("xi:include",_,_);
Xml.Element("TEI",[],[Xml.Element("xi:include",_,_);
Xml.Element("text",["xml:id","txt_text";"xml:lang","pl"],[Xml.Element("body",["xml:id","txt_body"],entries)])])]) ->
List.rev (Xlist.rev_map entries load_text_entry)
| _ -> failwith "load_text"
let remove_rejected rev = function
Xml.Element("seg",["corresp",_;"nkjp:rejected","true";"xml:id",_],[]) -> rev
| Xml.Element("seg",["corresp",_;"nkjp:nps","true";"nkjp:rejected","true";"xml:id",_],[]) -> rev
| Xml.Element("seg",["corresp",_;"xml:id",_],[]) as xml -> xml :: rev
| Xml.Element("seg",["corresp",_;"nkjp:nps","true";"xml:id",_],[]) as xml -> xml :: rev
| Xml.Element("nkjp:paren",[],Xml.Element("seg",["corresp",_;"nkjp:rejected","true";"xml:id",_],[]) :: _) -> rev
| Xml.Element("nkjp:paren",[],Xml.Element("seg",["corresp",_;"nkjp:nps","true";"nkjp:rejected","true";"xml:id",_],[]) :: _) -> rev
| Xml.Element("nkjp:paren",[],Xml.Element("seg",["corresp",_;"xml:id",_],[]) :: _) as xml -> xml :: rev
| Xml.Element("nkjp:paren",[],Xml.Element("seg",["corresp",_;"nkjp:nps","true";"xml:id",_],[]) :: _) as xml -> xml :: rev
| xml -> failwith ("remove_rejected: " ^ Xml.to_string_fmt xml)
let rec load_segm_token = function
Xml.Element("seg",["corresp",corresp;"xml:id",id_seg],[]) ->
[corresp,false,parse_id id_seg]
| Xml.Element("seg",["corresp",corresp;"nkjp:nps","true";"xml:id",id_seg],[]) ->
[corresp,true,parse_id id_seg]
| Xml.Element("nkjp:paren",[],tokens) -> List.flatten (Xlist.map tokens load_segm_token)
| Xml.Element("choice",[],alt) as xml ->
let alt = Xlist.fold alt [] remove_rejected in
(match alt with
[token] -> load_segm_token token
| _ -> failwith ("load_segm_token 2: " ^ Xml.to_string_fmt xml))
| xml -> failwith ("load_segm_token 1: " ^ Xml.to_string_fmt xml)
let load_segm_sentence = function
Xml.Element("s",["xml:id",id_s],tokens) ->
parse_id id_s,List.flatten (List.rev (Xlist.rev_map tokens load_segm_token))
| xml -> failwith ("load_segm_sentence: " ^ Xml.to_string_fmt xml)
let load_segm_entry = function
Xml.Element("p",["corresp",corresp;"xml:id",id_p],sentences) ->
parse_id corresp,parse_id id_p,List.rev (Xlist.rev_map sentences load_segm_sentence)
| xml -> failwith ("load_segm_entry: " ^ Xml.to_string_fmt xml)
let load_segmentation path name =
match Xml.parse_file (path ^ name ^ "/ann_segmentation.xml") with
Xml.Element("teiCorpus", _,[Xml.Element("xi:include",_,_);
Xml.Element("TEI",[],[Xml.Element("xi:include",_,_);
Xml.Element("text",["xml:id","segm_text";"xml:lang","pl"],[Xml.Element("body",["xml:id","segm_body"],entries)])])]) ->
List.rev (Xlist.rev_map entries load_segm_entry)
| _ -> failwith "load_segmentation"
let load_disamb = function
Xml.Element("fs",["feats",_;"type","tool_report"],
[Xml.Element("f",["fVal",_;"name","choice"],_);
Xml.Element("f",["name","interpretation"],[Xml.Element("string",[],[Xml.PCData interp])])]) ->
interp
| xml -> failwith ("load_disamb: " ^ Xml.to_string_fmt xml)
let load_morph_token = function
Xml.Element("seg",["corresp",corresp;"xml:id",id_seg],[Xml.Element("fs",["type","morph"],
[Xml.Element("f",["name","orth"],[Xml.Element("string",[],[Xml.PCData orth])]);
Xml.Element("f",["name","interps"],_);Xml.Element("f",["name","disamb"],[disamb])])]) ->
parse_id corresp,parse_id id_seg,orth,load_disamb disamb
| Xml.Element("seg",["corresp",corresp;"xml:id",id_seg],[Xml.Element("fs",["type","morph"],
[Xml.Element("f",["name","orth"],[Xml.Element("string",[],[Xml.PCData orth])]);
Xml.Element("f",["name","nps"],[Xml.Element("binary",["value","true"],[])]);
Xml.Element("f",["name","interps"],_);Xml.Element("f",["name","disamb"],[disamb])])]) ->
parse_id corresp,parse_id id_seg,orth,load_disamb disamb
| xml -> failwith ("load_morph_token: " ^ Xml.to_string_fmt xml)
let load_morph_sentence = function
Xml.Element("s",["corresp",corresp;"xml:id",id_s],tokens) ->
parse_id corresp,parse_id id_s,List.rev (Xlist.rev_map tokens load_morph_token)
| xml -> failwith ("load_morph_sentence: " ^ Xml.to_string_fmt xml)
let load_morph_entry = function
Xml.Element("p",["corresp",corresp;"xml:id",id_p],sentences) ->
parse_id corresp,parse_id id_p,List.rev (Xlist.rev_map sentences load_morph_sentence)
| xml -> failwith ("load_morph_entry: " ^ Xml.to_string_fmt xml)
let load_morphosyntax path name =
match Xml.parse_file (path ^ name ^ "/ann_morphosyntax.xml") with
Xml.Element("teiCorpus", _,[Xml.Element("xi:include",_,_);
Xml.Element("TEI",[],[Xml.Element("xi:include",_,_);
Xml.Element("text",[],[Xml.Element("body",[],entries)])])]) ->
List.rev (Xlist.rev_map entries load_morph_entry)
| _ -> failwith "load_morphosyntax"
let parse_seg_corresp corresp =
if not (Xstring.check_prefix "text.xml#string-range(" corresp) then failwith "parse_seg_corresp" else
if not (Xstring.check_sufix ")" corresp) then failwith "parse_seg_corresp" else
let corresp = Xstring.cut_prefix "text.xml#string-range(" corresp in
let corresp = Xstring.cut_sufix ")" corresp in
let id,beg,len = match Xstring.split "," corresp with
[id;beg;len] -> parse_id id, int_of_string beg, int_of_string len
| _ -> failwith "parse_seg_corresp" in
let id_div,id_ab = match id with
{corref=""; prefix="txt"; numbers=[id_div;id_ab]; suffix="ab"} -> id_div,id_ab
| _ -> failwith "parse_seg_corresp" in
id_div,id_ab,beg,len
let pos_set = StringSet.of_list
["subst";"depr";"ppron12";"ppron3";"siebie";"prep";"adj";"adjc";"adjp";"adja";"num";
"adv";"ger";"pact";"ppas";"fin";"bedzie";"praet";"winien";"impt";
"imps";"pred";"aglt";"inf";"pcon";"pant";"qub";"comp";"conj";"interj";"burk";"interp";
"brev";"xxx";"numcol"]
let parse_disamb disamb =
if disamb = "::interp" then ":","interp",[] else
if disamb = ":-):interp" then ":-)","interp",[] else
(* if Xstring.check_sufix ":interp" disamb then Xstring.cut_sufix ":interp" disamb, "interp", [] else *)
match Xstring.split_delim ":" disamb with
lemma1 :: lemma2 :: "subst" :: interp -> lemma1 ^ ":" ^ lemma2,"subst",interp
| lemma1 :: lemma2 :: lemma3 :: "subst" :: interp -> lemma1 ^ ":" ^ lemma2 ^ ":" ^ lemma3,"subst",interp
| lemma :: pos :: interp ->
if StringSet.mem pos_set pos then lemma,pos,interp
else failwith ("parse_disamb: " ^ disamb)
| _ -> failwith "parse_disamb"
let rec merge_tokens name id_p rev = function
(corresp,nps,{corref=""; prefix="segm"; numbers=[id_segm_p;id_segm_s]; suffix="seg"}) :: segmentation,
({corref="ann_segmentation.xml"; prefix="segm"; numbers=[c_segm_p;c_segm_s]; suffix="seg"},
{corref=""; prefix="morph"; numbers=[id_morph_p;id_morph_s]; suffix="seg"},orth,disamb) :: morphosyntax ->
(* if id_p <> id_segm_p then Printf.printf "merge_tokens inconsistent numbering: %s segm_%d-p segm_%d.%d-s\n" name id_p id_segm_p id_segm_s; *)
if id_segm_p <> c_segm_p || id_segm_p <> id_morph_p then failwith "merge_tokens 2" else
if id_segm_s <> c_segm_s || c_segm_s <> id_morph_s then failwith "merge_tokens 3" else
let id_div,id_ab,beg,len = parse_seg_corresp corresp in(
(* if id_div <> id_p then (*failwith*)print_endline (Printf.sprintf "merge_tokens 4: %s %d %s" name id_p corresp); (*else*) *)
let lemma,cat,interp = parse_disamb disamb in
merge_tokens name id_p ((id_div,id_ab,beg,nps,len,orth,lemma,cat,interp) :: rev) (segmentation,morphosyntax))
| [],[] -> List.rev rev
| _ -> failwith "merge_tokens 1"
let rec merge_sentences name id_p rev = function
({corref=""; prefix="segm"; numbers=[id_segm_p;id_segm_s]; suffix="s"},segm_tokens) :: segmentation,
({corref="ann_segmentation.xml"; prefix="segm"; numbers=[c_segm_p;c_segm_s]; suffix="s"},
{corref=""; prefix="morph"; numbers=[id_morph_p;id_morph_s]; suffix="s"},morph_tokens) :: morphosyntax ->
(* if id_p <> id_segm_p then Printf.printf "merge_sentences inconsistent numbering: %s segm_%d-p segm_%d.%d-s\n" name id_p id_segm_p id_segm_s; *)
if id_segm_p <> c_segm_p || id_segm_p <> id_morph_p then failwith "merge_sentences 2" else
if id_segm_s <> c_segm_s || c_segm_s <> id_morph_s then failwith "merge_sentences 3" else
let tokens = merge_tokens name id_p [] (segm_tokens,morph_tokens) in
merge_sentences name id_p ((id_segm_p,id_segm_s,tokens) :: rev) (segmentation,morphosyntax)
| [],[] -> List.rev rev
| _ -> failwith "merge_sentences"
let rec merge_entries name rev = function
({corref=""; prefix="txt"; numbers=[id_div]; suffix="div"},paragraphs) :: text,
({corref="text.xml"; prefix="txt"; numbers=[c_div]; suffix="div"},
{corref=""; prefix="segm"; numbers=[id_segm_p]; suffix="p"},segm_sentences) :: segmentation,
({corref="ann_segmentation.xml"; prefix="segm"; numbers=[c_segm_p]; suffix="p"},
{corref=""; prefix="morph"; numbers=[id_morph_p]; suffix="p"},morph_sentences) :: morphosyntax ->
if id_div <> c_div || c_div <> id_segm_p || id_segm_p <> c_segm_p || c_segm_p <> id_morph_p then failwith "merge_entries 2" else
let sentences = merge_sentences name id_div [] (segm_sentences,morph_sentences) in
merge_entries name ((id_div,paragraphs,sentences) :: rev) (text,segmentation,morphosyntax)
| [],[],[] -> List.rev rev
| _ -> failwith "merge_entries"
let nkjp_path = "../../NLP resources/NKJP-PodkorpusMilionowy-1.2/"
let _ =
let names = get_folders nkjp_path in
Xlist.iter names (fun name ->
(* print_endline name; *)
let typ,channel = load_header nkjp_path name in
(* print_endline typ; *)
(* print_endline channel; *)
(* print_endline (typ ^ "\t" ^ channel); *)
let text = load_text nkjp_path name in
let segmentation = load_segmentation nkjp_path name in
let morphosyntax = load_morphosyntax nkjp_path name in
let entries = merge_entries name [] (text,segmentation,morphosyntax) in
())
(*
frekwencje typów:
127 fakt
56 inf-por
283 konwers
2 listy
376 lit
1 lit_poezja
80 media
175 nd
161 net_interakt
227 net_nieinterakt
20 nklas
1986 publ
8 qmow
387 urzed
frekwencje kanałów
388 internet
817 ksiazka
363 mowiony
146 prasa
1744 prasa_dziennik
398 prasa_inne
5 prasa_miesiecznik
28 prasa_tygodnik
frekwencje łączne typów-kanałów
127 fakt ksiazka
56 inf-por ksiazka
283 konwers mowiony
2 listy ksiazka
376 lit ksiazka
1 lit_poezja ksiazka
80 media mowiony
175 nd ksiazka
161 net_interakt internet
227 net_nieinterakt internet
20 nklas ksiazka
60 publ ksiazka
146 publ prasa
1744 publ prasa_dziennik
3 publ prasa_inne
5 publ prasa_miesiecznik
28 publ prasa_tygodnik
8 qmow prasa_inne
387 urzed prasa_inne
*)
(*
type id = {hash: bool; suffix: string; numbers: int list}
let empty_id = {hash = false; suffix = ""; numbers = []}
let parse_id s =
if String.length s = 0 then empty_id else
if String.length s < 6 then failwith "za krótkie id" else
let hash,s = if (String.get s 0) = '#' then true, String.sub s 1 (String.length s - 1) else false, s in
if String.sub s 0 4 <> "wal_" then failwith "id nie ma wal" else
let s = String.sub s 4 (String.length s - 4) in
let s,suf = match Str.split (Str.regexp "-") s with
[s;suf] -> s,suf
| _ -> failwith ("parse_id: zła ilość '-' " ^ s) in
let id = {hash = hash; suffix = suf; numbers = try Xlist.map (Xstring.split "\\." s) int_of_string with _ -> failwith ("parse_id: " ^ s)} in
id
let string_of_id id =
(if id.hash then "#" else "") ^ "wal_" ^ (String.concat "." (Xlist.map id.numbers string_of_int)) ^ "-" ^ id.suffix
type tei =
Symbol of string
| TEIstring of string
| Binary of bool
| Numeric of int
| F of string * tei
| Fset of string * tei list
| Fs of string * tei list
| Id of id
| SameAs of id * string
let rec tei_to_string = function
Symbol s -> Printf.sprintf "Symbol %s" s
| TEIstring s -> Printf.sprintf "String %s" s
| Binary b -> Printf.sprintf "Binary %s" (string_of_bool b)
| Numeric n -> Printf.sprintf "Numeric %d" n
| F(s,t) -> Printf.sprintf "F(%s,%s)" s (tei_to_string t)
| Fset(s,l) -> Printf.sprintf "Fset(%s,[%s])" s (String.concat ";" (Xlist.map l tei_to_string))
| Fs(s,l) -> Printf.sprintf "Fs(%s,[%s])" s (String.concat ";" (Xlist.map l tei_to_string))
| Id id -> Printf.sprintf "Id(%s)" (string_of_id id)
| SameAs(id,s) -> Printf.sprintf "F(Id,%s)" s
let rec parse_tei = function
Xml.Element("f",["name",name],[Xml.Element("vColl",["org","set"],set)]) ->
Fset(name,List.rev (Xlist.map set parse_tei))
| Xml.Element("f", ["name",name],[]) -> Fset(name,[])
| Xml.Element("f", ["name",name],[tei]) -> F(name,parse_tei tei)
| Xml.Element("f", ["name",name],set) -> Fset(name,List.rev (Xlist.map set parse_tei))
| Xml.Element("fs", ["type",name], l) -> Fs(name,List.rev (Xlist.rev_map l parse_tei))
| Xml.Element("fs", ["xml:id",id;"type",name], l) -> Fs(name,Id(parse_id id) :: List.rev (Xlist.rev_map l parse_tei))
| Xml.Element("symbol",["value",value],[]) -> Symbol value
| Xml.Element("string",[], [Xml.PCData s]) -> TEIstring s
| Xml.Element("string",[], []) -> TEIstring ""
| Xml.Element("binary",["value",value],[]) -> Binary(try bool_of_string value with _ -> failwith "parse_tei")
| Xml.Element("numeric",["value",value],[]) -> Numeric(try int_of_string value with _ -> failwith "parse_tei")
| Xml.Element("fs", ["sameAs", same_as; "type",name], []) -> SameAs(parse_id same_as,name)
| Xml.Element("fs", ["sameAs", same_as], []) -> SameAs(parse_id same_as,"")
| xml -> failwith ("parse_tei: " ^ Xml.to_string_fmt xml)
let parse_gf = function
"subj" -> SUBJ
| "obj" -> OBJ
| s -> failwith ("parse_gf: " ^ s)
let parse_control arg = function
"controller" -> {arg with cr="1" :: arg.cr}
| "controllee" -> {arg with ce="1" :: arg.cr}
| "controller2" -> {arg with cr="2" :: arg.cr}
| "controllee2" -> {arg with ce="2" :: arg.cr}
| s -> failwith ("parse_control: " ^ s)
let parse_case = function
"nom" -> Case "nom"
| "gen" -> Case "gen"
| "dat" -> Case "dat"
| "acc" -> Case "acc"
| "inst" -> Case "inst"
| "loc" -> Case "loc"
| "str" -> Str
| "pred" -> Case "pred"
| "part" -> Part
| "postp" -> Case "postp"
| "agr" -> CaseAgr
| s -> failwith ("parse_case: " ^ s)
let parse_aspect = function
"perf" -> Aspect "perf"
| "imperf" -> Aspect "imperf"
| "_" -> AspectUndef
| "" -> AspectNA
| s -> failwith ("parse_aspect: " ^ s)
let parse_negation = function
"_" -> NegationUndef
| "neg" -> Negation
| "aff" -> Aff
| "" -> NegationNA
| s -> failwith ("parse_negation: " ^ s)
let parse_number = function
"sg" -> Number "sg"
| "pl" -> Number "pl"
| "agr" -> NumberAgr
| "_" -> NumberUndef
| s -> failwith ("parse_number: " ^ s)
let parse_gender = function
"m1" -> Gender "m1"
| "m3" -> Gender "m3"
| "n" -> Genders["n1";"n2"]
| "f" -> Gender "f"
| "m1.n" -> Genders["m1";"n1";"n2"]
| "_" -> GenderUndef
| "agr" -> GenderAgr
| s -> failwith ("parse_gender: " ^ s)
let parse_grad = function
"pos" -> Grad "pos"
| "com" -> Grad "com"
| "sup" -> Grad "sup"
| "_" -> GradUndef
| s -> failwith ("parse_grad: " ^ s)
let rec parse_restr = function
"natr" -> Natr
| "atr" -> Atr
| "ratr" -> Ratr
| "atr1" -> Atr1
| "ratr1" -> Ratr1
| s -> failwith ("parse_restr: " ^ s)
let parse_comp = function
"int" -> Int,[]
| "rel" -> Rel,[]
| "co" -> CompTypeUndef,[Comp "co"] (* subst qub prep comp *)
| "kto" -> CompTypeUndef,[Comp "kto"] (* subst *)
| "ile" -> CompTypeUndef,[Comp "ile"] (* num adv *)
| "jaki" -> CompTypeUndef,[Comp "jaki"] (* adj *)
| "który" -> CompTypeUndef,[Comp "który"] (* adj *)
| "czyj" -> CompTypeUndef,[Comp "czyj"] (* adj *)
| "jak" -> CompTypeUndef,[Comp "jak"] (* prep conj adv *)
| "kiedy" -> CompTypeUndef,[Comp "kiedy"] (* comp adv *)
| "gdzie" -> CompTypeUndef,[Comp "gdzie"] (* qub adv *)
| "odkąd" -> CompTypeUndef,[Comp "odkąd"] (* adv *)
| "skąd" -> CompTypeUndef,[Comp "skąd"] (* adv *)
| "dokąd" -> CompTypeUndef,[Comp "dokąd"] (* adv *)
| "którędy" -> CompTypeUndef,[Comp "którędy"] (* adv *)
| "dlaczego" -> CompTypeUndef,[Comp "dlaczego"] (* adv *)
| "czemu" -> CompTypeUndef,[Comp "czemu"] (* adv *)
| "czy" -> CompTypeUndef,[Comp "czy"] (* qub conj *)
| "jakby" -> CompTypeUndef,[Comp "jakby"] (* qub comp *)
| "jakoby" -> CompTypeUndef,[Comp "jakoby"] (* qub comp *)
| "gdy" -> CompTypeUndef,[Gdy] (* adv; gdyby: qub comp *)
| "dopóki" -> CompTypeUndef,[Comp "dopóki"] (* comp *)
| "zanim" -> CompTypeUndef,[Comp "zanim"] (* comp *)
| "jeśli" -> CompTypeUndef,[Comp "jeśli"] (* comp *)
| "żeby2" -> CompTypeUndef,[Zeby]
| "żeby" -> CompTypeUndef,[Comp "żeby"] (* qub comp *)
| "że" -> CompTypeUndef,[Comp "że"] (* qub comp *)
| "aż" -> CompTypeUndef,[Comp "aż"] (* qub comp *)
| "bo" -> CompTypeUndef,[Comp "bo"] (* qub comp *)
| s -> failwith ("parse_comp: " ^ s)
let load_type_constrains = function
| Symbol value ->
(match parse_comp value with
CompTypeUndef,[c] -> c
| _ -> failwith "load_type_constrains")
| xml -> failwith ("load_type_constrains:\n " ^ tei_to_string xml)
let load_ctype = function
| F("type",Fs("type_def", x)) ->
(match x with
| [F("conjunction",Symbol value)] -> parse_comp value
| [F("conjunction",Symbol value);Fset("constraints",set)] ->
(match parse_comp value with
CompTypeUndef, _ -> failwith "load_ctype"
| ctype,[] -> ctype, List.rev (Xlist.rev_map set load_type_constrains)
| _ -> failwith "load_ctype")
| l -> failwith ("load_ctype 2:\n " ^ String.concat "\n" (Xlist.map l tei_to_string)))
| xml -> failwith ("load_ctype:\n " ^ tei_to_string xml)
let load_lemmas_set = function
| TEIstring mstring -> mstring
| xml -> failwith ("load_lemmas_set:\n " ^ tei_to_string xml)
let check_lemma s =
match Str.full_split (Str.regexp "(\\|)") s with
[Str.Text s] -> Lexeme s
| [Str.Text "E"; Str.Delim "("; Str.Text g; Str.Delim ")"] -> Elexeme(parse_gender g)
| _ -> failwith "check_lemma"
let make_lemma = function
| _,_,[lemma] -> check_lemma lemma
| "XOR","concat",lemmas -> XOR(Xlist.map lemmas check_lemma)
| "OR","coord",lemmas -> ORcoord(Xlist.map lemmas check_lemma)
| "OR","concat",lemmas -> ORconcat(Xlist.map lemmas check_lemma)
| _ -> failwith "make_lemma"
let process_lex_phrase lemma = function
NP(case),number,GenderUndef,GradUndef,NegationUndef,ReflUndef -> [SUBST(number,case),lemma]
| PrepNP(prep,case),number,GenderUndef,GradUndef,NegationUndef,ReflUndef -> [PREP case,Lexeme prep;SUBST(number,case),lemma]
| AdjP(case),number,gender,grad,NegationUndef,ReflUndef -> [ADJ(number,case,gender,grad),lemma]
| PrepAdjP(prep,case),number,gender,grad,NegationUndef,ReflUndef -> [PREP case,Lexeme prep;ADJ(number,case,gender,grad),lemma]
| InfP(aspect),NumberUndef,GenderUndef,GradUndef,negation,ReflTrue -> [INF(aspect,negation),lemma;QUB,Lexeme "się"]
| InfP(aspect),NumberUndef,GenderUndef,GradUndef,negation,refl -> [INF(aspect,negation),lemma]
| PpasP(case),number,gender,GradUndef,negation,ReflUndef -> [PPAS(number,case,gender,AspectUndef,negation),lemma]
| PrepPpasP(prep,case),number,gender,GradUndef,negation,ReflUndef -> [PREP case,Lexeme prep;PPAS(number,case,gender,AspectUndef,negation),lemma]
| PactP(case),number,gender,GradUndef,negation,ReflTrue -> [PACT(number,case,gender,AspectUndef,negation),lemma;QUB,Lexeme "się"]
| PactP(case),number,gender,GradUndef,negation,refl -> [PACT(number,case,gender,AspectUndef,negation),lemma]
| PrepGerP(prep,case),number,GenderUndef,GradUndef,negation,ReflTrue -> [PREP case,Lexeme prep;GER(number,case,GenderUndef,AspectUndef,negation),lemma;QUB,Lexeme "się"]
| PrepGerP(prep,case),number,GenderUndef,GradUndef,negation,refl -> [PREP case,Lexeme prep;GER(number,case,GenderUndef,AspectUndef,negation),lemma]
| Qub,NumberUndef,GenderUndef,GradUndef,NegationUndef,ReflUndef -> [QUB,lemma]
| AdvP(mode),NumberUndef,GenderUndef,grad,NegationUndef,ReflUndef -> [ADV grad,lemma]
| phrase,number,gender,grad,negation,reflex ->
Printf.printf "%s %s %s %s %s %s\n" (ENIAMwalStringOf.phrase phrase) (ENIAMwalStringOf.number number)
(ENIAMwalStringOf.gender gender) (ENIAMwalStringOf.grad grad) (ENIAMwalStringOf.negation negation) (ENIAMwalStringOf.refl reflex); []
let new_schema r cr ce morfs =
{psn_id=(-1); gf=r; role=""; role_attr=""; mode=[]; sel_prefs=[]; cr=cr; ce=ce; morfs=morfs}
let rec process_lex lex = function
| Phrase(ComparP prep),arguments,Lexeme "",Lexeme "" ->
LexPhrase([COMPAR,Lexeme prep],(Ratrs,Xlist.map arguments (fun morf -> new_schema ARG [] [] [morf])))
| PhraseAbbr(Xp mode,[argument]),_,_,_ ->
let lex = {lex with lex_argument=argument; lex_mode=mode :: lex.lex_mode} in
process_lex lex (lex.lex_argument,lex.lex_arguments,lex.lex_lemma,lex.lex_numeral_lemma)
(* | PhraseAbbr(Advp mode,[]),[],lemma,Lexeme "" ->
let poss = process_lex_phrase lemma (AdvP,lex.lex_number,lex.lex_gender,lex.lex_degree,lex.lex_negation,lex.lex_reflex) in
LexPhrase(poss,lex.lex_modification) *)
| Phrase (NumP(case)),[],lemma,num_lemma -> LexPhrase([NUM(case,GenderUndef),num_lemma;SUBST(NumberUndef,CaseUndef),lemma],lex.lex_modification)
| Phrase (PrepNumP(prep,case)),[],lemma,num_lemma -> LexPhrase([PREP case,Lexeme prep;NUM(case,GenderUndef),num_lemma;SUBST(NumberUndef,CaseUndef),lemma],lex.lex_modification)
| PhraseComp(Cp,(ctype,[Comp comp])),[],lemma,Lexeme "" ->
if lex.lex_reflex = ReflTrue then LexPhrase([COMP ctype,Lexeme comp;PERS(lex.lex_negation),lemma;QUB,Lexeme "się"],lex.lex_modification)
else LexPhrase([COMP ctype,Lexeme comp;PERS(lex.lex_negation),lemma],lex.lex_modification)
| PhraseComp(Cp,(ctype,[Comp comp1;Comp comp2])),[],lemma,Lexeme "" ->
if lex.lex_reflex = ReflTrue then LexPhrase([COMP ctype,XOR[Lexeme comp1;Lexeme comp2];PERS(lex.lex_negation),lemma;QUB,Lexeme "się"],lex.lex_modification)
else LexPhrase([COMP ctype,XOR[Lexeme comp1;Lexeme comp2];PERS(lex.lex_negation),lemma],lex.lex_modification)
| Phrase phrase,[],lemma,Lexeme "" ->
let poss = process_lex_phrase lemma (phrase,lex.lex_number,lex.lex_gender,lex.lex_degree,lex.lex_negation,lex.lex_reflex) in
LexPhrase(poss,lex.lex_modification)
| (argument,arguments,lemma,numeral_lemma) ->
let s = Printf.sprintf "%s [%s] %s %s\n" (ENIAMwalStringOf.morf argument)
(String.concat ";" (Xlist.map arguments ENIAMwalStringOf.morf))
(ENIAMwalStringOf.lex lemma) (ENIAMwalStringOf.lex numeral_lemma) in
failwith ("process_lex: " ^ s)
(* UWAGA: refl_id może się zmienić wraz z wersją Walentego *)
let refl_id = 25
let refl_position = {empty_position with role="Lemma"; mode=["lemma"]; morfs=[MorfId refl_id]}
let rec load_category = function
| F("category",Fs("category_def",x)) ->
(match x with
| [F("name",Symbol value)] -> value, []
| [F("name",Symbol value);Fset("constraints",set)] ->
value, List.rev (Xlist.rev_map set (load_phrase (ref [])))
| l -> failwith ("load_category 2:\n " ^ String.concat "\n" (Xlist.map l tei_to_string)))
| xml -> failwith ("load_category:\n " ^ tei_to_string xml)
and load_modification_def = function (*pomocnicza do load_lex *)
| [F("type",Symbol value)] -> parse_restr value, []
| [F("type",Symbol value); Fset("positions",set)] ->
parse_restr value, List.rev (Xlist.rev_map set (load_position (-1) (-1) (ref IntMap.empty)))
| x -> Printf.printf "%s\n" (tei_to_string (List.hd x));
failwith "load_modification_def:\n"
and load_lex arg xml = match xml with
| F("argument",set) ->
let mode = ref [] in
let a = load_phrase mode set in
{arg with lex_argument = a; lex_mode = !mode}
| Fset("arguments",set) ->
{arg with lex_arguments=List.rev (Xlist.rev_map set (load_phrase (ref [])))}
| F("modification",Fs("modification_def",x)) -> {arg with lex_modification = load_modification_def x}
| F("lemma",Fs("lemma_def",[F("selection_mode",Symbol value1);
F("cooccurrence",Symbol value2);
Fset("lemmas",lemmas)])) ->
{arg with lex_lemma = make_lemma (value1, value2, List.rev (Xlist.rev_map lemmas load_lemmas_set))}
| F("numeral_lemma",Fs("numeral_lemma_def",[F("selection_mode",Symbol value1);
F("cooccurrence",Symbol value2);
Fset("lemmas",lemmas)])) ->
{arg with lex_numeral_lemma = make_lemma (value1, value2, List.rev (Xlist.rev_map lemmas load_lemmas_set))}
| F("negation",Symbol value) -> {arg with lex_negation = parse_negation value}
| F("degree",Symbol value) -> {arg with lex_degree = parse_grad value}
| F("number",Symbol value) -> {arg with lex_number = parse_number value}
| F("reflex",Binary true) -> {arg with lex_reflex = ReflTrue}
| F("reflex",Binary false) -> {arg with lex_reflex = ReflFalse}
| Fset("reflex",[]) -> {arg with lex_reflex = ReflEmpty}
| Fset("gender",[Symbol value]) -> {arg with lex_gender = parse_gender value}
| xml ->
Printf.printf "%s\n" (tei_to_string xml);
failwith "load_lex:\n "
and load_phrase mode = function
| Fs("np",[F("case",Symbol a)]) -> Phrase (NP(parse_case a));
| Fs("prepnp", [F("preposition",Symbol a);F("case",Symbol b)]) -> Phrase (PrepNP(a, parse_case b))
| Fs("adjp", [F("case",Symbol a)]) -> Phrase (AdjP(parse_case a))
| Fs("prepadjp", [F("preposition",Symbol a);F("case",Symbol b)]) -> Phrase (PrepAdjP(a, parse_case b))
| Fs("comprepnp", [e;F("complex_preposition",TEIstring a)]) -> Phrase (ComprepNP(a))
| Fs("comprepnp", [F("complex_preposition",TEIstring a)]) -> Phrase (ComprepNP(a))
| Fs("cp", [a]) -> PhraseComp(Cp,load_ctype a)
| Fs("ncp", [F("case",Symbol a);b]) -> PhraseComp(Ncp(parse_case a),load_ctype b)
| Fs("prepncp", [F("preposition",Symbol a);F("case",Symbol b);c]) -> PhraseComp(Prepncp(a, parse_case b),load_ctype c)
| Fs("infp", [F("aspect",Symbol a)]) -> Phrase (InfP(parse_aspect a))
| Fs("xp", [a]) -> let x,y = load_category a in mode:=x :: !mode; PhraseAbbr(Xp x,y)
| Fs("xp", [e;a]) -> let x,y = load_category a in mode:=x :: !mode; PhraseAbbr(Xp x,y)
| Fs("advp", [F("category",Symbol a)]) -> mode:=a :: !mode; Phrase(AdvP(a))
| Fs("advp", [e;F("category",Symbol a)]) -> mode:=a :: !mode; Phrase(AdvP(a))
| Fs("nonch", []) -> mode:="nonch" :: !mode; PhraseAbbr(Nonch,[])
| Fs("or", []) -> Phrase Or
| Fs("refl", []) -> mode:="refl" :: !mode; LexPhrase([QUB,Lexeme "się"],(Natr,[]))
| Fs("E", []) -> E Null
| Fs("lex", x) ->
let lex = Xlist.fold x empty_lex load_lex in
mode := lex.lex_mode @ !mode;
process_lex lex (lex.lex_argument,lex.lex_arguments,lex.lex_lemma,lex.lex_numeral_lemma)
| Fs("fixed", [F("argument",a);F("string",TEIstring b)]) -> Phrase (FixedP((*snd (load_phrase a),*)b))
| Fs("possp", [e]) -> mode:="possp" :: !mode; PhraseAbbr(Possp,[])
| Fs("possp", []) -> mode:="possp" :: !mode; PhraseAbbr(Possp,[])
| Fs("recip", []) -> mode:="recip" :: !mode; LexPhrase([QUB,Lexeme "się"],(Natr,[]))
| Fs("distrp", [e]) -> mode:="distrp" :: !mode; PhraseAbbr(Distrp,[])
| Fs("distrp", []) -> mode:="distrp" :: !mode; PhraseAbbr(Distrp,[])
| Fs("compar", [F("compar_category",Symbol value)]) -> Phrase(ComparP value)
| Fs("gerp", [F("case",Symbol a)]) -> Phrase (GerP(parse_case a))
| Fs("prepgerp", [F("preposition",Symbol a);F("case",Symbol b)]) -> Phrase (PrepGerP(a, parse_case b))
| Fs("nump", [F("case",Symbol a)]) -> Phrase (NumP(parse_case a))
| Fs("prepnump", [F("preposition",Symbol a);F("case",Symbol b)]) -> Phrase (PrepNumP(a, parse_case b))
| Fs("ppasp", [F("case",Symbol a)]) -> Phrase (PpasP(parse_case a))
| Fs("prepppasp", [F("preposition",Symbol a);F("case",Symbol b)]) -> Phrase (PrepPpasP(a, parse_case b))
| Fs("qub", []) -> Phrase Qub
| Fs("pactp", [F("case",Symbol a)]) -> Phrase (PactP(parse_case a))
| Fs("adverb",[F("adverb",Symbol s)]) -> LexPhrase([ADV (Grad "pos"),Lexeme s],(Natr,[]))
| xml -> failwith ("load_phrase match:\n " ^ tei_to_string xml)
and load_phrase_id ent sch psn phrases mode = function
| Fs(morf,Id{hash=false; numbers=[ent_id;sch_id;psn_id;id]; suffix="phr"} :: l) ->
if ent_id = ent && sch_id = sch && psn_id = psn then
let morf = load_phrase mode (Fs(morf, l)) in
phrases := IntMap.add_inc (!phrases) id morf (fun morf2 -> if morf = morf2 then morf else failwith "load_phrase_id");
MorfId id
else failwith (Printf.sprintf "load_phrase %d %d" ent ent_id)
| Fs(morf, l) -> load_phrase mode (Fs(morf, l))
| _ -> failwith "load_phrase_id"
and load_control arg = function
| Symbol value -> parse_control arg value
| xml -> failwith ("load_control:\n " ^ tei_to_string xml)
and load_position_info ent sch phrases arg = function
| F("function",Symbol value) -> {arg with gf = parse_gf value}
| Fset("phrases",phrases_set) ->
let mode = ref [] in
let morfs = List.rev (Xlist.rev_map phrases_set (load_phrase_id ent sch arg.psn_id phrases mode)) in
{arg with morfs = morfs; mode = StringSet.to_list (StringSet.of_list (!mode))}
| Fset("control",control_set) -> Xlist.fold control_set arg load_control
| Id{hash=false; numbers=[ent_id;sch_id;id]; suffix="psn"} ->
if ent_id = ent && sch_id = sch then {arg with psn_id = id}
else failwith (Printf.sprintf "load_position_info %d %d" ent ent_id)
| xml -> failwith ("load_position_info:\n " ^ tei_to_string xml)
and load_position ent sch phrases = function
| Fs("position", listt) ->
Xlist.fold listt empty_position (load_position_info ent sch phrases)
| xml -> failwith ("load_position:\n " ^ tei_to_string xml)
let parse_opinion = function
"cer" -> Pewny
| "col" -> Potoczny
| "unc" -> Watpliwy
| "dat" -> Archaiczny
| "bad" -> Zly
| "vul" -> Wulgarny
| "unk" -> Nieokreslony
| "met" -> Metaforyczny
| "dom" -> Dziedzinowy
| "rar" -> Sporadyczny
| "wątpliwy" -> Watpliwy
| "dobry" -> Pewny
| "zły" -> Zly
| x -> failwith ("parse_opinion: " ^ x)
let load_schema_info ent phrases (arg:schema) = function
| F("opinion",Symbol opinion_value) -> {arg with opinion = parse_opinion opinion_value}
| F("inherent_sie",Binary b) -> {arg with reflexiveMark = b}
| F("aspect",Symbol aspect_value) -> {arg with aspect = parse_aspect aspect_value}
| Fset("aspect", []) -> arg
| F("negativity",Symbol negativity_value) -> {arg with negativity = parse_negation negativity_value}
| Fset("negativity",[]) -> arg
| F("predicativity",Binary true) -> {arg with predicativity = PredTrue}
| F("predicativity",Binary false) -> {arg with predicativity = PredFalse}
| Fset("positions", positions) ->
{arg with positions = List.rev (Xlist.rev_map positions (load_position ent arg.sch_id phrases))}
| F("text_rep",TEIstring text_rep) -> {arg with text_rep = text_rep}
| Id{hash=false; numbers=[ent_id;id]; suffix="sch"} -> if ent_id = ent then {arg with sch_id = id} else failwith (Printf.sprintf "load_schema_info %d %d" ent ent_id)
| xml -> failwith ("load_schema_info\n " ^ tei_to_string xml)
let load_schema ent phrases = function
Fs("schema", schema) ->
let result = {sch_id = (-1); opinion = OpinionUndef; reflexiveMark = false; aspect = AspectUndef;
negativity = NegationUndef; predicativity = PredUndef; positions = []; text_rep=""} in
let result = Xlist.fold schema result (load_schema_info ent phrases) in
result
| xml -> failwith ("load_schema:\n " ^ tei_to_string xml)
let load_phrases_set ent = function
| SameAs({hash=true; numbers=[ent_id;sch_id;psn_id;phr_id]; suffix="phr"},"phrase") ->
if ent_id <> ent then failwith (Printf.sprintf "load_phrases_set %d %d" ent ent_id) else
sch_id,psn_id,phr_id
| xml -> failwith ("load_phrases_set :\n " ^ tei_to_string xml)
let load_example_info ent arg = function
| F("meaning",SameAs({hash=true; numbers=[ent_id;id]; suffix="mng"},"lexical_unit")) ->
if ent_id = ent then {arg with meaning = id} else failwith (Printf.sprintf "load_example_info %d %d" ent ent_id)
| Fset("phrases",phrases_set) ->
{arg with phrases = List.rev (Xlist.rev_map phrases_set (load_phrases_set ent))}
| F("sentence",TEIstring sentence_string) -> {arg with sentence = sentence_string}
| F("source",Symbol source_value) -> {arg with source = source_value}
| F("opinion",Symbol opinion_value) -> {arg with opinion = parse_opinion opinion_value}
| F("note",TEIstring note_string) -> {arg with note = note_string}
| Id{hash=false; numbers=[ent_id;id]; suffix="exm"} -> if ent_id = ent then {arg with exm_id = id} else failwith (Printf.sprintf "load_example_info %d %d" ent ent_id)
| xml -> failwith ("load_example_info: \n " ^ tei_to_string xml)
let load_example ent = function
| Fs("example",example_elements) ->
let result = {exm_id = (-1); meaning = (-1); phrases = []; sentence = "";
source = ""; opinion = OpinionUndef; note = "";} in
let result = Xlist.fold example_elements result (load_example_info ent) in
result
| xml -> failwith ("load_example: \n " ^ tei_to_string xml)
let load_self_prefs_sets name ent frm = function
| Numeric value -> if name = "synsets" then SynsetId value else failwith "load_self_prefs_sets"
| Symbol value -> if name = "predefs" then Predef value else failwith "load_self_prefs_sets"
| Fs("relation",[F("type",Symbol value);F("to",SameAs({hash=true; numbers=[ent_id;frm_id;arg_id]; suffix="arg"}, "argument"))]) ->
if ent_id <> ent || frm_id <> frm || name <> "relations" then failwith (Printf.sprintf "load_self_prefs_sets %d %d" ent ent_id)
else RelationArgId(value,arg_id)
| xml -> failwith ("load_self_prefs_sets: \n " ^ tei_to_string xml)
let load_argument_self_prefs ent frm = function
| Fset(name,self_prefs_set) ->
List.rev (Xlist.rev_map self_prefs_set (load_self_prefs_sets name ent frm))
| xml -> failwith ("load_argument_self_prefs: \n " ^ tei_to_string xml)
let load_argument_info ent frm arg = function
| F("role",Symbol value) -> {arg with role = value}
| F("role_attribute",Symbol value) -> {arg with role_attribute = value}
| F("sel_prefs",Fs("sel_prefs_groups", self_prefs)) ->
{arg with sel_prefs = List.flatten (List.rev (Xlist.rev_map self_prefs (load_argument_self_prefs ent frm)))}
(* | Id id -> {arg with arg_id = id} *)
| Id{hash=false; numbers=[ent_id;frm_id;id]; suffix="arg"} ->
if ent_id = ent && frm_id = frm then {arg with arg_id = id}
else failwith (Printf.sprintf "load_argument_info %d %d" ent ent_id)
| xml -> failwith ("load_argument_info :\n " ^ tei_to_string xml)
let load_arguments_set ent frm = function
| Fs("argument", info) ->
let result = {arg_id = (-1); role = ""; role_attribute = ""; sel_prefs = []} in
let result = Xlist.fold info result (load_argument_info ent frm) in
result
| xml -> failwith ("load_arguments_set :\n " ^ tei_to_string xml)
let load_meanings_set ent = function
| SameAs({hash=true; numbers=[ent_id;id]; suffix="mng"},"lexical_unit") ->
if ent_id = ent then id else failwith (Printf.sprintf "load_meanings_set %d %d" ent ent_id)
| xml -> failwith ("load_meanings_set :\n " ^ tei_to_string xml)
let load_frame ent = function
| Fs("frame",[
Id{hash=false; numbers=[ent_id;id]; suffix="frm"};
F("opinion",Symbol opinion);
Fset("meanings",meanings_set);
Fset("arguments",arguments_set)]) ->
if ent_id <> ent then failwith (Printf.sprintf "load_frame %d %d" ent ent_id) else
{frm_id = id;
opinion = parse_opinion opinion;
meanings = List.rev (Xlist.rev_map meanings_set (load_meanings_set ent));
arguments = List.rev (Xlist.rev_map arguments_set (load_arguments_set ent id))}
| xml -> failwith ("load_frame :\n " ^ tei_to_string xml)
let load_meaning_info ent arg = function
| F("name",TEIstring name_string) -> {arg with name = name_string}
| F("variant",TEIstring variant_string) -> {arg with variant = variant_string}
| F("plwnluid",Numeric value) -> {arg with plwnluid = value}
| F("gloss",TEIstring gloss_string) -> {arg with gloss = gloss_string}
| Id{hash=false; numbers=[ent_id;id]; suffix="mng"} -> if ent_id = ent then {arg with mng_id = id} else failwith (Printf.sprintf "load_meaning_info %d %d" ent ent_id)
| xml -> failwith ("load_meaning_info:\n " ^ tei_to_string xml)
let load_meaning ent = function
| Fs("lexical_unit", meaning_info) ->
Xlist.fold meaning_info empty_meaning (load_meaning_info ent)
| xml -> failwith ("load_meaning:\n " ^ tei_to_string xml)
let load_alter_connection ent = function
| Fs("connection", [
F("argument",SameAs({hash=true; numbers=[ent_id;frm_id;arg_id]; suffix="arg"},"argument"));
Fset("phrases",phrases)]) ->
if ent_id <> ent then failwith (Printf.sprintf "load_alter_connection %d %d" ent ent_id) else
let phrases,sch_set = Xlist.fold phrases (IntMap.empty,IntSet.empty) (fun (phrases,sch_set) phrase ->
let sch_id,psn_id,phr_id = load_phrases_set ent phrase in
IntMap.add_inc phrases psn_id [phr_id] (fun l -> phr_id :: l),
IntSet.add sch_set sch_id) in
if IntSet.size sch_set <> 1 then failwith (Printf.sprintf "load_alter_connection: |sch_set|=%d" (IntSet.size sch_set)) else
IntSet.min_elt sch_set, frm_id,
{argument = arg_id; phrases = IntMap.fold phrases [] (fun l psn phrs -> (psn,phrs) :: l)}
| xml -> failwith ("load_alter_connections: \n " ^ tei_to_string xml)
let load_alternations ent = function
| Fs("alternation",[Fset("connections",connections_set)]) ->
let conns,sch_set,frm_set = Xlist.fold connections_set ([],IntSet.empty,IntSet.empty) (fun (conns,sch_set,frm_set) conn ->
let sch_id,frm_id,conn = load_alter_connection ent conn in
conn :: conns, IntSet.add sch_set sch_id, IntSet.add frm_set frm_id) in
if IntSet.size sch_set <> 1 then failwith (Printf.sprintf "load_alternations: |sch_set|=%d" (IntSet.size sch_set)) else
if IntSet.size frm_set <> 1 then failwith (Printf.sprintf "load_alternations: |frm_set|=%d" (IntSet.size sch_set)) else
{schema=IntSet.min_elt sch_set; frame=IntSet.min_elt frm_set; connections=List.rev conns}
| xml -> failwith ("load_alternations: \n " ^ tei_to_string xml)
let load_entry phrases = function
| Xml.Element("entry",["xml:id",id], l) ->
(* print_endline id; *)
let id = match parse_id id with
{hash=false; numbers=[id]; suffix="ent"} -> id
| _ -> failwith "process_meanings" in
let entry = {empty_entry with ent_id = id} in
Xlist.fold l entry (fun e -> function
Xml.Element("form", [], [
Xml.Element("orth",[],[Xml.PCData orth]);
Xml.Element("pos",[],[Xml.PCData pos])]) -> (*print_endline orth;*) {e with form_orth=orth; form_pos=pos}
| xml -> (match parse_tei xml with
| Fs("syntactic_layer", [Fset("schemata",schemata_set)]) -> {e with schemata = List.rev (Xlist.rev_map schemata_set (load_schema id phrases))}
| Fs("examples_layer", [Fset("examples",examples_set)]) -> {e with examples = List.rev (Xlist.rev_map examples_set (load_example id))}
| Fs("semantic_layer", [Fset("frames",frame_set)]) -> {e with frames = List.rev (Xlist.rev_map frame_set (load_frame id))}
| Fs("meanings_layer", [Fset("meanings",meanings_set)]) -> {e with meanings = List.rev (Xlist.rev_map meanings_set (load_meaning id))}
| Fs("connections_layer",[Fset("alternations",alternations)]) -> {e with alternations = List.rev (Xlist.rev_map alternations (load_alternations id))}
| Fs("general_info",[F("status",TEIstring status)]) -> {e with status=status}
| xml -> failwith ("load_entry: \n" ^ tei_to_string xml)))
| xml -> failwith ("load_entry: \n" ^ Xml.to_string_fmt xml)
let load_walenty filename =
begin
match Xml.parse_file filename with
Xml.Element("TEI", _,
[Xml.Element("teiHeader",_,_) ;
Xml.Element("text",[],[Xml.Element("body",[],entries)])]) ->
let phrases = ref IntMap.empty in
let walenty = List.rev (Xlist.rev_map entries (load_entry phrases)) in
walenty, !phrases
| _ -> failwith "load_walenty"
end
let correct_expansion = function
[{gf=ARG; cr=[]; ce=[]; morfs=[Phrase(FixedP s)]};p] -> [LexPhrase([FIXED,Lexeme s],(Ratr,[p]))]
| [{gf=ARG; cr=[]; ce=[]; morfs=[LexPhrase([pos,Lexeme "własny"],(Natr,[]))]};{morfs=[a;b]} as p] ->
[a;b;LexPhrase([pos,Lexeme "własny"],(Atr,[p]))]
| _ -> failwith "correct_expansion"
let load_expansion = function
Fs("expansion",[F("opinion",Symbol opinion);Fset("phrases",[p])]) -> [load_phrase (ref []) p]
| Fs("expansion",[F("opinion",Symbol opinion);Fset("positions",set)]) -> correct_expansion (List.rev (Xlist.rev_map set (load_position (-1) (-1) (ref IntMap.empty))))
| tei -> failwith ("load_expansion: \n" ^ tei_to_string tei)
let load_rentry = function
| Xml.Element("entry",["xml:id",id], [phrase;exp]) ->
let id = match parse_id id with
{hash=false; numbers=[id]; suffix="exp"} -> id
| _ -> failwith "process_meanings" in
let morf = load_phrase (ref []) (parse_tei phrase) in
let expansions = match parse_tei exp with
| Fs("phrase_type_expansions", [Fset("expansions",expansions)]) -> List.flatten (List.rev (Xlist.rev_map expansions load_expansion))
| Fs("phrase_type_expansions", [F("expansions",expansion)]) -> load_expansion expansion
| tei -> failwith ("load_entry: \n" ^ tei_to_string tei) in
id,morf,expansions
| xml -> failwith ("load_entry: \n" ^ Xml.to_string_fmt xml)
let expands_supplement = [
(-2), PhraseAbbr(Nonch,[]), [
LexPhrase([SUBST(NumberUndef,Str),Lexeme "co"],(Natr,[]));
LexPhrase([SUBST(NumberUndef,Str),Lexeme "coś"],(Natr,[]));
LexPhrase([SUBST(NumberUndef,Str),Lexeme "nic"],(Natr,[]));
LexPhrase([SUBST(NumberUndef,Str),Lexeme "to"],(Natr,[]));
];
(-3), Phrase (AdvP "pron"), [
LexPhrase([ADV (Grad "pos"),Lexeme "tak"],(Natr,[]));
LexPhrase([ADV (Grad "pos"),Lexeme "jak"],(Natr,[]))
]]
let load_expands filename =
begin
match Xml.parse_file filename with
Xml.Element("TEI", _,
[Xml.Element("teiHeader",_,_) ;
Xml.Element("text",[],[Xml.Element("body",[],entries)])]) ->
expands_supplement @ List.rev (Xlist.rev_map entries load_rentry)
| _ -> failwith "load_walenty"
end
let subtypes = [
"int",[
"co"; "czemu"; "czy"; "czyj"; "dlaczego"; "dokąd"; "gdzie"; "ile"; "jak";
"jaki"; "kiedy"; "kto"; "którędy"; "który"; "odkąd"; "skąd"; "jakoby"];
"rel",[
"co"; "dokąd"; "gdzie"; "jak"; "jakby"; "jaki"; "jakoby"; "kiedy"; "kto";
"którędy"; "który"; "odkąd"; "skąd"]]
let equivs = ["jak",["niczym"]; "przeciw",["przeciwko"]]
*)