summary refs log tree commit diff stats
path: root/nim/wordrecg.pas
blob: 587005c2afdd39316595eb3f29134747b739f788 (plain) (blame)
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
//
//
//           The Nimrod Compiler
//        (c) Copyright 2008 Andreas Rumpf
//
//    See the file "copying.txt", included in this
//    distribution, for details about the copyright.
//
unit wordrecg;

// This module contains a word recognizer, i.e. a simple
// procedure which maps special words to an enumeration.
// It is primarily needed because Pascal's case statement
// does not support strings. Without this the code would
// be slow and unreadable.

interface

{$include 'config.inc'}

uses
  nsystem, hashes, strutils, idents;

type
  TSpecialWord = (wInvalid,
    // these are mapped to Nimrod keywords:
    //[[[cog
    //from string import split, capitalize
    //keywords = split(open("data/keywords.txt").read())
    //idents = ""
    //strings = ""
    //i = 1
    //for k in keywords:
    //  idents = idents + "w" + capitalize(k) + ", "
    //  strings = strings + "'" + k + "', "
    //  if i % 4 == 0:
    //    idents = idents + "\n"
    //    strings = strings + "\n"
    //  i = i + 1
    //cog.out(idents)
    //]]]
    wAddr, wAnd, wAs, wAsm, 
    wBlock, wBreak, wCase, wCast, 
    wConst, wContinue, wConverter, wDiscard, 
    wDiv, wElif, wElse, wEnd, 
    wEnum, wExcept, wException, wFinally, 
    wFor, wFrom, wGeneric, wIf, 
    wImplies, wImport, wIn, wInclude, 
    wIs, wIsnot, wIterator, wLambda, 
    wMacro, wMethod, wMod, wNil, 
    wNot, wNotin, wObject, wOf, 
    wOr, wOut, wProc, wPtr, 
    wRaise, wRef, wReturn, wShl, 
    wShr, wTemplate, wTry, wTuple, 
    wType, wVar, wWhen, wWhere, 
    wWhile, wWith, wWithout, wXor, 
    wYield, 
    //[[[end]]]
    // other special tokens:
    wColon, wEquals, wDot, wDotDot, wHat,
    wStar, wMinus,
    // pragmas and command line options:
    wMagic, wTypeCheck, wFinal, wProfiler,
    wObjChecks, wImportc, wExportc, wAlign, wNodecl, wPure,
    wVolatile, wRegister, wNostatic, wHeader, wNosideeffect, wNoreturn,
    wMerge, wLib, wDynlib, wCompilerproc, wCppmethod, wFatal,
    wError, wWarning, wHint, wLine, wPush, wPop,
    wDefine, wUndef, wLinedir, wStacktrace, wLinetrace, wPragma,
    wLink, wCompile, wLinksys, wFixupsystem, wDeprecated, wVarargs,
    wByref, wCallconv, wBreakpoint, wDebugger, wNimcall, wStdcall,
    wCdecl, wSafecall, wSyscall, wInline, wNoInline, wFastcall, wClosure,
    wNoconv, wOn, wOff, wChecks, wRangechecks, wBoundchecks,
    wOverflowchecks, wNilchecks, wAssertions, wWarnings, wW, wHints,
    wOptimization, wSpeed, wSize, wNone, wPath, wP,
    wD, wU, wDebuginfo, wCompileonly, wNolinking, wForcebuild,
    wF, wDeadCodeElim, wSafecode, wCompileTime,
    wGc, wRefc, wBoehm, wA, wOpt, wO,
    wApp, wConsole, wGui, wPassc, wT, wPassl,
    wL, wListcmd, wGendoc, wGenmapping,
    wOs, wCpu, wGenerate, wG, wC, wCpp,
    wYaml, wRun, wR, wVerbosity, wV, wHelp,
    wH, wSymbolFiles, wFieldChecks, wX, wVersion, wAdvanced,
    wSkipcfg, wSkipProjCfg, wCc, wGenscript, wCheckPoint, wCheckPoints,
    wMaxErr, wExpr, wStmt, wTypeDesc,
    wSubsChar, wAstCache, wAcyclic, wIndex,
    // commands:
    wCompileToC, wCompileToCpp, wCompileToEcmaScript,
    wPretty, wDoc, wPas,
    wGenDepend, wListDef, wCheck, wParse, wScan, wBoot, wLazy,
    wRst2html, wI,
    // special for the preprocessor of configuration files:
    wWrite, wPutEnv, wPrependEnv, wAppendEnv,
    // additional Pascal keywords:
    wArray, wBegin, wClass,
    wConstructor, wDestructor, wDo, wDownto,
    wExports, wFinalization, wFunction, wGoto,
    wImplementation, wInherited, wInitialization, wInterface,
    wLabel, wLibrary, wPacked,
    wProcedure, wProgram, wProperty, wRecord, wRepeat, wResourcestring,
    wSet, wThen, wThreadvar, wTo, wUnit, wUntil,
    wUses,
    // Pascal special tokens:
    wExternal, wOverload, wFar, wAssembler, wForward, wIfdef, wIfndef,
    wEndif
  );
  TSpecialWords = set of TSpecialWord;
