GnuCash c935c2f+
Loading...
Searching...
No Matches
Files | Typedefs | Enumerations | Functions

The PriceDB is intended to be a database of price quotes, or more specifically, a database of GNCPrices. More...

Files

file  gnc-pricedb.h
 a simple price database for gnucash
 

Typedefs

typedef gboolean(* GncPriceForeachFunc) (GNCPrice *p, gpointer user_data)
 

Enumerations

enum  PriceRemoveSourceFlags { PRICE_REMOVE_SOURCE_FQ = 1 , PRICE_REMOVE_SOURCE_USER = 2 , PRICE_REMOVE_SOURCE_APP = 4 , PRICE_REMOVE_SOURCE_COMM = 8 }
 
enum  PriceRemoveKeepOptions {
  PRICE_REMOVE_KEEP_NONE , PRICE_REMOVE_KEEP_LAST_WEEKLY , PRICE_REMOVE_KEEP_LAST_MONTHLY , PRICE_REMOVE_KEEP_LAST_QUARTERLY ,
  PRICE_REMOVE_KEEP_LAST_PERIOD , PRICE_REMOVE_KEEP_SCALED
}
 

Functions

GNCPriceDB * gnc_pricedb_get_db (QofBook *book)
 Return the pricedb associated with the book.
 
GNCPriceDB * gnc_collection_get_pricedb (QofCollection *col)
 Return the pricedb via the Book's collection.
 
void gnc_pricedb_destroy (GNCPriceDB *db)
 Destroy the given pricedb and unref all of the prices it contains.
 
void gnc_pricedb_begin_edit (GNCPriceDB *)
 Begin an edit.
 
void gnc_pricedb_commit_edit (GNCPriceDB *)
 Commit an edit.
 
void gnc_pricedb_set_bulk_update (GNCPriceDB *db, gboolean bulk_update)
 Set flag to indicate whether duplication checks should be performed.
 
gboolean gnc_pricedb_add_price (GNCPriceDB *db, GNCPrice *p)
 Add a price to the pricedb.
 
gboolean gnc_pricedb_remove_price (GNCPriceDB *db, GNCPrice *p)
 Remove a price from the pricedb and unref the price.
 
gboolean gnc_pricedb_remove_old_prices (GNCPriceDB *db, GList *comm_list, GDate *fiscal_end_date, time64 cutoff, PriceRemoveSourceFlags source, PriceRemoveKeepOptions keep)
 Remove and unref prices older than a certain time.
 
GNCPrice * gnc_pricedb_lookup_latest (GNCPriceDB *db, const gnc_commodity *commodity, const gnc_commodity *currency)
 Find the most recent price between the two commodities.
 
PriceList * gnc_pricedb_lookup_latest_any_currency (GNCPriceDB *db, const gnc_commodity *commodity)
 Find the most recent price between a commodity and all other commodities.
 
gboolean gnc_pricedb_has_prices (GNCPriceDB *db, const gnc_commodity *commodity, const gnc_commodity *currency)
 Report whether the pricedb contains prices for one commodity in another.
 
PriceList * gnc_pricedb_get_prices (GNCPriceDB *db, const gnc_commodity *commodity, const gnc_commodity *currency)
 Return all the prices for a given commodity in another.
 
GNCPrice * gnc_pricedb_lookup_day_t64 (GNCPriceDB *db, const gnc_commodity *commodity, const gnc_commodity *currency, time64 t)
 Return the price between the two commodities on the indicated day.
 
GNCPrice * gnc_pricedb_lookup_nearest_in_time64 (GNCPriceDB *db, const gnc_commodity *c, const gnc_commodity *currency, time64 t)
 Return the price between the two commoditiesz nearest to the given time.
 
PriceList * gnc_pricedb_lookup_nearest_in_time_any_currency_t64 (GNCPriceDB *db, const gnc_commodity *c, time64 t)
 Return the price nearest in time to that given between the given commodity and every other.
 
GNCPrice * gnc_pricedb_lookup_nearest_before_t64 (GNCPriceDB *db, const gnc_commodity *c, const gnc_commodity *currency, time64 t)
 Return the nearest price between the given commodities before the given time.
 
PriceList * gnc_pricedb_lookup_nearest_before_any_currency_t64 (GNCPriceDB *db, const gnc_commodity *c, time64 t)
 Return the nearest price between the given commodity and any other before the given time.
 
gnc_numeric gnc_pricedb_get_nearest_before_price (GNCPriceDB *pdb, const gnc_commodity *orig_currency, const gnc_commodity *new_currency, const time64 t)
 Retrieve the price one currency to another using the price nearest to before the given time.
 
gnc_numeric gnc_pricedb_get_nearest_price (GNCPriceDB *pdb, const gnc_commodity *orig_currency, const gnc_commodity *new_currency, const time64 t)
 Retrieve the price one currency to another using the price nearest to the given time.
 
gnc_numeric gnc_pricedb_get_latest_price (GNCPriceDB *pdb, const gnc_commodity *orig_currency, const gnc_commodity *new_currency)
 Retrieve the price one currency to another using the latest price.
 
gnc_numeric gnc_pricedb_convert_balance_latest_price (GNCPriceDB *pdb, gnc_numeric balance, const gnc_commodity *balance_currency, const gnc_commodity *new_currency)
 Convert a balance from one currency to another using the most recent price between the two.
 
