2000-12-12 04:40:33 +08:00
|
|
|
%{
|
|
|
|
#define YYPARSE_PARAM result /* need this to pass a pointer (void *) to yyparse */
|
|
|
|
|
2002-07-31 01:32:10 +08:00
|
|
|
#include "postgres.h"
|
|
|
|
|
2000-12-12 04:40:33 +08:00
|
|
|
#include <math.h>
|
2002-07-31 01:32:10 +08:00
|
|
|
|
|
|
|
#include "segdata.h"
|
2001-06-19 05:38:02 +08:00
|
|
|
|
2004-09-10 12:36:42 +08:00
|
|
|
#undef yylex /* failure to redefine yylex will result in calling the */
|
2000-12-12 04:40:33 +08:00
|
|
|
#define yylex seg_yylex /* wrong scanner when running inside postgres backend */
|
|
|
|
|
2004-09-03 04:53:42 +08:00
|
|
|
extern int yylex(void); /* defined as seg_yylex in segscan.l */
|
2000-12-12 04:40:33 +08:00
|
|
|
extern int significant_digits( char *str ); /* defined in seg.c */
|
|
|
|
|
2003-09-14 10:18:49 +08:00
|
|
|
void seg_yyerror(const char *message);
|
2000-12-12 04:40:33 +08:00
|
|
|
int seg_yyparse( void *result );
|
|
|
|
|
|
|
|
float seg_atof( char *value );
|
|
|
|
|
|
|
|
long threshold;
|
|
|
|
char strbuf[25] = {
|
|
|
|
'0', '0', '0', '0', '0',
|
|
|
|
'0', '0', '0', '0', '0',
|
|
|
|
'0', '0', '0', '0', '0',
|
|
|
|
'0', '0', '0', '0', '0',
|
|
|
|
'0', '0', '0', '0', '\0'
|
|
|
|
};
|
|
|
|
|
|
|
|
%}
|
|
|
|
|
|
|
|
/* BISON Declarations */
|
|
|
|
%union {
|
|
|
|
struct BND {
|
|
|
|
float val;
|
|
|
|
char ext;
|
|
|
|
char sigd;
|
|
|
|
} bnd;
|
|
|
|
char * text;
|
|
|
|
}
|
2004-09-14 12:21:38 +08:00
|
|
|
%token <text> SEGFLOAT
|
2000-12-12 04:40:33 +08:00
|
|
|
%token <text> RANGE
|
|
|
|
%token <text> PLUMIN
|
|
|
|
%token <text> EXTENSION
|
|
|
|
%type <bnd> boundary
|
|
|
|
%type <bnd> deviation
|
|
|
|
%start range
|
|
|
|
|
|
|
|
/* Grammar follows */
|
|
|
|
%%
|
|
|
|
|
|
|
|
|
|
|
|
range:
|
|
|
|
boundary PLUMIN deviation {
|
|
|
|
((SEG *)result)->lower = $1.val - $3.val;
|
|
|
|
((SEG *)result)->upper = $1.val + $3.val;
|
|
|
|
sprintf(strbuf, "%g", ((SEG *)result)->lower);
|
2002-07-31 01:32:10 +08:00
|
|
|
((SEG *)result)->l_sigd = Max(Min(6, significant_digits(strbuf)), Max($1.sigd, $3.sigd));
|
2000-12-12 04:40:33 +08:00
|
|
|
sprintf(strbuf, "%g", ((SEG *)result)->upper);
|
2002-07-31 01:32:10 +08:00
|
|
|
((SEG *)result)->u_sigd = Max(Min(6, significant_digits(strbuf)), Max($1.sigd, $3.sigd));
|
2000-12-12 04:40:33 +08:00
|
|
|
((SEG *)result)->l_ext = '\0';
|
|
|
|
((SEG *)result)->u_ext = '\0';
|
|
|
|
}
|
|
|
|
|
|
|
|
|
boundary RANGE boundary {
|
|
|
|
((SEG *)result)->lower = $1.val;
|
|
|
|
((SEG *)result)->upper = $3.val;
|
|
|
|
if ( ((SEG *)result)->lower > ((SEG *)result)->upper ) {
|
2003-07-25 01:52:50 +08:00
|
|
|
ereport(ERROR,
|
|
|
|
(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
|
|
|
|
errmsg("swapped boundaries: %g is greater than %g",
|
|
|
|
((SEG *)result)->lower, ((SEG *)result)->upper)));
|
|
|
|
|
2000-12-12 04:40:33 +08:00
|
|
|
YYERROR;
|
|
|
|
}
|
|
|
|
((SEG *)result)->l_sigd = $1.sigd;
|
|
|
|
((SEG *)result)->u_sigd = $3.sigd;
|
|
|
|
((SEG *)result)->l_ext = ( $1.ext ? $1.ext : '\0' );
|
|
|
|
((SEG *)result)->u_ext = ( $3.ext ? $3.ext : '\0' );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
boundary RANGE {
|
|
|
|
((SEG *)result)->lower = $1.val;
|
2004-03-15 11:29:22 +08:00
|
|
|
((SEG *)result)->upper = HUGE_VAL;
|
2000-12-12 04:40:33 +08:00
|
|
|
((SEG *)result)->l_sigd = $1.sigd;
|
|
|
|
((SEG *)result)->u_sigd = 0;
|
|
|
|
((SEG *)result)->l_ext = ( $1.ext ? $1.ext : '\0' );
|
|
|
|
((SEG *)result)->u_ext = '-';
|
|
|
|
}
|
|
|
|
|
|
|
|
|
RANGE boundary {
|
2004-03-15 11:29:22 +08:00
|
|
|
((SEG *)result)->lower = -HUGE_VAL;
|
2000-12-12 04:40:33 +08:00
|
|
|
((SEG *)result)->upper = $2.val;
|
|
|
|
((SEG *)result)->l_sigd = 0;
|
|
|
|
((SEG *)result)->u_sigd = $2.sigd;
|
|
|
|
((SEG *)result)->l_ext = '-';
|
|
|
|
((SEG *)result)->u_ext = ( $2.ext ? $2.ext : '\0' );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
boundary {
|
|
|
|
((SEG *)result)->lower = ((SEG *)result)->upper = $1.val;
|
|
|
|
((SEG *)result)->l_sigd = ((SEG *)result)->u_sigd = $1.sigd;
|
|
|
|
((SEG *)result)->l_ext = ((SEG *)result)->u_ext = ( $1.ext ? $1.ext : '\0' );
|
|
|
|
}
|
|
|
|
;
|
|
|
|
|
|
|
|
boundary:
|
2004-09-14 12:21:38 +08:00
|
|
|
SEGFLOAT {
|
2000-12-12 04:40:33 +08:00
|
|
|
$$.ext = '\0';
|
|
|
|
$$.sigd = significant_digits($1);
|
|
|
|
$$.val = seg_atof($1);
|
|
|
|
}
|
|
|
|
|
|
2004-09-14 12:21:38 +08:00
|
|
|
EXTENSION SEGFLOAT {
|
2000-12-12 04:40:33 +08:00
|
|
|
$$.ext = $1[0];
|
|
|
|
$$.sigd = significant_digits($2);
|
|
|
|
$$.val = seg_atof($2);
|
|
|
|
}
|
|
|
|
;
|
|
|
|
|
|
|
|
deviation:
|
2004-09-14 12:21:38 +08:00
|
|
|
SEGFLOAT {
|
2000-12-12 04:40:33 +08:00
|
|
|
$$.ext = '\0';
|
|
|
|
$$.sigd = significant_digits($1);
|
|
|
|
$$.val = seg_atof($1);
|
|
|
|
}
|
|
|
|
;
|
|
|
|
|
|
|
|
%%
|
|
|
|
|
|
|
|
|
|
|
|
float seg_atof ( char *value ) {
|
|
|
|
float result;
|
|
|
|
char *buf = (char *) palloc(256);
|
|
|
|
|
|
|
|
errno = 0;
|
|
|
|
sscanf(value, "%f", &result);
|
|
|
|
|
|
|
|
if ( errno ) {
|
2002-09-02 14:11:43 +08:00
|
|
|
snprintf(buf, 256, "numeric value %s unrepresentable", value);
|
2003-07-25 01:52:50 +08:00
|
|
|
ereport(ERROR,
|
|
|
|
(errcode(ERRCODE_SYNTAX_ERROR),
|
|
|
|
errmsg("syntax error"),
|
|
|
|
errdetail("%s", buf)));
|
2000-12-12 04:40:33 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-11-02 06:52:34 +08:00
|
|
|
#include "segscan.c"
|