GnuCash  5.6-150-g038405b370+
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. More...
 
GNCPriceDB * gnc_collection_get_pricedb (QofCollection *col)
 Return the pricedb via the Book's collection. More...
 
void gnc_pricedb_destroy (GNCPriceDB *db)
 Destroy the given pricedb and unref all of the prices it contains. More...
 
void gnc_pricedb_begin_edit (GNCPriceDB *)
 Begin an edit. More...
 
void gnc_pricedb_commit_edit (GNCPriceDB *)
 Commit an edit. More...
 
void gnc_pricedb_set_bulk_update (GNCPriceDB *db, gboolean bulk_update)
 Set flag to indicate whether duplication checks should be performed. More...
 
gboolean gnc_pricedb_add_price (GNCPriceDB *db, GNCPrice *p)
 Add a price to the pricedb. More...
 
gboolean gnc_pricedb_remove_price (GNCPriceDB *db, GNCPrice *p)
 Remove a price from the pricedb and unref the price. More...
 
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. More...
 
GNCPrice * gnc_pricedb_lookup_latest (GNCPriceDB *db, const gnc_commodity *commodity, const gnc_commodity *currency)
 Find the most recent price between the two commodities. More...
 
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. More...
 
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. More...
 
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. More...
 
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. More...
 
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. More...
 
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. More...
 
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. More...
 
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. More...
 
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. More...
 
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. More...
 
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. More...
 
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. More...
 
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. More...
 
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. More...
 
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. More...
 
int gnc_pricedb_num_prices (GNCPriceDB *db, const gnc_commodity *c)
 Get the number of prices, in any currency, for a given commodity. More...
 
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. More...
 
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. More...
 
gboolean gnc_pricedb_equal (GNCPriceDB *db1, GNCPriceDB *db2)
 Test equality of two pricedbs. More...
 

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.

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 903 of file gnc-pricedb.cpp.

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

◆ 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 1111 of file gnc-pricedb.cpp.

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

◆ gnc_pricedb_begin_edit()

void gnc_pricedb_begin_edit ( GNCPriceDB *  )

Begin an edit.

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

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

◆ gnc_pricedb_commit_edit()

void gnc_pricedb_commit_edit ( GNCPriceDB *  )

Commit an edit.

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

440 {
441  if (!qof_commit_edit (QOF_INSTANCE(pdb))) return;
442  qof_commit_edit_part2 (&pdb->inst, commit_err, noop, noop);
443 }
gboolean qof_commit_edit(QofInstance *inst)
commit_edit helpers
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

◆ 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 2555 of file gnc-pricedb.cpp.

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

◆ 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 2576 of file gnc-pricedb.cpp.

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

◆ 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 2565 of file gnc-pricedb.cpp.

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

◆ 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 866 of file gnc-pricedb.cpp.

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

◆ gnc_pricedb_equal()

gboolean gnc_pricedb_equal ( GNCPriceDB *  db1,
GNCPriceDB *  db2 
)

Test equality of two pricedbs.

For XML Backend Testing

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

986 {
987  GNCPriceDBEqualData equal_data;
988 
989  if (db1 == db2) return TRUE;
990 
991  if (!db1 || !db2)
992  {
993  PWARN ("one is nullptr");
994  return FALSE;
995  }
996 
997  equal_data.equal = TRUE;
998  equal_data.db2 = db2;
999 
1000  g_hash_table_foreach (db1->commodity_hash,
1001  pricedb_equal_foreach_currencies_hash,
1002  &equal_data);
1003 
1004  return equal_data.equal;
1005 }
#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 2729 of file gnc-pricedb.cpp.

2733 {
2734  ENTER ("db=%p f=%p", db, f);
2735  if (stable_order)
2736  {
2737  LEAVE (" stable order found");
2738  return stable_price_traversal(db, f, user_data);
2739  }
2740  LEAVE (" use unstable order");
2741  return unstable_price_traversal(db, f, user_data);
2742 }
#define ENTER(format, args...)
Print a function entry debugging message.
Definition: qoflog.h:272
#define LEAVE(format, args...)
Print a function exit debugging message.
Definition: qoflog.h:282

◆ 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 910 of file gnc-pricedb.cpp.

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

◆ 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 2520 of file gnc-pricedb.cpp.

2523 {
2524  return get_nearest_price (pdb, orig_currency, new_currency, INT64_MAX, FALSE);
2525 }

◆ 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 2502 of file gnc-pricedb.cpp.

2506 {
2507  return get_nearest_price (pdb, orig_currency, new_currency, t, TRUE);
2508 }

◆ 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 2511 of file gnc-pricedb.cpp.

2515 {
2516  return get_nearest_price (pdb, orig_currency, new_currency, t, FALSE);
2517 }

◆ 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 932 of file gnc-pricedb.cpp.

933 {
934  guint count;
935 
936  if (!db) return 0;
937 
938  count = 0;
939 
940  gnc_pricedb_foreach_price(db, num_prices_helper, &count, FALSE);
941 
942  return count;
943 }
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 2046 of file gnc-pricedb.cpp.