gnc_numeric gnc_pricedb_convert_balance_nearest_price_t64 (GNCPriceDB *pdb, gnc_numeric balance, const gnc_commodity *balance_currency, const gnc_commodity *new_currency, time64 t)
 Convert a balance from one currency to another using the price nearest to the given time.
 
gnc_numeric gnc_pricedb_convert_balance_nearest_before_price_t64 (GNCPriceDB *pdb, gnc_numeric balance, const gnc_commodity *balance_currency, const gnc_commodity *new_currency, time64 t)
 Convert a balance from one currency to another using the price nearest to before the given time.
 
gboolean gnc_pricedb_foreach_price (GNCPriceDB *db, GncPriceForeachFunc f, gpointer user_data, gboolean stable_order)
 Call a GncPriceForeachFunction once for each price in db, until the function returns FALSE.
 
int gnc_pricedb_num_prices (GNCPriceDB *db, const gnc_commodity *c)
 Get the number of prices, in any currency, for a given commodity.
 
GNCPrice * gnc_pricedb_nth_price (GNCPriceDB *db, const gnc_commodity *c, const int n)
 Get the nth price for the given commodity in reverse date order.
 
void gnc_pricedb_nth_price_reset_cache (GNCPriceDB *db)
 
guint gnc_pricedb_get_num_prices (GNCPriceDB *db)
 Return the number of prices in the database.
 
gboolean gnc_pricedb_equal (GNCPriceDB *db1, GNCPriceDB *db2)
 Test equality of two pricedbs.
 

Internal/Debugging

void gnc_pricedb_print_contents (GNCPriceDB *db, FILE *f)
 This simple function can be useful for debugging the pricedb code.
 

Price Parameter Names

For use with QofQuery

#define PRICE_COMMODITY   "price-commodity"
 
#define PRICE_CURRENCY   "price-currency"
 
#define PRICE_DATE   "price-date"
 
#define PRICE_SOURCE   "price-source"
 
#define PRICE_TYPE   "price-type"
 
#define PRICE_VALUE   "price-value"
 

Detailed Description

The PriceDB is intended to be a database of price quotes, or more specifically, a database of GNCPrices.

Whenever a you store a price in the pricedb, the pricedb adds its own reference to the price, so you can safely unref that price after inserting it into the DB if you're finished with it otherwise.

For the time being, it is still a fairly simple database supporting only fairly simple queries. It is expected that new queries will be added as needed, and that there is some advantage to delaying complex queries for now in the hope that we get a real DB implementation before they're really needed.

Every QofBook contains a GNCPriceDB, accessible via gnc_pricedb_get_db.

Warning
The PriceDB does not currently use the object system used elsewhere in the GnuCash Engine, i.e. it does not use GUISD's, Entities and Collections. It should. In particular, this means that currently prices cannot be queried with the same mechanism as everything else.

Similarly, when the pricedb returns a price to you, either singly, or in a price list, the price will have had a ref added for you, so you only need to unref the price(s) when you're finished with it/them.

Macro Definition Documentation

◆ PRICE_COMMODITY

#define PRICE_COMMODITY   "price-commodity"

Definition at line 700 of file gnc-pricedb.h.

◆ PRICE_CURRENCY

#define PRICE_CURRENCY   "price-currency"

Definition at line 701 of file gnc-pricedb.h.

◆ PRICE_DATE

#define PRICE_DATE   "price-date"

Definition at line 702 of file gnc-pricedb.h.

◆ PRICE_SOURCE

#define PRICE_SOURCE   "price-source"

Definition at line 703 of file gnc-pricedb.h.

◆ PRICE_TYPE

#define PRICE_TYPE   "price-type"

Definition at line 704 of file gnc-pricedb.h.

◆ PRICE_VALUE

#define PRICE_VALUE   "price-value"

Definition at line 705 of file gnc-pricedb.h.

Typedef Documentation

◆ GncPriceForeachFunc

typedef gboolean(* GncPriceForeachFunc) (GNCPrice *p, gpointer user_data)

Definition at line 634 of file gnc-pricedb.h.

Enumeration Type Documentation

◆ PriceRemoveKeepOptions

enum PriceRemoveKeepOptions

Definition at line 389 of file gnc-pricedb.h.

390{
391 PRICE_REMOVE_KEEP_NONE, // keep none
392 PRICE_REMOVE_KEEP_LAST_WEEKLY, // leave last one of every week
393 PRICE_REMOVE_KEEP_LAST_MONTHLY, // leave last one of every month
394 PRICE_REMOVE_KEEP_LAST_QUARTERLY, // leave last one of every quarter
395 PRICE_REMOVE_KEEP_LAST_PERIOD, // leave last one of every annual period
396 PRICE_REMOVE_KEEP_SCALED, // leave one every week then one a month
397} PriceRemoveKeepOptions;

◆ PriceRemoveSourceFlags

enum PriceRemoveSourceFlags

Definition at line 381 of file gnc-pricedb.h.

382{
383 PRICE_REMOVE_SOURCE_FQ = 1, // this flag is set when added by F:Q checked
384 PRICE_REMOVE_SOURCE_USER = 2, // this flag is set when added by the user checked
385 PRICE_REMOVE_SOURCE_APP = 4, // this flag is set when added by the app checked
386 PRICE_REMOVE_SOURCE_COMM = 8, // this flag is set when we have commodities selected
387} PriceRemoveSourceFlags;

Function Documentation

◆ gnc_collection_get_pricedb()

