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
|
/*
* Copyright (C) 2008 - 2011 Vivien Malerba <malerba@gnome-db.org>
* Copyright (C) 2010 David King <davidk@openismus.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include "gda-postgres-parser.h"
#include "postgres_token_types.h"
#include <string.h>
/*
* Main static functions
*/
static void gda_postgres_parser_class_init (GdaPostgresParserClass *klass);
static void gda_postgres_parser_init (GdaPostgresParser *stmt);
GType
gda_postgres_parser_get_type (void)
{
static GType type = 0;
if (G_UNLIKELY (type == 0)) {
static GMutex registering;
static const GTypeInfo info = {
sizeof (GdaPostgresParserClass),
(GBaseInitFunc) NULL,
(GBaseFinalizeFunc) NULL,
(GClassInitFunc) gda_postgres_parser_class_init,
NULL,
NULL,
sizeof (GdaPostgresParser),
0,
(GInstanceInitFunc) gda_postgres_parser_init,
0
};
g_mutex_lock (®istering);
if (type == 0)
type = g_type_from_name ("GdaPostgresParser");
if (type == 0)
type = g_type_register_static (GDA_TYPE_SQL_PARSER, "GdaPostgresParser", &info, 0);
g_mutex_unlock (®istering);
}
return type;
}
/*
* The interface to the LEMON-generated parser
*/
void *gda_lemon_postgres_parserAlloc (void*(*)(size_t));
void gda_lemon_postgres_parserFree (void*, void(*)(void*));
void gda_lemon_postgres_parserTrace (void*, char *);
void gda_lemon_postgres_parser (void*, int, GValue *, GdaSqlParserIface *);
static void
gda_postgres_parser_class_init (GdaPostgresParserClass * klass)
{
GdaSqlParserClass *pclass = GDA_SQL_PARSER_CLASS (klass);
pclass->parser_alloc = gda_lemon_postgres_parserAlloc;
pclass->parser_free = gda_lemon_postgres_parserFree;
pclass->parser_trace = gda_lemon_postgres_parserTrace;
pclass->parser_parse = gda_lemon_postgres_parser;
pclass->parser_tokens_trans = postgres_parser_tokens;
}
static void
gda_postgres_parser_init (G_GNUC_UNUSED GdaPostgresParser *parser)
{
}
|