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 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
|
/*
* 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 <glib/gi18n-lib.h>
#include "gda-sqlite-pstmt.h"
#include "gda-sqlite.h"
#include <string.h>
static void gda_sqlite_pstmt_class_init (GdaSqlitePStmtClass *klass);
static void gda_sqlite_pstmt_init (GdaSqlitePStmt *pstmt, GdaSqlitePStmtClass *klass);
static void gda_sqlite_pstmt_finalize (GObject *object);
static GObjectClass *parent_class = NULL;
/**
* _gda_sqlite_pstmt_get_type
*
* Returns: the #GType of GdaSqlitePStmt.
*/
GType
_gda_sqlite_pstmt_get_type (void)
{
static GType type = 0;
if (G_UNLIKELY (type == 0)) {
static GMutex registering;
static const GTypeInfo info = {
sizeof (GdaSqlitePStmtClass),
(GBaseInitFunc) NULL,
(GBaseFinalizeFunc) NULL,
(GClassInitFunc) gda_sqlite_pstmt_class_init,
NULL,
NULL,
sizeof (GdaSqlitePStmt),
0,
(GInstanceInitFunc) gda_sqlite_pstmt_init,
0
};
g_mutex_lock (®istering);
if (type == 0)
type = g_type_register_static (GDA_TYPE_PSTMT, CLASS_PREFIX "PStmt", &info, 0);
g_mutex_unlock (®istering);
}
return type;
}
static void
gda_sqlite_pstmt_class_init (GdaSqlitePStmtClass *klass)
{
GObjectClass *object_class = G_OBJECT_CLASS (klass);
parent_class = g_type_class_peek_parent (klass);
/* virtual functions */
object_class->finalize = gda_sqlite_pstmt_finalize;
}
static void
gda_sqlite_pstmt_init (GdaSqlitePStmt *pstmt, G_GNUC_UNUSED GdaSqlitePStmtClass *klass)
{
g_return_if_fail (GDA_IS_PSTMT (pstmt));
pstmt->sqlite_stmt = NULL;
pstmt->stmt_used = FALSE;
pstmt->rowid_hash = NULL;
pstmt->nb_rowid_columns = 0;
}
static void
gda_sqlite_pstmt_finalize (GObject *object)
{
GdaSqlitePStmt *pstmt = (GdaSqlitePStmt *) object;
g_return_if_fail (GDA_IS_PSTMT (pstmt));
/* free memory */
if (pstmt->sqlite_stmt)
SQLITE3_CALL (sqlite3_finalize) (pstmt->sqlite_stmt);
if (pstmt->rowid_hash)
g_hash_table_destroy (pstmt->rowid_hash);
/* chain to parent class */
parent_class->finalize (object);
}
GdaSqlitePStmt *
_gda_sqlite_pstmt_new (sqlite3_stmt *sqlite_stmt)
{
GdaSqlitePStmt *pstmt;
pstmt = (GdaSqlitePStmt*) g_object_new (GDA_TYPE_SQLITE_PSTMT, NULL);
pstmt->sqlite_stmt = sqlite_stmt;
return pstmt;
}
|