2008-08-01 11:02:07 -05:00
|
|
|
/********************************************************************
|
|
|
|
* gnc-schedxaction-sql.c: load and save data to SQL *
|
|
|
|
* *
|
|
|
|
* This program is free software; you can redistribute it and/or *
|
|
|
|
* modify it under the terms of the GNU General Public License as *
|
|
|
|
* published by the Free Software Foundation; either version 2 of *
|
|
|
|
* the License, or (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
* This program 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 General Public License for more details. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU General Public License*
|
|
|
|
* along with this program; if not, contact: *
|
|
|
|
* *
|
|
|
|
* Free Software Foundation Voice: +1-617-542-5942 *
|
|
|
|
* 51 Franklin Street, Fifth Floor Fax: +1-617-542-2652 *
|
|
|
|
* Boston, MA 02110-1301, USA gnu@gnu.org *
|
|
|
|
\********************************************************************/
|
|
|
|
/** @file gnc-schedxaction-sql.c
|
2010-03-27 16:02:18 -05:00
|
|
|
* @brief load and save data to SQL
|
2008-08-01 11:02:07 -05:00
|
|
|
* @author Copyright (c) 2006-2008 Phil Longstaff <plongstaff@rogers.com>
|
|
|
|
*
|
|
|
|
* This file implements the top-level QofBackend API for saving/
|
|
|
|
* restoring data to/from an SQL db
|
|
|
|
*/
|
2015-11-28 15:40:55 -06:00
|
|
|
extern "C"
|
|
|
|
{
|
2008-08-01 11:02:07 -05:00
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <glib.h>
|
|
|
|
|
|
|
|
#include "qof.h"
|
|
|
|
#include "SchedXaction.h"
|
|
|
|
#include "SX-book.h"
|
|
|
|
#include "Recurrence.h"
|
|
|
|
|
2009-03-09 12:17:57 -05:00
|
|
|
#ifdef S_SPLINT_S
|
|
|
|
#include "splint-defs.h"
|
|
|
|
#endif
|
2015-11-28 15:40:55 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
#include "gnc-backend-sql.h"
|
|
|
|
#include "gnc-schedxaction-sql.h"
|
|
|
|
#include "gnc-slots-sql.h"
|
|
|
|
#include "gnc-recurrence-sql.h"
|
|
|
|
#include "gnc-transaction-sql.h"
|
|
|
|
|
2009-03-09 12:17:57 -05:00
|
|
|
|
2008-08-01 11:02:07 -05:00
|
|
|
#define SCHEDXACTION_TABLE "schedxactions"
|
|
|
|
#define TABLE_VERSION 1
|
|
|
|
|
2012-05-26 18:47:34 -05:00
|
|
|
G_GNUC_UNUSED static QofLogModule log_module = G_LOG_DOMAIN;
|
2008-08-01 11:02:07 -05:00
|
|
|
|
|
|
|
#define SX_MAX_NAME_LEN 2048
|
|
|
|
|
2016-03-12 13:13:05 -06:00
|
|
|
static const EntryVec col_table
|
|
|
|
({
|
2016-06-09 16:23:42 -05:00
|
|
|
gnc_sql_make_table_entry<CT_GUID>("guid", 0, COL_NNUL | COL_PKEY, "guid"),
|
|
|
|
gnc_sql_make_table_entry<CT_STRING>("name", SX_MAX_NAME_LEN, 0, "name"),
|
|
|
|
gnc_sql_make_table_entry<CT_BOOLEAN>("enabled", 0, COL_NNUL, "enabled"),
|
|
|
|
gnc_sql_make_table_entry<CT_GDATE>("start_date", 0, 0, "start-date"),
|
|
|
|
gnc_sql_make_table_entry<CT_GDATE>("end_date", 0, 0, "end-date"),
|
|
|
|
gnc_sql_make_table_entry<CT_GDATE>(
|
|
|
|
"last_occur", 0, 0, "last-occurance-date"),
|
|
|
|
gnc_sql_make_table_entry<CT_INT>(
|
|
|
|
"num_occur", 0, COL_NNUL, "num-occurance"),
|
|
|
|
gnc_sql_make_table_entry<CT_INT>("rem_occur", 0, COL_NNUL, "rem-occurance"),
|
|
|
|
gnc_sql_make_table_entry<CT_BOOLEAN>(
|
|
|
|
"auto_create", 0, COL_NNUL, "auto-create"),
|
|
|
|
gnc_sql_make_table_entry<CT_BOOLEAN>(
|
|
|
|
"auto_notify", 0, COL_NNUL, "auto-create-notify"),
|
|
|
|
gnc_sql_make_table_entry<CT_INT>(
|
|
|
|
"adv_creation", 0, COL_NNUL, "advance-creation-days"),
|
|
|
|
gnc_sql_make_table_entry<CT_INT>(
|
|
|
|
"adv_notify", 0, COL_NNUL, "advance-reminder-days"),
|
|
|
|
gnc_sql_make_table_entry<CT_INT>(
|
|
|
|
"instance_count", 0, COL_NNUL, "instance-count"),
|
|
|
|
gnc_sql_make_table_entry<CT_ACCOUNTREF>(
|
|
|
|
"template_act_guid", 0, COL_NNUL, "template-account"),
|
2016-03-12 13:13:05 -06:00
|
|
|
});
|
2008-08-01 11:02:07 -05:00
|
|
|
|
|
|
|
/* ================================================================= */
|
2016-03-12 15:34:22 -06:00
|
|
|
static SchedXaction*
|
2016-04-09 17:31:36 -05:00
|
|
|
load_single_sx (GncSqlBackend* be, GncSqlRow& row)
|
2008-08-01 11:02:07 -05:00
|
|
|
{
|
2010-03-27 16:01:21 -05:00
|
|
|
const GncGUID* guid;
|
2010-03-27 16:02:18 -05:00
|
|
|
SchedXaction* pSx;
|
|
|
|
GList* schedule;
|
|
|
|
GDate start_date;
|
2008-08-01 11:02:07 -05:00
|
|
|
|
2016-03-12 16:04:40 -06:00
|
|
|
g_return_val_if_fail (be != NULL, NULL);
|
2008-08-01 11:02:07 -05:00
|
|
|
|
2016-03-12 16:04:40 -06:00
|
|
|
guid = gnc_sql_load_guid (be, row);
|
|
|
|
g_assert (guid != NULL);
|
|
|
|
pSx = xaccSchedXactionMalloc (be->book);
|
2008-08-01 11:02:07 -05:00
|
|
|
|
2016-03-12 16:04:40 -06:00
|
|
|
gnc_sx_begin_edit (pSx);
|
|
|
|
gnc_sql_load_object (be, row, GNC_SX_ID, pSx, col_table);
|
|
|
|
schedule = gnc_sql_recurrence_load_list (be, guid);
|
|
|
|
gnc_sx_set_schedule (pSx, schedule);
|
|
|
|
gnc_sx_commit_edit (pSx);
|
|
|
|
gnc_sql_transaction_load_tx_for_account (be, pSx->template_acct);
|
2008-08-01 11:02:07 -05:00
|
|
|
|
2016-03-12 16:04:40 -06:00
|
|
|
g_object_get (pSx, "start-date", &start_date, NULL);
|
2010-03-01 13:08:00 -06:00
|
|
|
|
2008-08-01 11:02:07 -05:00
|
|
|
return pSx;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2016-03-12 16:04:40 -06:00
|
|
|
load_all_sxes (GncSqlBackend* be)
|
2008-08-01 11:02:07 -05:00
|
|
|
{
|
|
|
|
GncSqlStatement* stmt = NULL;
|
|
|
|
|
2016-03-12 16:04:40 -06:00
|
|
|
g_return_if_fail (be != NULL);
|
2008-08-01 11:02:07 -05:00
|
|
|
|
2016-03-12 16:04:40 -06:00
|
|
|
stmt = gnc_sql_create_select_statement (be, SCHEDXACTION_TABLE);
|
|
|
|
if (stmt == NULL) return;
|
2016-04-09 17:31:36 -05:00
|
|
|
auto result = gnc_sql_execute_select_statement (be, stmt);
|
2016-05-09 19:40:45 -05:00
|
|
|
delete stmt;
|
2016-04-09 17:31:36 -05:00
|
|
|
SchedXactions* sxes;
|
|
|
|
GList* list = NULL;
|
|
|
|
sxes = gnc_book_get_schedxactions (be->book);
|
|
|
|
|
|
|
|
for (auto row : *result)
|
2010-03-27 16:02:18 -05:00
|
|
|
{
|
2016-04-09 17:31:36 -05:00
|
|
|
SchedXaction* sx;
|
2010-03-27 16:02:18 -05:00
|
|
|
|
2016-04-09 17:31:36 -05:00
|
|
|
sx = load_single_sx (be, row);
|
|
|
|
if (sx != NULL)
|
2010-03-27 16:02:18 -05:00
|
|
|
{
|
2016-04-09 17:31:36 -05:00
|
|
|
gnc_sxes_add_sx (sxes, sx);
|
|
|
|
list = g_list_prepend (list, sx);
|
2008-08-01 11:02:07 -05:00
|
|
|
}
|
2016-04-09 17:31:36 -05:00
|
|
|
}
|
2008-08-01 11:02:07 -05:00
|
|
|
|
2016-04-09 17:31:36 -05:00
|
|
|
if (list != NULL)
|
|
|
|
{
|
|
|
|
gnc_sql_slots_load_for_list (be, list);
|
|
|
|
g_list_free (list);
|
2008-08-01 11:02:07 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ================================================================= */
|
|
|
|
static void
|
2016-03-12 16:04:40 -06:00
|
|
|
create_sx_tables (GncSqlBackend* be)
|
2008-08-01 11:02:07 -05:00
|
|
|
{
|
2010-03-27 16:02:18 -05:00
|
|
|
gint version;
|
2008-08-01 11:02:07 -05:00
|
|
|
|
2016-03-12 16:04:40 -06:00
|
|
|
g_return_if_fail (be != NULL);
|
2008-08-01 11:02:07 -05:00
|
|
|
|
2016-03-12 16:04:40 -06:00
|
|
|
version = gnc_sql_get_table_version (be, SCHEDXACTION_TABLE);
|
|
|
|
if (version == 0)
|
2010-03-27 16:02:18 -05:00
|
|
|
{
|
2016-03-12 16:04:40 -06:00
|
|
|
(void)gnc_sql_create_table (be, SCHEDXACTION_TABLE, TABLE_VERSION, col_table);
|
2008-08-01 11:02:07 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ================================================================= */
|
2008-09-27 12:31:23 -05:00
|
|
|
gboolean
|
2016-03-12 16:04:40 -06:00
|
|
|
gnc_sql_save_schedxaction (GncSqlBackend* be, QofInstance* inst)
|
2008-08-01 11:02:07 -05:00
|
|
|
{
|
|
|
|
SchedXaction* pSx;
|
2010-03-27 16:01:21 -05:00
|
|
|
const GncGUID* guid;
|
2015-11-28 15:40:55 -06:00
|
|
|
E_DB_OPERATION op;
|
2010-03-27 16:02:18 -05:00
|
|
|
gboolean is_infant;
|
|
|
|
gboolean is_ok;
|
2008-08-01 11:02:07 -05:00
|
|
|
|
2016-03-12 16:04:40 -06:00
|
|
|
g_return_val_if_fail (be != NULL, FALSE);
|
|
|
|
g_return_val_if_fail (inst != NULL, FALSE);
|
|
|
|
g_return_val_if_fail (GNC_IS_SX (inst), FALSE);
|
2008-08-01 11:02:07 -05:00
|
|
|
|
2016-03-12 16:04:40 -06:00
|
|
|
pSx = GNC_SX (inst);
|
2008-08-01 11:02:07 -05:00
|
|
|
|
2016-03-12 16:04:40 -06:00
|
|
|
is_infant = qof_instance_get_infant (inst);
|
|
|
|
if (qof_instance_get_destroying (inst))
|
2010-03-27 16:02:18 -05:00
|
|
|
{
|
|
|
|
op = OP_DB_DELETE;
|
|
|
|
}
|
2016-03-12 16:04:40 -06:00
|
|
|
else if (be->is_pristine_db || is_infant)
|
2010-03-27 16:02:18 -05:00
|
|
|
{
|
|
|
|
op = OP_DB_INSERT;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
op = OP_DB_UPDATE;
|
|
|
|
}
|
2016-03-12 16:04:40 -06:00
|
|
|
is_ok = gnc_sql_do_db_operation (be, op, SCHEDXACTION_TABLE, GNC_SX_ID, pSx,
|
|
|
|
col_table);
|
|
|
|
guid = qof_instance_get_guid (inst);
|
|
|
|
if (op == OP_DB_INSERT || op == OP_DB_UPDATE)
|
2010-03-27 16:02:18 -05:00
|
|
|
{
|
2016-03-12 16:04:40 -06:00
|
|
|
gnc_sql_recurrence_save_list (be, guid, gnc_sx_get_schedule (pSx));
|
2010-03-27 16:02:18 -05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-03-12 16:04:40 -06:00
|
|
|
gnc_sql_recurrence_delete (be, guid);
|
2010-03-27 16:02:18 -05:00
|
|
|
}
|
|
|
|
|
2016-03-12 16:04:40 -06:00
|
|
|
if (is_ok)
|
2010-03-27 16:02:18 -05:00
|
|
|
{
|
|
|
|
// Now, commit any slots
|
2016-03-12 16:04:40 -06:00
|
|
|
if (op == OP_DB_INSERT || op == OP_DB_UPDATE)
|
2010-03-27 16:02:18 -05:00
|
|
|
{
|
2016-03-12 16:04:40 -06:00
|
|
|
is_ok = gnc_sql_slots_save (be, guid, is_infant, inst);
|
2010-03-27 16:02:18 -05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-03-12 16:04:40 -06:00
|
|
|
is_ok = gnc_sql_slots_delete (be, guid);
|
2010-03-27 16:02:18 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return is_ok;
|
2008-08-01 11:02:07 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ================================================================= */
|
|
|
|
void
|
2016-03-12 16:04:40 -06:00
|
|
|
gnc_sql_init_schedxaction_handler (void)
|
2008-08-01 11:02:07 -05:00
|
|
|
{
|
|
|
|
static GncSqlObjectBackend be_data =
|
|
|
|
{
|
|
|
|
GNC_SQL_BACKEND_VERSION,
|
|
|
|
GNC_ID_SCHEDXACTION,
|
|
|
|
gnc_sql_save_schedxaction, /* commit */
|
|
|
|
load_all_sxes, /* initial_load */
|
2009-02-16 15:30:21 -06:00
|
|
|
create_sx_tables, /* create_tables */
|
2010-03-27 16:02:18 -05:00
|
|
|
NULL, /* compile_query */
|
|
|
|
NULL, /* run_query */
|
|
|
|
NULL, /* free_query */
|
|
|
|
NULL /* write */
|
2008-08-01 11:02:07 -05:00
|
|
|
};
|
|
|
|
|
2016-08-04 16:41:40 -05:00
|
|
|
gnc_sql_register_backend(&be_data);
|
2008-08-01 11:02:07 -05:00
|
|
|
}
|
|
|
|
/* ========================== END OF FILE ===================== */
|