2000-12-12 04:39:15 +08:00
|
|
|
%{
|
|
|
|
/* NdBox = [(lowerleft),(upperright)] */
|
|
|
|
/* [(xLL(1)...xLL(N)),(xUR(1)...xUR(n))] */
|
|
|
|
|
|
|
|
#define YYPARSE_PARAM result /* need this to pass a pointer (void *) to yyparse */
|
|
|
|
#define YYSTYPE char *
|
|
|
|
#define YYDEBUG 1
|
|
|
|
|
2002-09-05 08:43:07 +08:00
|
|
|
#include "postgres.h"
|
|
|
|
|
2000-12-12 04:39:15 +08:00
|
|
|
#include "cubedata.h"
|
|
|
|
|
2004-09-10 12:36:42 +08:00
|
|
|
#undef yylex /* failure to redefine yylex will result in a call to the */
|
2000-12-12 04:39:15 +08:00
|
|
|
#define yylex cube_yylex /* wrong scanner when running inside the postgres backend */
|
|
|
|
|
2004-09-03 04:53:42 +08:00
|
|
|
extern int yylex(void); /* defined as cube_yylex in cubescan.l */
|
2000-12-12 04:39:15 +08:00
|
|
|
|
2003-09-14 09:52:25 +08:00
|
|
|
static char *scanbuf;
|
|
|
|
static int scanbuflen;
|
|
|
|
|
|
|
|
void cube_yyerror(const char *message);
|
2000-12-12 04:39:15 +08:00
|
|
|
int cube_yyparse(void *result);
|
|
|
|
|
|
|
|
static int delim_count(char *s, char delim);
|
|
|
|
static NDBOX * write_box(unsigned int dim, char *str1, char *str2);
|
2002-09-12 08:26:00 +08:00
|
|
|
static NDBOX * write_point_as_box(char *s, int dim);
|
2000-12-12 04:39:15 +08:00
|
|
|
|
|
|
|
%}
|
|
|
|
|
|
|
|
/* BISON Declarations */
|
|
|
|
%token FLOAT O_PAREN C_PAREN O_BRACKET C_BRACKET COMMA
|
|
|
|
%start box
|
|
|
|
|
|
|
|
/* Grammar follows */
|
|
|
|
%%
|
|
|
|
|
|
|
|
box:
|
|
|
|
O_BRACKET paren_list COMMA paren_list C_BRACKET {
|
|
|
|
|
|
|
|
int dim;
|
|
|
|
|
|
|
|
dim = delim_count($2, ',') + 1;
|
|
|
|
if ( (delim_count($4, ',') + 1) != dim ) {
|
2003-07-25 01:52:50 +08:00
|
|
|
ereport(ERROR,
|
|
|
|
(errcode(ERRCODE_SYNTAX_ERROR),
|
|
|
|
errmsg("bad cube representation"),
|
|
|
|
errdetail("different point dimensions in (%s) and (%s)",
|
|
|
|
$2, $4)));
|
2000-12-12 04:39:15 +08:00
|
|
|
YYABORT;
|
|
|
|
}
|
2002-09-12 08:26:00 +08:00
|
|
|
if (dim > CUBE_MAX_DIM) {
|
2003-07-25 01:52:50 +08:00
|
|
|
ereport(ERROR,
|
|
|
|
(errcode(ERRCODE_SYNTAX_ERROR),
|
|
|
|
errmsg("bad cube representation"),
|
|
|
|
errdetail("more than %d dimensions",
|
|
|
|
CUBE_MAX_DIM)));
|
2002-09-12 08:26:00 +08:00
|
|
|
YYABORT;
|
|
|
|
}
|
2000-12-12 04:39:15 +08:00
|
|
|
|
|
|
|
*((void **)result) = write_box( dim, $2, $4 );
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
paren_list COMMA paren_list {
|
|
|
|
int dim;
|
|
|
|
|
|
|
|
dim = delim_count($1, ',') + 1;
|
|
|
|
|
|
|
|
if ( (delim_count($3, ',') + 1) != dim ) {
|
2003-07-25 01:52:50 +08:00
|
|
|
ereport(ERROR,
|
|
|
|
(errcode(ERRCODE_SYNTAX_ERROR),
|
|
|
|
errmsg("bad cube representation"),
|
|
|
|
errdetail("different point dimensions in (%s) and (%s)",
|
|
|
|
$1, $3)));
|
2000-12-12 04:39:15 +08:00
|
|
|
YYABORT;
|
|
|
|
}
|
2002-09-12 08:26:00 +08:00
|
|
|
if (dim > CUBE_MAX_DIM) {
|
2003-07-25 01:52:50 +08:00
|
|
|
ereport(ERROR,
|
|
|
|
(errcode(ERRCODE_SYNTAX_ERROR),
|
|
|
|
errmsg("bad cube representation"),
|
|
|
|
errdetail("more than %d dimensions",
|
|
|
|
CUBE_MAX_DIM)));
|
2002-09-12 08:26:00 +08:00
|
|
|
YYABORT;
|
|
|
|
}
|
2000-12-12 04:39:15 +08:00
|
|
|
|
|
|
|
*((void **)result) = write_box( dim, $1, $3 );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
paren_list {
|
2002-09-12 08:26:00 +08:00
|
|
|
int dim;
|
2000-12-12 04:39:15 +08:00
|
|
|
|
2002-09-12 08:26:00 +08:00
|
|
|
dim = delim_count($1, ',') + 1;
|
|
|
|
if (dim > CUBE_MAX_DIM) {
|
2003-07-25 01:52:50 +08:00
|
|
|
ereport(ERROR,
|
|
|
|
(errcode(ERRCODE_SYNTAX_ERROR),
|
|
|
|
errmsg("bad cube representation"),
|
|
|
|
errdetail("more than %d dimensions",
|
|
|
|
CUBE_MAX_DIM)));
|
2002-09-12 08:26:00 +08:00
|
|
|
YYABORT;
|
|
|
|
}
|
|
|
|
|
|
|
|
*((void **)result) = write_point_as_box($1, dim);
|
2000-12-12 04:39:15 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
list {
|
2002-09-12 08:26:00 +08:00
|
|
|
int dim;
|
2000-12-12 04:39:15 +08:00
|
|
|
|
2002-09-12 08:26:00 +08:00
|
|
|
dim = delim_count($1, ',') + 1;
|
|
|
|
if (dim > CUBE_MAX_DIM) {
|
2003-07-25 01:52:50 +08:00
|
|
|
ereport(ERROR,
|
|
|
|
(errcode(ERRCODE_SYNTAX_ERROR),
|
|
|
|
errmsg("bad cube representation"),
|
|
|
|
errdetail("more than %d dimensions",
|
|
|
|
CUBE_MAX_DIM)));
|
2002-09-12 08:26:00 +08:00
|
|
|
YYABORT;
|
|
|
|
}
|
|
|
|
*((void **)result) = write_point_as_box($1, dim);
|
2000-12-12 04:39:15 +08:00
|
|
|
}
|
|
|
|
;
|
|
|
|
|
|
|
|
paren_list:
|
|
|
|
O_PAREN list C_PAREN {
|
|
|
|
$$ = $2;
|
|
|
|
}
|
|
|
|
;
|
|
|
|
|
|
|
|
list:
|
|
|
|
FLOAT {
|
2003-09-14 09:52:25 +08:00
|
|
|
/* alloc enough space to be sure whole list will fit */
|
|
|
|
$$ = palloc(scanbuflen + 1);
|
|
|
|
strcpy($$, $1);
|
2000-12-12 04:39:15 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
list COMMA FLOAT {
|
|
|
|
$$ = $1;
|
|
|
|
strcat($$, ",");
|
|
|
|
strcat($$, $3);
|
|
|
|
}
|
|
|
|
;
|
|
|
|
|
|
|
|
%%
|
|
|
|
|
|
|
|
static int
|
|
|
|
delim_count(char *s, char delim)
|
|
|
|
{
|
|
|
|
int ndelim = 0;
|
|
|
|
|
|
|
|
while ((s = strchr(s, delim)) != NULL)
|
|
|
|
{
|
|
|
|
ndelim++;
|
|
|
|
s++;
|
|
|
|
}
|
|
|
|
return (ndelim);
|
|
|
|
}
|
|
|
|
|
|
|
|
static NDBOX *
|
|
|
|
write_box(unsigned int dim, char *str1, char *str2)
|
|
|
|
{
|
|
|
|
NDBOX * bp;
|
|
|
|
char * s;
|
|
|
|
int i;
|
2002-08-30 07:03:58 +08:00
|
|
|
int size = offsetof(NDBOX, x[0]) + sizeof(double) * dim * 2;
|
2000-12-12 04:39:15 +08:00
|
|
|
|
|
|
|
bp = palloc(size);
|
2002-08-30 07:03:58 +08:00
|
|
|
memset(bp, 0, size);
|
2000-12-12 04:39:15 +08:00
|
|
|
bp->size = size;
|
|
|
|
bp->dim = dim;
|
|
|
|
|
|
|
|
s = str1;
|
|
|
|
bp->x[i=0] = strtod(s, NULL);
|
|
|
|
while ((s = strchr(s, ',')) != NULL) {
|
|
|
|
s++; i++;
|
|
|
|
bp->x[i] = strtod(s, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
s = str2;
|
|
|
|
bp->x[i=dim] = strtod(s, NULL);
|
|
|
|
while ((s = strchr(s, ',')) != NULL) {
|
|
|
|
s++; i++;
|
|
|
|
bp->x[i] = strtod(s, NULL);
|
|
|
|
}
|
2002-08-30 07:03:58 +08:00
|
|
|
|
2000-12-12 04:39:15 +08:00
|
|
|
return(bp);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-09-12 08:26:00 +08:00
|
|
|
static NDBOX * write_point_as_box(char *str, int dim)
|
2000-12-12 04:39:15 +08:00
|
|
|
{
|
|
|
|
NDBOX * bp;
|
|
|
|
int i, size;
|
|
|
|
double x;
|
|
|
|
char * s = str;
|
|
|
|
|
2002-08-30 07:03:58 +08:00
|
|
|
size = offsetof(NDBOX, x[0]) + sizeof(double) * dim * 2;
|
2000-12-12 04:39:15 +08:00
|
|
|
|
|
|
|
bp = palloc(size);
|
2002-08-30 07:03:58 +08:00
|
|
|
memset(bp, 0, size);
|
2000-12-12 04:39:15 +08:00
|
|
|
bp->size = size;
|
|
|
|
bp->dim = dim;
|
|
|
|
|
|
|
|
i = 0;
|
|
|
|
x = strtod(s, NULL);
|
|
|
|
bp->x[0] = x;
|
|
|
|
bp->x[dim] = x;
|
|
|
|
while ((s = strchr(s, ',')) != NULL) {
|
|
|
|
s++; i++;
|
|
|
|
x = strtod(s, NULL);
|
|
|
|
bp->x[i] = x;
|
|
|
|
bp->x[i+dim] = x;
|
|
|
|
}
|
|
|
|
|
|
|
|
return(bp);
|
|
|
|
}
|
|
|
|
|
2002-11-02 06:52:34 +08:00
|
|
|
#include "cubescan.c"
|