2049 {
2050  if (!db || !commodity) return nullptr;
2051  ENTER ("db=%p commodity=%p currency=%p", db, commodity, currency);
2052  auto result = pricedb_get_prices_internal (db, commodity, currency, FALSE);
2053  if (!result) return nullptr;
2054  g_list_foreach (result, (GFunc)gnc_price_ref, nullptr);
2055  LEAVE (" ");
2056  return result;
2057 }
#define ENTER(format, args...)
Print a function entry debugging message.
Definition: qoflog.h:272
#define LEAVE(format, args...)
Print a function exit debugging message.
Definition: qoflog.h:282
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 2007 of file gnc-pricedb.cpp.

2010 {
2011  GList *price_list;
2012  GHashTable *currency_hash;
2013  gint size;
2014 
2015  if (!db || !commodity) return FALSE;
2016  ENTER ("db=%p commodity=%p currency=%p", db, commodity, currency);
2017  currency_hash = static_cast<GHashTable*>(g_hash_table_lookup(db->commodity_hash, commodity));
2018  if (!currency_hash)
2019  {
2020  LEAVE("no, no currency_hash table");
2021  return FALSE;
2022  }
2023 
2024  if (currency)
2025  {
2026  price_list = static_cast<GList*>(g_hash_table_lookup(currency_hash, currency));
2027  if (price_list)
2028  {
2029  LEAVE("yes");
2030  return TRUE;
2031  }
2032  LEAVE("no, no price list");
2033  return FALSE;
2034  }
2035 
2036  size = g_hash_table_size (currency_hash);
2037  LEAVE("%s", size > 0 ? "yes" : "no");
2038  return size > 0;
2039 }
#define ENTER(format, args...)
Print a function entry debugging message.
Definition: qoflog.h:272
#define LEAVE(format, args...)
Print a function exit debugging message.
Definition: qoflog.h:282

◆ 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 2170 of file gnc-pricedb.cpp.

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

◆ 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 1730 of file gnc-pricedb.cpp.

1733 {
1734  GList *price_list;
1735  GNCPrice *result;
1736 
1737  if (!db || !commodity || !currency) return nullptr;
1738  ENTER ("db=%p commodity=%p currency=%p", db, commodity, currency);
1739 
1740  price_list = pricedb_get_prices_internal(db, commodity, currency, TRUE);
1741  if (!price_list) return nullptr;
1742  /* This works magically because prices are inserted in date-sorted
1743  * order, and the latest date always comes first. So return the
1744  * first in the list. */
1745  result = static_cast<GNCPrice*>(price_list->data);
1746  gnc_price_ref(result);
1747  g_list_free (price_list);
1748  LEAVE("price is %p", result);
1749  return result;
1750 }
#define ENTER(format, args...)
Print a function entry debugging message.
Definition: qoflog.h:272
#define LEAVE(format, args...)
Print a function exit debugging message.
Definition: qoflog.h:282
void gnc_price_ref(GNCPrice *p)
gnc_price_ref - indicate your need for a given price to stick around (i.e.

◆ 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 1954 of file gnc-pricedb.cpp.

1956 {
1958  gnc_time(nullptr));
1959 }
time64 gnc_time(time64 *tbuf)
get the current time
Definition: gnc-date.cpp:260
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 1982 of file gnc-pricedb.cpp.

1985 {
1986  GList *prices = nullptr, *result;
1987  UsesCommodity helper = {&prices, commodity, t};
1988  result = nullptr;
1989 
1990  if (!db || !commodity) return nullptr;
1991  ENTER ("db=%p commodity=%p", db, commodity);
1992 
1993  pricedb_pricelist_traversal(db, price_list_scan_any_currency,
1994  &helper);
1995  prices = g_list_sort(prices, compare_prices_by_date);
1996  result = latest_before(prices, commodity, t);
1997  gnc_price_list_destroy(prices);
1998  LEAVE(" ");
1999  return result;
2000 }
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...
#define ENTER(format, args...)
Print a function entry debugging message.
Definition: qoflog.h:272
#define LEAVE(format, args...)
Print a function exit debugging message.
Definition: qoflog.h:282

◆ 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 2304 of file gnc-pricedb.cpp.

