gnucash/libgnucash/app-utils/gnc-helpers.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

136 lines
5.1 KiB
C

/********************************************************************\
* gnc-helpers.c -- gnucash app-util helper functions *
* Copyright (C) 2000 Linas Vepstas *
* *
* 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 <libguile.h>
#include "guile-mappings.h"
#include <string.h>
#include "swig-runtime.h"
#include "gnc-engine.h"
#include "engine-helpers-guile.h"
#include "gnc-helpers.h"
#include "gnc-ui-util.h"
/* Type converters for GNCPrintAmountInfo */
SCM
gnc_printinfo2scm(GNCPrintAmountInfo info)
{
SCM info_scm = SCM_EOL;
info_scm = scm_cons (SCM_BOOL (info.round), info_scm);
info_scm = scm_cons (SCM_BOOL (info.force_fit), info_scm);
info_scm = scm_cons (SCM_BOOL (info.monetary), info_scm);
info_scm = scm_cons (SCM_BOOL (info.use_locale), info_scm);
info_scm = scm_cons (SCM_BOOL (info.use_symbol), info_scm);
info_scm = scm_cons (SCM_BOOL (info.use_separators), info_scm);
info_scm = scm_cons (scm_from_int (info.min_decimal_places), info_scm);
info_scm = scm_cons (scm_from_int (info.max_decimal_places), info_scm);
info_scm = scm_cons (gnc_commodity_to_scm (info.commodity), info_scm);
info_scm = scm_cons (scm_from_locale_symbol ("print-info"), info_scm);
return info_scm;
}
GNCPrintAmountInfo
gnc_scm2printinfo(SCM info_scm)
{
GNCPrintAmountInfo info;
/* skip type */
info_scm = SCM_CDR (info_scm);
info.commodity = gnc_scm_to_commodity (SCM_CAR (info_scm));
info_scm = SCM_CDR (info_scm);
info.max_decimal_places = scm_to_int (SCM_CAR (info_scm));
info_scm = SCM_CDR (info_scm);
info.min_decimal_places = scm_to_int (SCM_CAR (info_scm));
info_scm = SCM_CDR (info_scm);
info.use_separators = scm_is_true (SCM_CAR (info_scm));
info_scm = SCM_CDR (info_scm);
info.use_symbol = scm_is_true (SCM_CAR (info_scm));
info_scm = SCM_CDR (info_scm);
info.use_locale = scm_is_true (SCM_CAR (info_scm));
info_scm = SCM_CDR (info_scm);
info.monetary = scm_is_true (SCM_CAR (info_scm));
info_scm = SCM_CDR (info_scm);
info.force_fit = scm_is_true (SCM_CAR (info_scm));
info_scm = SCM_CDR (info_scm);
info.round = scm_is_true (SCM_CAR (info_scm));
return info;
}
/* This is a scaled down version of the routine that would be needed
* to fully convert a gnc-commodity to a scheme data structure. In an
* attempt to optimize the speed of price quote retrieval, this
* routine only converts the fields that price-quotes.scm uses. Since
* it converts these fields all at once, it should prevent multiple
* transitions back and forth from Scheme to C to extract
* the data from a pointers to a gnc-commodity (the older method).
* This is *not* a reversible conversion as it drops data.
*
* When this routine was written, gnucash retrieved all quotes into
* the user's default currency. (Did earlier version do any
* different?) This routine inserts that default currency into the
* returned structure as another optimization.
*/
SCM
gnc_quoteinfo2scm(gnc_commodity *comm)
{
gnc_quote_source *source;
const char *name, *tz;
SCM info_scm = SCM_EOL, comm_scm, def_comm_scm;
if (!comm)
return SCM_EOL;
source = gnc_commodity_get_quote_source (comm);
name = gnc_quote_source_get_internal_name (source);
tz = gnc_commodity_get_quote_tz (comm);
comm_scm = SWIG_NewPointerObj(comm, SWIG_TypeQuery("_p_gnc_commodity"), 0);
def_comm_scm = SWIG_NewPointerObj(gnc_default_currency (),
SWIG_TypeQuery("_p_gnc_commodity"), 0);
if (tz)
info_scm = scm_cons (scm_from_utf8_string (tz), info_scm);
else
info_scm = scm_cons (SCM_BOOL_F, info_scm);
info_scm = scm_cons (def_comm_scm, info_scm);
info_scm = scm_cons (comm_scm, info_scm);
info_scm = scm_cons (name ? scm_from_utf8_string (name) : SCM_BOOL_F, info_scm);
return info_scm;
}