| 
28
29
30
31
32
33
34
35
36
37
38
39
40
41
 | 
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
 | 
+
+
+
 | 
        self.sLangCode = sLangCode
        if not sfMainDic:
            sfMainDic = dDefaultDictionaries.get(sLangCode, "")
        self.oMainDic = self._loadDictionary(sfMainDic, True)
        self.oExtendedDic = self._loadDictionary(sfExtendedDic)
        self.oCommunityDic = self._loadDictionary(sfCommunityDic)
        self.oPersonalDic = self._loadDictionary(sfPersonalDic)
        self.bExtendedDic = bool(self.oExtendedDic)
        self.bCommunityDic = bool(self.oCommunityDic)
        self.bPersonalDic = bool(self.oPersonalDic)
        self.oTokenizer = None
    def _loadDictionary (self, source, bNecessary=False):
        "returns an IBDAWG object"
        if not source:
            return None
        try:
 | 
| 
59
60
61
62
63
64
65
66
67
68
69
7071
72
73
74
7576
77
78
79
80
81
82
83 | 
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
 | 
-
+
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
+
+
+
+
+
+
+
+
+
+
+
 | 
        "returns True if the dictionary is loaded"
        self.oMainDic = self._loadDictionary(source)
        return bool(self.oMainDic)
            
    def setExtendedDictionary (self, source):
        "returns True if the dictionary is loaded"
        self.oExtendedDic = self._loadDictionary(source)
        self.bExtendedDic = bool(self.oExtendedDic)
        return self.bExtendedDic
    def setCommunityDictionary (self, source):
        "returns True if the dictionary is loaded"
        self.oCommunityDic = self._loadDictionary(source)returnbool(self.oExtendedDic)        self.bCommunityDic = bool(self.oCommunityDic)
        return self.bCommunityDic
    def setPersonalDictionary (self, source):
        "returns True if the dictionary is loaded"
        self.oPersonalDic = self._loadDictionary(source)
        self.bPersonalDic = bool(self.oPersonalDic)
        return self.bPersonalDic
    def activateExtendedDictionary (self):
        if self.oExtendedDic:
            self.bExtendedDic = True
    def activateCommunityDictionary (self):
        if self.oCommunityDic:
            self.bCommunityDic = True
    def activatePersonalDictionary (self):returnbool(self.oPersonalDic)        if self.oPersonalDic:
            self.bPersonalDic = True
    def deactivateExtendedDictionary (self):
        self.bExtendedDic = False
    def deactivateCommunityDictionary (self):
        self.bCommunityDic = False
    def deactivatePersonalDictionary (self):
        self.bPersonalDic = False
    # parse text functions
    def parseParagraph (self, sText, bSpellSugg=False):
        if not self.oTokenizer:
            self.loadTokenizer()
        aSpellErrs = []return bool(self.oPersonalDic) | 
| 
108
109
110
111
112
113
114
115
116117
118119
120
121
122
123
124
125
126127
128129
130131
132
133
134
135
136
137
138139
140141
142143
144
145
146
147
148
149150
151152
153154
155
156
157
158
159
160
161
162
163164
165166
167168
169
170
171
172
173174
175176
177178
179
180
181
182183
184
185186
187
188189
190
191 | 
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
 | 
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
 | 
    # IBDAWG functions
    def isValidToken (self, sToken):
        "checks if sToken is valid (if there is hyphens in sToken, sToken is split, each part is checked)"
        if self.oMainDic.isValidToken(sToken):
            return True
        if self.if self.bExtendedDic and self.oExtendedDic.isValidToken(sToken):
            return TrueoExtendedDic and self.oExtendedDic.isValidToken(sToken):        if self.if self.bCommunityDic and self.oCommunityDic.isValidToken(sToken):
            return TrueoCommunityDic and self.oCommunityDic.isValidToken(sToken):        if self.if self.bPersonalDic and self.oPersonalDic.isValidToken(sToken):
            return True
        return False
    def isValid (self, sWord):
        "checks if sWord is valid (different casing tested if the first letter is a capital)"
        if self.oMainDic.isValid(sWord):
            return TrueoPersonalDic and self.oPersonalDic.isValidToken(sToken):        if self.if self.bExtendedDic and self.oExtendedDic.isValid(sWord):
            return TrueoExtendedDic and self.oExtendedDic.isValid(sWord):        if self.if self.bCommunityDic and self.oCommunityDic.isValid(sToken):
            return TrueoCommunityDic and self.oCommunityDic.isValid(sToken):        if self.if self.bPersonalDic and self.oPersonalDic.isValid(sWord):
            return True
        return False
    def lookup (self, sWord):
        "checks if sWord is in dictionary as is (strict verification)"
        if self.oMainDic.lookup(sWord):
            return TrueoPersonalDic and self.oPersonalDic.isValid(sWord):        if self.if self.bExtendedDic and self.oExtendedDic.lookup(sWord):
            return TrueoExtendedDic and self.oExtendedDic.lookup(sWord):        if self.if self.bCommunityDic and self.oCommunityDic.lookup(sToken):
            return TrueoCommunityDic and self.oCommunityDic.lookup(sToken):        if self.if self.bPersonalDic and self.oPersonalDic.lookup(sWord):
            return True
        return False
    def getMorph (self, sWord):
        "retrieves morphologies list, different casing allowed"
        lResult = self.oMainDic.getMorph(sWord)oPersonalDic and self.oPersonalDic.lookup(sWord):        if self.if self.bExtendedDic:
            lResult.extend(self.oExtendedDic.getMorph(sWord))oExtendedDic:        if self.if self.bCommunityDic:
            lResult.extend(self.oCommunityDic.getMorph(sWord))oCommunityDic:        if self.if self.bPersonalDic:
            lResult.extend(self.oPersonalDic.getMorph(sWord))
        return lResult
    def getLemma (self, sWord):
        return set([ s[1:s.find(" ")]  for s in self.getMorph(sWord) ])
    def suggest (self, sWord, nSuggLimit=10):
        "generator: returns 1, 2 or 3 lists of suggestions"
        yield self.oMainDic.suggest(sWord, nSuggLimit)oPersonalDic:        if self.if self.bExtendedDic:
            yield self.oExtendedDic.suggest(sWord, nSuggLimit)oExtendedDic:        if self.if self.bCommunityDic:
            yield self.oCommunityDic.suggest(sWord, nSuggLimit)oCommunityDic:        if self.if self.bPersonalDic:
            yield self.oPersonalDic.suggest(sWord, nSuggLimit)
    def select (self, sPattern=""):
        "generator: returns all entries which morphology fits <sPattern>"
        yield from self.oMainDic.select(sPattern)oPersonalDic:        if self.if self.bExtendedDic:
            yield from self.oExtendedDic.select(sPattern)oExtendedDic:        if self.if self.bCommunityDic:
            yield from self.oCommunityDic.select(sPattern)oCommunityDic:        if self.if self.bPersonalDic:
            yield from self.oPersonalDic.select(sPattern)
    def drawPath (self, sWord):
        self.oMainDic.drawPath(sWord)oPersonalDic:        if self.if self.bExtendedDic:
            print("-----")
            self.oExtendedDic.drawPath(sWord)oExtendedDic:        if self.if self.bCommunityDic:
            print("-----")
            self.oCommunityDic.drawPath(sWord)oCommunityDic:        if self.if self.bPersonalDic:
            print("-----")
            self.oPersonalDic.drawPath(sWord)oPersonalDic: |