2308 {
2309  GNCPrice *current_price = nullptr;
2310  if (!db || !c || !currency) return nullptr;
2311  ENTER ("db=%p commodity=%p currency=%p", db, c, currency);
2312  auto price_list = pricedb_get_prices_internal (db, c, currency, TRUE);
2313  if (!price_list) return nullptr;
2314  auto p = g_list_find_custom (price_list, &t, (GCompareFunc)price_time64_less_or_equal);
2315  if (p)
2316  {
2317  current_price = GNC_PRICE (p->data);
2318  gnc_price_ref (current_price);
2319  }
2320  g_list_free (price_list);
2321  LEAVE (" ");
2322  return current_price;
2323 }
#define ENTER(format, args...)
Print a function entry debugging message.
Definition: qoflog.h:272
#define LEAVE(format, args...)
Print a function exit debugging message.
Definition: qoflog.h:282
void gnc_price_ref(GNCPrice *p)
gnc_price_ref - indicate your need for a given price to stick around (i.e.

◆ 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 2289 of file gnc-pricedb.cpp.

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

◆ 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 1962 of file gnc-pricedb.cpp.

1965 {
1966  GList *prices = nullptr, *result;
1967  UsesCommodity helper = {&prices, commodity, t};
1968  result = nullptr;
1969 
1970  if (!db || !commodity) return nullptr;
1971  ENTER ("db=%p commodity=%p", db, commodity);
1972 
1973  pricedb_pricelist_traversal(db, price_list_scan_any_currency, &helper);
1974  prices = g_list_sort(prices, compare_prices_by_date);
1975  result = nearest_to(prices, commodity, t);
1976  gnc_price_list_destroy(prices);
1977  LEAVE(" ");
1978  return result;
1979 }
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...
#define ENTER(format, args...)
Print a function entry debugging message.
Definition: qoflog.h:272
#define LEAVE(format, args...)
Print a function exit debugging message.
Definition: qoflog.h:282

◆ 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 2118 of file gnc-pricedb.cpp.

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

◆ 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 2071 of file gnc-pricedb.cpp.

2073 {
2074  int result = 0;
2075  GHashTable *currency_hash;
2076 
2077  if (!db || !c) return 0;
2078  ENTER ("db=%p commodity=%p", db, c);
2079 
2080  currency_hash = static_cast<GHashTable*>(g_hash_table_lookup(db->commodity_hash, c));
2081  if (currency_hash)
2082  {
2083  g_hash_table_foreach(currency_hash, price_count_helper, (gpointer)&result);
2084  }
2085 
2086  LEAVE ("count=%d", result);
2087  return result;
2088 }
#define ENTER(format, args...)
Print a function entry debugging message.
Definition: qoflog.h:272
#define LEAVE(format, args...)
Print a function exit debugging message.
Definition: qoflog.h:282

◆ 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 1548 of file gnc-pricedb.cpp.

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

◆ 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 1218 of file gnc-pricedb.cpp.

1219 {
1220  gboolean rc;
1221  char datebuff[MAX_DATE_LENGTH + 1];
1222  memset(datebuff, 0, sizeof(datebuff));
1223  if (!db || !p) return FALSE;
1224  ENTER ("db=%p, pr=%p dirty=%d destroying=%d",
1225  db, p, qof_instance_get_dirty_flag(p),
1227 
1228  gnc_price_ref(p);
1229  qof_print_date_buff(datebuff, sizeof(datebuff), gnc_price_get_time64 (p));
1230  DEBUG("Remove Date is %s, Commodity is %s, Source is %s", datebuff,
1231  gnc_commodity_get_fullname (gnc_price_get_commodity (p)),
1232  gnc_price_get_source_string (p));
1233 
1234  rc = remove_price (db, p, TRUE);
1236  qof_instance_set_dirty(&db->inst);
1238 
1239  /* invoke the backend to delete this price */
1240  gnc_price_begin_edit (p);
1241  qof_instance_set_destroying(p, TRUE);
1242  gnc_price_commit_edit (p);
1243  p->db = nullptr;
1244  gnc_price_unref(p);
1245  LEAVE ("db=%p, pr=%p", db, p);
1246  return rc;
1247 }
void gnc_price_unref(GNCPrice *p)
gnc_price_unref - indicate you&#39;re finished with a price (i.e.
#define DEBUG(format, args...)
Print a debugging message.
Definition: qoflog.h:264
gboolean qof_instance_get_destroying(gconstpointer ptr)
Retrieve the flag that indicates whether or not this object is about to be destroyed.
#define ENTER(format, args...)
Print a function entry debugging message.
Definition: qoflog.h:272
gboolean qof_instance_get_dirty_flag(gconstpointer ptr)
Retrieve the flag that indicates whether or not this object has been modified.
const char * gnc_commodity_get_fullname(const gnc_commodity *cm)
Retrieve the full name for the specified commodity.
void gnc_pricedb_begin_edit(GNCPriceDB *pdb)
Begin an edit.
#define MAX_DATE_LENGTH
The maximum length of a string created by the date printers.
Definition: gnc-date.h:108
#define LEAVE(format, args...)
Print a function exit debugging message.
Definition: qoflog.h:282
void gnc_price_ref(GNCPrice *p)
gnc_price_ref - indicate your need for a given price to stick around (i.e.
size_t qof_print_date_buff(char *buff, size_t buflen, time64 secs)
Convenience: calls through to qof_print_date_dmy_buff().
Definition: gnc-date.cpp:572
void gnc_pricedb_commit_edit(GNCPriceDB *pdb)
Commit an edit.

◆ 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 882 of file gnc-pricedb.cpp.

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