forked from universal-ctags/ctags
-
Notifications
You must be signed in to change notification settings - Fork 0
/
css.c
229 lines (210 loc) · 6.77 KB
/
css.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
/***************************************************************************
* css.c
* Character-based parser for Css definitions
* Author - Iago Rubio <iagorubio(at)users.sourceforge.net>
**************************************************************************/
#include "general.h"
#include <string.h>
#include <ctype.h>
#include "parse.h"
#include "read.h"
typedef enum eCssKinds {
K_NONE = -1, K_CLASS, K_SELECTOR, K_ID
} cssKind;
static kindOption CssKinds [] = {
{ TRUE, 'c', "class", "classes" },
{ TRUE, 's', "selector", "selectors" },
{ TRUE, 'i', "id", "identities" }
};
typedef enum _CssParserState { // state of parsing
P_STATE_NONE, // default state
P_STATE_IN_COMMENT, // into a comment, only multi line in CSS
P_STATE_IN_SINGLE_STRING, // into a single quoted string
P_STATE_IN_DOUBLE_STRING, // into a double quoted string
P_STATE_IN_DEFINITION, // on the body of the style definition, nothing for us
P_STATE_IN_MEDIA, // on a @media declaration, can be multi-line
P_STATE_IN_IMPORT, // on a @import declaration, can be multi-line
P_STATE_IN_NAMESPACE, // on a @namespace declaration
P_STATE_IN_PAGE, // on a @page declaration
P_STATE_IN_FONTFACE, // on a @font-face declaration
P_STATE_AT_END // end of parsing
} CssParserState;
static void makeCssSimpleTag( vString *name, cssKind kind, boolean delete )
{
if (kind == K_CLASS) {
vStringStripTrailing(name);
}
vStringTerminate (name);
makeSimpleTag (name, CssKinds, kind);
vStringClear (name);
if( delete )
vStringDelete (name);
}
static boolean isCssDeclarationAllowedChar( const unsigned char *cp )
{
return isalnum ((int) *cp) ||
isspace ((int) *cp) ||
*cp == '_' || // allowed char
*cp == '-' || // allowed char
*cp == '+' || // allow all sibling in a single tag
*cp == '>' || // allow all child in a single tag
*cp == '{' || // allow the start of the declaration
*cp == '.' || // allow classes and selectors
*cp == ',' || // allow multiple declarations
*cp == ':' || // allow pseudo classes
*cp == '*' || // allow globs as P + *
*cp == '#'; // allow ids
}
static CssParserState parseCssDeclaration( const unsigned char **position, cssKind kind )
{
vString *name = vStringNew ();
const unsigned char *cp = *position;
// pick to the end of line including children and sibling
// if declaration is multiline go for the next line
while ( isCssDeclarationAllowedChar(cp) ||
*cp == '\0' ) // track the end of line into the loop
{
if( (int) *cp == '\0' )
{
cp = fileReadLine ();
if( cp == NULL ){
makeCssSimpleTag(name, kind, TRUE);
*position = cp;
return P_STATE_AT_END;
}
}
else if( *cp == ',' )
{
makeCssSimpleTag(name, kind, TRUE);
*position = ++cp;
return P_STATE_NONE;
}
else if( *cp == '{' )
{
makeCssSimpleTag(name, kind, TRUE);
*position = ++cp;
return P_STATE_IN_DEFINITION;
}
vStringPut (name, (int) *cp);
++cp;
}
makeCssSimpleTag(name, kind, TRUE);
*position = cp;
return P_STATE_NONE;
}
static CssParserState parseCssLine( const unsigned char *line, CssParserState state )
{
vString *aux;
while( *line != '\0' ) // fileReadLine returns NULL terminated strings
{
while (isspace ((int) *line))
++line;
switch( state )
{
case P_STATE_NONE:
// pick first char if alphanumeric is a selector
if( isalnum ((int) *line) )
state = parseCssDeclaration( &line, K_SELECTOR );
else if( *line == '.' ) // a class
state = parseCssDeclaration( &line, K_CLASS );
else if( *line == '#' ) // an id
state = parseCssDeclaration( &line, K_ID );
else if( *line == '@' ) // at-rules, we'll ignore them
{
++line;
aux = vStringNew();
while( !isspace((int) *line) )
{
vStringPut (aux, (int) *line);
++line;
}
vStringTerminate (aux);
if( strcmp( aux->buffer, "media" ) == 0 )
state = P_STATE_IN_MEDIA;
else if ( strcmp( aux->buffer, "import" ) == 0 )
state = P_STATE_IN_IMPORT;
else if ( strcmp( aux->buffer, "namespace" ) == 0 )
state = P_STATE_IN_NAMESPACE;
else if ( strcmp( aux->buffer, "page" ) == 0 )
state = P_STATE_IN_PAGE;
else if ( strcmp( aux->buffer, "font-face" ) == 0 )
state = P_STATE_IN_FONTFACE;
vStringDelete (aux);
}
else if( *line == '*' && *(line-1) == '/' ) // multi-line comment
state = P_STATE_IN_COMMENT;
break;
case P_STATE_IN_COMMENT:
if( *line == '/' && *(line-1) == '*')
state = P_STATE_NONE;
break;
case P_STATE_IN_SINGLE_STRING:
if( *line == '\'' && *(line-1) != '\\' )
state = P_STATE_IN_DEFINITION; // PAGE, FONTFACE and DEFINITION are treated the same way
break;
case P_STATE_IN_DOUBLE_STRING:
if( *line=='"' && *(line-1) != '\\' )
state = P_STATE_IN_DEFINITION; // PAGE, FONTFACE and DEFINITION are treated the same way
break;
case P_STATE_IN_MEDIA:
// skip to start of media body or line end
while( *line != '{' )
{
if( *line == '\0' )
break;
++line;
}
if( *line == '{' )
state = P_STATE_NONE;
break;
case P_STATE_IN_IMPORT:
case P_STATE_IN_NAMESPACE:
// skip to end of declaration or line end
while( *line != ';' )
{
if( *line == '\0' )
break;
++line;
}
if( *line == ';' )
state = P_STATE_NONE;
break;
case P_STATE_IN_PAGE:
case P_STATE_IN_FONTFACE:
case P_STATE_IN_DEFINITION:
if( *line == '}' )
state = P_STATE_NONE;
else if( *line == '\'' )
state = P_STATE_IN_SINGLE_STRING;
else if( *line == '"' )
state = P_STATE_IN_DOUBLE_STRING;
break;
case P_STATE_AT_END:
return state;
break;
}
line++;
}
return state;
}
static void findCssTags (void)
{
const unsigned char *line;
CssParserState state = P_STATE_NONE;
while ( (line = fileReadLine ()) != NULL )
{
state = parseCssLine( line, state );
if( state==P_STATE_AT_END ) return;
}
}
/* parser definition */
extern parserDefinition* CssParser (void)
{
static const char *const extensions [] = { "css", NULL };
parserDefinition* def = parserNew ("CSS");
def->kinds = CssKinds;
def->kindCount = KIND_COUNT (CssKinds);
def->extensions = extensions;
def->parser = findCssTags;
return def;
}