gnucash/libgnucash/app-utils/gnc-entry-quickfill.c
Geert Janssens 1238b9d8cd Prevent gcc from searching config.h in the current directory
This will avoid a ninja-build from picking up a config.h generated by the autotools build
(in the root build directory). Picking up the wrong config.h may lead to all kinds of
subtle issues if the autotools run was done with different options than the cmake run.
2017-10-26 14:05:17 +02:00

168 lines
5.6 KiB
C

/********************************************************************\
* gnc-entry-quickfill.c -- Create an entry description quick-fill *
* Copyright (C) 2010 Christian Stimming <christian@cstimming.de> *
* *
* 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 *
* *
\********************************************************************/
#include <config.h>
#include "gnc-entry-quickfill.h"
#include "gnc-event.h"
#include "gncEntry.h"
/* This static indicates the debugging module that this .o belongs to. */
G_GNUC_UNUSED static QofLogModule log_module = GNC_MOD_REGISTER;
typedef struct
{
QuickFill *qf;
QuickFillSort qf_sort;
QofBook *book;
gint listener;
gboolean using_invoices;
} EntryQF;
static void
listen_for_gncentry_events(QofInstance *entity, QofEventId event_type,
gpointer user_data, gpointer event_data)
{
EntryQF *qfb = user_data;
QuickFill *qf = qfb->qf;
const char *desc;
/* We only listen for GncEntry events */
if (!GNC_IS_ENTRY (entity))
return;
/* We listen for MODIFY (if the description was changed into
* something non-empty, so we add the string to the quickfill) and
* DESTROY (to remove the description from the quickfill). */
if (0 == (event_type & (QOF_EVENT_MODIFY | QOF_EVENT_DESTROY)))
return;
/* g_warning("entity %p, entity type %s, event type %s, user data %p, ecent data %p", */
/* entity, entity->e_type, qofeventid_to_string(event_type), user_data, event_data); */
desc = gncEntryGetDescription(GNC_ENTRY(entity));
if (event_type & QOF_EVENT_MODIFY)
{
/* If the description was changed into something non-empty, so
* we add the string to the quickfill */
if (!desc || strlen(desc) == 0)
return;
/* Add the new string to the quickfill */
gnc_quickfill_insert (qf, desc, QUICKFILL_LIFO);
}
else if (event_type & QOF_EVENT_DESTROY)
{
if (!desc || strlen(desc) == 0)
return;
/* Remove the description from the quickfill */
gnc_quickfill_insert (qf, desc, QUICKFILL_LIFO);
}
}
static void
shared_quickfill_destroy (QofBook *book, gpointer key, gpointer user_data)
{
EntryQF *qfb = user_data;
gnc_quickfill_destroy (qfb->qf);
qof_event_unregister_handler (qfb->listener);
g_free (qfb);
}
static void entry_cb(gpointer data, gpointer user_data)
{
const GncEntry* entry = data;
EntryQF *s = (EntryQF *) user_data;
if (s->using_invoices == (gncEntryGetInvAccount(entry) != NULL))
{
gnc_quickfill_insert (s->qf,
gncEntryGetDescription(entry),
s->qf_sort);
}
}
/** Creates a new query that searches for all GncEntry items in the
* current book. */
static QofQuery *new_query_for_entrys(QofBook *book)
{
GSList *primary_sort_params = NULL;
QofQuery *query = qof_query_create_for (GNC_ID_ENTRY);
g_assert(book);
qof_query_set_book (query, book);
/* Set the sort order: By DATE_ENTERED, increasing, and returning
* only one single resulting item. */
primary_sort_params = qof_query_build_param_list(ENTRY_DATE_ENTERED, NULL);
qof_query_set_sort_order (query, primary_sort_params, NULL, NULL);
qof_query_set_sort_increasing (query, TRUE, TRUE, TRUE);
return query;
}
static EntryQF* build_shared_quickfill (QofBook *book, const char * key, gboolean use_invoices)
{
EntryQF *result;
QofQuery *query = new_query_for_entrys(book);
GList *entries = qof_query_run(query);
/* g_warning("Found %d GncEntry items", g_list_length (entries)); */
result = g_new0(EntryQF, 1);
result->using_invoices = use_invoices;
result->qf = gnc_quickfill_new();
result->qf_sort = QUICKFILL_LIFO;
result->book = book;
g_list_foreach (entries, entry_cb, result);
qof_query_destroy(query);
result->listener =
qof_event_register_handler (listen_for_gncentry_events,
result);
qof_book_set_data_fin (book, key, result, shared_quickfill_destroy);
return result;
}
QuickFill * gnc_get_shared_entry_desc_quickfill (QofBook *book,
const char * key, gboolean use_invoices)
{
EntryQF *qfb;
g_assert(book);
g_assert(key);
qfb = qof_book_get_data (book, key);
if (!qfb)
{
qfb = build_shared_quickfill(book, key, use_invoices);
}
g_assert(use_invoices == qfb->using_invoices);
return qfb->qf;
}