aboutsummaryrefslogtreecommitdiff
path: root/src/include/utils/jsonpath_scanner.h
blob: bbdd984dab565261446ea5450c71a096f9e6d9f4 (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
/*-------------------------------------------------------------------------
 *
 * jsonpath_scanner.h
 *	Definitions for jsonpath scanner & parser
 *
 * Portions Copyright (c) 2019, PostgreSQL Global Development Group
 *
 * src/include/utils/jsonpath_scanner.h
 *
 *-------------------------------------------------------------------------
 */

#ifndef JSONPATH_SCANNER_H
#define JSONPATH_SCANNER_H

/* struct string is shared between scan and gram */
typedef struct string
{
	char	   *val;
	int			len;
	int			total;
}			string;

#include "utils/jsonpath.h"
#include "utils/jsonpath_gram.h"

/* flex 2.5.4 doesn't bother with a decl for this */
extern int	jsonpath_yylex(YYSTYPE *yylval_param);
extern int	jsonpath_yyparse(JsonPathParseResult **result);
extern void jsonpath_yyerror(JsonPathParseResult **result, const char *message);

#endif