forked from mideind/GreynirServer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.py
executable file
·1023 lines (855 loc) · 35.8 KB
/
settings.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
"""
Reynir: Natural language processing for Icelandic
Settings module
Copyright (c) 2018 Miðeind ehf.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see http://www.gnu.org/licenses/.
This module is written in Python 3
This module reads and interprets the Reynir.conf configuration file.
The file can include other files using the $include directive,
making it easier to arrange configuration sections into logical
and manageable pieces.
Sections are identified like so: [ section_name ]
Comments start with # signs.
Sections are interpreted by section handlers.
"""
import os
import codecs
import locale
import threading
from contextlib import contextmanager, closing
from collections import defaultdict
from threading import Lock
import reynir
# The locale used by default in the changedlocale function
_DEFAULT_LOCALE = ("IS_is", "UTF-8")
# A set of all valid argument cases
_ALL_CASES = frozenset(("nf", "þf", "þgf", "ef"))
_ALL_GENDERS = frozenset(("kk", "kvk", "hk"))
class ConfigError(Exception):
""" Exception class for configuration errors """
def __init__(self, s):
Exception.__init__(self, s)
self.fname = None
self.line = 0
def set_pos(self, fname, line):
""" Set file name and line information, if not already set """
if not self.fname:
self.fname = fname
self.line = line
def __str__(self):
""" Return a string representation of this exception """
s = Exception.__str__(self)
if not self.fname:
return s
return "File {0}, line {1}: {2}".format(self.fname, self.line, s)
class LineReader:
""" Read lines from a text file, recognizing $include directives """
def __init__(self, fname, outer_fname=None, outer_line=0):
self._fname = fname
self._line = 0
self._inner_rdr = None
self._outer_fname = outer_fname
self._outer_line = outer_line
def fname(self):
return self._fname if self._inner_rdr is None else self._inner_rdr.fname()
def line(self):
return self._line if self._inner_rdr is None else self._inner_rdr.line()
def lines(self):
""" Generator yielding lines from a text file """
self._line = 0
try:
with codecs.open(self._fname, "r", "utf-8") as inp:
# Read config file line-by-line
for s in inp:
self._line += 1
# Check for include directive: $include filename.txt
if s.startswith("$") and s.lower().startswith("$include "):
iname = s.split(maxsplit=1)[1].strip()
# Do some path magic to allow the included path
# to be relative to the current file path, or a
# fresh (absolute) path by itself
head, _ = os.path.split(self._fname)
iname = os.path.join(head, iname)
rdr = self._inner_rdr = LineReader(
iname, self._fname, self._line
)
for incl_s in rdr.lines():
yield incl_s
self._inner_rdr = None
else:
yield s
except (IOError, OSError):
if self._outer_fname:
# This is an include file within an outer config file
c = ConfigError(
"Error while opening or reading include file '{0}'"
.format(self._fname)
)
c.set_pos(self._outer_fname, self._outer_line)
else:
# This is an outermost config file
c = ConfigError(
"Error while opening or reading config file '{0}'"
.format(self._fname)
)
raise c
class VerbObjects:
""" Wrapper around dictionary of verbs and their objects,
initialized from the config file """
# Dictionary of verbs by object (argument) number, 0, 1 or 2
# Verbs can control zero, one or two arguments (noun phrases),
# where each argument must have a particular case
VERBS = [set(), defaultdict(list), defaultdict(list)]
# Dictionary of verb forms with associated scores
# The key is the normal form of the verb + the associated cases,
# separated by underscores, e.g. "vera_þgf_ef"
SCORES = dict()
# Dictionary of verbs where, for each verb + argument cases, we store a set of
# preposition_case keys, i.e. "frá_þgf"
PREPOSITIONS = defaultdict(set)
@staticmethod
def add(verb, args, prepositions, score):
""" Add a verb and its objects (arguments). Called from the config file handler. """
la = len(args)
if la > 2:
raise ConfigError("A verb can have 0-2 arguments; {0} given".format(la))
if la:
for case in args:
if case not in _ALL_CASES:
raise ConfigError(
"Invalid case for verb argument: '{0}'"
.format(case)
)
# Append a possible argument list
arglists = VerbObjects.VERBS[la][verb]
if args not in arglists:
# Avoid adding the same argument list twice
arglists.append(args)
else:
# Note that the verb can be argument-free
VerbObjects.VERBS[0].add(verb)
# Store the score, if nonzero
verb_with_cases = "_".join([verb] + args)
if score != 0:
VerbObjects.SCORES[verb_with_cases] = score
# prepositions is a list of tuples: (preposition, case), e.g. ("í", "þgf")
d = VerbObjects.PREPOSITIONS[verb_with_cases]
for p, case in prepositions:
# Add a generic 'case-less' forms of the preposition, such as "í"
d.add(p)
# Add a full form with case, such as "í_þgf"
d.add(p + "_" + case)
@staticmethod
def verb_matches_preposition(verb_with_cases, prep_with_case):
""" Does the given preposition with the given case fit the verb? """
# if Settings.DEBUG:
# print("verb_matches_preposition: verb {0}, prep {1}, verb found {2}, prep found {3}"
# .format(verb_with_cases, prep_with_case,
# verb_with_cases in VerbObjects.PREPOSITIONS,
# verb_with_cases in VerbObjects.PREPOSITIONS and
# prep_with_case in VerbObjects.PREPOSITIONS[verb_with_cases]))
return (
verb_with_cases in VerbObjects.PREPOSITIONS
and prep_with_case in VerbObjects.PREPOSITIONS[verb_with_cases]
)
class VerbSubjects:
""" Wrapper around dictionary of verbs and their subjects,
initialized from the config file """
# Dictionary of verbs and their associated set of subject cases
VERBS = defaultdict(set)
_CASE = "þgf" # Default subject case
@staticmethod
def set_case(case):
""" Set the case of the subject for the following verbs """
# if case not in { "þf", "þgf", "ef", "none", "lhþt" }:
# raise ConfigError("Unknown verb subject case '{0}' in verb_subjects".format(case))
VerbSubjects._CASE = case
@staticmethod
def add(verb):
""" Add a verb and its arguments. Called from the config file handler. """
VerbSubjects.VERBS[verb].add(VerbSubjects._CASE)
class Prepositions:
""" Wrapper around dictionary of prepositions, initialized from the config file """
# Dictionary of prepositions: preposition -> { set of cases that it controls }
PP = defaultdict(set)
PP_PLURAL = set()
# Prepositions that can be followed by an infinitive verb phrase
# 'Beiðnin um að handtaka manninn var send lögreglunni'
PP_NH = set()
@staticmethod
def add(prep, case, nh):
""" Add a preposition and its case. Called from the config file handler. """
Prepositions.PP[prep].add(case)
if nh:
Prepositions.PP_NH.add(prep)
class AdjectiveTemplate:
""" Wrapper around template list of adjective endings """
# List of tuples: (ending, form_spec)
ENDINGS = []
@classmethod
def add(cls, ending, form):
""" Add an adjective ending and its associated form. """
cls.ENDINGS.append((ending, form))
class DisallowedNames:
""" Wrapper around list of disallowed person name forms """
# Dictionary of name stems : sets of cases
STEMS = {}
@classmethod
def add(cls, name, cases):
""" Add an adjective ending and its associated form. """
cls.STEMS[name] = set(cases)
class UndeclinableAdjectives:
""" Wrapper around list of undeclinable adjectives """
# Set of adjectives
ADJECTIVES = set()
@classmethod
def add(cls, wrd):
""" Add an adjective """
cls.ADJECTIVES.add(wrd)
class StaticPhrases:
""" Wrapper around dictionary of static phrases, initialized from the config file """
# Default meaning for static phrases
MEANING = ("ao", "frasi", "-")
# Dictionary of the static phrases with their meanings
MAP = {}
# Dictionary of the static phrases with their IFD tags and lemmas
# { static_phrase : (tag string, lemma string) }
DETAILS = {}
# List of all static phrases and their meanings
LIST = []
# Parsing dictionary keyed by first word of phrase
DICT = {}
@staticmethod
def add(spec):
""" Add a static phrase to the dictionary. Called from the config file handler. """
parts = spec.split(",")
if len(parts) not in {1, 3}:
raise ConfigError("Static phrase must include IFD tag list and lemmas")
phrase = parts[0].strip()
if len(phrase) < 3 or phrase[0] != '"' or phrase[-1] != '"':
raise ConfigError("Static phrase must be enclosed in double quotes")
phrase = phrase[1:-1]
# First add to phrase list
ix = len(StaticPhrases.LIST)
m = StaticPhrases.MEANING
mtuple = (phrase, 0, m[0], m[1], phrase, m[2])
# Append the phrase as well as its meaning in tuple form
StaticPhrases.LIST.append((phrase, mtuple))
# Add to the main phrase dictionary
StaticPhrases.MAP[phrase] = mtuple
# If details are supplied, store them
if len(parts) == 3:
tags = parts[1].strip()
lemmas = parts[2].strip()
if len(tags) < 3 or tags[0] != '"' or tags[-1] != '"':
raise ConfigError("IFD tag list must be enclosed in double quotes")
if len(lemmas) < 3 or lemmas[0] != '"' or lemmas[-1] != '"':
raise ConfigError("Lemmas must be enclosed in double quotes")
StaticPhrases.DETAILS[phrase] = (tags[1:-1], lemmas[1:-1])
# Dictionary structure: dict { firstword: [ (restword_list, phrase_index) ] }
# Split phrase into words
wlist = phrase.split()
# Dictionary is keyed by first word
w = wlist[0]
d = StaticPhrases.DICT
if w in d:
# First word already there: add a subsequent list
d[w].append((wlist[1:], ix))
else:
# Create a new entry for this first word
d[w] = [(wlist[1:], ix)]
@staticmethod
def set_meaning(meaning):
""" Set the default meaning for static phrases """
StaticPhrases.MEANING = tuple(meaning)
@staticmethod
def get_meaning(ix):
""" Return the meaning of the phrase with index ix """
return [StaticPhrases.LIST[ix][1]]
@staticmethod
def get_length(ix):
""" Return the length of the phrase with index ix """
return len(StaticPhrases.LIST[ix][0].split())
@staticmethod
def lookup(phrase):
""" Lookup an entire phrase """
return StaticPhrases.MAP.get(phrase)
@staticmethod
def has_details(phrase):
""" Return True if tag and lemma details are available for this phrase """
return phrase in StaticPhrases.DETAILS
@staticmethod
def tags(phrase):
""" Lookup a list of IFD tags for a phrase, if available """
details = StaticPhrases.DETAILS.get(phrase)
return None if details is None else details[0].split()
@staticmethod
def lemmas(phrase):
""" Lookup a list of lemmas for a phrase, if available """
details = StaticPhrases.DETAILS.get(phrase)
return None if details is None else details[1].split()
class AmbigPhrases:
""" Wrapper around dictionary of potentially ambiguous phrases, initialized from the config file """
# List of tuples of ambiguous phrases and their word category lists
LIST = []
# Parsing dictionary keyed by first word of phrase
DICT = defaultdict(list)
@staticmethod
def add(words, cats):
""" Add an ambiguous phrase to the dictionary. Called from the config file handler. """
# First add to phrase list
ix = len(AmbigPhrases.LIST)
# Append the phrase as well as its meaning in tuple form
AmbigPhrases.LIST.append((words, cats))
# Dictionary structure: dict { firstword: [ (restword_list, phrase_index) ] }
AmbigPhrases.DICT[words[0]].append((words[1:], ix))
@staticmethod
def get_cats(ix):
""" Return the word categories for the phrase with index ix """
return AmbigPhrases.LIST[ix][1]
class NoIndexWords:
""" Wrapper around set of word stems and categories that should
not be indexed """
SET = set() # Set of (stem, cat) tuples
_CAT = "so" # Default category
# The word categories that are indexed in the words table
CATEGORIES_TO_INDEX = frozenset(
("kk", "kvk", "hk", "person_kk", "person_kvk", "entity", "lo", "so")
)
@staticmethod
def set_cat(cat):
""" Set the category for the following word stems """
NoIndexWords._CAT = cat
@staticmethod
def add(stem):
""" Add a word stem and its category. Called from the config file handler. """
NoIndexWords.SET.add((stem, NoIndexWords._CAT))
class Topics:
""" Wrapper around topics, represented as a dict (name: set) """
DICT = defaultdict(set) # Dict of topic name: set
ID = dict() # Dict of identifier: topic name
THRESHOLD = dict() # Dict of identifier: threshold (as a float)
_name = None
@staticmethod
def set_name(name):
""" Set the topic name for the words that follow """
a = name.split("|")
Topics._name = tname = a[0].strip()
identifier = a[1].strip() if len(a) > 1 else None
if identifier is not None and not identifier.isidentifier():
raise ConfigError("Topic identifier must be a valid Python identifier")
try:
threshold = float(a[2].strip()) if len(a) > 2 else None
except ValueError:
raise ConfigError("Topic threshold must be a floating point number")
Topics.ID[tname] = identifier
Topics.THRESHOLD[tname] = threshold
@staticmethod
def add(word):
""" Add a word stem and its category. Called from the config file handler. """
if Topics._name is None:
raise ConfigError(
"Must set topic name (topic = X) before specifying topic words"
)
if "/" not in word:
raise ConfigError(
"Topic words must include a slash '/' and a word category"
)
cat = word.split("/", maxsplit=1)[1]
if cat not in {
"kk",
"kvk",
"hk",
"lo",
"so",
"entity",
"person",
"person_kk",
"person_kvk",
}:
raise ConfigError(
"Topic words must be nouns, verbs, adjectives, entities or persons"
)
# Add to topic set, after replacing spaces with underscores
Topics.DICT[Topics._name].add(word.replace(" ", "_"))
# Magic stuff to change locale context temporarily
@contextmanager
def changedlocale(new_locale=None, category='LC_COLLATE'):
""" Change locale temporarily within a context (with-statement) """
# The new locale parameter should be a tuple, e.g. ('is_IS', 'UTF-8')
# The category should be a string such as 'LC_TIME', 'LC_NUMERIC' etc.
cat = locale.__getattribute__(category)
old_locale = locale.getlocale(cat)
try:
locale.setlocale(cat, new_locale or _DEFAULT_LOCALE)
yield locale.strxfrm # Function to transform string for sorting
finally:
locale.setlocale(cat, old_locale)
def sort_strings(strings, loc=None):
""" Sort a list of strings using the specified locale's collation order """
# Change locale temporarily for the sort
with changedlocale(loc) as strxfrm:
return sorted(strings, key=strxfrm)
class Preferences:
""" Wrapper around disambiguation hints, initialized from the config file """
# Dictionary keyed by word containing a list of tuples (worse, better)
# where each is a list of terminal prefixes
DICT = defaultdict(list)
@staticmethod
def add(word, worse, better, factor):
""" Add a preference to the dictionary. Called from the config file handler. """
Preferences.DICT[word].append((worse, better, factor))
@staticmethod
def get(word):
""" Return a list of (worse, better, factor) tuples for the given word """
return Preferences.DICT.get(word, None)
class StemPreferences:
""" Wrapper around stem disambiguation hints, initialized from the config file """
# Dictionary keyed by word form containing a list of tuples (worse, better)
# where each is a list word stems
DICT = dict()
@staticmethod
def add(word, worse, better):
""" Add a preference to the dictionary. Called from the config file handler. """
if word in StemPreferences.DICT:
raise ConfigError(
"Duplicate stem preference for word form {0}".format(word)
)
StemPreferences.DICT[word] = (worse, better)
@staticmethod
def get(word):
""" Return a list of (worse, better) tuples for the given word form """
return StemPreferences.DICT.get(word, None)
class NounPreferences:
""" Wrapper for noun preferences, i.e. to assign priorities to different
noun stems that can have identical word forms. """
# This is a dict of noun word forms, giving the relative priorities
# of different genders
DICT = defaultdict(dict)
@staticmethod
def add(word, worse, better):
""" Add a preference to the dictionary. Called from the config file handler. """
if worse not in _ALL_GENDERS or better not in _ALL_GENDERS:
raise ConfigError("Noun priorities must specify genders (kk, kvk, hk)")
d = NounPreferences.DICT[word]
worse_score = d.get(worse)
better_score = d.get(better)
if worse_score is not None:
if better_score is not None:
raise ConfigError("Conflicting priorities for noun {0}".format(word))
better_score = worse_score + 4
elif better_score is not None:
worse_score = better_score - 4
else:
worse_score = -2
better_score = 2
d[worse] = worse_score
d[better] = better_score
# print("Noun prefs for '{0}' are now {1}".format(word, d))
class NamePreferences:
""" Wrapper around well-known person names, initialized from the config file """
SET = set()
@staticmethod
def add(name):
""" Add a preference to the dictionary. Called from the config file handler. """
NamePreferences.SET.add(name)
# Global settings
class Settings:
_lock = threading.Lock()
loaded = False
# Postgres SQL database server hostname and port
DB_HOSTNAME = os.environ.get("GREYNIR_DB_HOST", "localhost")
DB_PORT = os.environ.get("GREYNIR_DB_PORT", "5432") # Default PostgreSQL port
try:
DB_PORT = int(DB_PORT)
except ValueError:
raise ConfigError(
"Invalid environment variable value: DB_PORT = {0}"
.format(DB_PORT)
)
# Flask server host and port
HOST = os.environ.get("GREYNIR_HOST", "localhost")
PORT = os.environ.get("GREYNIR_PORT", "5000")
try:
PORT = int(PORT)
except ValueError:
raise ConfigError(
"Invalid environment variable value: GREYNIR_PORT = {0}"
.format(PORT)
)
# Flask debug parameter
DEBUG = False
# Similarity server
SIMSERVER_HOST = os.environ.get("SIMSERVER_HOST", "localhost")
SIMSERVER_PORT = os.environ.get("SIMSERVER_PORT", "5001")
try:
SIMSERVER_PORT = int(SIMSERVER_PORT)
except ValueError:
raise ConfigError(
"Invalid environment variable value: SIMSERVER_PORT = {0}"
.format(SIMSERVER_PORT)
)
if SIMSERVER_PORT == PORT:
raise ConfigError(
"Can't run both main server and "
"similarity server on port {0}".format(PORT)
)
# Configuration settings from the Reynir.conf file
@staticmethod
def _handle_settings(s):
""" Handle config parameters in the settings section """
a = s.lower().split("=", maxsplit=1)
par = a[0].strip().lower()
val = a[1].strip()
if val.lower() == "none":
val = None
elif val.lower() == "true":
val = True
elif val.lower() == "false":
val = False
try:
if par == "db_hostname":
Settings.DB_HOSTNAME = val
elif par == "db_port":
Settings.DB_PORT = int(val)
elif par == "bin_db_hostname":
# This is no longer required and has been deprecated
pass
elif par == "bin_db_port":
# This is no longer required and has been deprecated
pass
elif par == "host":
Settings.HOST = val
elif par == "port":
Settings.PORT = int(val)
elif par == "simserver_host":
Settings.SIMSERVER_HOST = val
elif par == "simserver_port":
Settings.SIMSERVER_PORT = int(val)
elif par == "debug":
Settings.DEBUG = bool(val)
else:
raise ConfigError("Unknown configuration parameter '{0}'".format(par))
except ValueError:
raise ConfigError("Invalid parameter value: {0} = {1}".format(par, val))
@staticmethod
def _handle_static_phrases(s):
""" Handle static phrases in the settings section """
if "=" not in s:
StaticPhrases.add(s)
return
# Check for a meaning spec
a = s.split("=", maxsplit=1)
par = a[0].strip()
val = a[1].strip()
if par.lower() == "meaning":
m = val.split()
if len(m) == 3:
StaticPhrases.set_meaning(m)
else:
raise ConfigError("Meaning in static_phrases should have 3 arguments")
else:
raise ConfigError(
"Unknown configuration parameter '{0}' in static_phrases"
.format(par)
)
@staticmethod
def _handle_abbreviations(s):
""" Handle abbreviations in the settings section """
pass
@staticmethod
def _handle_verb_objects(s):
""" Handle verb object specifications in the settings section """
# Format: verb [arg1] [arg2] [/preposition arg]... [$score(sc)]
# Start by handling the $score() pragma, if present
score = 0
ix = s.rfind("$score(") # Must be at the end
if ix >= 0:
sc = s[ix:].strip()
s = s[0:ix]
if not sc.endswith(")"):
raise ConfigError("Invalid score pragma; form should be $score(n)")
# There is an associated score with this verb form, to be taken
# into consideration by the reducer
sc = sc[7:-1]
try:
score = int(sc)
except ValueError:
raise ConfigError("Invalid score for verb form")
# Process preposition arguments, if any
prepositions = []
ap = s.split("/")
s = ap[0]
ix = 1
while len(ap) > ix:
# We expect something like 'af þgf'
p = ap[ix].strip()
parg = p.split()
if len(parg) != 2:
raise ConfigError("Preposition should have exactly one argument")
if parg[1] not in _ALL_CASES:
raise ConfigError("Unknown argument case for preposition")
prepositions.append((parg[0].replace("_", " "), parg[1]))
ix += 1
a = s.split()
if len(a) < 1 or len(a) > 3:
raise ConfigError(
"Verb should have zero, one or two arguments and an optional score"
)
verb = a[0]
if not verb.isidentifier():
raise ConfigError("Verb '{0}' is not a valid word".format(verb))
VerbObjects.add(verb, a[1:], prepositions, score)
@staticmethod
def _handle_verb_subjects(s):
""" Handle verb subject specifications in the settings section """
# Format: subject = [case] followed by verb list
a = s.lower().split("=", maxsplit=1)
par = a[0].strip()
if len(a) == 2:
val = a[1].strip()
if par == "subject":
VerbSubjects.set_case(val)
else:
raise ConfigError("Unknown setting '{0}' in verb_subjects".format(par))
return
assert len(a) == 1
VerbSubjects.add(par)
@staticmethod
def _handle_undeclinable_adjectives(s):
""" Handle list of undeclinable adjectives """
s = s.lower().strip()
if not s.isalpha():
raise ConfigError(
"Expected word but got '{0}' in undeclinable_adjectives".format(s)
)
UndeclinableAdjectives.add(s)
@staticmethod
def _handle_noindex_words(s):
""" Handle no index instructions in the settings section """
# Format: category = [cat] followed by word stem list
a = s.lower().split("=", maxsplit=1)
par = a[0].strip()
if len(a) == 2:
val = a[1].strip()
if par == "category":
NoIndexWords.set_cat(val)
else:
raise ConfigError("Unknown setting '{0}' in noindex_words".format(par))
return
assert len(a) == 1
NoIndexWords.add(par)
@staticmethod
def _handle_topics(s):
""" Handle topic specifications """
# Format: name = [topic name] followed by word stem list in the form word/cat
a = s.split("=", maxsplit=1)
par = a[0].strip()
if len(a) == 2:
val = a[1].strip()
if par.lower() == "topic":
Topics.set_name(val)
else:
raise ConfigError("Unknown setting '{0}' in topics".format(par))
return
assert len(a) == 1
Topics.add(par)
@staticmethod
def _handle_prepositions(s):
""" Handle preposition specifications in the settings section """
# Format: pw1 pw2... case [nh]
a = s.split()
if len(a) < 2:
raise ConfigError("Preposition must specify a word and a case argument")
c = a[-1] # Case or 'nh'
nh = c == "nh"
if nh:
# This is a preposition that can be followed by an infinitive verb phrase:
# 'Beiðnin um að handtaka manninn var send lögreglunni'
a = a[:-1]
if len(a) < 2:
raise ConfigError(
"Preposition must specify a word, case and 'nh' argument"
)
c = a[-1]
if c not in {"nf", "þf", "þgf", "ef"}: # Not a valid case
raise ConfigError("Preposition must have a case argument (nf/þf/þgf/ef)")
pp = " ".join(a[:-1]) # Preposition, possibly multi-word
Prepositions.add(pp, c, nh)
@staticmethod
def _handle_preferences(s):
""" Handle ambiguity preference hints in the settings section """
# Format: word worse1 worse2... < better
# If two less-than signs are used, the preference is even stronger (tripled)
# If three less-than signs are used, the preference is super strong (nine-fold)
factor = 9
a = s.lower().split("<<<", maxsplit=1)
if len(a) != 2:
factor = 3
a = s.lower().split("<<", maxsplit=1)
if len(a) != 2:
# Not doubled preference: try a normal one
a = s.lower().split("<", maxsplit=1)
factor = 1
if len(a) != 2:
raise ConfigError("Ambiguity preference missing less-than sign '<'")
w = a[0].split()
if len(w) < 2:
raise ConfigError(
"Ambiguity preference must have at least one 'worse' category"
)
b = a[1].split()
if len(b) < 1:
raise ConfigError(
"Ambiguity preference must have at least one 'better' category"
)
Preferences.add(w[0], w[1:], b, factor)
@staticmethod
def _handle_stem_preferences(s):
""" Handle stem ambiguity preference hints in the settings section """
# Format: word worse1 worse2... < better
a = s.lower().split("<", maxsplit=1)
if len(a) != 2:
raise ConfigError("Ambiguity preference missing less-than sign '<'")
w = a[0].split()
if len(w) < 2:
raise ConfigError(
"Ambiguity preference must have at least one 'worse' category"
)
b = a[1].split()
if len(b) < 1:
raise ConfigError(
"Ambiguity preference must have at least one 'better' category"
)
StemPreferences.add(w[0], w[1:], b)
@staticmethod
def _handle_noun_preferences(s):
""" Handle noun preference hints in the settings section """
# Format: noun worse1 worse2... < better
# The worse and better specifiers are gender names (kk, kvk, hk)
a = s.lower().split("<", maxsplit=1)
if len(a) != 2:
raise ConfigError("Noun preference missing less-than sign '<'")
w = a[0].split()
if len(w) != 2:
raise ConfigError("Noun preference must have exactly one 'worse' gender")
b = a[1].split()
if len(b) != 1:
raise ConfigError("Noun preference must have exactly one 'better' gender")
NounPreferences.add(w[0], w[1], b[0])
@staticmethod
def _handle_name_preferences(s):
""" Handle well-known person names in the settings section """
NamePreferences.add(s)
@staticmethod
def _handle_ambiguous_phrases(s):
""" Handle ambiguous phrase guidance in the settings section """
# Format: "word1 word2..." cat1 cat2...
if s[0] != '"':
raise ConfigError("Ambiguous phrase must be enclosed in double quotes")
q = s.rfind('"')
if q <= 0:
raise ConfigError("Ambiguous phrase must be enclosed in double quotes")
# Obtain a list of the words in the phrase
words = s[1:q].strip().lower().split()
# Obtain a list of the corresponding word categories
cats = s[q + 1 :].strip().lower().split()
if len(words) != len(cats):
raise ConfigError(
"Ambiguous phrase has {0} words but {1} categories"
.format(len(words), len(cats))
)
if len(words) < 2:
raise ConfigError("Ambiguous phrase must contain at least two words")
AmbigPhrases.add(words, cats)
@staticmethod
def _handle_adjective_template(s):
""" Handle the template for new adjectives in the settings section """
# Format: adjective-ending bin-meaning
a = s.split()
if len(a) != 2:
raise ConfigError(
"Adjective template should have an ending and a form specifier"
)
AdjectiveTemplate.add(a[0], a[1])
@staticmethod
def _handle_disallowed_names(s):
""" Handle disallowed person name forms from the settings section """
# Format: Name-stem case1 case2...
a = s.split()
if len(a) < 2:
raise ConfigError(
"Disallowed names must specify a name and at least one case"
)
DisallowedNames.add(a[0], a[1:])
@staticmethod
def read(fname):
""" Read configuration file """
with Settings._lock:
if Settings.loaded:
return
CONFIG_HANDLERS = {
"settings": Settings._handle_settings,
"static_phrases": Settings._handle_static_phrases,
"abbreviations": Settings._handle_abbreviations,
"verb_objects": Settings._handle_verb_objects,
"verb_subjects": Settings._handle_verb_subjects,
"prepositions": Settings._handle_prepositions,
"preferences": Settings._handle_preferences,
"noun_preferences": Settings._handle_noun_preferences,
"name_preferences": Settings._handle_name_preferences,
"stem_preferences": Settings._handle_stem_preferences,
"ambiguous_phrases": Settings._handle_ambiguous_phrases,
# "meanings" : Settings._handle_meanings,
"adjective_template": Settings._handle_adjective_template,
"undeclinable_adjectives": Settings._handle_undeclinable_adjectives,
"disallowed_names": Settings._handle_disallowed_names,
"noindex_words": Settings._handle_noindex_words,
"topics": Settings._handle_topics,
}
handler = None # Current section handler
rdr = None
try:
rdr = LineReader(fname)
for s in rdr.lines():
# Ignore comments
ix = s.find("#")
if ix >= 0:
s = s[0:ix]
s = s.strip()
if not s:
# Blank line: ignore
continue
if s[0] == "[" and s[-1] == "]":
# New section
section = s[1:-1].strip().lower()