GNCPriceDB * gnc_collection_get_pricedb ( QofCollection *  col)

Return the pricedb via the Book's collection.

Parameters
colThe QofCollection holding the pricedb
Returns
The GNCPriceDB in the QofCollection
Todo:
Collections of prices are not destroyed fully.
gnc_pricedb_destroy does not clean up properly because gnc_pricedb_create reports an existing PriceDB after running gnc_pricedb_destroy. To change the pricedb, we need to destroy and recreate the book. Yuk.

Definition at line 904 of file gnc-pricedb.cpp.

905{
906 if (!col) return nullptr;
907 return static_cast<GNCPriceDB*>(qof_collection_get_data (col));
908}
gpointer qof_collection_get_data(const QofCollection *col)
Store and retrieve arbitrary object-defined data.
Definition qofid.cpp:266

◆ gnc_pricedb_add_price()

gboolean gnc_pricedb_add_price ( GNCPriceDB *  db,
GNCPrice *  p 
)

Add a price to the pricedb.

You may drop your reference to the price (i.e. call unref) after this succeeds, whenever you're finished with the price.

Parameters
dbThe pricedb
pThe GNCPrice to add.
Returns
TRUE if the price was added, FALSE otherwise.

Definition at line 1112 of file gnc-pricedb.cpp.

