summaryrefslogtreecommitdiff
path: root/test/ragel.d/genrep6.rl
blob: 26515b93e75bc377c6d7a13988efa80523a66f54 (plain)
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
/*
 * @LANG: c
 */

#include <stddef.h>
#include <stdint.h>
#include <stdlib.h> 
#include <stdbool.h>
#include <string.h>
#include <stdio.h>

const char s[4096];

struct nfa_stack
{
	void *data;
	unsigned long sz;
};

struct nfa_bp_rec
{
	long state;
	const char *p;
	long popTrans;
	long q_2;
};

%%{
	machine genrep;
	alphtype unsigned char;

	action psh
	{
		nfa_bp[nfa_len].q_2 = q_2;
	}

	action pop
	{ ({
		q_2 = nfa_bp[nfa_len].q_2;
		1;
	}) }

	action ini_2 	{
		({  q_2 = 0; 1; })
	}

	action stay_2 	{
		({ 1; })
	}

	action repeat_2 	{
		({ ++q_2 < 1; })
	}

	action exit_2 	{
		({ ++q_2 >= 1; })
	}

	action leaving
	{
		printf( "  -> leaving\n" );
	}

	action c1 { ({ printf( "  -> c1\n"); c1; }) }
	action c2 { ({ printf( "  -> c2\n"); c2; }) }
 
	main :=
		(
			( 
				'hello' %when c1 |
				'hello' %when c2
			)

			:nfa( ( ' ' ), psh, pop, ini_2, stay_2, repeat_2, exit_2 ):

			'there'
		)
		:>
		any @{
			printf( "------ MATCH\n" );
		};

	write data;
}%%

int test( int c1, int c2, const char *p )
{
	int len = strlen( p ) + 1;
	const char *pe = p + len;
	const char *eof = pe;
	int cs;

	struct nfa_bp_rec *nfa_bp = (struct nfa_bp_rec*) s;
	long nfa_len = 0;
	long nfa_count = 0;
	long q_2 = 0;

	printf( "testing: %s\n", p );

	%%{
		machine genrep;
		write init;
		write exec;
	}%%

	return 0;
}

int main()
{
	test( 0, 0, "hellothere" );
	test( 0, 0, "hello there" );
	test( 0, 0, "hello  there" );

	printf( "------------\n" );

	test( 0, 1, "hellothere" );
	test( 0, 1, "hello there" );
	test( 0, 1, "hello  there" );

	printf( "------------\n" );

	test( 1, 0, "hellothere" );
	test( 1, 0, "hello there" );
	test( 1, 0, "hello  there" );

	printf( "------------\n" );

	test( 1, 1, "hellothere" );
	test( 1, 1, "hello there" );
	test( 1, 1, "hello  there" );

	return 0;
}

########## OUTPUT ##########
testing: hellothere
  -> c1
  -> c2
testing: hello there
  -> c1
  -> c2
testing: hello  there
  -> c1
  -> c2
------------
testing: hellothere
  -> c1
  -> c2
testing: hello there
  -> c1
  -> c2
------ MATCH
testing: hello  there
  -> c1
  -> c2
------------
testing: hellothere
  -> c1
  -> c2
testing: hello there
  -> c1
  -> c2
------ MATCH
testing: hello  there
  -> c1
  -> c2
------------
testing: hellothere
  -> c1
  -> c2
testing: hello there
  -> c1
  -> c2
------ MATCH
testing: hello  there
  -> c1
  -> c2