Rethink the idea of having plpgsql depend on parser/gram.h. Aside from the
authorTom Lane <tgl@sss.pgh.pa.us>
Sun, 19 Apr 2009 21:50:09 +0000 (21:50 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Sun, 19 Apr 2009 21:50:09 +0000 (21:50 +0000)
fact that this is breaking the MSVC build, it's probably not really a good
idea to expand the dependencies of gram.h any further than the core parser;
for instance the value of SCONST might depend on which bison version you'd
built with.  Better to expose an additional call point in parser.c, so
move what I had put into pl_funcs.c into parser.c.  Also PGDLLIMPORT'ify
the reference to standard_conforming_strings, per buildfarm results.

src/backend/parser/parser.c
src/include/parser/parser.h
src/pl/plpgsql/src/gram.y
src/pl/plpgsql/src/pl_funcs.c
src/pl/plpgsql/src/plpgsql.h
src/pl/plpgsql/src/scan.l

index c8a77d98471ccb62c53e32d356dfbb1556954134..302dbee3cf4f0697211a6748a9e4fc3bcb1e9060 100644 (file)
@@ -62,6 +62,36 @@ raw_parser(const char *str)
 }
 
 
+/*
+ * pg_parse_string_token - get the value represented by a string literal
+ *
+ * Given the textual form of a SQL string literal, produce the represented
+ * value as a palloc'd string.  It is caller's responsibility that the
+ * passed string does represent one single string literal.
+ *
+ * We export this function to avoid having plpgsql depend on internal details
+ * of the core grammar (such as the token code assigned to SCONST).  Note
+ * that since the scanner isn't presently re-entrant, this cannot be used
+ * during use of the main parser/scanner.
+ */
+char *
+pg_parse_string_token(const char *token)
+{
+       int             ctoken;
+
+       scanner_init(token);
+
+       ctoken = base_yylex();
+
+       if (ctoken != SCONST)           /* caller error */
+               elog(ERROR, "expected string constant, got token code %d", ctoken);
+
+       scanner_finish();
+
+       return base_yylval.str;
+}
+
+
 /*
  * Intermediate filter between parser and base lexer (base_yylex in scan.l).
  *
index 227953df7bd23930f05acb21d042c6c845f9f286..c64c390156b1fdf9abef19fb1f8201f3d72956e7 100644 (file)
@@ -18,4 +18,6 @@
 
 extern List *raw_parser(const char *str);
 
+extern char *pg_parse_string_token(const char *token);
+
 #endif   /* PARSER_H */
index b144a8490b923e5198ae4a384effd3c2582c5455..b29047e0a13c21b1f776d7733c6cc2eaf045b83b 100644 (file)
@@ -2737,10 +2737,9 @@ plpgsql_sql_error_callback(void *arg)
 /*
  * Convert a string-literal token to the represented string value.
  *
- * To do this, we need to invoke the core lexer.  To avoid confusion between
- * the core bison/flex definitions and our own, the actual invocation is in
- * pl_funcs.c.  Here we are only concerned with setting up the right errcontext
- * state, which is handled the same as in check_sql_expr().
+ * To do this, we need to invoke the core lexer.  Here we are only concerned
+ * with setting up the right errcontext state, which is handled the same as
+ * in check_sql_expr().
  */
 static char *
 parse_string_token(const char *token)
@@ -2758,7 +2757,7 @@ parse_string_token(const char *token)
        syntax_errcontext.previous = error_context_stack->previous;
        error_context_stack = &syntax_errcontext;
 
-       result = plpgsql_parse_string_token(token);
+       result = pg_parse_string_token(token);
 
        /* Restore former ereport callback */
        error_context_stack = previous_errcontext;
index 62acecd817bb189f52679eb8828e986c20171e2a..c64c22c625f3127657b41a6a30e23caa77c1b699 100644 (file)
@@ -17,8 +17,6 @@
 
 #include <ctype.h>
 
-#include "parser/gramparse.h"
-#include "parser/gram.h"
 #include "parser/scansup.h"
 
 
@@ -461,41 +459,6 @@ plpgsql_convert_ident(const char *s, char **output, int numidents)
 }
 
 
-/*
- * plpgsql_parse_string_token - get the value represented by a string literal
- *
- * We do not make plpgsql's lexer produce the represented value, because
- * in many cases we don't need it.  Instead this function is invoked when
- * we do need it.  The input is the T_STRING token as identified by the lexer.
- *
- * The result is a palloc'd string.
- *
- * Note: this is called only from plpgsql's gram.y, but we can't just put it
- * there because including parser/gram.h there would cause confusion.
- */
-char *
-plpgsql_parse_string_token(const char *token)
-{
-       int             ctoken;
-
-       /*
-        * We use the core lexer to do the dirty work.  Aside from getting the
-        * right results for escape sequences and so on, this helps us produce
-        * appropriate warnings for escape_string_warning etc.
-        */
-       scanner_init(token);
-
-       ctoken = base_yylex();
-
-       if (ctoken != SCONST)
-               elog(ERROR, "unexpected result from base lexer: %d", ctoken);
-
-       scanner_finish();
-
-       return base_yylval.str;
-}
-
-
 /*
  * Statement type as a string, for use in error messages etc.
  */
index d7efe764081a4aa701b5f9e48d9afb97202ca7b0..b5c3bfab3048e0cd3caa7faec8a6fa35e6597dcb 100644 (file)
@@ -880,7 +880,6 @@ extern void plpgsql_ns_rename(char *oldname, char *newname);
  * ----------
  */
 extern void plpgsql_convert_ident(const char *s, char **output, int numidents);
-extern char *plpgsql_parse_string_token(const char *token);
 extern const char *plpgsql_stmt_typename(PLpgSQL_stmt *stmt);
 extern void plpgsql_dumptree(PLpgSQL_function *func);
 
index ca1df6d357aa0557c6d636e6a82c831d398edeba..1917eef95be1fe1487aa422ac86ec25d9f48e5bc 100644 (file)
@@ -43,7 +43,7 @@ static int    cur_line_num;
 static int             xcdepth = 0;    /* depth of nesting in slash-star comments */
 static char    *dolqstart;      /* current $foo$ quote start string */
 
-extern bool            standard_conforming_strings;
+extern PGDLLIMPORT bool standard_conforming_strings;
 
 bool plpgsql_SpaceScanned = false;
 %}