File: lispscan.h

package info (click to toggle)
metapixel 1.0.2-7.1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 412 kB
  • ctags: 596
  • sloc: ansic: 5,367; perl: 173; xml: 122; makefile: 106
file content (162 lines) | stat: -rw-r--r-- 2,554 bytes parent folder | download | duplicates (7)
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
static int
SCAN_FUNC_NAME (lisp_stream_t *stream)
{
    static char *delims = "\"();";

    SCAN_DECLS

    int c;

    do
    {
	c = NEXT_CHAR;
	if (c == EOF)
	    RETURN(TOKEN_EOF);
	else if (c == ';')     	 /* comment start */
	    while (1)
	    {	
		c = NEXT_CHAR;
		if (c == EOF)		
		    RETURN(TOKEN_EOF);
		else if (c == '\n')   	
		    break;
	    }
    } while (isspace(c));

    switch (c)
    {
	case '(' :
	    RETURN(TOKEN_OPEN_PAREN);

	case ')' :
	    RETURN(TOKEN_CLOSE_PAREN);

	case '"' :
	    _token_clear();
	    while (1)
	    {
		c = NEXT_CHAR;
		if (c == EOF)
		    RETURN(TOKEN_ERROR);
		if (c == '"')
		    break;
		if (c == '\\')
		{
		    c = NEXT_CHAR;

		    switch (c)
		    {
			case EOF :
			    RETURN(TOKEN_ERROR);
			
			case 'n' :
			    c = '\n';
			    break;

			case 't' :
			    c = '\t';
			    break;
		    }
		}

		_token_append(c);
	    }
	    RETURN(TOKEN_STRING);

	case '#' :
	    c = NEXT_CHAR;
	    if (c == EOF)
		RETURN(TOKEN_ERROR);

	    switch (c)
	    {
		case 't' :
		    RETURN(TOKEN_TRUE);

		case 'f' :
		    RETURN(TOKEN_FALSE);

		case '?' :
		    c = NEXT_CHAR;
		    if (c == EOF)
			RETURN(TOKEN_ERROR);

		    if (c == '(')
			RETURN(TOKEN_PATTERN_OPEN_PAREN);
		    else
			RETURN(TOKEN_ERROR);
	    }
	    RETURN(TOKEN_ERROR);

	default :
	    if (isdigit(c) || c == '-')
	    {
		int have_nondigits = 0;
		int have_digits = 0;
		int have_floating_point = 0;

		TOKEN_START(1);

		do
		{
		    if (isdigit(c))
		        have_digits = 1;
		    else if (c == '.')
		        have_floating_point++;
		    TOKEN_APPEND(c);

		    c = NEXT_CHAR;

		    if (c != EOF && !isdigit(c) && !isspace(c) && c != '.' && !strchr(delims, c))
			have_nondigits = 1;
		} while (c != EOF && !isspace(c) && !strchr(delims, c));

		if (c != EOF)
		    UNGET_CHAR(c);

		TOKEN_STOP;

		if (have_nondigits || !have_digits || have_floating_point > 1)
		    RETURN(TOKEN_SYMBOL);
		else if (have_floating_point == 1)
		    RETURN(TOKEN_REAL);
		else
		    RETURN(TOKEN_INTEGER);
	    }
	    else
	    {
		if (c == '.')
		{
		    c = NEXT_CHAR;
		    if (c != EOF && !isspace(c) && !strchr(delims, c))
		    {
			TOKEN_START(2);
			TOKEN_APPEND('.');
		    }
		    else
		    {
			UNGET_CHAR(c);
			RETURN(TOKEN_DOT);
		    }
		}
		else
		{
		    TOKEN_START(1);
		}
		do
		{
		    TOKEN_APPEND(c);
		    c = NEXT_CHAR;
		} while (c != EOF && !isspace(c) && !strchr(delims, c));
		if (c != EOF)
		    UNGET_CHAR(c);

		TOKEN_STOP;

		RETURN(TOKEN_SYMBOL);
	    }
    }

    assert(0);
    RETURN(TOKEN_ERROR);
}