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
|
(* NameKey.mod provides a dynamic binary tree name to key.
Copyright (C) 2001-2025 Free Software Foundation, Inc.
Contributed by Gaius Mulley <gaius.mulley@southwales.ac.uk>.
This file is part of GNU Modula-2.
GNU Modula-2 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, or (at your option)
any later version.
GNU Modula-2 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 GNU Modula-2; see the file COPYING3. If not see
<http://www.gnu.org/licenses/>. *)
IMPLEMENTATION MODULE NameKey ;
FROM SYSTEM IMPORT ADR ;
FROM Storage IMPORT ALLOCATE, DEALLOCATE ;
FROM Indexing IMPORT Index, InitIndex, GetIndice, PutIndice, InBounds ;
FROM StrIO IMPORT WriteString, WriteLn ;
FROM StdIO IMPORT Write ;
FROM NumberIO IMPORT WriteCard ;
FROM StrLib IMPORT StrLen ;
FROM libc IMPORT strlen ;
FROM ASCII IMPORT nul ;
TYPE
PtrToChar = POINTER TO CHAR ;
NameNode = POINTER TO Node ;
Node = RECORD
Data : PtrToChar ;
Key : Name ;
Left,
Right: NameNode ;
END ;
Comparison = (less, equal, greater) ;
VAR
BinaryTree: NameNode ;
KeyIndex : Index ;
LastIndice: CARDINAL ;
(*
GetKey - returns the name, a, of the key, Key.
*)
PROCEDURE GetKey (key: Name; VAR a: ARRAY OF CHAR) ;
VAR
p : PtrToChar ;
i, higha: CARDINAL ;
BEGIN
p := KeyToCharStar(key) ;
i := 0 ;
higha := HIGH(a) ;
WHILE (p#NIL) AND (i<=higha) AND (p^#nul) DO
a[i] := p^ ;
INC(p) ;
INC(i)
END ;
IF i<=higha
THEN
a[i] := nul
END
END GetKey ;
(*
IsKey - returns TRUE if string, a, is currently a key.
We dont use the Compare function, we inline it and avoid
converting, a, into a String, for speed.
*)
PROCEDURE IsKey (a: ARRAY OF CHAR) : BOOLEAN ;
VAR
child : NameNode ;
p : PtrToChar ;
i,
higha : CARDINAL ;
BEGIN
(* firstly set up the initial values of child, using sentinal node *)
child := BinaryTree^.Left ;
IF child#NIL
THEN
REPEAT
i := 0 ;
higha := HIGH(a) ;
p := KeyToCharStar(child^.Key) ;
WHILE (i<=higha) AND (a[i]#nul) DO
IF a[i]<p^
THEN
child := child^.Left ;
i := higha
ELSIF a[i]>p^
THEN
child := child^.Right ;
i := higha
ELSE
IF (a[i]=nul) OR (i=higha)
THEN
IF p^=nul
THEN
RETURN( TRUE )
ELSE
child := child^.Left
END
END ;
INC(p)
END ;
INC(i)
END ;
UNTIL child=NIL
END ;
RETURN( FALSE ) ;
END IsKey ;
(*
DoMakeKey - finds the name, n, in the tree or else create a name.
If a name is found then the string, n, is deallocated.
*)
PROCEDURE DoMakeKey (n: PtrToChar; higha: CARDINAL) : Name ;
VAR
result: Comparison ;
father,
child : NameNode ;
k : Name ;
BEGIN
result := FindNodeAndParentInTree(n, child, father) ;
IF child=NIL
THEN
IF result=less
THEN
NEW(child) ;
father^.Left := child
ELSIF result=greater
THEN
NEW(child) ;
father^.Right := child
END ;
WITH child^ DO
Right := NIL ;
Left := NIL ;
INC(LastIndice) ;
Key := LastIndice ;
Data := n ;
PutIndice(KeyIndex, Key, n)
END ;
k := LastIndice
ELSE
DEALLOCATE(n, higha+1) ;
k := child^.Key
END ;
RETURN( k )
END DoMakeKey ;
(*
MakeKey - returns the Key of the symbol, a. If a is not in the
name table then it is added, otherwise the Key of a is returned
directly. Note that the name table has no scope - it merely
presents a more convienient way of expressing strings. By a Key.
*)
PROCEDURE MakeKey (a: ARRAY OF CHAR) : Name ;
VAR
n, p : PtrToChar ;
i,
higha : CARDINAL ;
BEGIN
higha := StrLen(a) ;
ALLOCATE(p, higha+1) ;
IF p=NIL
THEN
HALT (* out of memory error *)
ELSE
n := p ;
i := 0 ;
WHILE i<higha DO
p^ := a[i] ;
INC(i) ;
INC(p)
END ;
p^ := nul ;
RETURN( DoMakeKey(n, higha) )
END
END MakeKey ;
(*
makekey - returns the Key of the symbol, a. If a is not in the
name table then it is added, otherwise the Key of a is returned
directly. Note that the name table has no scope - it merely
presents a more convienient way of expressing strings. By a Key.
These keys last for the duration of compilation.
*)
PROCEDURE makekey (a: ADDRESS) : Name ;
VAR
n,
p, pa : PtrToChar ;
i,
higha : CARDINAL ;
BEGIN
IF a=NIL
THEN
RETURN( NulName )
ELSE
higha := strlen(a) ;
ALLOCATE(p, higha+1) ;
IF p=NIL
THEN
HALT (* out of memory error *)
ELSE
n := p ;
pa := a ;
i := 0 ;
WHILE i<higha DO
p^ := pa^ ;
INC(i) ;
INC(p) ;
INC(pa)
END ;
p^ := nul ;
RETURN( DoMakeKey(n, higha) )
END
END
END makekey ;
(*
LengthKey - returns the StrLen of Key.
*)
PROCEDURE LengthKey (Key: Name) : CARDINAL ;
VAR
i: CARDINAL ;
p: PtrToChar ;
BEGIN
i := 0 ;
IF Key # NulName
THEN
p := KeyToCharStar (Key) ;
WHILE p^ # nul DO
INC (i) ;
INC (p)
END
END ;
RETURN i
END LengthKey ;
(*
Compare - return the result of Names[i] with Names[j]
*)
PROCEDURE Compare (pi: PtrToChar; j: Name) : Comparison ;
VAR
pj: PtrToChar ;
c1, c2: CHAR ;
BEGIN
pj := KeyToCharStar(j) ;
c1 := pi^ ;
c2 := pj^ ;
WHILE (c1#nul) OR (c2#nul) DO
IF c1<c2
THEN
RETURN( less )
ELSIF c1>c2
THEN
RETURN( greater )
ELSE
INC(pi) ;
INC(pj) ;
c1 := pi^ ;
c2 := pj^
END
END ;
RETURN( equal )
END Compare ;
(*
FindNodeAndParentInTree - search BinaryTree for a name.
If this name is found in the BinaryTree then
child is set to this name and father is set to the node above.
A comparison is returned to assist adding entries into this tree.
*)
PROCEDURE FindNodeAndParentInTree (n: PtrToChar; VAR child, father: NameNode) : Comparison ;
VAR
result: Comparison ;
BEGIN
(* firstly set up the initial values of child and father, using sentinal node *)
father := BinaryTree ;
child := BinaryTree^.Left ;
IF child=NIL
THEN
RETURN( less )
ELSE
REPEAT
result := Compare(n, child^.Key) ;
IF result=less
THEN
father := child ;
child := child^.Left
ELSIF result=greater
THEN
father := child ;
child := child^.Right
END
UNTIL (child=NIL) OR (result=equal) ;
RETURN( result )
END
END FindNodeAndParentInTree ;
(*
IsSameExcludingCase - returns TRUE if key1 and key2 are
the same. It is case insensitive.
This function deliberately inlines CAP for speed.
*)
PROCEDURE IsSameExcludingCase (key1, key2: Name) : BOOLEAN ;
VAR
pi, pj: PtrToChar ;
c1, c2: CHAR ;
BEGIN
IF key1=key2
THEN
RETURN( TRUE )
ELSE
pi := KeyToCharStar(key1) ;
pj := KeyToCharStar(key2) ;
c1 := pi^ ;
c2 := pj^ ;
WHILE (c1#nul) AND (c2#nul) DO
IF (c1=c2) OR
(((c1>='A') AND (c1<='Z')) AND (c2=CHR(ORD(c1)-ORD('A')+ORD('a')))) OR
(((c2>='A') AND (c2<='Z')) AND (c1=CHR(ORD(c2)-ORD('A')+ORD('a'))))
THEN
INC(pi) ;
INC(pj) ;
c1 := pi^ ;
c2 := pj^
ELSE
(* difference found *)
RETURN( FALSE )
END
END ;
RETURN( c1=c2 )
END
END IsSameExcludingCase ;
(*
KeyToCharStar - returns the C char * string equivalent for, key.
*)
PROCEDURE KeyToCharStar (key: Name) : ADDRESS ;
BEGIN
IF (key=NulName) OR (NOT InBounds(KeyIndex, key))
THEN
RETURN( NIL )
ELSE
RETURN( GetIndice(KeyIndex, key) )
END
END KeyToCharStar ;
PROCEDURE WriteKey (key: Name) ;
VAR
s: PtrToChar ;
BEGIN
s := KeyToCharStar(key) ;
WHILE (s#NIL) AND (s^#nul) DO
Write(s^) ;
INC(s)
END
END WriteKey ;
(*
CharKey - returns the key[i] character.
*)
PROCEDURE CharKey (key: Name; i: CARDINAL) : CHAR ;
VAR
p: PtrToChar ;
BEGIN
IF i >= LengthKey (key)
THEN
HALT
END ;
p := KeyToCharStar (key) ;
INC (p, i) ;
RETURN p^
END CharKey ;
BEGIN
LastIndice := 0 ;
KeyIndex := InitIndex(1) ;
NEW(BinaryTree) ;
BinaryTree^.Left := NIL
END NameKey.
|