-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcobol.c
256 lines (236 loc) · 8.68 KB
/
cobol.c
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
/*
* Cobol language mode for QEmacs.
*
* Copyright (c) 2015-2017 Charlie Gordon.
*
* 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 2 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 library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "qe.h"
/*---------------- COBOL coloring ----------------*/
#define COBOL_KEYWORD_SIZE 24
static char const cobol_keywords[] = {
"|identification|procedure|data|division|program-id|author|file|linkage"
"|section|working-storage|environment|configuration|input-output"
"|source-computer|object-computer|special-names"
"|date-written|date-compiled|file-control|i-o-control"
"|if|then|else|end-if|of|is|equal|less|greater|than|to|into|not|or|and"
"|compute|end-compute|call|end-call|using|length|rounded"
"|move|set|up|down|address|add|end-add|subtract|end-subtract"
"|multiply|end-multiply|divide|by|giving|remainder|end-divide"
"|perform|end-perform|varying|from|until|thru|after|before|test"
"|exec|end-exec|on|size|error|exit|initialize|continue"
"|evaluate|when|other|end-evaluate|search"
"|display|at|line|column|col|plus|minus|with|highlight|lowlight"
"|screen|blank|erase|background-color|foreground-color|reverse-video|blink"
"|with|no|advancing|upon|end-display|eos"
"|function|end|program|stop|run|returning"
"|filler|value|values|occurs|times|redefines|indexed|auto"
"|constant|as"
"|accept|end-accept|goback|go|to|depending|on"
"|copy|inspect|replacing|converting|leading|trailing|to|tallying|"
"|first|last|for|all|by|characters|initial"
"|string|end-string|unstring|end-unstring|delimited|by|into"
"|open|input|output|close|read|write"
"|select|assign|organization|line|sequential|status"
"|label|records|contains|are|record|block|recording|mode|standard"
"|next|sentence"
"|usage|any|length"
};
static char const cobol_types[] = {
"|fd|pic|picture|zero|zeros|zeroes|space|spaces|true|false"
//"|byteint|char|float|display-numeric"
"|group|native|binary|pointer|binary-char|binary-long|unsigned"
"|character|date|decimal|graphic|integer|numeric|smallint"
"|time|timestamp|varchar|vargraphic"
"|comp|comp-1|comp-2|comp-3|comp-4|comp-5|comp-6|display-1"
};
enum {
COBOL_STYLE_TEXT = QE_STYLE_DEFAULT,
COBOL_STYLE_COMMENT = QE_STYLE_COMMENT,
COBOL_STYLE_STRING = QE_STYLE_STRING,
COBOL_STYLE_KEYWORD = QE_STYLE_KEYWORD,
COBOL_STYLE_SYMBOL = QE_STYLE_NUMBER,
COBOL_STYLE_TYPE = QE_STYLE_TYPE,
COBOL_STYLE_NUMBER = QE_STYLE_NUMBER,
COBOL_STYLE_PREPROCESS = QE_STYLE_PREPROCESS,
COBOL_STYLE_HEADING = QE_STYLE_PREPROCESS,
COBOL_STYLE_IDENTIFIER = QE_STYLE_VARIABLE,
};
enum {
IN_COBOL_SOURCE_FORMAT = 0x03,
IN_COBOL_FIXED_FORMAT = 0x01, /* source format is fixed */
IN_COBOL_FREE_FORMAT = 0x02, /* source format is free */
};
static void cobol_colorize_line(QEColorizeContext *cp,
unsigned int *str, int n, ModeDef *syn)
{
char keyword[COBOL_KEYWORD_SIZE];
int i = 0, start = i, j, c, style, len, indent, heading = 0, preproc = 0, comment = -1;
int state = cp->colorize_state;
for (; i < n && qe_isblank(str[i]); i++)
continue;
indent = i;
if (str[i] == '*' && str[i + 1] == '>')
comment = i;
if (str[i] == '>')
goto check_source_format;
if (!(state & IN_COBOL_FREE_FORMAT)) {
if (!(state & IN_COBOL_FIXED_FORMAT)) {
check_source_format:
if (comment < 0 && ustristr(str, "source") != NULL) {
if (ustristr(str, "free")) {
state &= ~IN_COBOL_FIXED_FORMAT;
state |= IN_COBOL_FREE_FORMAT;
preproc = 1;
} else
if (ustristr(str, "fixed")) {
state &= ~IN_COBOL_FREE_FORMAT;
state |= IN_COBOL_FIXED_FORMAT;
preproc = 1;
}
if (preproc) {
i = n;
SET_COLOR(str, start, i, COBOL_STYLE_PREPROCESS);
}
} else {
if (comment >= 0 && comment < 6) {
state |= IN_COBOL_FREE_FORMAT;
} else
if (i < 6 && qe_isdigit(str[i])) {
for (j = i + 1; j < n && qe_isdigit(str[j]); j++)
continue;
if (j == 6) {
heading = 6;
if (i == 0) {
state |= IN_COBOL_FIXED_FORMAT;
}
}
}
}
}
if ((state & IN_COBOL_FIXED_FORMAT) || heading || i == 6) {
i = heading = 6;
SET_COLOR(str, start, i, COBOL_STYLE_HEADING);
}
}
style = 0;
while (i < n) {
start = i;
c = str[i++];
switch (c) {
case '*':
if ((i == 7 && heading == 6) || i == indent + 1 || str[i] == '>') {
i = n;
style = COBOL_STYLE_COMMENT;
break;
}
continue;
case '\"':
case '\'':
while (i < n && str[i++] != (unsigned int)c)
continue;
style = COBOL_STYLE_STRING;
break;
case '-':
case '+':
if (qe_isdigit(str[i]) || (str[i] == '.' && qe_isdigit(str[i + 1])))
goto number;
break;
case '.':
if (qe_isdigit(str[i]))
goto number;
style = COBOL_STYLE_KEYWORD;
break;
default:
if (qe_isdigit(c)) {
/* try and parse a number */
number:
for (; i < n && qe_isdigit(str[i]); i++)
continue;
if (str[i] == '.' && qe_isdigit(str[i + 1])) {
for (i += 2; i < n && qe_isdigit(str[i]); i++)
continue;
}
if (i >= n || !(qe_isalnum(str[i]) || str[i] == '-')) {
style = COBOL_STYLE_NUMBER;
break;
} else {
/* restart for identifier */
i = start;
c = str[i++];
}
}
if (qe_isalnum_(c)) {
/* parse identifiers and keywords */
len = 0;
keyword[len++] = qe_tolower(c);
for (; i < n; i++) {
int c = str[i];
if (!qe_isalnum_(c) && !qe_findchar("-$", c))
break;
if (len < countof(keyword) - 1)
keyword[len++] = qe_tolower(c);
}
keyword[len] = '\0';
if (strfind(syn->keywords, keyword)) {
style = COBOL_STYLE_KEYWORD;
break;
}
if (strfind(syn->types, keyword)) {
style = COBOL_STYLE_TYPE;
break;
}
//style = COBOL_STYLE_IDENTIFIER;
break;
}
continue;
}
if (style) {
SET_COLOR(str, start, i, style);
style = 0;
}
}
cp->colorize_state = state;
}
static int cobol_mode_probe(ModeDef *mode, ModeProbeData *pd)
{
const u8 *p;
/* trust the file extension and/or shell handler */
if (match_extension(pd->filename, mode->extensions)
|| match_shell_handler(cs8(pd->buf), mode->shell_handlers)) {
return 80;
}
/* scan for a cobol comment */
/* XXX: need flags in ModeProbeData to verify text buffer */
for (p = pd->buf; *p == ' '; p++)
continue;
if (p[0] == '*' && p[1] == '>')
return 60;
return 1;
}
static ModeDef cobol_mode = {
.name = "Cobol",
.extensions = "cbl|cob|cpy",
.keywords = cobol_keywords,
.types = cobol_types,
.mode_probe = cobol_mode_probe,
.colorize_func = cobol_colorize_line,
};
static int cobol_init(void)
{
qe_register_mode(&cobol_mode, MODEF_SYNTAX);
return 0;
}
qe_module_init(cobol_init);