]> git.sur5r.net Git - cc65/blob - src/da65/scanner.c
Add #pragma charmap()
[cc65] / src / da65 / scanner.c
1 /*****************************************************************************/
2 /*                                                                           */
3 /*                                 scanner.c                                 */
4 /*                                                                           */
5 /*           Configuration file scanner for the da65 disassembler            */
6 /*                                                                           */
7 /*                                                                           */
8 /*                                                                           */
9 /* (C) 2000      Ullrich von Bassewitz                                       */
10 /*               Wacholderweg 14                                             */
11 /*               D-70597 Stuttgart                                           */
12 /* EMail:        uz@musoftware.de                                            */
13 /*                                                                           */
14 /*                                                                           */
15 /* This software is provided 'as-is', without any expressed or implied       */
16 /* warranty.  In no event will the authors be held liable for any damages    */
17 /* arising from the use of this software.                                    */
18 /*                                                                           */
19 /* Permission is granted to anyone to use this software for any purpose,     */
20 /* including commercial applications, and to alter it and redistribute it    */
21 /* freely, subject to the following restrictions:                            */
22 /*                                                                           */
23 /* 1. The origin of this software must not be misrepresented; you must not   */
24 /*    claim that you wrote the original software. If you use this software   */
25 /*    in a product, an acknowledgment in the product documentation would be  */
26 /*    appreciated but is not required.                                       */
27 /* 2. Altered source versions must be plainly marked as such, and must not   */
28 /*    be misrepresented as being the original software.                      */
29 /* 3. This notice may not be removed or altered from any source              */
30 /*    distribution.                                                          */
31 /*                                                                           */
32 /*****************************************************************************/
33
34
35
36 #include <stdarg.h>
37 #include <stdio.h>
38 #include <string.h>
39 #include <errno.h>
40 #include <ctype.h>
41
42 /* common */
43 #include "xsprintf.h"
44
45 /* ld65 */
46 #include "global.h"
47 #include "error.h"
48 #include "scanner.h"
49
50
51
52 /*****************************************************************************/
53 /*                                   Data                                    */
54 /*****************************************************************************/
55
56
57
58 /* Current token and attributes */
59 unsigned        CfgTok;
60 char            CfgSVal [CFG_MAX_IDENT_LEN+1];
61 long            CfgIVal;
62
63 /* Error location */
64 unsigned                CfgErrorLine;
65 unsigned                CfgErrorCol;
66
67 /* Input sources for the configuration */
68 static const char*      CfgFile         = 0;
69 static const char*      CfgBuf          = 0;
70
71 /* Other input stuff */
72 static int              C               = ' ';
73 static unsigned         InputLine       = 1;
74 static unsigned         InputCol        = 0;
75 static FILE*            InputFile       = 0;
76
77
78
79 /*****************************************************************************/
80 /*                              Error handling                               */
81 /*****************************************************************************/
82
83
84
85 void CfgWarning (const char* Format, ...)
86 /* Print a warning message adding file name and line number of the config file */
87 {
88     char Buf [512];
89     va_list ap;
90
91     va_start (ap, Format);
92     xvsprintf (Buf, sizeof (Buf), Format, ap);
93     va_end (ap);
94
95     Warning ("%s(%u): %s", CfgFile, CfgErrorLine, Buf);
96 }
97
98
99
100 void CfgError (const char* Format, ...)
101 /* Print an error message adding file name and line number of the config file */
102 {
103     char Buf [512];
104     va_list ap;
105
106     va_start (ap, Format);
107     xvsprintf (Buf, sizeof (Buf), Format, ap);
108     va_end (ap);
109
110     Error ("%s(%u): %s", CfgFile, CfgErrorLine, Buf);
111 }
112
113
114
115 /*****************************************************************************/
116 /*                                   Code                                    */
117 /*****************************************************************************/
118
119
120
121 static void NextChar (void)
122 /* Read the next character from the input file */
123 {
124     if (CfgBuf) {
125         /* Read from buffer */
126         C = (unsigned char)(*CfgBuf);
127         if (C == 0) {
128             C = EOF;
129         } else {
130             ++CfgBuf;
131         }
132     } else {
133         /* Read from the file */
134         C = getc (InputFile);
135     }
136
137     /* Count columns */
138     if (C != EOF) {
139         ++InputCol;
140     }
141
142     /* Count lines */
143     if (C == '\n') {
144         ++InputLine;
145         InputCol = 0;
146     }
147 }
148
149
150
151 static unsigned DigitVal (int C)
152 /* Return the value for a numeric digit */
153 {
154     if (isdigit (C)) {
155         return C - '0';
156     } else {
157         return toupper (C) - 'A' + 10;
158     }
159 }
160
161
162
163 void CfgNextTok (void)
164 /* Read the next token from the input stream */
165 {
166     unsigned I;
167
168
169 Again:
170     /* Skip whitespace */
171     while (isspace (C)) {
172         NextChar ();
173     }
174
175     /* Remember the current position */
176     CfgErrorLine = InputLine;
177     CfgErrorCol  = InputCol;
178
179     /* Identifier? */
180     if (C == '_' || isalpha (C)) {
181
182         /* Read the identifier */
183         I = 0;
184         while (C == '_' || isalnum (C)) {
185             if (I < CFG_MAX_IDENT_LEN) {
186                 CfgSVal [I++] = C;
187             }
188             NextChar ();
189         }
190         CfgSVal [I] = '\0';
191         CfgTok = CFGTOK_IDENT;
192         return;
193     }
194
195     /* Hex number? */
196     if (C == '$') {
197         NextChar ();
198         if (!isxdigit (C)) {
199             CfgError ("Hex digit expected");
200         }
201         CfgIVal = 0;
202         while (isxdigit (C)) {
203             CfgIVal = CfgIVal * 16 + DigitVal (C);
204             NextChar ();
205         }
206         CfgTok = CFGTOK_INTCON;
207         return;
208     }
209
210     /* Decimal number? */
211     if (isdigit (C)) {
212         CfgIVal = 0;
213         while (isdigit (C)) {
214             CfgIVal = CfgIVal * 10 + DigitVal (C);
215             NextChar ();
216         }
217         CfgTok = CFGTOK_INTCON;
218         return;
219     }
220
221     /* Other characters */
222     switch (C) {
223
224         case '{':
225             NextChar ();
226             CfgTok = CFGTOK_LCURLY;
227             break;
228
229         case '}':
230             NextChar ();
231             CfgTok = CFGTOK_RCURLY;
232             break;
233
234         case ';':
235             NextChar ();
236             CfgTok = CFGTOK_SEMI;
237             break;
238
239         case '.':
240             NextChar ();
241             CfgTok = CFGTOK_DOT;
242             break;
243
244         case ',':
245             NextChar ();
246             CfgTok = CFGTOK_COMMA;
247             break;
248
249         case '=':
250             NextChar ();
251             CfgTok = CFGTOK_EQ;
252             break;
253
254         case ':':
255             NextChar ();
256             CfgTok = CFGTOK_COLON;
257             break;
258
259         case '\"':
260             NextChar ();
261             I = 0;
262             while (C != '\"') {
263                 if (C == EOF || C == '\n') {
264                     CfgError ("Unterminated string");
265                 }
266                 if (I < CFG_MAX_IDENT_LEN) {
267                     CfgSVal [I++] = C;
268                 }
269                 NextChar ();
270             }
271             NextChar ();
272             CfgSVal [I] = '\0';
273             CfgTok = CFGTOK_STRCON;
274             break;
275
276         case '#':
277             /* Comment */
278             while (C != '\n' && C != EOF) {
279                 NextChar ();
280             }
281             if (C != EOF) {
282                 goto Again;
283             }
284             CfgTok = CFGTOK_EOF;
285             break;
286
287         case EOF:
288             CfgTok = CFGTOK_EOF;
289             break;
290
291         default:
292             CfgError ("Invalid character `%c'", C);
293
294     }
295 }
296
297
298
299 void CfgConsume (unsigned T, const char* Msg)
300 /* Skip a token, print an error message if not found */
301 {
302     if (CfgTok != T) {
303         CfgError (Msg);
304     }
305     CfgNextTok ();
306 }
307
308
309
310 void CfgConsumeLCurly (void)
311 /* Consume a left curly brace */
312 {
313     CfgConsume (CFGTOK_LCURLY, "`{' expected");
314 }
315
316
317
318 void CfgConsumeRCurly (void)
319 /* Consume a right curly brace */
320 {
321     CfgConsume (CFGTOK_RCURLY, "`}' expected");
322 }
323
324
325
326 void CfgConsumeSemi (void)
327 /* Consume a semicolon */
328 {
329     CfgConsume (CFGTOK_SEMI, "`;' expected");
330 }
331
332
333
334 void CfgConsumeColon (void)
335 /* Consume a colon */
336 {
337     CfgConsume (CFGTOK_COLON, "`:' expected");
338 }
339
340
341
342 void CfgOptionalComma (void)
343 /* Consume a comma if there is one */
344 {
345     if (CfgTok == CFGTOK_COMMA) {
346         CfgNextTok ();
347     }
348 }
349
350
351
352 void CfgOptionalAssign (void)
353 /* Consume an equal sign if there is one */
354 {
355     if (CfgTok == CFGTOK_EQ) {
356         CfgNextTok ();
357     }
358 }
359
360
361
362 void CfgAssureInt (void)
363 /* Make sure the next token is an integer */
364 {
365     if (CfgTok != CFGTOK_INTCON) {
366         CfgError ("Integer constant expected");
367     }
368 }
369
370
371
372 void CfgAssureStr (void)
373 /* Make sure the next token is a string constant */
374 {
375     if (CfgTok != CFGTOK_STRCON) {
376         CfgError ("String constant expected");
377     }
378 }
379
380
381
382 void CfgAssureIdent (void)
383 /* Make sure the next token is an identifier */
384 {
385     if (CfgTok != CFGTOK_IDENT) {
386         CfgError ("Identifier expected");
387     }
388 }
389
390
391
392 void CfgRangeCheck (long Lo, long Hi)
393 /* Check the range of CfgIVal */
394 {
395     if (CfgIVal < Lo || CfgIVal > Hi) {
396         CfgError ("Range error");
397     }
398 }
399
400
401
402 void CfgSpecialToken (const IdentTok* Table, unsigned Size, const char* Name)
403 /* Map an identifier to one of the special tokens in the table */
404 {
405     unsigned I;
406
407     /* We need an identifier */
408     if (CfgTok == CFGTOK_IDENT) {
409
410         /* Make it upper case */
411         I = 0;
412         while (CfgSVal [I]) {
413             CfgSVal [I] = toupper (CfgSVal [I]);
414             ++I;
415         }
416
417         /* Linear search */
418         for (I = 0; I < Size; ++I) {
419             if (strcmp (CfgSVal, Table [I].Ident) == 0) {
420                 CfgTok = Table [I].Tok;
421                 return;
422             }
423         }
424
425     }
426
427     /* Not found or no identifier */
428     CfgError ("%s expected", Name);
429 }
430
431
432
433 void CfgBoolToken (void)
434 /* Map an identifier or integer to a boolean token */
435 {
436     static const IdentTok Booleans [] = {
437         {   "YES",      CFGTOK_TRUE     },
438         {   "NO",       CFGTOK_FALSE    },
439         {   "TRUE",     CFGTOK_TRUE     },
440         {   "FALSE",    CFGTOK_FALSE    },
441     };
442
443     /* If we have an identifier, map it to a boolean token */
444     if (CfgTok == CFGTOK_IDENT) {
445         CfgSpecialToken (Booleans, ENTRY_COUNT (Booleans), "Boolean");
446     } else {
447         /* We expected an integer here */
448         if (CfgTok != CFGTOK_INTCON) {
449             CfgError ("Boolean value expected");
450         }
451         CfgTok = (CfgIVal == 0)? CFGTOK_FALSE : CFGTOK_TRUE;
452     }
453 }
454
455
456
457 void CfgSetName (const char* Name)
458 /* Set a name for a config file */
459 {
460     CfgFile = Name;
461 }
462
463
464
465 const char* CfgGetName (void)
466 /* Get the name of the config file */
467 {
468     return CfgFile? CfgFile : "";
469 }
470
471
472
473 void CfgSetBuf (const char* Buf)
474 /* Set a memory buffer for the config */
475 {
476     CfgBuf = Buf;
477 }
478
479
480
481 int CfgAvail (void)
482 /* Return true if we have a configuration available */
483 {
484     return CfgFile != 0 || CfgBuf != 0;
485 }
486
487
488
489 void CfgOpenInput (void)
490 /* Open the input file if we have one */
491 {
492     /* If we have a config name given, open the file, otherwise we will read
493      * from a buffer.
494      */
495     if (!CfgBuf) {
496
497         /* Open the file */
498         InputFile = fopen (CfgFile, "r");
499         if (InputFile == 0) {
500             Error ("Cannot open `%s': %s", CfgFile, strerror (errno));
501         }
502
503     }
504
505     /* Initialize variables */
506     C         = ' ';
507     InputLine = 1;
508     InputCol  = 0;
509
510     /* Start the ball rolling ... */
511     CfgNextTok ();
512 }
513
514
515
516 void CfgCloseInput (void)
517 /* Close the input file if we have one */
518 {
519     /* Close the input file if we had one */
520     if (InputFile) {
521         (void) fclose (InputFile);
522         InputFile = 0;
523     }
524 }
525
526
527
528