const
  oprLow = ord(wColon);
  oprHigh = ord(wHat);
  specialWords: array [low(TSpecialWord)..high(TSpecialWord)]
                of string = ('',
    // keywords:
    //[[[cog
    //cog.out(strings)
    //]]]
    'addr', 'and', 'as', 'asm', 
    'block', 'break', 'case', 'cast', 
    'const', 'continue', 'converter', 'discard', 
    'div', 'elif', 'else', 'end', 
    'enum', 'except', 'exception', 'finally', 
    'for', 'from', 'generic', 'if', 
    'implies', 'import', 'in', 'include', 
    'is', 'isnot', 'iterator', 'lambda', 
    'macro', 'method', 'mod', 'nil', 
    'not', 'notin', 'object', 'of', 
    'or', 'out', 'proc', 'ptr', 
    'raise', 'ref', 'return', 'shl', 
    'shr', 'template', 'try', 'tuple', 
    'type', 'var', 'when', 'where', 
    'while', 'with', 'without', 'xor', 
    'yield', 
    //[[[end]]]
    // other special tokens:
    ':'+'', '='+'', '.'+'', '..', '^'+'',
    '*'+'', '-'+'',
    // pragmas and command line options:
    'magic', 'typecheck', 'final', 'profiler',
    'objchecks', 'importc', 'exportc', 'align', 'nodecl', 'pure',
    'volatile', 'register', 'nostatic', 'header', 'nosideeffect', 'noreturn',
    'merge', 'lib', 'dynlib', 'compilerproc', 'cppmethod', 'fatal',
    'error', 'warning', 'hint', 'line', 'push', 'pop',
    'define', 'undef', 'linedir', 'stacktrace', 'linetrace', 'pragma',
    'link', 'compile', 'linksys', 'fixupsystem', 'deprecated', 'varargs',
    'byref', 'callconv', 'breakpoint', 'debugger', 'nimcall', 'stdcall',
    'cdecl', 'safecall', 'syscall', 'inline', 'noinline', 'fastcall', 'closure',
    'noconv', 'on', 'off', 'checks', 'rangechecks', 'boundchecks',
    'overflowchecks', 'nilchecks', 'assertions', 'warnings', 'w'+'', 'hints',
    'optimization', 'speed', 'size', 'none', 'path', 'p'+'',
    'd'+'', 'u'+'', 'debuginfo', 'compileonly', 'nolinking', 'forcebuild',
    'f'+'', 'deadcodeelim', 'safecode', 'compiletime',
    'gc', 'refc', 'boehm', 'a'+'', 'opt', 'o'+'',
    'app', 'console', 'gui', 'passc', 't'+'', 'passl',
    'l'+'', 'listcmd', 'gendoc', 'genmapping',
    'os', 'cpu', 'generate', 'g'+'', 'c'+'', 'cpp',
    'yaml', 'run', 'r'+'', 'verbosity', 'v'+'', 'help',
    'h'+'', 'symbolfiles', 'fieldchecks', 'x'+'', 'version', 'advanced',
    'skipcfg', 'skipprojcfg', 'cc', 'genscript', 'checkpoint', 'checkpoints',
    'maxerr', 'expr', 'stmt', 'typedesc',
    'subschar', 'astcache', 'acyclic', 'index',
    // commands:
    'compiletoc', 'compiletocpp', 'compiletoecmascript',
    'pretty', 'doc', 'pas', 'gendepend', 'listdef', 'check', 'parse',
    'scan', 'boot', 'lazy', 'rst2html', 'i'+'',

    // special for the preprocessor of configuration files:
    'write', 'putenv', 'prependenv', 'appendenv',

    'array', 'begin', 'class',
    'constructor', 'destructor', 'do', 'downto',
    'exports', 'finalization', 'function', 'goto',
    'implementation', 'inherited', 'initialization', 'interface',
    'label', 'library', 'packed',
    'procedure', 'program', 'property', 'record', 'repeat', 'resourcestring',
    'set', 'then', 'threadvar', 'to', 'unit', 'until',
    'uses',

    // Pascal special tokens
    'external', 'overload', 'far', 'assembler', 'forward', 'ifdef', 'ifndef',
    'endif'
  );

