]> git.sur5r.net Git - cc65/blob - src/da65/scanner.h
fca05ed42fc8cbfd1746ace8784f4f74a643afb3
[cc65] / src / da65 / scanner.h
1 /*****************************************************************************/
2 /*                                                                           */
3 /*                                 scanner.h                                 */
4 /*                                                                           */
5 /*           Configuration file scanner for the da65 disassembler            */
6 /*                                                                           */
7 /*                                                                           */
8 /*                                                                           */
9 /* (C) 2000-2006 Ullrich von Bassewitz                                       */
10 /*               Römerstrasse 52                                             */
11 /*               D-70794 Filderstadt                                         */
12 /* EMail:        uz@cc65.org                                                 */
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 #ifndef SCANNER_H
37 #define SCANNER_H
38
39
40
41 /*****************************************************************************/
42 /*                                   Data                                    */
43 /*****************************************************************************/
44
45
46
47 /* Info file tokens */
48 typedef enum token_t {
49     INFOTOK_NONE,
50     INFOTOK_INTCON,
51     INFOTOK_STRCON,
52     INFOTOK_CHARCON,
53     INFOTOK_IDENT,
54     INFOTOK_LCURLY,
55     INFOTOK_RCURLY,
56     INFOTOK_SEMI,
57     INFOTOK_COMMA,
58     INFOTOK_EQ,
59     INFOTOK_COLON,
60     INFOTOK_DOT,
61     INFOTOK_EOF,
62
63     /* Special tokens */
64     INFOTOK_GLOBAL,
65     INFOTOK_RANGE,
66     INFOTOK_LABEL,
67     INFOTOK_ASMINC,
68
69     /* Global section */
70     INFOTOK_COMMENTS,
71     INFOTOK_CPU,
72     INFOTOK_HEXOFFS,
73     INFOTOK_INPUTNAME,
74     INFOTOK_INPUTOFFS,
75     INFOTOK_INPUTSIZE,
76     INFOTOK_LABELBREAK,
77     INFOTOK_OUTPUTNAME,
78     INFOTOK_PAGELENGTH,
79     INFOTOK_STARTADDR,
80
81     /* Range section */
82     INFOTOK_START,
83     INFOTOK_END,
84     INFOTOK_TYPE,
85
86     INFOTOK_CODE,
87     INFOTOK_BYTETAB,
88     INFOTOK_DBYTETAB,
89     INFOTOK_WORDTAB,
90     INFOTOK_DWORDTAB,
91     INFOTOK_ADDRTAB,
92     INFOTOK_RTSTAB,
93     INFOTOK_TEXTTAB,
94     INFOTOK_SKIP,
95
96     /* Label section */
97     INFOTOK_NAME,
98     INFOTOK_COMMENT,
99     INFOTOK_ADDR,
100     INFOTOK_SIZE,
101
102     /* ASMINC section */
103     INFOTOK_FILE,
104     INFOTOK_COMMENTSTART,
105     INFOTOK_IGNOREUNKNOWN,
106
107     /* */
108     INFOTOK_TRUE,
109     INFOTOK_FALSE
110 } token_t;
111
112
113 /* Mapping table entry, special identifier --> token */
114 typedef struct IdentTok IdentTok;
115 struct IdentTok {
116     const char*         Ident;          /* Identifier */
117     token_t             Tok;            /* Token for identifier */
118 };
119 #define ENTRY_COUNT(s)  (sizeof (s) / sizeof (s [0]))
120
121
122
123 /* Current token and attributes */
124 #define CFG_MAX_IDENT_LEN  255
125 extern unsigned         InfoTok;
126 extern char             InfoSVal[CFG_MAX_IDENT_LEN+1];
127 extern long             InfoIVal;
128
129 /* Error location */
130 extern unsigned         InfoErrorLine;
131 extern unsigned         InfoErrorCol;
132
133
134
135 /*****************************************************************************/
136 /*                                   Code                                    */
137 /*****************************************************************************/
138
139
140
141 void InfoWarning (const char* Format, ...);
142 /* Print a warning message adding file name and line number of the config file */
143
144 void InfoError (const char* Format, ...);
145 /* Print an error message adding file name and line number of the config file */
146
147 void InfoNextTok (void);
148 /* Read the next token from the input stream */
149
150 void InfoConsume (unsigned T, const char* Msg);
151 /* Skip a token, print an error message if not found */
152
153 void InfoConsumeLCurly (void);
154 /* Consume a left curly brace */
155
156 void InfoConsumeRCurly (void);
157 /* Consume a right curly brace */
158
159 void InfoConsumeSemi (void);
160 /* Consume a semicolon */
161
162 void InfoConsumeColon (void);
163 /* Consume a colon */
164
165 void InfoOptionalComma (void);
166 /* Consume a comma if there is one */
167
168 void InfoOptionalAssign (void);
169 /* Consume an equal sign if there is one */
170
171 void InfoAssureInt (void);
172 /* Make sure the next token is an integer */
173
174 void InfoAssureStr (void);
175 /* Make sure the next token is a string constant */
176
177 void InfoAssureChar (void);
178 /* Make sure the next token is a char constant */
179
180 void InfoAssureIdent (void);
181 /* Make sure the next token is an identifier */
182
183 void InfoRangeCheck (long Lo, long Hi);
184 /* Check the range of InfoIVal */
185
186 void InfoSpecialToken (const IdentTok* Table, unsigned Size, const char* Name);
187 /* Map an identifier to one of the special tokens in the table */
188
189 void InfoBoolToken (void);
190 /* Map an identifier or integer to a boolean token */
191
192 void InfoSetName (const char* Name);
193 /* Set a name for a config file */
194
195 const char* InfoGetName (void);
196 /* Get the name of the config file */
197
198 int InfoAvail ();
199 /* Return true if we have an info file given */
200
201 void InfoOpenInput (void);
202 /* Open the input file if we have one */
203
204 void InfoCloseInput (void);
205 /* Close the input file if we have one */
206
207
208
209 /* End of scanner.h */
210 #endif
211
212
213