1113{
1114 if (!db || !p) return FALSE;
1115
1116 ENTER ("db=%p, pr=%p dirty=%d destroying=%d",
1119
1120 if (FALSE == add_price(db, p))
1121 {
1122 LEAVE (" failed to add price");
1123 return FALSE;
1124 }
1125
1127 qof_instance_set_dirty(&db->inst);
1129
1130 LEAVE ("db=%p, pr=%p dirty=%d destroying=%d",
1133
1134 return TRUE;
1135}
gboolean qof_instance_get_dirty_flag(gconstpointer ptr)
Retrieve the flag that indicates whether or not this object has been modified.
gboolean qof_instance_get_destroying(gconstpointer ptr)
Retrieve the flag that indicates whether or not this object is about to be destroyed.
#define LEAVE(format, args...)
Print a function exit debugging message.
Definition qoflog.h:282
#define ENTER(format, args...)
Print a function entry debugging message.
Definition qoflog.h:272
void gnc_pricedb_commit_edit(GNCPriceDB *pdb)
Commit an edit.
void gnc_pricedb_begin_edit(GNCPriceDB *pdb)
Begin an edit.

◆ gnc_pricedb_begin_edit()

void gnc_pricedb_begin_edit ( GNCPriceDB *  pdb)

Begin an edit.

Definition at line 434 of file gnc-pricedb.cpp.

435{
436 qof_begin_edit(&pdb->inst);
437}
gboolean qof_begin_edit(QofInstance *inst)
begin_edit

◆ gnc_pricedb_commit_edit()

void gnc_pricedb_commit_edit ( GNCPriceDB *  pdb)

Commit an edit.

Definition at line 440 of file gnc-pricedb.cpp.

441{
442 if (!qof_commit_edit (QOF_INSTANCE(pdb))) return;
443 qof_commit_edit_part2 (&pdb->inst, commit_err, noop, noop);
444}
gboolean qof_commit_edit_part2(QofInstance *inst, void(*on_error)(QofInstance *, QofBackendError), void(*on_done)(QofInstance *), void(*on_free)(QofInstance *))
part2 – deal with the backend
gboolean qof_commit_edit(QofInstance *inst)
commit_edit helpers

◆ gnc_pricedb_convert_balance_latest_price()

gnc_numeric gnc_pricedb_convert_balance_latest_price ( GNCPriceDB *  pdb,
gnc_numeric  balance,
const gnc_commodity *  balance_currency,
const gnc_commodity *  new_currency 
)

Convert a balance from one currency to another using the most recent price between the two.

Parameters
pdbThe pricedb
balanceThe balance to be converted
balance_currencyThe commodity in which the balance is currently expressed
new_currencyThe commodity to which the balance should be converted
Returns
A new balance or gnc_numeric_zero if no price is available.

Definition at line 2557 of file gnc-pricedb.cpp.

2561{
2562 return convert_amount_at_date
2563 (pdb, balance, balance_currency, new_currency, INT64_MAX, FALSE);
2564}

◆ gnc_pricedb_convert_balance_nearest_before_price_t64()

gnc_numeric gnc_pricedb_convert_balance_nearest_before_price_t64 ( GNCPriceDB *  pdb,
gnc_numeric  balance,
const gnc_commodity *  balance_currency,
const gnc_commodity *  new_currency,
time64  t 
)

Convert a balance from one currency to another using the price nearest to before the given time.

Parameters
pdbThe pricedb
balanceThe balance to be converted
balance_currencyThe commodity in which the balance is currently expressed
new_currencyThe commodity to which the balance should be converted
tThe time in which the last price before it should be used.
Returns
A new balance or gnc_numeric_zero if no price is available.

Definition at line 2578 of file gnc-pricedb.cpp.

2583{
2584 return convert_amount_at_date
2585 (pdb, balance, balance_currency, new_currency, t, TRUE);
2586}

◆ gnc_pricedb_convert_balance_nearest_price_t64()

gnc_numeric gnc_pricedb_convert_balance_nearest_price_t64 ( GNCPriceDB *  pdb,
gnc_numeric  balance,
const gnc_commodity *  balance_currency,
const gnc_commodity *  new_currency,
time64  t 
)

Convert a balance from one currency to another using the price nearest to the given time.

Parameters
pdbThe pricedb
balanceThe balance to be converted
balance_currencyThe commodity in which the balance is currently expressed
new_currencyThe commodity to which the balance should be converted
tThe time nearest to which price should be used.
Returns
A new balance or gnc_numeric_zero if no price is available.

Definition at line 2567 of file gnc-pricedb.cpp.

2572{
2573 return convert_amount_at_date
2574 (pdb, balance, balance_currency, new_currency, t, FALSE);
2575}

◆ gnc_pricedb_destroy()

void gnc_pricedb_destroy ( GNCPriceDB *  db)

Destroy the given pricedb and unref all of the prices it contains.

This may not deallocate all of those prices. Other code may still be holding references to them.

Parameters
dbThe pricedb to destroy.

Definition at line 867 of file gnc-pricedb.cpp.

868{
869 if (!db) return;
870 if (db->commodity_hash)
871 {
872 g_hash_table_foreach (db->commodity_hash,
873 destroy_pricedb_commodity_hash_data,
874 nullptr);
875 }
876 g_hash_table_destroy (db->commodity_hash);
877 db->commodity_hash = nullptr;
878 /* qof_instance_release (&db->inst); */
879 g_object_unref(db);
880}

◆ gnc_pricedb_equal()

gboolean gnc_pricedb_equal ( GNCPriceDB *  db1,
GNCPriceDB *  db2 
)

Test equality of two pricedbs.

For XML Backend Testing

Definition at line 986 of file gnc-pricedb.cpp.

987{
988 GNCPriceDBEqualData equal_data;
989
990 if (db1 == db2) return TRUE;
991
992 if (!db1 || !db2)
993 {
994 PWARN ("one is nullptr");
995 return FALSE;
996 }
997
998 equal_data.equal = TRUE;
999 equal_data.db2 = db2;
1000
1001 g_hash_table_foreach (db1->commodity_hash,
1002 pricedb_equal_foreach_currencies_hash,
1003 &equal_data);
1004
1005 return equal_data.equal;
1006}
#define PWARN(format, args...)
Log a warning.
Definition qoflog.h:250

◆ gnc_pricedb_foreach_price()

gboolean gnc_pricedb_foreach_price ( GNCPriceDB *  db,
GncPriceForeachFunc  f,
gpointer  user_data,
gboolean  stable_order 
)

Call a GncPriceForeachFunction once for each price in db, until the function returns FALSE.

If stable_order is not FALSE, make sure the ordering of the traversal is stable (i.e. the same order every time given the same db contents – stable traversals may be less efficient).

Parameters
dbThe pricedb
fThe function to call
user_dataA data to pass to each invocation of f
stable_orderEnsure that the traversal is performed in the same order each time.
Returns
TRUE if all calls to f succeeded (unstable) or if the order of processing was the same as the previous invocation (stable), FALSE otherwise.

Definition at line 2731 of file gnc-pricedb.cpp.

2735{
2736 ENTER ("db=%p f=%p", db, f);
2737 if (stable_order)
2738 {
2739 LEAVE (" stable order found");
2740 return stable_price_traversal(db, f, user_data);
2741 }
2742 LEAVE (" use unstable order");
2743 return unstable_price_traversal(db, f, user_data);
2744}

◆ gnc_pricedb_get_db()

GNCPriceDB * gnc_pricedb_get_db ( QofBook book)

Return the pricedb associated with the book.

Parameters
bookThe QofBook holding the pricedb
Returns
The GNCPriceDB associated with the book.

Definition at line 911 of file gnc-pricedb.cpp.

912{
913 QofCollection *col;
914
915 if (!book) return nullptr;
916 col = qof_book_get_collection (book, GNC_ID_PRICEDB);
917 return gnc_collection_get_pricedb (col);
918}
QofCollection * qof_book_get_collection(const QofBook *book, QofIdType entity_type)
Return The table of entities of the given type.
Definition qofbook.cpp:521
GNCPriceDB * gnc_collection_get_pricedb(QofCollection *col)
Return the pricedb via the Book's collection.

◆ gnc_pricedb_get_latest_price()

gnc_numeric gnc_pricedb_get_latest_price ( GNCPriceDB *  pdb,
const gnc_commodity *  orig_currency,
const gnc_commodity *  new_currency 
)

Retrieve the price one currency to another using the latest price.

Parameters
pdbThe pricedb
orig_currencyThe commodity in which the balance is currently expressed
new_currencyThe commodity to which the balance should be converted
Returns
A price, or gnc_numeric_zero if no price is available.

Definition at line 2522 of file gnc-pricedb.cpp.

2525{
2526 return get_nearest_price (pdb, orig_currency, new_currency, INT64_MAX, FALSE);
2527}

◆ gnc_pricedb_get_nearest_before_price()

gnc_numeric gnc_pricedb_get_nearest_before_price ( GNCPriceDB *  pdb,
const gnc_commodity *  orig_currency,
const gnc_commodity *  new_currency,
const time64  t 
)

Retrieve the price one currency to another using the price nearest to before the given time.

Parameters
pdbThe pricedb
orig_currencyThe commodity in which the balance is currently expressed
new_currencyThe commodity to which the balance should be converted
tThe time to be used for for comparison
Returns
A price, or gnc_numeric_zero if no price is available.

Definition at line 2504 of file gnc-pricedb.cpp.

2508{
2509 return get_nearest_price (pdb, orig_currency, new_currency, t, TRUE);
2510}

◆ gnc_pricedb_get_nearest_price()

gnc_numeric gnc_pricedb_get_nearest_price ( GNCPriceDB *  pdb,
const gnc_commodity *  orig_currency,
const gnc_commodity *  new_currency,
const time64  t 
)

Retrieve the price one currency to another using the price nearest to the given time.

Parameters
pdbThe pricedb
orig_currencyThe commodity in which the balance is currently expressed
new_currencyThe commodity to which the balance should be converted
tThe time in which the nearest price should be used.
Returns
A price, or gnc_numeric_zero if no price is available.

Definition at line 2513 of file gnc-pricedb.cpp.

2517{
2518 return get_nearest_price (pdb, orig_currency, new_currency, t, FALSE);
2519}

◆ gnc_pricedb_get_num_prices()

guint gnc_pricedb_get_num_prices ( GNCPriceDB *  db)

Return the number of prices in the database.

For XML Backend Testing

Definition at line 933 of file gnc-pricedb.cpp.

934{
935 guint count;
936
937 if (!db) return 0;
938
939 count = 0;
940
941 gnc_pricedb_foreach_price(db, num_prices_helper, &count, FALSE);
942
943 return count;
944}
gboolean gnc_pricedb_foreach_price(GNCPriceDB *db, GncPriceForeachFunc f, gpointer user_data, gboolean stable_order)
Call a GncPriceForeachFunction once for each price in db, until the function returns FALSE.

◆ gnc_pricedb_get_prices()

PriceList * gnc_pricedb_get_prices ( GNCPriceDB *  db,
const gnc_commodity *  commodity,
const gnc_commodity *  currency 
)

Return all the prices for a given commodity in another.

Does not retrieve reverse prices, i.e. prices of the second commodity in the first.

Parameters
dbThe pricedb from which to retrieve prices.
commodityThe commodity for which prices should be retrieved.
currencyThe commodity in which prices should be quoted. If NULL, all prices in any commodity are included.
Returns
A PriceList of matching prices or NULL if none were found.

Definition at line 2047 of file gnc-pricedb.cpp.

2050{
2051 if (!db || !commodity) return nullptr;
2052 ENTER ("db=%p commodity=%p currency=%p", db, commodity, currency);
2053 auto result = pricedb_get_prices_internal (db, commodity, currency, FALSE);
2054 if (!result) return nullptr;
2055 g_list_foreach (result, (GFunc)gnc_price_ref, nullptr);
2056 LEAVE (" ");
2057 return result;
2058}
void gnc_price_ref(GNCPrice *p)
gnc_price_ref - indicate your need for a given price to stick around (i.e.

◆ gnc_pricedb_has_prices()

gboolean gnc_pricedb_has_prices ( GNCPriceDB *  db,
const gnc_commodity *  commodity,
const gnc_commodity *  currency 
)

Report whether the pricedb contains prices for one commodity in another.

Does not check the reverse direction.

Parameters
dbThe pricedb to check
commodityThe commodity to check for the existence of prices
currencyThe commodity in which prices are sought. If NULL reports all commodities.
Returns
TRUE if matching prices are found, FALSE otherwise.

Definition at line 2008 of file gnc-pricedb.cpp.

2011{
2012 GList *price_list;
2013 GHashTable *currency_hash;
2014 gint size;
2015
2016 if (!db || !commodity) return FALSE;
2017 ENTER ("db=%p commodity=%p currency=%p", db, commodity, currency);
2018 currency_hash = static_cast<GHashTable*>(g_hash_table_lookup(db->commodity_hash, commodity));
2019 if (!currency_hash)
2020 {
2021 LEAVE("no, no currency_hash table");
2022 return FALSE;
2023 }
2024
2025 if (currency)
2026 {
2027 price_list = static_cast<GList*>(g_hash_table_lookup(currency_hash, currency));
2028 if (price_list)
2029 {
2030 LEAVE("yes");
2031 return TRUE;
2032 }
2033 LEAVE("no, no price list");
2034 return FALSE;
2035 }
2036
2037 size = g_hash_table_size (currency_hash);
2038 LEAVE("%s", size > 0 ? "yes" : "no");
2039 return size > 0;
2040}

◆ gnc_pricedb_lookup_day_t64()

GNCPrice * gnc_pricedb_lookup_day_t64 ( GNCPriceDB *  db,
const gnc_commodity *  commodity,
const gnc_commodity *  currency,
time64  t 
)

Return the price between the two commodities on the indicated day.

Note that the notion of day might be distorted by changes in timezone.

The returned GNCPrice may be in either direction so check to ensure that its value is correctly applied.

Parameters
dbThe pricedb
commodityThe first commodity
currencyThe second commodity
tA time. The price returned will be in the same day as this time according to the local timezone.
Returns
A GNCPrice or NULL on failure.

Definition at line 2171 of file gnc-pricedb.cpp.

2175{
2176 return lookup_nearest_in_time(db, c, currency, t, TRUE);
2177}

◆ gnc_pricedb_lookup_latest()

GNCPrice * gnc_pricedb_lookup_latest ( GNCPriceDB *  db,
const gnc_commodity *  commodity,
const gnc_commodity *  currency 
)

Find the most recent price between the two commodities.

The returned GNCPrice may be in either direction so check to ensure that its value is correctly applied.

Parameters
dbThe pricedb
commodityThe first commodity
currencyThe second commodity
Returns
A GNCPrice or NULL if no price exists.

Definition at line 1731 of file gnc-pricedb.cpp.

1734{
1735 GList *price_list;
1736 GNCPrice *result;
1737
1738 if (!db || !commodity || !currency) return nullptr;
1739 ENTER ("db=%p commodity=%p currency=%p", db, commodity, currency);
1740
1741 price_list = pricedb_get_prices_internal(db, commodity, currency, TRUE);
1742 if (!price_list) return nullptr;
1743 /* This works magically because prices are inserted in date-sorted
1744 * order, and the latest date always comes first. So return the
1745 * first in the list. */
1746 result = static_cast<GNCPrice*>(price_list->data);
1747 gnc_price_ref(result);
1748 g_list_free (price_list);
1749 LEAVE("price is %p", result);
1750 return result;
1751}

◆ gnc_pricedb_lookup_latest_any_currency()

PriceList * gnc_pricedb_lookup_latest_any_currency ( GNCPriceDB *  db,
const gnc_commodity *  commodity 
)

Find the most recent price between a commodity and all other commodities.

The returned GNCPrices may be in either direction so check to ensure that their values are correctly applied.

Parameters
dbThe pricedb
commodityThe commodity for which to obtain prices
Returns
A PriceList of prices found, or NULL if none found.

Definition at line 1955 of file gnc-pricedb.cpp.

1957{
1959 gnc_time(nullptr));
1960}
time64 gnc_time(time64 *tbuf)
get the current time
Definition gnc-date.cpp:262
PriceList * gnc_pricedb_lookup_nearest_before_any_currency_t64(GNCPriceDB *db, const gnc_commodity *commodity, time64 t)
Return the nearest price between the given commodity and any other before the given time.

◆ gnc_pricedb_lookup_nearest_before_any_currency_t64()

PriceList * gnc_pricedb_lookup_nearest_before_any_currency_t64 ( GNCPriceDB *  db,
const gnc_commodity *  c,
time64  t 
)

Return the nearest price between the given commodity and any other before the given time.

The returned GNCPrice may be in either direction so check to ensure that its value is correctly applied.

Parameters
dbThe pricedb
cThe commodity
tThe time before which to find prices
Returns
A PriceList of prices for each commodity found or NULL if none are.

Definition at line 1983 of file gnc-pricedb.cpp.

1986{
1987 GList *prices = nullptr, *result;
1988 UsesCommodity helper = {&prices, commodity, t};
1989 result = nullptr;
1990
1991 if (!db || !commodity) return nullptr;
1992 ENTER ("db=%p commodity=%p", db, commodity);
1993
1994 pricedb_pricelist_traversal(db, price_list_scan_any_currency,
1995 &helper);
1996 prices = g_list_sort(prices, compare_prices_by_date);
1997 result = latest_before(prices, commodity, t);
1998 gnc_price_list_destroy(prices);
1999 LEAVE(" ");
2000 return result;
2001}
void gnc_price_list_destroy(PriceList *prices)
gnc_price_list_destroy - destroy the given price list, calling gnc_price_unref on all the prices incl...

◆ gnc_pricedb_lookup_nearest_before_t64()

GNCPrice * gnc_pricedb_lookup_nearest_before_t64 ( GNCPriceDB *  db,
const gnc_commodity *  c,
const gnc_commodity *  currency,
time64  t 
)

Return the nearest price between the given commodities before the given time.

The returned GNCPrice may be in either direction so check to ensure that its value is correctly applied.

Parameters
dbThe pricedb
cThe first commodity
currencyThe second commodity
tThe time before which to find the price
Returns
A GNCPrice or NULL if no prices are found before t.

Definition at line 2305 of file gnc-pricedb.cpp.

2309{
2310 GNCPrice *current_price = nullptr;
2311 if (!db || !c || !currency) return nullptr;
2312 ENTER ("db=%p commodity=%p currency=%p", db, c, currency);
2313 auto price_list = pricedb_get_prices_internal (db, c, currency, TRUE);
2314 if (!price_list) return nullptr;
2315 auto p = g_list_find_custom (price_list, &t, (GCompareFunc)price_time64_less_or_equal);
2316 if (p)
2317 {
2318 current_price = GNC_PRICE (p->data);
2319 gnc_price_ref (current_price);
2320 }
2321 g_list_free (price_list);
2322 LEAVE (" ");
2323 return current_price;
2324}

◆ gnc_pricedb_lookup_nearest_in_time64()

GNCPrice * gnc_pricedb_lookup_nearest_in_time64 ( GNCPriceDB *  db,
const gnc_commodity *  c,
const gnc_commodity *  currency,
time64  t 
)

Return the price between the two commoditiesz nearest to the given time.

The returned GNCPrice may be in either direction so check to ensure that its value is correctly applied.

Parameters
dbThe pricedb
cThe first commodity
currencyThe second commodity
tThe time nearest to which the returned price should be.
Returns
A GNCPrice or NULL if no prices exist between the two commodities.

Definition at line 2290 of file gnc-pricedb.cpp.

2294{
2295 return lookup_nearest_in_time(db, c, currency, t, FALSE);
2296}

◆ gnc_pricedb_lookup_nearest_in_time_any_currency_t64()

PriceList * gnc_pricedb_lookup_nearest_in_time_any_currency_t64 ( GNCPriceDB *  db,
const gnc_commodity *  c,
time64  t 
)

Return the price nearest in time to that given between the given commodity and every other.

The returned GNCPrices may be in either direction so check to ensure that their values are correctly applied.

Parameters
db,Thepricedb
c,Thecommodity for which prices should be obtained.
t,Thetime nearest to which the prices should be obtained.
Returns
A PriceList of prices for each commodity pair found or NULL if none are.

Definition at line 1963 of file gnc-pricedb.cpp.

1966{
1967 GList *prices = nullptr, *result;
1968 UsesCommodity helper = {&prices, commodity, t};
1969 result = nullptr;
1970
1971 if (!db || !commodity) return nullptr;
1972 ENTER ("db=%p commodity=%p", db, commodity);
1973
1974 pricedb_pricelist_traversal(db, price_list_scan_any_currency, &helper);
1975 prices = g_list_sort(prices, compare_prices_by_date);
1976 result = nearest_to(prices, commodity, t);
1977 gnc_price_list_destroy(prices);
1978 LEAVE(" ");
1979 return result;
1980}

◆ gnc_pricedb_nth_price()

GNCPrice * gnc_pricedb_nth_price ( GNCPriceDB *  db,
const gnc_commodity *  c,
const int  n 
)

Get the nth price for the given commodity in reverse date order.

Parameters
dbThe pricedb
cThe commodity whose nth price is needed
nZero based index of the price wanted
Returns
The nth price for this commodity in reverse chronological order, without regard for what currency the price is in

Definition at line 2119 of file gnc-pricedb.cpp.

2122{
2123 static const gnc_commodity *last_c = nullptr;
2124 static GList *prices = nullptr;
2125
2126 GNCPrice *result = nullptr;
2127 GHashTable *currency_hash;
2128 g_return_val_if_fail (GNC_IS_COMMODITY (c), nullptr);
2129
2130 if (!db || !c || n < 0) return nullptr;
2131 ENTER ("db=%p commodity=%s index=%d", db, gnc_commodity_get_mnemonic(c), n);
2132
2133 if (last_c && prices && last_c == c && db->reset_nth_price_cache == FALSE)
2134 {
2135 result = static_cast<GNCPrice*>(g_list_nth_data (prices, n));
2136 LEAVE ("price=%p", result);
2137 return result;
2138 }
2139
2140 last_c = c;
2141
2142 if (prices)
2143 {
2144 g_list_free (prices);
2145 prices = nullptr;
2146 }
2147
2148 db->reset_nth_price_cache = FALSE;
2149
2150 currency_hash = static_cast<GHashTable*>(g_hash_table_lookup (db->commodity_hash, c));
2151 if (currency_hash)
2152 {
2153 GList *currencies = g_hash_table_get_values (currency_hash);
2154 g_list_foreach (currencies, list_combine, &prices);
2155 result = static_cast<GNCPrice*>(g_list_nth_data (prices, n));
2156 g_list_free (currencies);
2157 }
2158
2159 LEAVE ("price=%p", result);
2160 return result;
2161}
const char * gnc_commodity_get_mnemonic(const gnc_commodity *cm)
Retrieve the mnemonic for the specified commodity.

◆ gnc_pricedb_nth_price_reset_cache()

void gnc_pricedb_nth_price_reset_cache ( GNCPriceDB *  db)

Definition at line 2164 of file gnc-pricedb.cpp.

2165{
2166 if (db)
2167 db->reset_nth_price_cache = TRUE;
2168}

◆ gnc_pricedb_num_prices()

int gnc_pricedb_num_prices ( GNCPriceDB *  db,
const gnc_commodity *  c 
)

Get the number of prices, in any currency, for a given commodity.

Parameters
dbThe pricedb
cThe commodity
Returns
The number of prices in the database for this commody, zero if none

Definition at line 2072 of file gnc-pricedb.cpp.

2074{
2075 int result = 0;
2076 GHashTable *currency_hash;
2077
2078 if (!db || !c) return 0;
2079 ENTER ("db=%p commodity=%p", db, c);
2080
2081 currency_hash = static_cast<GHashTable*>(g_hash_table_lookup(db->commodity_hash, c));
2082 if (currency_hash)
2083 {
2084 g_hash_table_foreach(currency_hash, price_count_helper, (gpointer)&result);
2085 }
2086
2087 LEAVE ("count=%d", result);
2088 return result;
2089}

◆ gnc_pricedb_print_contents()

void gnc_pricedb_print_contents ( GNCPriceDB *  db,
FILE *  f 
)

This simple function can be useful for debugging the pricedb code.

Definition at line 2807 of file gnc-pricedb.cpp.

2808{
2809 if (!db)
2810 {
2811 PERR("nullptr PriceDB\n");
2812 return;
2813 }
2814 if (!f)
2815 {
2816 PERR("nullptr FILE*\n");
2817 return;
2818 }
2819
2820 fprintf(f, "<gnc:pricedb>\n");
2821 gnc_pricedb_foreach_price(db, print_pricedb_adapter, f, FALSE);
2822 fprintf(f, "</gnc:pricedb>\n");
2823}
#define PERR(format, args...)
Log a serious error.
Definition qoflog.h:244

◆ gnc_pricedb_remove_old_prices()

gboolean gnc_pricedb_remove_old_prices ( GNCPriceDB *  db,
GList *  comm_list,
GDate *  fiscal_end_date,
time64  cutoff,
PriceRemoveSourceFlags  source,
PriceRemoveKeepOptions  keep 
)

Remove and unref prices older than a certain time.

Parameters
dbThe pricedb
comm_listA list of commodities
fiscal_end_datethe end date of the current accounting period
cutoffThe time before which prices should be deleted.
sourceWhether Finance::Quote, user or all prices should be deleted.
keepWhether scaled, monthly, weekly or no prices should be left.
Returns
True if there were prices to process, False if not.

Definition at line 1549 of file gnc-pricedb.cpp.

1553{
1554 remove_info data;
1555 GList *node;
1556 char datebuff[MAX_DATE_LENGTH + 1];
1557 memset (datebuff, 0, sizeof(datebuff));
1558
1559 data.db = db;
1560 data.cutoff = cutoff;
1561 data.list = nullptr;
1562 data.delete_fq = FALSE;
1563 data.delete_user = FALSE;
1564 data.delete_app = FALSE;
1565
1566 ENTER("Remove Prices for Source %d, keeping %d", source, keep);
1567
1568 // setup the source options
1569 if (source & PRICE_REMOVE_SOURCE_APP)
1570 data.delete_app = TRUE;
1571
1572 if (source & PRICE_REMOVE_SOURCE_FQ)
1573 data.delete_fq = TRUE;
1574
1575 if (source & PRICE_REMOVE_SOURCE_USER)
1576 data.delete_user = TRUE;
1577
1578 // Walk the list of commodities
1579 for (node = g_list_first (comm_list); node; node = g_list_next (node))
1580 {
1581 auto currencies_hash = static_cast<GHashTable*>(g_hash_table_lookup (db->commodity_hash, node->data));
1582 g_hash_table_foreach (currencies_hash, pricedb_remove_foreach_pricelist, &data);
1583 }
1584
1585 if (data.list == nullptr)
1586 {
1587 LEAVE("Empty price list");
1588 return FALSE;
1589 }
1590 qof_print_date_buff (datebuff, sizeof(datebuff), cutoff);
1591 DEBUG("Number of Prices in list is %d, Cutoff date is %s",
1592 g_slist_length (data.list), datebuff);
1593
1594 // Check for a valid fiscal end of year date
1595 if (fiscal_end_date == nullptr || !g_date_valid (fiscal_end_date))
1596 {
1597 auto ymd = GncDate().year_month_day();
1598 GDate end_this_year;
1599 g_date_set_dmy (&end_this_year, 31, GDateMonth(12), ymd.year);
1600 gnc_pricedb_process_removal_list (db, &end_this_year, data, keep);
1601 }
1602 else
1603 gnc_pricedb_process_removal_list (db, fiscal_end_date, data, keep);
1604
1605 g_slist_free (data.list);
1606 LEAVE(" ");
1607 return TRUE;
1608}
GnuCash Date class.
gnc_ymd year_month_day() const
Get the year, month, and day from the date as a gnc_ymd.
#define MAX_DATE_LENGTH
The maximum length of a string created by the date printers.
Definition gnc-date.h:108
size_t qof_print_date_buff(char *buff, const size_t len, time64 t)
Convenience: calls through to qof_print_date_dmy_buff().
Definition gnc-date.cpp:574
#define DEBUG(format, args...)
Print a debugging message.
Definition qoflog.h:264

◆ gnc_pricedb_remove_price()

gboolean gnc_pricedb_remove_price ( GNCPriceDB *  db,
GNCPrice *  p 
)

Remove a price from the pricedb and unref the price.

Parameters
dbThe Pricedb
pThe price to remove.

Definition at line 1219 of file gnc-pricedb.cpp.

1220{
1221 gboolean rc;
1222 char datebuff[MAX_DATE_LENGTH + 1];
1223 memset(datebuff, 0, sizeof(datebuff));
1224 if (!db || !p) return FALSE;
1225 ENTER ("db=%p, pr=%p dirty=%d destroying=%d",
1228
1229 gnc_price_ref(p);
1230 qof_print_date_buff(datebuff, sizeof(datebuff), gnc_price_get_time64 (p));
1231 DEBUG("Remove Date is %s, Commodity is %s, Source is %s", datebuff,
1232 gnc_commodity_get_fullname (gnc_price_get_commodity (p)),
1233 gnc_price_get_source_string (p));
1234
1235 rc = remove_price (db, p, TRUE);
1237 qof_instance_set_dirty(&db->inst);
1239
1240 /* invoke the backend to delete this price */
1241 gnc_price_begin_edit (p);
1242 qof_instance_set_destroying(p, TRUE);
1243 gnc_price_commit_edit (p);
1244 p->db = nullptr;
1245 gnc_price_unref(p);
1246 LEAVE ("db=%p, pr=%p", db, p);
1247 return rc;
1248}
const char * gnc_commodity_get_fullname(const gnc_commodity *cm)
Retrieve the full name for the specified commodity.
void gnc_price_unref(GNCPrice *p)
gnc_price_unref - indicate you're finished with a price (i.e.

◆ gnc_pricedb_set_bulk_update()

void gnc_pricedb_set_bulk_update ( GNCPriceDB *  db,
gboolean  bulk_update 
)

Set flag to indicate whether duplication checks should be performed.

Normally used at load time to speed up loading the pricedb.

Parameters
dbThe pricedb
bulk_updateTRUE to disable duplication checks, FALSE to enable them.

Definition at line 883 of file gnc-pricedb.cpp.

884{
885 db->bulk_update = bulk_update;
886}