function whichKeyword(id: PIdent): TSpecialWord; overload;
function whichKeyword(const id: String): TSpecialWord; overload;

function findStr(const a: array of string; const s: string): int;

implementation

function findStr(const a: array of string; const s: string): int;
var
  i: int;
begin
  for i := low(a) to high(a) do
    if cmpIgnoreStyle(a[i], s) = 0 then begin result := i; exit end;
  result := -1;
end;

function whichKeyword(const id: String): TSpecialWord; overload;
begin
  result := whichKeyword(getIdent(id))
end;

function whichKeyword(id: PIdent): TSpecialWord; overload;
begin
  if id.id < 0 then result := wInvalid
  else result := TSpecialWord(id.id);
end;

procedure initSpecials();
var
  s: TSpecialWord;
begin
  // initialize the keywords:
  for s := succ(low(specialWords)) to high(specialWords) do
    getIdent(specialWords[s],
             getNormalizedHash(specialWords[s])).id := ord(s)
end;

initialization
  initSpecials();
end.
n class="w"> = KeyStroke{tcell.KeyF9, 0} keyNames["f10"] = KeyStroke{tcell.KeyF10, 0} keyNames["f11"] = KeyStroke{tcell.KeyF11, 0} keyNames["f12"] = KeyStroke{tcell.KeyF12, 0} keyNames["f13"] = KeyStroke{tcell.KeyF13, 0} keyNames["f14"] = KeyStroke{tcell.KeyF14, 0} keyNames["f15"] = KeyStroke{tcell.KeyF15, 0} keyNames["f16"] = KeyStroke{tcell.KeyF16, 0} keyNames["f17"] = KeyStroke{tcell.KeyF17, 0} keyNames["f18"] = KeyStroke{tcell.KeyF18, 0} keyNames["f19"] = KeyStroke{tcell.KeyF19, 0} keyNames["f20"] = KeyStroke{tcell.KeyF20, 0} keyNames["f21"] = KeyStroke{tcell.KeyF21, 0} keyNames["f22"] = KeyStroke{tcell.KeyF22, 0} keyNames["f23"] = KeyStroke{tcell.KeyF23, 0} keyNames["f24"] = KeyStroke{tcell.KeyF24, 0} keyNames["f25"] = KeyStroke{tcell.KeyF25, 0} keyNames["f26"] = KeyStroke{tcell.KeyF26, 0} keyNames["f27"] = KeyStroke{tcell.KeyF27, 0} keyNames["f28"] = KeyStroke{tcell.KeyF28, 0} keyNames["f29"] = KeyStroke{tcell.KeyF29, 0} keyNames["f30"] = KeyStroke{tcell.KeyF30, 0} keyNames["f31"] = KeyStroke{tcell.KeyF31, 0} keyNames["f32"] = KeyStroke{tcell.KeyF32, 0} keyNames["f33"] = KeyStroke{tcell.KeyF33, 0} keyNames["f34"] = KeyStroke{tcell.KeyF34, 0} keyNames["f35"] = KeyStroke{tcell.KeyF35, 0} keyNames["f36"] = KeyStroke{tcell.KeyF36, 0} keyNames["f37"] = KeyStroke{tcell.KeyF37, 0} keyNames["f38"] = KeyStroke{tcell.KeyF38, 0} keyNames["f39"] = KeyStroke{tcell.KeyF39, 0} keyNames["f40"] = KeyStroke{tcell.KeyF40, 0} keyNames["f41"] = KeyStroke{tcell.KeyF41, 0} keyNames["f42"] = KeyStroke{tcell.KeyF42, 0} keyNames["f43"] = KeyStroke{tcell.KeyF43, 0} keyNames["f44"] = KeyStroke{tcell.KeyF44, 0} keyNames["f45"] = KeyStroke{tcell.KeyF45, 0} keyNames["f46"] = KeyStroke{tcell.KeyF46, 0} keyNames["f47"] = KeyStroke{tcell.KeyF47, 0} keyNames["f48"] = KeyStroke{tcell.KeyF48, 0} keyNames["f49"] = KeyStroke{tcell.KeyF49, 0} keyNames["f50"] = KeyStroke{tcell.KeyF50, 0} keyNames["f51"] = KeyStroke{tcell.KeyF51, 0} keyNames["f52"] = KeyStroke{tcell.KeyF52, 0} keyNames["f53"] = KeyStroke{tcell.KeyF53, 0} keyNames["f54"] = KeyStroke{tcell.KeyF54, 0} keyNames["f55"] = KeyStroke{tcell.KeyF55, 0} keyNames["f56"] = KeyStroke{tcell.KeyF56, 0} keyNames["f57"] = KeyStroke{tcell.KeyF57, 0} keyNames["f58"] = KeyStroke{tcell.KeyF58, 0} keyNames["f59"] = KeyStroke{tcell.KeyF59, 0} keyNames["f60"] = KeyStroke{tcell.KeyF60, 0} keyNames["f61"] = KeyStroke{tcell.KeyF61, 0} keyNames["f62"] = KeyStroke{tcell.KeyF62, 0} keyNames["f63"] = KeyStroke{tcell.KeyF63, 0} keyNames["f64"] = KeyStroke{tcell.KeyF64, 0} keyNames["c-space"] = KeyStroke{tcell.KeyCtrlSpace, 0} keyNames["c-a"] = KeyStroke{tcell.KeyCtrlA, 0} keyNames["c-b"] = KeyStroke{tcell.KeyCtrlB, 0} keyNames["c-c"] = KeyStroke{tcell.KeyCtrlC, 0} keyNames["c-d"] = KeyStroke{tcell.KeyCtrlD, 0} keyNames["c-e"] = KeyStroke{tcell.KeyCtrlE, 0} keyNames["c-f"] = KeyStroke{tcell.KeyCtrlF, 0} keyNames["c-g"] = KeyStroke{tcell.KeyCtrlG, 0} keyNames["c-h"] = KeyStroke{tcell.KeyCtrlH, 0} keyNames["c-i"] = KeyStroke{tcell.KeyCtrlI, 0} keyNames["c-j"] = KeyStroke{tcell.KeyCtrlJ, 0} keyNames["c-k"] = KeyStroke{tcell.KeyCtrlK, 0} keyNames["c-l"] = KeyStroke{tcell.KeyCtrlL, 0} keyNames["c-m"] = KeyStroke{tcell.KeyCtrlM, 0} keyNames["c-n"] = KeyStroke{tcell.KeyCtrlN, 0} keyNames["c-o"] = KeyStroke{tcell.KeyCtrlO, 0} keyNames["c-p"] = KeyStroke{tcell.KeyCtrlP, 0} keyNames["c-q"] = KeyStroke{tcell.KeyCtrlQ, 0} keyNames["c-r"] = KeyStroke{tcell.KeyCtrlR, 0} keyNames["c-s"] = KeyStroke{tcell.KeyCtrlS, 0} keyNames["c-t"] = KeyStroke{tcell.KeyCtrlT, 0} keyNames["c-u"] = KeyStroke{tcell.KeyCtrlU, 0} keyNames["c-v"] = KeyStroke{tcell.KeyCtrlV, 0} keyNames["c-w"] = KeyStroke{tcell.KeyCtrlW, 0} keyNames["c-x"] = KeyStroke{tcell.KeyCtrlX, 0} keyNames["c-y"] = KeyStroke{tcell.KeyCtrlY, 0} keyNames["c-z"] = KeyStroke{tcell.KeyCtrlZ, 0} keyNames["c-]"] = KeyStroke{tcell.KeyCtrlLeftSq, 0} keyNames["c-\\"] = KeyStroke{tcell.KeyCtrlBackslash, 0} keyNames["c-["] = KeyStroke{tcell.KeyCtrlRightSq, 0} keyNames["c-^"] = KeyStroke{tcell.KeyCtrlCarat, 0} keyNames["c-_"] = KeyStroke{tcell.KeyCtrlUnderscore, 0} keyNames["NUL"] = KeyStroke{tcell.KeyNUL, 0} keyNames["SOH"] = KeyStroke{tcell.KeySOH, 0} keyNames["STX"] = KeyStroke{tcell.KeySTX, 0} keyNames["ETX"] = KeyStroke{tcell.KeyETX, 0} keyNames["EOT"] = KeyStroke{tcell.KeyEOT, 0} keyNames["ENQ"] = KeyStroke{tcell.KeyENQ, 0} keyNames["ACK"] = KeyStroke{tcell.KeyACK, 0} keyNames["BEL"] = KeyStroke{tcell.KeyBEL, 0} keyNames["BS"] = KeyStroke{tcell.KeyBS, 0} keyNames["tab"] = KeyStroke{tcell.KeyTAB, 0} keyNames["LF"] = KeyStroke{tcell.KeyLF, 0} keyNames["VT"] = KeyStroke{tcell.KeyVT, 0} keyNames["FF"] = KeyStroke{tcell.KeyFF, 0} keyNames["CR"] = KeyStroke{tcell.KeyCR, 0} keyNames["SO"] = KeyStroke{tcell.KeySO, 0} keyNames["SI"] = KeyStroke{tcell.KeySI, 0} keyNames["DLE"] = KeyStroke{tcell.KeyDLE, 0} keyNames["DC1"] = KeyStroke{tcell.KeyDC1, 0} keyNames["DC2"] = KeyStroke{tcell.KeyDC2, 0} keyNames["DC3"] = KeyStroke{tcell.KeyDC3, 0} keyNames["DC4"] = KeyStroke{tcell.KeyDC4, 0} keyNames["NAK"] = KeyStroke{tcell.KeyNAK, 0} keyNames["SYN"] = KeyStroke{tcell.KeySYN, 0} keyNames["ETB"] = KeyStroke{tcell.KeyETB, 0} keyNames["CAN"] = KeyStroke{tcell.KeyCAN, 0} keyNames["EM"] = KeyStroke{tcell.KeyEM, 0} keyNames["SUB"] = KeyStroke{tcell.KeySUB, 0} keyNames["ESC"] = KeyStroke{tcell.KeyESC, 0} keyNames["FS"] = KeyStroke{tcell.KeyFS, 0} keyNames["GS"] = KeyStroke{tcell.KeyGS, 0} keyNames["RS"] = KeyStroke{tcell.KeyRS, 0} keyNames["US"] = KeyStroke{tcell.KeyUS, 0} keyNames["DEL"] = KeyStroke{tcell.KeyDEL, 0} }