Graphviz 13.0.0~dev.20250402.0402
Loading...
Searching...
No Matches
gmlscan.l
Go to the documentation of this file.
1 /* By default, Flex emits a lexer using symbols prefixed with "yy". Graphviz
2 * contains multiple Flex-generated lexers, so we alter this prefix to avoid
3 * symbol clashes.
4 */
5%option prefix="gml"
6
7 /* Avoid generating an unused input function. See
8 https://westes.github.io/flex/manual/Scanner-Options.html
9 */
10%option noinput
11
12%{
13#include <assert.h>
14#include <stdlib.h>
15#include <string.h>
16#include <gml2gv.h>
17#include <gmlparse.h>
18#include <util/alloc.h>
19#include <util/agxbuf.h>
20#include "config.h"
21
22#define GRAPH_EOF_TOKEN '@' /* lex class must be defined below */
23
24static int line_num = 1;
25static int errors;
26static FILE* Ifile;
27
28void initgmlscan(FILE *ifile)
29{
30 if (ifile) {
31 Ifile = ifile;
32 line_num = 1;
33 }
34 errors = 0;
35}
36
37#ifndef YY_INPUT
38#define YY_INPUT(buf,result,max_size) \
39 if ((result = fread(buf, 1, max_size, Ifile)) < 0) \
40 YY_FATAL_ERROR( "input in flex scanner failed" )
41#endif
42
44static agxbuf Sbuf;
45
46static void beginstr(void) {
47 assert(agxblen(&Sbuf) == 0 && "leaking memory");
48}
49
50static void addstr(const char *src) {
51 agxbput(&Sbuf, src);
52}
53
54static void endstr(void) {
55 // take ownership of the Sbuf backing memory
57}
58
static size_t agxblen(const agxbuf *xb)
return number of characters currently stored
Definition agxbuf.h:89
static char * agxbdisown(agxbuf *xb)
Definition agxbuf.h:327
Memory allocation wrappers that exit on failure.
GML-DOT converter
GMLSTYPE gmllval
static void endstr(void)
Definition gmlscan.l:54
static int errors
Definition gmlscan.l:25
static void addstr(const char *src)
Definition gmlscan.l:50
static int line_num
Definition gmlscan.l:24
void initgmlscan(FILE *ifile)
Definition gmlscan.l:28
static agxbuf Sbuf
buffer for arbitrary length strings
Definition gmlscan.l:44
static FILE * Ifile
Definition gmlscan.l:26
static void beginstr(void)
Definition gmlscan.l:46
agxbput(xb, staging)
char * str
Definition gmlparse.c:386
59%}
60GRAPH_EOF_TOKEN [@]
61ASCII [ !#$%\047-\177]
62DIGIT [0-9]
63L_INT [-+]?{DIGIT}+
64MANTISSA E[-+]?{DIGIT}
65L_REAL [-+]?{DIGIT}*\.{DIGIT}*{MANTISSA}?
66L_ID [a-zA-Z_][_a-zA-Z0-9]*
67%x qstring
68%%
69{GRAPH_EOF_TOKEN} return(EOF);
70<INITIAL,qstring>\n line_num++;
71^"#".* /* ignore # line */
72[ \t\r] /* ignore whitespace */
73
74"graph" return (GRAPH);
#define GRAPH
Definition gmlparse.c:346
75"node" return (NODE);
#define NODE
Definition gmlparse.c:347
76"edge" return (EDGE);
#define EDGE
Definition gmlparse.c:348
77"directed" return (DIRECTED);
#define DIRECTED
Definition gc.c:48
78"id" return (ID);
#define ID
Definition gmlparse.c:375
79"source" return (SOURCE);
#define SOURCE
Definition gmlparse.c:350
80"target" return (TARGET);
#define TARGET
Definition gmlparse.c:351
81"x" return (XVAL);
#define XVAL
Definition gmlparse.c:352
82"y" return (YVAL);
#define YVAL
Definition gmlparse.c:353
83"w" return (WVAL);
#define WVAL
Definition gmlparse.c:354
84"h" return (HVAL);
#define HVAL
Definition gmlparse.c:355
85"label" return (LABEL);
#define LABEL
Definition gmlparse.c:356
86"graphics" return (GRAPHICS);;
#define GRAPHICS
Definition gmlparse.c:357
87"LabelGraphics" return (LABELGRAPHICS);
#define LABELGRAPHICS
Definition gmlparse.c:358
88"type" return (TYPE);
#define TYPE
Definition gmlparse.c:359
89"fill" return (FILL);
#define FILL
Definition gmlparse.c:360
90"outline" return (OUTLINE);
#define OUTLINE
Definition gmlparse.c:361
91"outlineStyle" return (OUTLINESTYLE);
#define OUTLINESTYLE
Definition gmlparse.c:362
92"outlineWidth" return (OUTLINEWIDTH);
#define OUTLINEWIDTH
Definition gmlparse.c:363
93"width" return (WIDTH);
#define WIDTH
Definition gmlparse.c:364
94"style" return (STYLE);
#define STYLE
Definition gmlparse.c:365
95"Line" return (LINE);
#define LINE
Definition gmlparse.c:366
96"point" return (POINT);
#define POINT
Definition gmlparse.c:367
97"text" return (TEXT);
#define TEXT
Definition gmlparse.c:368
98"fontSize" return (FONTSIZE);
#define FONTSIZE
Definition gmlparse.c:369
99"fontName" return (FONTNAME);
#define FONTNAME
Definition gmlparse.c:370
100"color" return (COLOR);
#define COLOR
Definition gmlparse.c:371
101{L_INT} { gmllval.str = gv_strdup(yytext); return (INTEGER); }
static char * gv_strdup(const char *original)
Definition alloc.h:101
#define INTEGER
Definition gmlparse.c:372
#define yytext
Definition gmlscan.c:28
102{L_REAL} { gmllval.str = gv_strdup(yytext); return (REAL); }
#define REAL
Definition gmlparse.c:373
103{L_ID} { gmllval.str = gv_strdup(yytext); return (NAME); }
#define NAME
Definition gmlparse.c:376
104["] BEGIN(qstring); beginstr();
#define qstring
Definition gmlscan.c:886
#define BEGIN
Definition gmlscan.c:377
105
106<qstring>["] BEGIN(INITIAL); endstr(); return (STRING);
#define STRING
Definition gmlparse.c:374
#define INITIAL
Definition gmlscan.c:885
107<qstring>([^"]+) addstr(yytext);
108
109. return (yytext[0]);
110
111%%
112
113void gmlerror(const char *str)
114{
115 if (errors)
116 return;
117 errors = 1;
118 agwarningf(" %s in line %d near '%s'\n", str,line_num,yytext);
119}
120
121int gmlerrors(void)
122{
123 return errors;
124}
125
127
128#ifndef YY_CALL_ONLY_ARG
129# define YY_CALL_ONLY_ARG void
130#endif
131
133{
134 return 1;
135}
136
#define unput(c)
Definition gmlscan.c:441
#define YY_CALL_ONLY_ARG
#define yywrap
Definition gmlscan.c:29
int gmlerrors(void)
Definition gmlscan.l:121
#define GRAPH_EOF_TOKEN
Definition gmlscan.l:22
void gmlerror(const char *str)
Definition gmlscan.l:113
void gmllexeof(void)
Definition gmlscan.l:126
void agwarningf(const char *fmt,...)
Definition agerror.c:173
textitem scanner parser str
Definition htmlparse.y:224