GnuCash  5.6-150-g038405b370+
Files | Data Structures | Macros | Typedefs | Enumerations | Functions

Splits are grouped into Accounts which are also known as "Ledgers" in accounting practice. More...

Files

file  Account.h
 Account handling public routines.
 
file  Account.hpp
 Account public routines (C++ api)
 

Data Structures

struct  AccountClass
 

Macros

#define GNC_TYPE_ACCOUNT   (gnc_account_get_type ())
 
#define GNC_ACCOUNT(o)   (G_TYPE_CHECK_INSTANCE_CAST ((o), GNC_TYPE_ACCOUNT, Account))
 
#define GNC_ACCOUNT_CLASS(k)   (G_TYPE_CHECK_CLASS_CAST((k), GNC_TYPE_ACCOUNT, AccountClass))
 
#define GNC_IS_ACCOUNT(o)   (G_TYPE_CHECK_INSTANCE_TYPE ((o), GNC_TYPE_ACCOUNT))
 
#define GNC_IS_ACCOUNT_CLASS(k)   (G_TYPE_CHECK_CLASS_TYPE ((k), GNC_TYPE_ACCOUNT))
 
#define GNC_ACCOUNT_GET_CLASS(o)   (G_TYPE_INSTANCE_GET_CLASS ((o), GNC_TYPE_ACCOUNT, AccountClass))
 

Typedefs

typedef gnc_numeric(* xaccGetBalanceFn) (const Account *account)
 
typedef gnc_numeric(* xaccGetBalanceInCurrencyFn) (const Account *account, const gnc_commodity *report_commodity, gboolean include_children)
 
typedef gnc_numeric(* xaccGetBalanceAsOfDateFn) (Account *account, time64 date)
 
typedef void(* AccountCb) (Account *a, gpointer data)
 
typedef gpointer(* AccountCb2) (Account *a, gpointer data)
 
using SplitsVec = std::vector< Split * >
 
using AccountVec = std::vector< Account * >
 

Enumerations

enum  GNCAccountType {
  ACCT_TYPE_INVALID = -1, ACCT_TYPE_NONE = -1, ACCT_TYPE_BANK = 0, ACCT_TYPE_CASH = 1,
  ACCT_TYPE_CREDIT = 3, ACCT_TYPE_ASSET = 2, ACCT_TYPE_LIABILITY = 4, ACCT_TYPE_STOCK = 5,
  ACCT_TYPE_MUTUAL = 6, ACCT_TYPE_CURRENCY = 7, ACCT_TYPE_INCOME = 8, ACCT_TYPE_EXPENSE = 9,
  ACCT_TYPE_EQUITY = 10, ACCT_TYPE_RECEIVABLE = 11, ACCT_TYPE_PAYABLE = 12, ACCT_TYPE_ROOT = 13,
  ACCT_TYPE_TRADING = 14, NUM_ACCOUNT_TYPES = 15, ACCT_TYPE_CHECKING = 15, ACCT_TYPE_SAVINGS = 16,
  ACCT_TYPE_MONEYMRKT = 17, ACCT_TYPE_CREDITLINE = 18, ACCT_TYPE_LAST
}
 The account types are used to determine how the transaction data in the account is displayed. More...
 

Functions

GType gnc_account_get_type (void)
 Returns the GType type system description of the Account class. More...
 
gboolean gnc_account_and_descendants_empty (Account *acc)
 
gchar * gnc_account_name_violations_errmsg (const gchar *separator, GList *invalid_account_names)
 Composes a translatable error message showing which account names clash with the current account separator. More...
 
GList * gnc_account_list_name_violations (QofBook *book, const gchar *separator)
 Runs through all the accounts and returns a list of account names that contain the provided separator character. More...
 
void xaccAccountSetReconcileChildrenStatus (Account *account, gboolean status)
 DOCUMENT ME!
 
gboolean xaccAccountGetReconcileChildrenStatus (const Account *account)
 DOCUMENT ME!
 
gboolean xaccAccountHasAncestor (const Account *acc, const Account *ancestor)
 Returns true if the account is 'ancestor' or has 'ancestor' as an ancestor. More...
 
const SplitsVec & xaccAccountGetSplits (const Account *)
 
void gnc_account_foreach_descendant (const Account *, std::function< void(Account *)> func)
 
void gnc_account_foreach_split (const Account *, std::function< void(Split *)>, bool)
 
void gnc_account_foreach_split_until_date (const Account *acc, time64 end_date, std::function< void(Split *)> f)
 
Split * gnc_account_find_split (const Account *, std::function< bool(const Split *)>, bool)
 scans account split list (in forward or reverse order) until predicate split->bool returns true. More...
 
std::vector< const Account * > gnc_account_get_all_parents (const Account *account)
 

Account Constructors, Edit/Commit, Comparison

AccountxaccMallocAccount (QofBook *book)
 Constructor.
 
Accountgnc_account_create_root (QofBook *book)
 Create a new root level account. More...
 
AccountxaccCloneAccount (const Account *source, QofBook *book)
 The xaccCloneAccount() routine makes a simple copy of the indicated account, placing it in the indicated book. More...
 
void xaccAccountBeginEdit (Account *account)
 The xaccAccountBeginEdit() subroutine is the first phase of a two-phase-commit wrapper for account updates. More...
 
void xaccAccountCommitEdit (Account *account)
 ThexaccAccountCommitEdit() subroutine is the second phase of a two-phase-commit wrapper for account updates. More...
 
void xaccAccountDestroy (Account *account)
 The xaccAccountDestroy() routine can be used to get rid of an account. More...
 
void xaccAccountDestroyAllTransactions (Account *acc)
 Destroy all of the transactions that parent splits in an account.
 
gboolean xaccAccountEqual (const Account *a, const Account *b, gboolean check_guids)
 Compare two accounts for equality - this is a deep compare. More...
 
int xaccAccountOrder (const Account *account_1, const Account *account_2)
 The xaccAccountOrder() subroutine defines a sorting order on accounts. More...
 

Account lookup and GncGUID routines

const gchar * gnc_get_account_separator_string (void)
 Returns the account separation character chosen by the user. More...
 
gunichar gnc_get_account_separator (void)
 
void gnc_set_account_separator (const gchar *separator)
 
Accountgnc_book_get_root_account (QofBook *book)
 
void gnc_book_set_root_account (QofBook *book, Account *root)
 
AccountxaccAccountLookup (const GncGUID *guid, QofBook *book)
 The xaccAccountLookup() subroutine will return the account associated with the given id, or NULL if there is no such account. More...
 
#define xaccAccountGetGUID(X)   qof_entity_get_guid(QOF_INSTANCE(X))
 
#define xaccAccountReturnGUID(X)   (X ? *(qof_entity_get_guid(QOF_INSTANCE(X))) : *(guid_null()))
 
#define xaccAccountLookupDirect(g, b)   xaccAccountLookup(&(g),b)
 

Account general setters/getters

QofBook * gnc_account_get_book (const Account *account)
 
void xaccAccountSetType (Account *account, GNCAccountType)
 Set the account's type.
 
void xaccAccountSetName (Account *account, const char *name)
 Set the account's name.
 
void xaccAccountSetCode (Account *account, const char *code)
 Set the account's accounting code.
 
void xaccAccountSetDescription (Account *account, const char *desc)
 Set the account's description.
 
void xaccAccountSetColor (Account *account, const char *color)
 Set the account's Color.
 
void xaccAccountSetFilter (Account *account, const char *filter)
 Set the account's Filter.
 
void xaccAccountSetSortOrder (Account *account, const char *sortorder)
 Set the account's Sort Order.
 
void xaccAccountSetSortReversed (Account *account, gboolean sortreversed)
 Set the account's Sort Order direction.
 
void xaccAccountSetNotes (Account *account, const char *notes)
 Set the account's notes.
 
void xaccAccountSetAssociatedAccount (Account *acc, const char *tag, const Account *assoc_acct)
 Set the account's associated account e.g. More...
 
void xaccAccountSetLastNum (Account *account, const char *num)
 Set the last num field of an Account.
 
void gnc_account_set_policy (Account *account, GNCPolicy *policy)
 Set the account's lot order policy.
 
GNCAccountType xaccAccountGetType (const Account *account)
 Returns the account's account type. More...
 
gboolean xaccAccountIsPriced (const Account *acc)
 Returns true if the account is a stock, mutual fund or currency, otherwise false. More...
 
void gnc_account_set_start_balance (Account *acc, const gnc_numeric start_baln)
 This function will set the starting commodity balance for this account. More...
 
void gnc_account_set_start_cleared_balance (Account *acc, const gnc_numeric start_baln)
 This function will set the starting cleared commodity balance for this account. More...
 
void gnc_account_set_start_reconciled_balance (Account *acc, const gnc_numeric start_baln)
 This function will set the starting reconciled commodity balance for this account. More...
 
void gnc_account_set_balance_dirty (Account *acc)
 Tell the account that the running balances may be incorrect and need to be recomputed. More...
 
void gnc_account_set_sort_dirty (Account *acc)
 Tell the account believes that the splits may be incorrectly sorted and need to be resorted. More...
 
void gnc_account_set_defer_bal_computation (Account *acc, gboolean defer)
 Set the defer balance flag. More...
 
gboolean gnc_account_insert_split (Account *acc, Split *s)
 Insert the given split from an account. More...
 
gboolean gnc_account_remove_split (Account *acc, Split *s)
 Remove the given split from an account. More...
 
const char * xaccAccountGetName (const Account *account)
 Get the account's name.
 
const char * xaccAccountGetCode (const Account *account)
 Get the account's accounting code.
 
const char * xaccAccountGetDescription (const Account *account)
 Get the account's description.
 
const char * xaccAccountGetColor (const Account *account)
 Get the account's color.
 
const char * xaccAccountGetFilter (const Account *account)
 Get the account's filter.
 
const char * xaccAccountGetSortOrder (const Account *account)
 Get the account's Sort Order.
 
gboolean xaccAccountGetSortReversed (const Account *account)
 Get the account's Sort Order direction.
 
const char * xaccAccountGetNotes (const Account *account)
 Get the account's notes.
 
AccountxaccAccountGetAssociatedAccount (const Account *acc, const char *tag)
 Get the account's associated account e.g. More...
 
const char * xaccAccountGetLastNum (const Account *account)
 Get the last num field of an Account.
 
GNCPolicy * gnc_account_get_policy (Account *account)
 Get the account's lot order policy.
 
gboolean gnc_account_get_defer_bal_computation (Account *acc)
 Get the account's flag for deferred balance computation.
 
void xaccAccountRecomputeBalance (Account *)
 The following recompute the partial balances (stored with the transaction) and the total balance, for this account.
 
void xaccAccountSortSplits (Account *acc, gboolean force)
 The xaccAccountSortSplits() routine will resort the account's splits if the sort is dirty. More...
 
gchar * gnc_account_get_full_name (const Account *account)
 The gnc_account_get_full_name routine returns the fully qualified name of the account using the given separator char. More...
 
AccountxaccAccountGainsAccount (Account *acc, gnc_commodity *curr)
 Retrieve the gains account used by this account for the indicated currency, creating and recording a new one if necessary. More...
 
void dxaccAccountSetPriceSrc (Account *account, const char *src)
 Set a string that identifies the Finance::Quote backend that should be used to retrieve online prices. More...
 
const char * dxaccAccountGetPriceSrc (const Account *account)
 Get a string that identifies the Finance::Quote backend that should be used to retrieve online prices. More...
 

Account Commodity setters/getters

Accounts are used to store an amount of 'something', that 'something'
is called the 'commodity'.

An account can only hold one kind of commodity. The following are used to get and set the commodity, and also to set the SCU, the 'Smallest Commodity Unit'.

Note that when we say that a 'split' holds an 'amount', that amount is denominated in the account commodity. Do not confuse 'amount' and 'value'. The 'value' of a split is the value of the amount expressed in the currency of the transaction. Thus, for example, the 'amount' may be 12 apples, where the account commodity is 'apples'. The value of these 12 apples may be 12 dollars, where the transaction currency is 'dollars'.

The SCU is the 'Smallest Commodity Unit', signifying the smallest non-zero amount that can be stored in the account. It is represented as the integer denominator of a fraction. Thus, for example, a SCU of 12 means that 1/12 of something is the smallest amount that can be stored in the account. SCU's can be any value; they do not need to be decimal. This allows the use of accounts with unusual, non-decimal commodities and currencies.

Normally, the SCU is determined by the commodity of the account. However, this default SCU can be over-ridden and set to an account-specific value. This is account-specific value is called the 'non-standard' value in the documentation below.

void xaccAccountSetCommodity (Account *account, gnc_commodity *comm)
 Set the account's commodity.
 
gnc_commodity * xaccAccountGetCommodity (const Account *account)
 Get the account's commodity.
 
gnc_commodity * gnc_account_get_currency_or_parent (const Account *account)
 Returns a gnc_commodity that is a currency, suitable for being a Transaction's currency. More...
 
int xaccAccountGetCommoditySCU (const Account *account)
 Return the SCU for the account. More...
 
int xaccAccountGetCommoditySCUi (const Account *account)
 Return the 'internal' SCU setting. More...
 
void xaccAccountSetCommoditySCU (Account *account, int frac)
 Set the SCU for the account. More...
 
void xaccAccountSetNonStdSCU (Account *account, gboolean flag)
 Set the flag indicating that this account uses a non-standard SCU. More...
 
gboolean xaccAccountGetNonStdSCU (const Account *account)
 Return boolean, indicating whether this account uses a non-standard SCU. More...
 

Account Balance

gnc_numeric xaccAccountGetBalance (const Account *account)
 Get the current balance of the account, which may include future splits.
 
gnc_numeric xaccAccountGetClearedBalance (const Account *account)
 Get the current balance of the account, only including cleared transactions.
 
gnc_numeric xaccAccountGetReconciledBalance (const Account *account)
 Get the current balance of the account, only including reconciled transactions.
 
gnc_numeric xaccAccountGetPresentBalance (const Account *account)
 
gnc_numeric xaccAccountGetProjectedMinimumBalance (const Account *account)
 
gnc_numeric xaccAccountGetBalanceAsOfDate (Account *account, time64 date)
 Get the balance of the account at the end of the day before the date specified. More...
 
gnc_numeric xaccAccountGetReconciledBalanceAsOfDate (Account *account, time64 date)
 Get the reconciled balance of the account at the end of the day of the date specified. More...
 
gnc_numeric xaccAccountConvertBalanceToCurrency (const Account *account, gnc_numeric balance, const gnc_commodity *balance_currency, const gnc_commodity *new_currency)
 
gnc_numeric xaccAccountConvertBalanceToCurrencyAsOfDate (const Account *account, gnc_numeric balance, const gnc_commodity *balance_currency, const gnc_commodity *new_currency, time64 date)
 
gnc_numeric xaccAccountGetBalanceInCurrency (const Account *account, const gnc_commodity *report_commodity, gboolean include_children)
 
gnc_numeric xaccAccountGetClearedBalanceInCurrency (const Account *account, const gnc_commodity *report_commodity, gboolean include_children)
 
gnc_numeric xaccAccountGetReconciledBalanceInCurrency (const Account *account, const gnc_commodity *report_commodity, gboolean include_children)
 
gnc_numeric xaccAccountGetPresentBalanceInCurrency (const Account *account, const gnc_commodity *report_commodity, gboolean include_children)
 
gnc_numeric xaccAccountGetProjectedMinimumBalanceInCurrency (const Account *account, const gnc_commodity *report_commodity, gboolean include_children)
 
gnc_numeric xaccAccountGetNoclosingBalanceAsOfDateInCurrency (Account *acc, time64 date, gnc_commodity *report_commodity, gboolean include_children)
 This function gets the balance at the end of the given date, ignoring closing entries, in the desired commodity. More...
 
gnc_numeric xaccAccountGetBalanceAsOfDateInCurrency (Account *account, time64 date, gnc_commodity *report_commodity, gboolean include_children)
 This function gets the balance at the end of the given date in the desired commodity. More...
 
gnc_numeric xaccAccountGetNoclosingBalanceChangeForPeriod (Account *acc, time64 date1, time64 date2, gboolean recurse)
 
gnc_numeric xaccAccountGetNoclosingBalanceChangeInCurrencyForPeriod (Account *acc, time64 date1, time64 date2, gboolean recurse)
 
gnc_numeric xaccAccountGetBalanceChangeForPeriod (Account *acc, time64 date1, time64 date2, gboolean recurse)
 

Account Children and Parents.

The set of accounts is represented as a doubly-linked tree, so that given any account, both its parent and its children can be easily found.

At the top of the tree hierarchy lies a single root node, the root account.

The account tree hierarchy is unique, in that a given account can have only one parent account.

void gnc_account_append_child (Account *new_parent, Account *child)
 This function will remove from the child account any pre-existing parent relationship, and will then add the account as a child of the new parent. More...
 
void gnc_account_remove_child (Account *parent, Account *child)
 This function will remove the specified child account from the specified parent account. More...
 
Accountgnc_account_get_parent (const Account *account)
 This routine returns a pointer to the parent of the specified account. More...
 
Accountgnc_account_get_root (Account *account)
 This routine returns the root account of the account tree that the specified account belongs to. More...
 
gboolean gnc_account_is_root (const Account *account)
 This routine indicates whether the specified account is the root node of an account tree. More...
 
GList * gnc_account_get_children (const Account *account)
 This routine returns a GList of all children accounts of the specified account. More...
 
GList * gnc_account_get_children_sorted (const Account *account)
 This routine returns a GList of all children accounts of the specified account, ordered by xaccAccountOrder(). More...
 
gint gnc_account_n_children (const Account *account)
 Return the number of children of the specified account. More...
 
gint gnc_account_child_index (const Account *parent, const Account *child)
 Return the index of the specified child within the list of the parent's children. More...
 
Accountgnc_account_nth_child (const Account *parent, gint num)
 Return the n'th child account of the specified parent account. More...
 
GList * gnc_account_get_descendants (const Account *account)
 This routine returns a flat list of all of the accounts that are descendants of the specified account. More...
 
GList * gnc_account_get_descendants_sorted (const Account *account)
 This function returns a GList containing all the descendants of the specified account, sorted at each level. More...
 
gint gnc_account_n_descendants (const Account *account)
 Return the number of descendants of the specified account. More...
 
gint gnc_account_get_current_depth (const Account *account)
 Return the number of levels of this account below the root account. More...
 
gint gnc_account_get_tree_depth (const Account *account)
 Return the number of levels of descendants accounts below the specified account. More...
 

ForEach

void gnc_account_foreach_child (const Account *account, AccountCb func, gpointer user_data)
 This method will traverse the immediate children of this accounts, calling 'func' on each account. More...
 
void gnc_account_foreach_descendant (const Account *account, AccountCb func, gpointer user_data)
 This method will traverse all children of this accounts and their descendants, calling 'func' on each account. More...
 
gpointer gnc_account_foreach_descendant_until (const Account *account, AccountCb2 func, gpointer user_data)
 This method will traverse all children of this accounts and their descendants, calling 'func' on each account. More...
 

Concatenation, Merging

void gnc_account_join_children (Account *to_parent, Account *from_parent)
 The gnc_account_join_children() subroutine will move (reparent) all child accounts from the from_parent account to the to_parent account, preserving the account hierarchy. More...
 
void gnc_account_merge_children (Account *parent)
 The gnc_account_merge_children() subroutine will go through an account, merging all child accounts that have the same name and description. More...
 

Detailed Description

Splits are grouped into Accounts which are also known as "Ledgers" in accounting practice.

Each Account consists of a list of Splits that debit that Account. To ensure consistency, if a Split points to an Account, then the Account must point to the Split, and vice-versa. A Split can belong to at most one Account. Besides merely containing a list of Splits, the Account structure also gives the Account a name, a code number, description and notes fields, a key-value frame, a pointer to the commodity that is used for all splits in this account. The commodity can be the name of anything traded and tradeable: a stock (e.g. "IBM", "McDonald's"), a currency (e.g. "USD", "GBP"), or anything added to the commodity table.

Accounts can be arranged in a hierarchical tree. By accounting convention, the value of an Account is equal to the value of all of its Splits plus the value of all of its sub-Accounts.

Macro Definition Documentation

◆ xaccAccountGetGUID

#define xaccAccountGetGUID (   X)    qof_entity_get_guid(QOF_INSTANCE(X))
Deprecated:

Definition at line 252 of file Account.h.

Enumeration Type Documentation

◆ GNCAccountType

The account types are used to determine how the transaction data in the account is displayed.

These values can be safely changed from one release to the next. Note that if values are added, the file IO translation routines need to be updated. Note also that GUI code depends on these numbers.

Note
IMPORTANT: If you do change the enumeration names (not the numbers), you need to update xaccAccountTypeEnumAsString — used for text file exports
Enumerator
ACCT_TYPE_INVALID 

Not a type.

ACCT_TYPE_NONE 

Not a type.

ACCT_TYPE_BANK 

The bank account type denotes a savings or checking account held at a bank.

Often interest bearing.

ACCT_TYPE_CASH 

The cash account type is used to denote a shoe-box or pillowcase stuffed with * cash.

ACCT_TYPE_CREDIT 

The Credit card account is used to denote credit (e.g.

amex) and debit (e.g. visa, mastercard) card accounts

ACCT_TYPE_ASSET 

asset (and liability) accounts indicate generic, generalized accounts that are none of the above.

ACCT_TYPE_LIABILITY 

liability (and asset) accounts indicate generic, generalized accounts that are none of the above.

ACCT_TYPE_STOCK 

Stock accounts will typically be shown in registers which show three columns: price, number of shares, and value.

ACCT_TYPE_MUTUAL 

Mutual Fund accounts will typically be shown in registers which show three columns: price, number of shares, and value.

ACCT_TYPE_CURRENCY 

The currency account type indicates that the account is a currency trading account.

In many ways, a currency trading account is like a stock * trading account. It is shown in the register with three columns: price, number of shares, and value. Note: Since version 1.7.0, this account is * no longer needed to exchange currencies between accounts, so this type is DEPRECATED.

ACCT_TYPE_INCOME 

Income accounts are used to denote income.

ACCT_TYPE_EXPENSE 

Expense accounts are used to denote expenses.

ACCT_TYPE_EQUITY 

Equity account is used to balance the balance sheet.

ACCT_TYPE_RECEIVABLE 

A/R account type.

ACCT_TYPE_PAYABLE 

A/P account type.

ACCT_TYPE_ROOT 

The hidden root account of an account tree.

ACCT_TYPE_TRADING 

Account used to record multiple commodity transactions.

This is not the same as ACCT_TYPE_CURRENCY above. Multiple commodity transactions have splits in these accounts to make the transaction balance in each commodity as well as in total value.

NUM_ACCOUNT_TYPES 

stop here; the following types just aren't ready for prime time

ACCT_TYPE_CHECKING 

bank account type – don't use this for now, see NUM_ACCOUNT_TYPES

ACCT_TYPE_SAVINGS 

bank account type – don't use this for now, see NUM_ACCOUNT_TYPES

ACCT_TYPE_MONEYMRKT 

bank account type – don't use this for now, see NUM_ACCOUNT_TYPES

ACCT_TYPE_CREDITLINE 

line of credit – don't use this for now, see NUM_ACCOUNT_TYPES

Definition at line 101 of file Account.h.

103 {
104  ACCT_TYPE_INVALID = -1,
105  ACCT_TYPE_NONE = -1,
107  ACCT_TYPE_BANK = 0,
110  ACCT_TYPE_CASH = 1,
113  ACCT_TYPE_CREDIT = 3,
116  ACCT_TYPE_ASSET = 2,
122  ACCT_TYPE_STOCK = 5,
125  ACCT_TYPE_MUTUAL = 6,
129  ACCT_TYPE_CURRENCY = 7,
140  ACCT_TYPE_INCOME = 8,
143  ACCT_TYPE_EXPENSE = 9,
146  ACCT_TYPE_EQUITY = 10,
151  ACCT_TYPE_PAYABLE = 12,
153  ACCT_TYPE_ROOT = 13,
155  ACCT_TYPE_TRADING = 14,
161  NUM_ACCOUNT_TYPES = 15,
164  /* bank account types */
165  ACCT_TYPE_CHECKING = 15,
167  ACCT_TYPE_SAVINGS = 16,
169  ACCT_TYPE_MONEYMRKT = 17,
171  ACCT_TYPE_CREDITLINE = 18,
173  ACCT_TYPE_LAST
174 #ifdef __cplusplus
175 };
176 #else
Expense accounts are used to denote expenses.
Definition: Account.h:143
Mutual Fund accounts will typically be shown in registers which show three columns: price...
Definition: Account.h:125
stop here; the following types just aren&#39;t ready for prime time
Definition: Account.h:161
The cash account type is used to denote a shoe-box or pillowcase stuffed with * cash.
Definition: Account.h:110
Account used to record multiple commodity transactions.
Definition: Account.h:155
Stock accounts will typically be shown in registers which show three columns: price, number of shares, and value.
Definition: Account.h:122
bank account type – don&#39;t use this for now, see NUM_ACCOUNT_TYPES
Definition: Account.h:165
Income accounts are used to denote income.
Definition: Account.h:140
line of credit – don&#39;t use this for now, see NUM_ACCOUNT_TYPES
Definition: Account.h:171
The bank account type denotes a savings or checking account held at a bank.
Definition: Account.h:107
A/P account type.
Definition: Account.h:151
bank account type – don&#39;t use this for now, see NUM_ACCOUNT_TYPES
Definition: Account.h:167
asset (and liability) accounts indicate generic, generalized accounts that are none of the above...
Definition: Account.h:116
The currency account type indicates that the account is a currency trading account.
Definition: Account.h:129
GNCAccountType
The account types are used to determine how the transaction data in the account is displayed...
Definition: Account.h:101
Not a type.
Definition: Account.h:104
liability (and asset) accounts indicate generic, generalized accounts that are none of the above...
Definition: Account.h:119
A/R account type.
Definition: Account.h:149
bank account type – don&#39;t use this for now, see NUM_ACCOUNT_TYPES
Definition: Account.h:169
Equity account is used to balance the balance sheet.
Definition: Account.h:146
Not a type.
Definition: Account.h:105
The hidden root account of an account tree.
Definition: Account.h:153
The Credit card account is used to denote credit (e.g.
Definition: Account.h:113

Function Documentation

◆ dxaccAccountGetPriceSrc()

const char* dxaccAccountGetPriceSrc ( const Account account)

Get a string that identifies the Finance::Quote backend that should be used to retrieve online prices.

See price-quotes.scm for more information. This function uses a static char*.

Deprecated:
Price quote information is now stored on the commodity, not the account.

Definition at line 4802 of file Account.cpp.

4803 {
4804  static char *source = nullptr;
4805  if (!acc) return nullptr;
4806 
4807  if (!xaccAccountIsPriced(acc)) return nullptr;
4808 
4809  g_free (source);
4810 
4811  return get_kvp_string_path (acc, {"old-price-source"});
4812 }
gboolean xaccAccountIsPriced(const Account *acc)
Returns true if the account is a stock, mutual fund or currency, otherwise false. ...
Definition: Account.cpp:4506

◆ dxaccAccountSetPriceSrc()

void dxaccAccountSetPriceSrc ( Account account,
const char *  src 
)

Set a string that identifies the Finance::Quote backend that should be used to retrieve online prices.

See price-quotes.scm for more information

Deprecated:
Price quote information is now stored on the commodity, not the account.

Definition at line 4790 of file Account.cpp.

4791 {
4792  if (!acc) return;
4793 
4794  if (xaccAccountIsPriced(acc))
4795  set_kvp_string_path (acc, {"old-price-source"}, src);
4796 }
gboolean xaccAccountIsPriced(const Account *acc)
Returns true if the account is a stock, mutual fund or currency, otherwise false. ...
Definition: Account.cpp:4506

◆ gnc_account_append_child()

void gnc_account_append_child ( Account new_parent,
Account child 
)

This function will remove from the child account any pre-existing parent relationship, and will then add the account as a child of the new parent.

The exception to this is when the old and new parent accounts are the same, in which case this function does nothing.

If the child account belongs to a different book than the specified new parent account, the child will be removed from the other book (and thus, the other book's entity tables, generating a destroy event), and will be added to the new book (generating a create event).

Parameters
new_parentThe new parent account to which the child should be attached.
childThe account to attach.

Definition at line 2807 of file Account.cpp.

2808 {
2809  AccountPrivate *ppriv, *cpriv;
2810  Account *old_parent;
2811  QofCollection *col;
2812 
2813  /* errors */
2814  g_assert(GNC_IS_ACCOUNT(new_parent));
2815  g_assert(GNC_IS_ACCOUNT(child));
2816 
2817  /* optimizations */
2818  ppriv = GET_PRIVATE(new_parent);
2819  cpriv = GET_PRIVATE(child);
2820  old_parent = cpriv->parent;
2821  if (old_parent == new_parent)
2822  return;
2823 
2824  // xaccAccountBeginEdit(new_parent);
2825  xaccAccountBeginEdit(child);
2826  if (old_parent)
2827  {
2828  gnc_account_remove_child(old_parent, child);
2829 
2830  if (!qof_instance_books_equal(old_parent, new_parent))
2831  {
2832  /* hack alert -- this implementation is not exactly correct.
2833  * If the entity tables are not identical, then the 'from' book
2834  * may have a different backend than the 'to' book. This means
2835  * that we should get the 'from' backend to destroy this account,
2836  * and the 'to' backend to save it. Right now, this is broken.
2837  *
2838  * A 'correct' implementation similar to this is in Period.c
2839  * except its for transactions ...
2840  *
2841  * Note also, we need to reparent the children to the new book as well.
2842  */
2843  PWARN ("reparenting accounts across books is not correctly supported\n");
2844 
2845  qof_event_gen (&child->inst, QOF_EVENT_DESTROY, nullptr);
2847  GNC_ID_ACCOUNT);
2848  qof_collection_insert_entity (col, &child->inst);
2849  qof_event_gen (&child->inst, QOF_EVENT_CREATE, nullptr);
2850  }
2851  }
2852  cpriv->parent = new_parent;
2853  ppriv->children.push_back (child);
2854  qof_instance_set_dirty(&new_parent->inst);
2855  qof_instance_set_dirty(&child->inst);
2856 
2857  /* Send events data. Warning: The call to commit_edit is also going
2858  * to send a MODIFY event. If the gtktreemodelfilter code gets the
2859  * MODIFY before it gets the ADD, it gets very confused and thinks
2860  * that two nodes have been added. */
2861  qof_event_gen (&child->inst, QOF_EVENT_ADD, nullptr);
2862  // qof_event_gen (&new_parent->inst, QOF_EVENT_MODIFY, nullptr);
2863 
2864  xaccAccountCommitEdit (child);
2865  // xaccAccountCommitEdit(new_parent);
2866 }
QofBook * qof_instance_get_book(gconstpointer inst)
Return the book pointer.
STRUCTS.
#define PWARN(format, args...)
Log a warning.
Definition: qoflog.h:250
void gnc_account_remove_child(Account *parent, Account *child)
This function will remove the specified child account from the specified parent account.
Definition: Account.cpp:2869
void qof_collection_insert_entity(QofCollection *, QofInstance *)
Take entity, remove it from whatever collection its currently in, and place it in a new collection...
Definition: qofid.cpp:95
gboolean qof_instance_books_equal(gconstpointer ptr1, gconstpointer ptr2)
See if two QofInstances share the same book.
void xaccAccountBeginEdit(Account *acc)
The xaccAccountBeginEdit() subroutine is the first phase of a two-phase-commit wrapper for account up...
Definition: Account.cpp:1477
QofCollection * qof_book_get_collection(const QofBook *book, QofIdType entity_type)
Return The table of entities of the given type.
Definition: qofbook.cpp:521
void qof_event_gen(QofInstance *entity, QofEventId event_id, gpointer event_data)
Invoke all registered event handlers using the given arguments.
Definition: qofevent.cpp:231
void xaccAccountCommitEdit(Account *acc)
ThexaccAccountCommitEdit() subroutine is the second phase of a two-phase-commit wrapper for account u...
Definition: Account.cpp:1518

◆ gnc_account_child_index()

gint gnc_account_child_index ( const Account parent,
const Account child 
)

Return the index of the specified child within the list of the parent's children.

The first child index is 0. This function returns -1 if the parent account is NULL of if the specified child does not belong to the parent account.

Parameters
parentThe parent account to check.
childThe child account to find.
Returns
The index of the child account within the specified parent, or -1.

Definition at line 2954 of file Account.cpp.

2955 {
2956  g_return_val_if_fail(GNC_IS_ACCOUNT(parent), -1);
2957  g_return_val_if_fail(GNC_IS_ACCOUNT(child), -1);
2958  auto& children = GET_PRIVATE(parent)->children;
2959  return std::distance (children.begin(), std::find (children.begin(), children.end(), child));
2960 }

◆ gnc_account_create_root()

Account* gnc_account_create_root ( QofBook *  book)

Create a new root level account.

Definition at line 1287 of file Account.cpp.

1288 {
1289  Account *root;
1290  AccountPrivate *rpriv;
1291 
1292  root = xaccMallocAccount(book);
1293  rpriv = GET_PRIVATE(root);
1294  xaccAccountBeginEdit(root);
1295  rpriv->type = ACCT_TYPE_ROOT;
1296  rpriv->accountName = qof_string_cache_replace(rpriv->accountName, "Root Account");
1297  mark_account (root);
1298  xaccAccountCommitEdit(root);
1299  gnc_book_set_root_account(book, root);
1300  return root;
1301 }
const char * qof_string_cache_replace(char const *dst, char const *src)
Same as CACHE_REPLACE below, but safe to call from C++.
STRUCTS.
void xaccAccountBeginEdit(Account *acc)
The xaccAccountBeginEdit() subroutine is the first phase of a two-phase-commit wrapper for account up...
Definition: Account.cpp:1477
Account * xaccMallocAccount(QofBook *book)
Constructor.
Definition: Account.cpp:1273
void xaccAccountCommitEdit(Account *acc)
ThexaccAccountCommitEdit() subroutine is the second phase of a two-phase-commit wrapper for account u...
Definition: Account.cpp:1518
The hidden root account of an account tree.
Definition: Account.h:153

◆ gnc_account_find_split()

Split* gnc_account_find_split ( const Account ,
std::function< bool(const Split *)>  ,
bool   
)

scans account split list (in forward or reverse order) until predicate split->bool returns true.

Maybe return the split.

Parameters
accThe account to which the split should be added.
predicateA split->bool predicate.
reverseTo scan in reverse order
Returns
Split* or nullptr if not found

Definition at line 1170 of file Account.cpp.

1172 {
1173  if (!GNC_IS_ACCOUNT (acc))
1174  return nullptr;
1175 
1176  const auto& splits{GET_PRIVATE(acc)->splits};
1177  if (reverse)
1178  {
1179  auto latest = std::find_if(splits.rbegin(), splits.rend(), predicate);
1180  return (latest == splits.rend()) ? nullptr : *latest;
1181  }
1182  else
1183  {
1184  auto earliest = std::find_if(splits.begin(), splits.end(), predicate);
1185  return (earliest == splits.end()) ? nullptr : *earliest;
1186  }
1187 }

◆ gnc_account_foreach_child()

void gnc_account_foreach_child ( const Account account,
AccountCb  func,
gpointer  user_data 
)

This method will traverse the immediate children of this accounts, calling 'func' on each account.

This function traverses all children nodes. To traverse only a subset of the child nodes use the gnc_account_foreach_child_until() function.

Parameters
accountA pointer to the account on whose children the function should be called.
funcA function taking two arguments, an Account and a gpointer.
user_dataThis data will be passed to each call of func.

Definition at line 3195 of file Account.cpp.

3198 {
3199  g_return_if_fail(GNC_IS_ACCOUNT(acc));
3200  g_return_if_fail(thunk);
3201  std::for_each (GET_PRIVATE(acc)->children.begin(), GET_PRIVATE(acc)->children.end(),
3202  [user_data, thunk](auto a){ thunk (a, user_data); });
3203 }

◆ gnc_account_foreach_descendant()

void gnc_account_foreach_descendant ( const Account account,
AccountCb  func,
gpointer  user_data 
)

This method will traverse all children of this accounts and their descendants, calling 'func' on each account.

This function traverses all descendant nodes. To traverse only a subset of the descendant nodes use the gnc_account_foreach_descendant_until() function.

Parameters
accountA pointer to the account on whose descendants the function should be called.
funcA function taking two arguments, an Account and a gpointer.
user_dataThis data will be passed to each call of func.

Definition at line 3206 of file Account.cpp.

3209 {
3210  gnc_account_foreach_descendant (acc, [&](auto acc){ thunk (acc, user_data); });
3211 }
void gnc_account_foreach_descendant(const Account *acc, AccountCb thunk, gpointer user_data)
This method will traverse all children of this accounts and their descendants, calling &#39;func&#39; on each...
Definition: Account.cpp:3206

◆ gnc_account_foreach_descendant_until()

gpointer gnc_account_foreach_descendant_until ( const Account account,
AccountCb2  func,
gpointer  user_data 
)

This method will traverse all children of this accounts and their descendants, calling 'func' on each account.

Traversal will stop when func returns a non-null value, and the routine will return with that value. Therefore, this function will return null if func returns null for every account. For a simpler function that always traverses all children nodes, use the gnc_account_foreach_descendant() function.

Parameters
accountA pointer to the account on whose descendants the function should be called.
funcA function taking two arguments, an Account and a gpointer.
user_dataThis data will be passed to each call of func.

Definition at line 3214 of file Account.cpp.

3217 {
3218  gpointer result {nullptr};
3219 
3220  g_return_val_if_fail (GNC_IS_ACCOUNT(acc), nullptr);
3221  g_return_val_if_fail (thunk, nullptr);
3222 
3223  for (auto child : GET_PRIVATE(acc)->children)
3224  {
3225  result = thunk (child, user_data);
3226  if (result) break;
3227 
3228  result = gnc_account_foreach_descendant_until (child, thunk, user_data);
3229  if (result) break;
3230  }
3231 
3232  return result;
3233 }
gpointer gnc_account_foreach_descendant_until(const Account *acc, AccountCb2 thunk, gpointer user_data)
This method will traverse all children of this accounts and their descendants, calling &#39;func&#39; on each...
Definition: Account.cpp:3214

◆ gnc_account_get_children()

GList* gnc_account_get_children ( const Account account)

This routine returns a GList of all children accounts of the specified account.

This function only returns the immediate children of the specified account. For a list of all descendant accounts, use the gnc_account_get_descendants() function.

If you are looking for the splits of this account, use xaccAccountGetSplitList() instead. This function here deals with children accounts inside the account tree.

Parameters
accountThe account whose children should be returned.
Returns
A GList of account pointers, or NULL if there are no children accounts. It is the callers responsibility to free any returned list with the g_list_free() function.

Definition at line 2931 of file Account.cpp.

2932 {
2933  g_return_val_if_fail(GNC_IS_ACCOUNT(account), nullptr);
2934  auto& children = GET_PRIVATE(account)->children;
2935  return std::accumulate (children.rbegin(), children.rend(), static_cast<GList*>(nullptr),
2936  g_list_prepend);
2937 }

◆ gnc_account_get_children_sorted()

GList* gnc_account_get_children_sorted ( const Account account)

This routine returns a GList of all children accounts of the specified account, ordered by xaccAccountOrder().

See also
gnc_account_get_children()

Definition at line 2940 of file Account.cpp.

2941 {
2942  g_return_val_if_fail(GNC_IS_ACCOUNT(account), nullptr);
2943  return g_list_sort(gnc_account_get_children (account), (GCompareFunc)xaccAccountOrder);
2944 }
int xaccAccountOrder(const Account *aa, const Account *ab)
The xaccAccountOrder() subroutine defines a sorting order on accounts.
Definition: Account.cpp:2360
GList * gnc_account_get_children(const Account *account)
This routine returns a GList of all children accounts of the specified account.
Definition: Account.cpp:2931

◆ gnc_account_get_currency_or_parent()

gnc_commodity* gnc_account_get_currency_or_parent ( const Account account)

Returns a gnc_commodity that is a currency, suitable for being a Transaction's currency.

The gnc_commodity is taken either from the current account, or from the next parent account that has a gnc_commodity that is a currency. If neither this account nor any of its parent has such a commodity that is a currency, NULL is returned. In that case, you can use gnc_default_currency() but you might want to show a warning dialog first.

Definition at line 3378 of file Account.cpp.

3379 {
3380  g_return_val_if_fail (GNC_IS_ACCOUNT (account), nullptr);
3381 
3382  for (auto acc = account; acc; acc = gnc_account_get_parent (acc))
3383  if (auto comm = xaccAccountGetCommodity (acc); gnc_commodity_is_currency (comm))
3384  return comm;
3385 
3386  return nullptr; // no suitable commodity found.
3387 }
Account * gnc_account_get_parent(const Account *acc)
This routine returns a pointer to the parent of the specified account.
Definition: Account.cpp:2906
gboolean gnc_commodity_is_currency(const gnc_commodity *cm)
Checks to see if the specified commodity is an ISO 4217 recognized currency or a legacy currency...
gnc_commodity * xaccAccountGetCommodity(const Account *acc)
Get the account&#39;s commodity.
Definition: Account.cpp:3371

◆ gnc_account_get_current_depth()

gint gnc_account_get_current_depth ( const Account account)

Return the number of levels of this account below the root account.

Parameters
accountThe account to query.
Returns
The number of levels below the root.

Definition at line 2980 of file Account.cpp.

2981 {
2982  AccountPrivate *priv;
2983  int depth = 0;
2984 
2985  g_return_val_if_fail(GNC_IS_ACCOUNT(account), 0);
2986 
2987  priv = GET_PRIVATE(account);
2988  while (priv->parent && (priv->type != ACCT_TYPE_ROOT))
2989  {
2990  account = priv->parent;
2991  priv = GET_PRIVATE(account);
2992  depth++;
2993  }
2994 
2995  return depth;
2996 }
The hidden root account of an account tree.
Definition: Account.h:153

◆ gnc_account_get_descendants()

GList* gnc_account_get_descendants ( const Account account)

This routine returns a flat list of all of the accounts that are descendants of the specified account.

This includes not only the the children, but the children of the children, etc. For a list of only the immediate child accounts, use the gnc_account_get_children() function. Within each set of child accounts, the accounts returned by this function are unordered. For a list of descendants where each set of children is sorted via the standard account sort function, use the gnc_account_get_descendants_sorted() function.

Parameters
accountThe account whose descendants should be returned.
Returns
A GList of account pointers, or NULL if there are no descendants. It is the callers responsibility to free any returned list with the g_list_free() function.

Definition at line 3014 of file Account.cpp.

3015 {
3016  GList* list = nullptr;
3017  gnc_account_foreach_descendant (account, [&list](auto a){ list = g_list_prepend (list, a); });
3018  return g_list_reverse (list);
3019 }
void gnc_account_foreach_descendant(const Account *acc, AccountCb thunk, gpointer user_data)
This method will traverse all children of this accounts and their descendants, calling &#39;func&#39; on each...
Definition: Account.cpp:3206

◆ gnc_account_get_descendants_sorted()

GList* gnc_account_get_descendants_sorted ( const Account account)

This function returns a GList containing all the descendants of the specified account, sorted at each level.

This includes not only the the children, but the children of the children, etc. Within each set of child accounts, the accounts returned by this function are ordered via the standard account sort function. For a list of descendants where each set of children is unordered, use the gnc_account_get_descendants() function.

Note: Use this function where the results are intended for display to the user. If the results are internal to GnuCash or will be resorted at some later point in time you should use the gnc_account_get_descendants() function.

Parameters
accountThe account whose descendants should be returned.
Returns
A GList of account pointers, or NULL if there are no descendants. It is the callers responsibility to free any returned list with the g_list_free() function.

Definition at line 3022 of file Account.cpp.

3023 {
3024  GList* list = nullptr;
3025  account_foreach_descendant_sorted (account, [&list](auto a){ list = g_list_prepend (list, a); });
3026  return g_list_reverse (list);
3027 }

◆ gnc_account_get_full_name()

gchar* gnc_account_get_full_name ( const Account account)

The gnc_account_get_full_name routine returns the fully qualified name of the account using the given separator char.

The name must be g_free'd after use. The fully qualified name of an account is the concatenation of the names of the account and all its ancestor accounts starting with the topmost account and ending with the given account. Each name is separated by the given character.

Note
: WAKE UP! Unlike all other gets, the string returned by gnc_account_get_full_name() must be freed by you the user !!! hack alert – since it breaks the rule of string allocation, maybe this routine should not be in this library, but some utility library?

Definition at line 3275 of file Account.cpp.

3276 {
3277  /* So much for hardening the API. Too many callers to this function don't
3278  * bother to check if they have a non-nullptr pointer before calling. */
3279  if (nullptr == account)
3280  return g_strdup("");
3281 
3282  /* errors */
3283  g_return_val_if_fail(GNC_IS_ACCOUNT(account), g_strdup(""));
3284 
3285  auto path{gnc_account_get_all_parents (account)};
3286  auto seps_size{path.empty() ? 0 : strlen (account_separator) * (path.size() - 1)};
3287  auto alloc_size{std::accumulate (path.begin(), path.end(), seps_size,
3288  [](auto sum, auto acc)
3289  { return sum + strlen (xaccAccountGetName (acc)); })};
3290  auto rv = g_new (char, alloc_size + 1);
3291  auto p = rv;
3292 
3293  std::for_each (path.rbegin(), path.rend(),
3294  [&p, rv](auto a)
3295  {
3296  if (p != rv)
3297  p = stpcpy (p, account_separator);
3298  p = stpcpy (p, xaccAccountGetName (a));
3299  });
3300  *p = '\0';
3301 
3302  return rv;
3303 }
const char * xaccAccountGetName(const Account *acc)
Get the account&#39;s name.
Definition: Account.cpp:3259

◆ gnc_account_get_parent()

Account* gnc_account_get_parent ( const Account account)

This routine returns a pointer to the parent of the specified account.

If the account has no parent, i.e it is either the root node or is a disconnected account, then its parent will be NULL.

Parameters
accountA pointer to any exiting account.
Returns
A pointer to the parent account node, or NULL if there is no parent account.

Definition at line 2906 of file Account.cpp.

2907 {
2908  g_return_val_if_fail(GNC_IS_ACCOUNT(acc), nullptr);
2909  return GET_PRIVATE(acc)->parent;
2910 }

◆ gnc_account_get_root()

Account* gnc_account_get_root ( Account account)

This routine returns the root account of the account tree that the specified account belongs to.

It is the equivalent of repeatedly calling the gnc_account_get_parent() routine until that routine returns NULL.

Parameters
accountA pointer to any existing account.
Returns
The root node of the account tree to which this account belongs. NULL if the account is not part of any account tree.

Definition at line 2913 of file Account.cpp.

2914 {
2915  g_return_val_if_fail(GNC_IS_ACCOUNT(acc), nullptr);
2916 
2917  while (auto parent = gnc_account_get_parent (acc))
2918  acc = parent;
2919 
2920  return acc;
2921 }
Account * gnc_account_get_parent(const Account *acc)
This routine returns a pointer to the parent of the specified account.
Definition: Account.cpp:2906

◆ gnc_account_get_tree_depth()

gint gnc_account_get_tree_depth ( const Account account)

Return the number of levels of descendants accounts below the specified account.

The returned number does not include the specified account itself.

Parameters
accountThe account to query.
Returns
The number of levels of descendants.

Definition at line 2999 of file Account.cpp.

3000 {
3001  AccountPrivate *priv;
3002  g_return_val_if_fail(GNC_IS_ACCOUNT(account), 0);
3003 
3004  priv = GET_PRIVATE(account);
3005  if (!priv->children.size())
3006  return 1;
3007 
3008  return 1 + std::accumulate (priv->children.begin(), priv->children.end(),
3009  0, [](auto a, auto b)
3010  { return std::max (a, gnc_account_get_tree_depth (b)); });
3011 }
gint gnc_account_get_tree_depth(const Account *account)
Return the number of levels of descendants accounts below the specified account.
Definition: Account.cpp:2999

◆ gnc_account_get_type()

GType gnc_account_get_type ( void  )

Returns the GType type system description of the Account class.

This must not be confused with the GNCAccountType as returned by xaccAccountGetType().

Definition at line 27 of file gmock-Account.cpp.

28 {
29  return gnc_mockaccount_get_type();
30 }

◆ gnc_account_insert_split()

gboolean gnc_account_insert_split ( Account acc,
Split *  s 
)

Insert the given split from an account.

Parameters
accThe account to which the split should be added.
sThe split to be added.
Returns
TRUE is the split is successfully added to the set of splits in the account. FALSE if the addition fails for any reason (including that the split is already in the account).

Definition at line 1945 of file Account.cpp.

1946 {
1947  AccountPrivate *priv;
1948 
1949  g_return_val_if_fail(GNC_IS_ACCOUNT(acc), FALSE);
1950  g_return_val_if_fail(GNC_IS_SPLIT(s), FALSE);
1951 
1952  priv = GET_PRIVATE(acc);
1953  if (!g_hash_table_add (priv->splits_hash, s))
1954  return false;
1955 
1956  priv->splits.push_back (s);
1957 
1958  if (qof_instance_get_editlevel(acc) == 0)
1959  std::sort (priv->splits.begin(), priv->splits.end(), split_cmp_less);
1960  else
1961  priv->sort_dirty = true;
1962 
1963  //FIXME: find better event
1964  qof_event_gen (&acc->inst, QOF_EVENT_MODIFY, nullptr);
1965  /* Also send an event based on the account */
1966  qof_event_gen(&acc->inst, GNC_EVENT_ITEM_ADDED, s);
1967 
1968  priv->balance_dirty = TRUE;
1969 // DRH: Should the below be added? It is present in the delete path.
1970 // xaccAccountRecomputeBalance(acc);
1971  return TRUE;
1972 }
void qof_event_gen(QofInstance *entity, QofEventId event_id, gpointer event_data)
Invoke all registered event handlers using the given arguments.
Definition: qofevent.cpp:231
#define GNC_EVENT_ITEM_ADDED
These events are used when a split is added to an account.
Definition: gnc-event.h:45

◆ gnc_account_is_root()

gboolean gnc_account_is_root ( const Account account)

This routine indicates whether the specified account is the root node of an account tree.

Parameters
accountA pointer to any account.
Returns
TRUE if this account is of type ROOT. FALSE otherwise.

Definition at line 2924 of file Account.cpp.

2925 {
2926  g_return_val_if_fail(GNC_IS_ACCOUNT(account), FALSE);
2927  return (GET_PRIVATE(account)->parent == nullptr);
2928 }

◆ gnc_account_join_children()

void gnc_account_join_children ( Account to_parent,
Account from_parent 
)

The gnc_account_join_children() subroutine will move (reparent) all child accounts from the from_parent account to the to_parent account, preserving the account hierarchy.

It will also take care that the moved accounts will have the to_parent's book parent as well.

Definition at line 4889 of file Account.cpp.

4890 {
4891 
4892  /* errors */
4893  g_return_if_fail(GNC_IS_ACCOUNT(to_parent));
4894  g_return_if_fail(GNC_IS_ACCOUNT(from_parent));
4895 
4896  /* optimizations */
4897  auto from_priv = GET_PRIVATE(from_parent);
4898  if (from_priv->children.empty())
4899  return;
4900 
4901  ENTER (" ");
4902  auto children = from_priv->children;
4903  for (auto child : children)
4904  gnc_account_append_child(to_parent, child);
4905  LEAVE (" ");
4906 }
void gnc_account_append_child(Account *new_parent, Account *child)
This function will remove from the child account any pre-existing parent relationship, and will then add the account as a child of the new parent.
Definition: Account.cpp:2807
#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_account_list_name_violations()

GList* gnc_account_list_name_violations ( QofBook *  book,
const gchar *  separator 
)

Runs through all the accounts and returns a list of account names that contain the provided separator character.

This can be used to check if certain account names are invalid.

Parameters
bookPointer to the book with accounts to verify
separatorThe separator character to verify against
Returns
A GList of invalid account names. Should be freed with g_list_free_full (value, g_free) when no longer needed.

Definition at line 273 of file Account.cpp.

274 {
275  g_return_val_if_fail (separator != nullptr, nullptr);
276  if (!book) return nullptr;
277  ViolationData cb = { nullptr, separator };
278  gnc_account_foreach_descendant (gnc_book_get_root_account (book),
279  (AccountCb)check_acct_name, &cb);
280  return cb.list;
281 }
void gnc_account_foreach_descendant(const Account *acc, AccountCb thunk, gpointer user_data)
This method will traverse all children of this accounts and their descendants, calling &#39;func&#39; on each...
Definition: Account.cpp:3206

◆ gnc_account_merge_children()

void gnc_account_merge_children ( Account parent)

The gnc_account_merge_children() subroutine will go through an account, merging all child accounts that have the same name and description.

This function is useful when importing Quicken(TM) files.

Definition at line 4911 of file Account.cpp.

4912 {
4913  g_return_if_fail(GNC_IS_ACCOUNT(parent));
4914 
4915  auto ppriv = GET_PRIVATE(parent);
4916  for (auto it_a = ppriv->children.begin(); it_a != ppriv->children.end(); it_a++)
4917  {
4918  auto acc_a = *it_a;
4919  auto priv_a = GET_PRIVATE(acc_a);
4920  for (auto it_b = std::next(it_a); it_b != ppriv->children.end(); it_b++)
4921  {
4922  auto acc_b = *it_b;
4923  auto priv_b = GET_PRIVATE(acc_b);
4924  if (0 != null_strcmp(priv_a->accountName, priv_b->accountName))
4925  continue;
4926  if (0 != null_strcmp(priv_a->accountCode, priv_b->accountCode))
4927  continue;
4928  if (0 != null_strcmp(priv_a->description, priv_b->description))
4929  continue;
4930  if (0 != null_strcmp(xaccAccountGetColor(acc_a),
4931  xaccAccountGetColor(acc_b)))
4932  continue;
4933  if (!gnc_commodity_equiv(priv_a->commodity, priv_b->commodity))
4934  continue;
4935  if (0 != null_strcmp(xaccAccountGetNotes(acc_a),
4936  xaccAccountGetNotes(acc_b)))
4937  continue;
4938  if (priv_a->type != priv_b->type)
4939  continue;
4940 
4941  /* consolidate children */
4942  if (!priv_b->children.empty())
4943  {
4944  auto work = priv_b->children;
4945  for (auto w : work)
4946  gnc_account_append_child (acc_a, w);
4947 
4948  qof_event_gen (&acc_a->inst, QOF_EVENT_MODIFY, nullptr);
4949  qof_event_gen (&acc_b->inst, QOF_EVENT_MODIFY, nullptr);
4950  }
4951 
4952  /* recurse to do the children's children */
4954 
4955  /* consolidate transactions */
4956  while (!priv_b->splits.empty())
4957  xaccSplitSetAccount (priv_b->splits.front(), acc_a);
4958 
4959  /* move back one before removal. next iteration around the loop
4960  * will get the node after node_b */
4961  it_b--;
4962 
4963  /* The destroy function will remove from list -- node_a is ok,
4964  * it's before node_b */
4965  xaccAccountBeginEdit (acc_b);
4966  xaccAccountDestroy (acc_b);
4967  }
4968  }
4969 }
void gnc_account_append_child(Account *new_parent, Account *child)
This function will remove from the child account any pre-existing parent relationship, and will then add the account as a child of the new parent.
Definition: Account.cpp:2807
void xaccAccountDestroy(Account *acc)
The xaccAccountDestroy() routine can be used to get rid of an account.
Definition: Account.cpp:1592
const char * xaccAccountGetColor(const Account *acc)
Get the account&#39;s color.
Definition: Account.cpp:3320
gint null_strcmp(const gchar *da, const gchar *db)
The null_strcmp compares strings a and b the same way that strcmp() does, except that either may be n...
Definition: qofutil.cpp:123
void xaccAccountBeginEdit(Account *acc)
The xaccAccountBeginEdit() subroutine is the first phase of a two-phase-commit wrapper for account up...
Definition: Account.cpp:1477
void qof_event_gen(QofInstance *entity, QofEventId event_id, gpointer event_data)
Invoke all registered event handlers using the given arguments.
Definition: qofevent.cpp:231
gboolean gnc_commodity_equiv(const gnc_commodity *a, const gnc_commodity *b)
This routine returns TRUE if the two commodities are equivalent.
void gnc_account_merge_children(Account *parent)
The gnc_account_merge_children() subroutine will go through an account, merging all child accounts th...
Definition: Account.cpp:4911
const char * xaccAccountGetNotes(const Account *acc)
Get the account&#39;s notes.
Definition: Account.cpp:3344

◆ gnc_account_n_children()

gint gnc_account_n_children ( const Account account)

Return the number of children of the specified account.

The returned number does not include the account itself.

Parameters
accountThe account to query.
Returns
The number of children of the specified account.

Definition at line 2947 of file Account.cpp.

2948 {
2949  g_return_val_if_fail(GNC_IS_ACCOUNT(account), 0);
2950  return GET_PRIVATE(account)->children.size();
2951 }

◆ gnc_account_n_descendants()

gint gnc_account_n_descendants ( const Account account)

Return the number of descendants of the specified account.

The returned number does not include the account itself.

Parameters
accountThe account to query.
Returns
The number of descendants of the specified account.

Definition at line 2972 of file Account.cpp.

2973 {
2974  int count {0};
2975  gnc_account_foreach_descendant (account, [&count](auto acc){ count++; });
2976  return count;
2977 }
void gnc_account_foreach_descendant(const Account *acc, AccountCb thunk, gpointer user_data)
This method will traverse all children of this accounts and their descendants, calling &#39;func&#39; on each...
Definition: Account.cpp:3206

◆ gnc_account_name_violations_errmsg()

gchar* gnc_account_name_violations_errmsg ( const gchar *  separator,
GList *  invalid_account_names 
)

Composes a translatable error message showing which account names clash with the current account separator.

Can be called after gnc_account_list_name_violations to have a consistent error message in different parts of GnuCash

Parameters
separatorThe separator character that was verified against
invalid_account_namesA GList of invalid account names.
Returns
An error message that can be displayed to the user or logged. This message string should be freed with g_free when no longer needed.

Definition at line 235 of file Account.cpp.

236 {
237  gchar *message = nullptr;
238 
239  if ( !invalid_account_names )
240  return nullptr;
241 
242  auto account_list {gnc_g_list_stringjoin (invalid_account_names, "\n")};
243 
244  /* Translators: The first %s will be the account separator character,
245  the second %s is a list of account names.
246  The resulting string will be displayed to the user if there are
247  account names containing the separator character. */
248  message = g_strdup_printf(
249  _("The separator character \"%s\" is used in one or more account names.\n\n"
250  "This will result in unexpected behaviour. "
251  "Either change the account names or choose another separator character.\n\n"
252  "Below you will find the list of invalid account names:\n"
253  "%s"), separator, account_list );
254  g_free ( account_list );
255  return message;
256 }
gchar * gnc_g_list_stringjoin(GList *list_of_strings, const gchar *sep)
Return a string joining a GList whose elements are gchar* strings.

◆ gnc_account_nth_child()

Account* gnc_account_nth_child ( const Account parent,
gint  num 
)

Return the n'th child account of the specified parent account.

If the parent account is not specified or the child index number is invalid, this function returns NULL.

Parameters
parentThe parent account to check.
numThe index number of the child account that should be returned.
Returns
A pointer to the specified child account, or NULL

Definition at line 2963 of file Account.cpp.

2964 {
2965  g_return_val_if_fail(GNC_IS_ACCOUNT(parent), nullptr);
2966  if ((size_t)num >= GET_PRIVATE(parent)->children.size())
2967  return nullptr;
2968  return static_cast<Account*>(GET_PRIVATE(parent)->children.at (num));
2969 }
STRUCTS.

◆ gnc_account_remove_child()

void gnc_account_remove_child ( Account parent,
Account child 
)

This function will remove the specified child account from the specified parent account.

It will NOT free the associated memory or otherwise alter the account: the account can now be reparented to a new location. Note, however, that it will mark the old parents as having been modified.

Parameters
parentThe parent account from which the child should be removed.
childThe child account to remove.

Definition at line 2869 of file Account.cpp.

2870 {
2871  AccountPrivate *ppriv, *cpriv;
2872  GncEventData ed;
2873 
2874  if (!child) return;
2875 
2876  /* Note this routine might be called on accounts which
2877  * are not yet parented. */
2878  if (!parent) return;
2879 
2880  ppriv = GET_PRIVATE(parent);
2881  cpriv = GET_PRIVATE(child);
2882 
2883  if (cpriv->parent != parent)
2884  {
2885  PERR ("account not a child of parent");
2886  return;
2887  }
2888 
2889  /* Gather event data */
2890  ed.node = parent;
2891  ed.idx = gnc_account_child_index (parent, child);
2892 
2893  ppriv->children.erase (std::remove (ppriv->children.begin(), ppriv->children.end(), child),
2894  ppriv->children.end());
2895 
2896  /* Now send the event. */
2897  qof_event_gen(&child->inst, QOF_EVENT_REMOVE, &ed);
2898 
2899  /* clear the account's parent pointer after REMOVE event generation. */
2900  cpriv->parent = nullptr;
2901 
2902  qof_event_gen (&parent->inst, QOF_EVENT_MODIFY, nullptr);
2903 }
#define PERR(format, args...)
Log a serious error.
Definition: qoflog.h:244
gint gnc_account_child_index(const Account *parent, const Account *child)
Return the index of the specified child within the list of the parent&#39;s children. ...
Definition: Account.cpp:2954
void qof_event_gen(QofInstance *entity, QofEventId event_id, gpointer event_data)
Invoke all registered event handlers using the given arguments.
Definition: qofevent.cpp:231

◆ gnc_account_remove_split()

gboolean gnc_account_remove_split ( Account acc,
Split *  s 
)

Remove the given split from an account.

Parameters
accThe account from which the split should be removed.
sThe split to be removed.
Returns
TRUE is the split is successfully removed from the set of splits in the account. FALSE if the removal fails for any reason.

Definition at line 1975 of file Account.cpp.

1976 {
1977  AccountPrivate *priv;
1978 
1979  g_return_val_if_fail(GNC_IS_ACCOUNT(acc), FALSE);
1980  g_return_val_if_fail(GNC_IS_SPLIT(s), FALSE);
1981 
1982  priv = GET_PRIVATE(acc);
1983 
1984  if (!g_hash_table_remove (priv->splits_hash, s))
1985  return false;
1986 
1987  // shortcut pruning the last element. this is the most common
1988  // remove_split operation during UI or book shutdown.
1989  if (s == priv->splits.back())
1990  priv->splits.pop_back();
1991  else
1992  priv->splits.erase (std::remove (priv->splits.begin(), priv->splits.end(), s),
1993  priv->splits.end());
1994 
1995  //FIXME: find better event type
1996  qof_event_gen(&acc->inst, QOF_EVENT_MODIFY, nullptr);
1997  // And send the account-based event, too
1998  qof_event_gen(&acc->inst, GNC_EVENT_ITEM_REMOVED, s);
1999 
2000  priv->balance_dirty = TRUE;
2002  return TRUE;
2003 }
void xaccAccountRecomputeBalance(Account *acc)
The following recompute the partial balances (stored with the transaction) and the total balance...
Definition: Account.cpp:2281
void qof_event_gen(QofInstance *entity, QofEventId event_id, gpointer event_data)
Invoke all registered event handlers using the given arguments.
Definition: qofevent.cpp:231

◆ gnc_account_set_balance_dirty()

void gnc_account_set_balance_dirty ( Account acc)

Tell the account that the running balances may be incorrect and need to be recomputed.

Parameters
accSet the flag on this account.

Definition at line 1900 of file Account.cpp.

1901 {
1902  AccountPrivate *priv;
1903 
1904  g_return_if_fail(GNC_IS_ACCOUNT(acc));
1905 
1906  if (qof_instance_get_destroying(acc))
1907  return;
1908 
1909  priv = GET_PRIVATE(acc);
1910  priv->balance_dirty = TRUE;
1911 }
gboolean qof_instance_get_destroying(gconstpointer ptr)
Retrieve the flag that indicates whether or not this object is about to be destroyed.

◆ gnc_account_set_defer_bal_computation()

void gnc_account_set_defer_bal_computation ( Account acc,
gboolean  defer 
)

Set the defer balance flag.

If defer is true, the account balance is not automatically computed, which can save a lot of time if multiple operations have to be done on the same account. If defer is false, further operations on account will cause the balance to be recomputed as normal.

Parameters
accSet the flag on this account.
deferNew value for the flag.

Definition at line 1913 of file Account.cpp.

1914 {
1915  AccountPrivate *priv;
1916 
1917  g_return_if_fail (GNC_IS_ACCOUNT (acc));
1918 
1919  if (qof_instance_get_destroying (acc))
1920  return;
1921 
1922  priv = GET_PRIVATE (acc);
1923  priv->defer_bal_computation = defer;
1924 }
gboolean qof_instance_get_destroying(gconstpointer ptr)
Retrieve the flag that indicates whether or not this object is about to be destroyed.

◆ gnc_account_set_sort_dirty()

void gnc_account_set_sort_dirty ( Account acc)

Tell the account believes that the splits may be incorrectly sorted and need to be resorted.

Parameters
accSet the flag on this account.

Definition at line 1886 of file Account.cpp.

1887 {
1888  AccountPrivate *priv;
1889 
1890  g_return_if_fail(GNC_IS_ACCOUNT(acc));
1891 
1892  if (qof_instance_get_destroying(acc))
1893  return;
1894 
1895  priv = GET_PRIVATE(acc);
1896  priv->sort_dirty = TRUE;
1897 }
gboolean qof_instance_get_destroying(gconstpointer ptr)
Retrieve the flag that indicates whether or not this object is about to be destroyed.

◆ gnc_account_set_start_balance()

void gnc_account_set_start_balance ( Account acc,
const gnc_numeric  start_baln 
)

This function will set the starting commodity balance for this account.

This routine is intended for use with backends that do not return the complete list of splits for an account, but rather return a partial list. In such a case, the backend will typically return all of the splits after some certain date, and the 'starting balance' will represent the summation of the splits up to that date.

Definition at line 3392 of file Account.cpp.

3393 {
3394  AccountPrivate *priv;
3395 
3396  g_return_if_fail(GNC_IS_ACCOUNT(acc));
3397 
3398  priv = GET_PRIVATE(acc);
3399  priv->starting_balance = start_baln;
3400  priv->balance_dirty = TRUE;
3401 }

◆ gnc_account_set_start_cleared_balance()

void gnc_account_set_start_cleared_balance ( Account acc,
const gnc_numeric  start_baln 
)

This function will set the starting cleared commodity balance for this account.

This routine is intended for use with backends that do not return the complete list of splits for an account, but rather return a partial list. In such a case, the backend will typically return all of the splits after some certain date, and the 'starting balance' will represent the summation of the splits up to that date.

Definition at line 3404 of file Account.cpp.

3406 {
3407  AccountPrivate *priv;
3408 
3409  g_return_if_fail(GNC_IS_ACCOUNT(acc));
3410 
3411  priv = GET_PRIVATE(acc);
3412  priv->starting_cleared_balance = start_baln;
3413  priv->balance_dirty = TRUE;
3414 }

◆ gnc_account_set_start_reconciled_balance()

void gnc_account_set_start_reconciled_balance ( Account acc,
const gnc_numeric  start_baln 
)

This function will set the starting reconciled commodity balance for this account.

This routine is intended for use with backends that do not return the complete list of splits for an account, but rather return a partial list. In such a case, the backend will typically return all of the splits after some certain date, and the 'starting balance' will represent the summation of the splits up to that date.

Definition at line 3417 of file Account.cpp.

3419 {
3420  AccountPrivate *priv;
3421 
3422  g_return_if_fail(GNC_IS_ACCOUNT(acc));
3423 
3424  priv = GET_PRIVATE(acc);
3425  priv->starting_reconciled_balance = start_baln;
3426  priv->balance_dirty = TRUE;
3427 }

◆ gnc_get_account_separator_string()

const gchar* gnc_get_account_separator_string ( void  )

Returns the account separation character chosen by the user.

Returns
The character to use.

Definition at line 205 of file Account.cpp.

206 {
207  return account_separator;
208 }

◆ xaccAccountBeginEdit()

void xaccAccountBeginEdit ( Account account)

The xaccAccountBeginEdit() subroutine is the first phase of a two-phase-commit wrapper for account updates.

Definition at line 1477 of file Account.cpp.

1478 {
1479  g_return_if_fail(acc);
1480  qof_begin_edit(&acc->inst);
1481 }
gboolean qof_begin_edit(QofInstance *inst)
begin_edit

◆ xaccAccountCommitEdit()

void xaccAccountCommitEdit ( Account account)

ThexaccAccountCommitEdit() subroutine is the second phase of a two-phase-commit wrapper for account updates.

Definition at line 1518 of file Account.cpp.

1519 {
1520  AccountPrivate *priv;
1521  QofBook *book;
1522 
1523  g_return_if_fail(acc);
1524  if (!qof_commit_edit(&acc->inst)) return;
1525 
1526  /* If marked for deletion, get rid of subaccounts first,
1527  * and then the splits ... */
1528  priv = GET_PRIVATE(acc);
1529  if (qof_instance_get_destroying(acc))
1530  {
1531  QofCollection *col;
1532 
1533  qof_instance_increase_editlevel(acc);
1534 
1535  /* First, recursively free children */
1536  xaccFreeAccountChildren(acc);
1537 
1538  PINFO ("freeing splits for account %p (%s)",
1539  acc, priv->accountName ? priv->accountName : "(null)");
1540 
1541  book = qof_instance_get_book(acc);
1542 
1543  /* If book is shutting down, just clear the split list. The splits
1544  themselves will be destroyed by the transaction code */
1545  if (!qof_book_shutting_down(book))
1546  {
1547  // We need to delete in reverse order so that the vector's iterators aren't invalidated.
1548  for_each(priv->splits.rbegin(), priv->splits.rend(), [](Split *s) {
1549  xaccSplitDestroy (s); });
1550  }
1551  else
1552  {
1553  priv->splits.clear();
1554  g_hash_table_remove_all (priv->splits_hash);
1555  }
1556 
1557  /* It turns out there's a case where this assertion does not hold:
1558  When the user tries to delete an Imbalance account, while also
1559  deleting all the splits in it. The splits will just get
1560  recreated and put right back into the same account!
1561 
1562  g_assert(priv->splits == nullptr || qof_book_shutting_down(acc->inst.book));
1563  */
1564 
1565  if (!qof_book_shutting_down(book))
1566  {
1567  col = qof_book_get_collection(book, GNC_ID_TRANS);
1568  qof_collection_foreach(col, destroy_pending_splits_for_account, acc);
1569 
1570  /* the lots should be empty by now */
1571  for (auto lp = priv->lots; lp; lp = lp->next)
1572  {
1573  GNCLot *lot = static_cast<GNCLot*>(lp->data);
1574  gnc_lot_destroy (lot);
1575  }
1576  }
1577  g_list_free(priv->lots);
1578  priv->lots = nullptr;
1579 
1580  qof_instance_set_dirty(&acc->inst);
1581  qof_instance_decrease_editlevel(acc);
1582  }
1583  else
1584  {
1585  xaccAccountBringUpToDate(acc);
1586  }
1587 
1588  qof_commit_edit_part2(&acc->inst, on_err, on_done, acc_free);
1589 }
QofBook * qof_instance_get_book(gconstpointer inst)
Return the book pointer.
#define PINFO(format, args...)
Print an informational note.
Definition: qoflog.h:256
gboolean xaccSplitDestroy(Split *split)
Destructor.
Definition: Split.cpp:1472
gboolean qof_instance_get_destroying(gconstpointer ptr)
Retrieve the flag that indicates whether or not this object is about to be destroyed.
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
QofCollection * qof_book_get_collection(const QofBook *book, QofIdType entity_type)
Return The table of entities of the given type.
Definition: qofbook.cpp:521
gboolean qof_book_shutting_down(const QofBook *book)
Is the book shutting down?
Definition: qofbook.cpp:447

◆ xaccAccountDestroy()

void xaccAccountDestroy ( Account account)

The xaccAccountDestroy() routine can be used to get rid of an account.

The account should have been opened for editing (by calling xaccAccountBeginEdit()) before calling this routine.

Definition at line 1592 of file Account.cpp.

1593 {
1594  g_return_if_fail(GNC_IS_ACCOUNT(acc));
1595 
1596  qof_instance_set_destroying(acc, TRUE);
1597 
1598  xaccAccountCommitEdit (acc);
1599 }
void xaccAccountCommitEdit(Account *acc)
ThexaccAccountCommitEdit() subroutine is the second phase of a two-phase-commit wrapper for account u...
Definition: Account.cpp:1518

◆ xaccAccountEqual()

gboolean xaccAccountEqual ( const Account a,
const Account b,
gboolean  check_guids 
)

Compare two accounts for equality - this is a deep compare.

Definition at line 1668 of file Account.cpp.

1669 {
1670  AccountPrivate *priv_aa, *priv_ab;
1671 
1672  if (!aa && !ab) return TRUE;
1673 
1674  g_return_val_if_fail(GNC_IS_ACCOUNT(aa), FALSE);
1675  g_return_val_if_fail(GNC_IS_ACCOUNT(ab), FALSE);
1676 
1677  priv_aa = GET_PRIVATE(aa);
1678  priv_ab = GET_PRIVATE(ab);
1679  if (priv_aa->type != priv_ab->type)
1680  {
1681  PWARN ("types differ: %d vs %d", priv_aa->type, priv_ab->type);
1682  return FALSE;
1683  }
1684 
1685  if (g_strcmp0(priv_aa->accountName, priv_ab->accountName) != 0)
1686  {
1687  PWARN ("names differ: %s vs %s", priv_aa->accountName, priv_ab->accountName);
1688  return FALSE;
1689  }
1690 
1691  if (g_strcmp0(priv_aa->accountCode, priv_ab->accountCode) != 0)
1692  {
1693  PWARN ("codes differ: %s vs %s", priv_aa->accountCode, priv_ab->accountCode);
1694  return FALSE;
1695  }
1696 
1697  if (g_strcmp0(priv_aa->description, priv_ab->description) != 0)
1698  {
1699  PWARN ("descriptions differ: %s vs %s", priv_aa->description, priv_ab->description);
1700  return FALSE;
1701  }
1702 
1703  if (!gnc_commodity_equal(priv_aa->commodity, priv_ab->commodity))
1704  {
1705  PWARN ("commodities differ");
1706  return FALSE;
1707  }
1708 
1709  if (check_guids)
1710  {
1711  if (qof_instance_guid_compare(aa, ab) != 0)
1712  {
1713  PWARN ("GUIDs differ");
1714  return FALSE;
1715  }
1716  }
1717 
1718  if (qof_instance_compare_kvp (QOF_INSTANCE (aa), QOF_INSTANCE (ab)) != 0)
1719  {
1720  char *frame_a;
1721  char *frame_b;
1722 
1723  frame_a = qof_instance_kvp_as_string (QOF_INSTANCE (aa));
1724  frame_b = qof_instance_kvp_as_string (QOF_INSTANCE (ab));
1725 
1726  PWARN ("kvp frames differ:\n%s\n\nvs\n\n%s", frame_a, frame_b);
1727 
1728  g_free (frame_a);
1729  g_free (frame_b);
1730 
1731  return FALSE;
1732  }
1733 
1734  if (!gnc_numeric_equal(priv_aa->starting_balance, priv_ab->starting_balance))
1735  {
1736  char *str_a;
1737  char *str_b;
1738 
1739  str_a = gnc_numeric_to_string(priv_aa->starting_balance);
1740  str_b = gnc_numeric_to_string(priv_ab->starting_balance);
1741 
1742  PWARN ("starting balances differ: %s vs %s", str_a, str_b);
1743 
1744  g_free (str_a);
1745  g_free (str_b);
1746 
1747  return FALSE;
1748  }
1749 
1750  if (!gnc_numeric_equal(priv_aa->starting_noclosing_balance,
1751  priv_ab->starting_noclosing_balance))
1752  {
1753  char *str_a;
1754  char *str_b;
1755 
1756  str_a = gnc_numeric_to_string(priv_aa->starting_noclosing_balance);
1757  str_b = gnc_numeric_to_string(priv_ab->starting_noclosing_balance);
1758 
1759  PWARN ("starting noclosing balances differ: %s vs %s", str_a, str_b);
1760 
1761  g_free (str_a);
1762  g_free (str_b);
1763 
1764  return FALSE;
1765  }
1766  if (!gnc_numeric_equal(priv_aa->starting_cleared_balance,
1767  priv_ab->starting_cleared_balance))
1768  {
1769  char *str_a;
1770  char *str_b;
1771 
1772  str_a = gnc_numeric_to_string(priv_aa->starting_cleared_balance);
1773  str_b = gnc_numeric_to_string(priv_ab->starting_cleared_balance);
1774 
1775  PWARN ("starting cleared balances differ: %s vs %s", str_a, str_b);
1776 
1777  g_free (str_a);
1778  g_free (str_b);
1779 
1780  return FALSE;
1781  }
1782 
1783  if (!gnc_numeric_equal(priv_aa->starting_reconciled_balance,
1784  priv_ab->starting_reconciled_balance))
1785  {
1786  char *str_a;
1787  char *str_b;
1788 
1789  str_a = gnc_numeric_to_string(priv_aa->starting_reconciled_balance);
1790  str_b = gnc_numeric_to_string(priv_ab->starting_reconciled_balance);
1791 
1792  PWARN ("starting reconciled balances differ: %s vs %s", str_a, str_b);
1793 
1794  g_free (str_a);
1795  g_free (str_b);
1796 
1797  return FALSE;
1798  }
1799 
1800  if (!gnc_numeric_equal(priv_aa->balance, priv_ab->balance))
1801  {
1802  char *str_a;
1803  char *str_b;
1804 
1805  str_a = gnc_numeric_to_string(priv_aa->balance);
1806  str_b = gnc_numeric_to_string(priv_ab->balance);
1807 
1808  PWARN ("balances differ: %s vs %s", str_a, str_b);
1809 
1810  g_free (str_a);
1811  g_free (str_b);
1812 
1813  return FALSE;
1814  }
1815 
1816  if (!gnc_numeric_equal(priv_aa->noclosing_balance, priv_ab->noclosing_balance))
1817  {
1818  char *str_a;
1819  char *str_b;
1820 
1821  str_a = gnc_numeric_to_string(priv_aa->noclosing_balance);
1822  str_b = gnc_numeric_to_string(priv_ab->noclosing_balance);
1823 
1824  PWARN ("noclosing balances differ: %s vs %s", str_a, str_b);
1825 
1826  g_free (str_a);
1827  g_free (str_b);
1828 
1829  return FALSE;
1830  }
1831  if (!gnc_numeric_equal(priv_aa->cleared_balance, priv_ab->cleared_balance))
1832  {
1833  char *str_a;
1834  char *str_b;
1835 
1836  str_a = gnc_numeric_to_string(priv_aa->cleared_balance);
1837  str_b = gnc_numeric_to_string(priv_ab->cleared_balance);
1838 
1839  PWARN ("cleared balances differ: %s vs %s", str_a, str_b);
1840 
1841  g_free (str_a);
1842  g_free (str_b);
1843 
1844  return FALSE;
1845  }
1846 
1847  if (!gnc_numeric_equal(priv_aa->reconciled_balance, priv_ab->reconciled_balance))
1848  {
1849  char *str_a;
1850  char *str_b;
1851 
1852  str_a = gnc_numeric_to_string(priv_aa->reconciled_balance);
1853  str_b = gnc_numeric_to_string(priv_ab->reconciled_balance);
1854 
1855  PWARN ("reconciled balances differ: %s vs %s", str_a, str_b);
1856 
1857  g_free (str_a);
1858  g_free (str_b);
1859 
1860  return FALSE;
1861  }
1862 
1863  /* no parent; always compare downwards. */
1864 
1865  if (!std::equal (priv_aa->splits.begin(), priv_aa->splits.end(),
1866  priv_ab->splits.begin(), priv_ab->splits.end(),
1867  [check_guids](auto sa, auto sb)
1868  { return xaccSplitEqual(sa, sb, check_guids, true, false); }))
1869  {
1870  PWARN ("splits differ");
1871  return false;
1872  }
1873 
1874  if (!xaccAcctChildrenEqual(priv_aa->children, priv_ab->children, check_guids))
1875  {
1876  PWARN ("children differ");
1877  return FALSE;
1878  }
1879 
1880  return(TRUE);
1881 }
gboolean gnc_numeric_equal(gnc_numeric a, gnc_numeric b)
Equivalence predicate: Returns TRUE (1) if a and b represent the same number.
gboolean gnc_commodity_equal(const gnc_commodity *a, const gnc_commodity *b)
This routine returns TRUE if the two commodities are equal.
gchar * gnc_numeric_to_string(gnc_numeric n)
Convert to string.
gboolean xaccSplitEqual(const Split *sa, const Split *sb, gboolean check_guids, gboolean check_balances, gboolean check_txn_splits)
Equality.
Definition: Split.cpp:802
#define PWARN(format, args...)
Log a warning.
Definition: qoflog.h:250
gint qof_instance_guid_compare(gconstpointer ptr1, gconstpointer ptr2)
Compare the GncGUID values of two instances.

◆ xaccAccountGainsAccount()

Account* xaccAccountGainsAccount ( Account acc,
gnc_commodity *  curr 
)

Retrieve the gains account used by this account for the indicated currency, creating and recording a new one if necessary.

FIXME: There is at present no interface to designate an existing account, and the new account name is hard coded to "Orphaned Gains -- CUR"

FIXME: There is no provision for creating separate accounts for anything other than currency, e.g. holding period of a security.

Definition at line 4772 of file Account.cpp.

4773 {
4774  Path path {KEY_LOT_MGMT, "gains-acct", gnc_commodity_get_unique_name (curr)};
4775  auto gains_account = get_kvp_account_path (acc, path);
4776 
4777  if (gains_account == nullptr) /* No gains account for this currency */
4778  {
4779  gains_account = GetOrMakeOrphanAccount (gnc_account_get_root (acc), curr);
4780  set_kvp_account_path (acc, path, gains_account);
4781  }
4782 
4783  return gains_account;
4784 }
const char * gnc_commodity_get_unique_name(const gnc_commodity *cm)
Retrieve the &#39;unique&#39; name for the specified commodity.
Account * gnc_account_get_root(Account *acc)
This routine returns the root account of the account tree that the specified account belongs to...
Definition: Account.cpp:2913

◆ xaccAccountGetAssociatedAccount()

Account* xaccAccountGetAssociatedAccount ( const Account acc,
const char *  tag 
)

Get the account's associated account e.g.

stock account -> dividend account

Definition at line 3350 of file Account.cpp.

3351 {
3352  g_return_val_if_fail (tag && *tag, nullptr);
3353 
3354  return get_kvp_account_path (acc, {"associated-account", tag});
3355 }

◆ xaccAccountGetBalanceAsOfDate()

gnc_numeric xaccAccountGetBalanceAsOfDate ( Account account,
time64  date 
)

Get the balance of the account at the end of the day before the date specified.

Definition at line 3489 of file Account.cpp.

3490 {
3491  return GetBalanceAsOfDate (acc, date, xaccSplitGetBalance);
3492 }
gnc_numeric xaccSplitGetBalance(const Split *s)
Returns the running balance up to and including the indicated split.
Definition: Split.cpp:1297

◆ xaccAccountGetBalanceAsOfDateInCurrency()

gnc_numeric xaccAccountGetBalanceAsOfDateInCurrency ( Account account,
time64  date,
gnc_commodity *  report_commodity,
gboolean  include_children 
)

This function gets the balance at the end of the given date in the desired commodity.

Definition at line 3807 of file Account.cpp.

3810 {
3811  return xaccAccountGetXxxBalanceAsOfDateInCurrencyRecursive (
3812  acc, date, xaccAccountGetBalanceAsOfDate, report_commodity,
3813  include_children);
3814 }
gnc_numeric xaccAccountGetBalanceAsOfDate(Account *acc, time64 date)
Get the balance of the account at the end of the day before the date specified.
Definition: Account.cpp:3489

◆ xaccAccountGetCommoditySCU()

int xaccAccountGetCommoditySCU ( const Account account)

Return the SCU for the account.

If a non-standard SCU has been set for the account, that is returned; else the default SCU for the account commodity is returned.

Definition at line 2716 of file Account.cpp.

2717 {
2718  AccountPrivate *priv;
2719 
2720  g_return_val_if_fail(GNC_IS_ACCOUNT(acc), 0);
2721 
2722  priv = GET_PRIVATE(acc);
2723  if (priv->non_standard_scu || !priv->commodity)
2724  return priv->commodity_scu;
2725  return gnc_commodity_get_fraction(priv->commodity);
2726 }
int gnc_commodity_get_fraction(const gnc_commodity *cm)
Retrieve the fraction for the specified commodity.

◆ xaccAccountGetCommoditySCUi()

int xaccAccountGetCommoditySCUi ( const Account account)

Return the 'internal' SCU setting.

This returns the over-ride SCU for the account (which might not be set, and might be zero).

Definition at line 2709 of file Account.cpp.

2710 {
2711  g_return_val_if_fail(GNC_IS_ACCOUNT(acc), 0);
2712  return GET_PRIVATE(acc)->commodity_scu;
2713 }

◆ xaccAccountGetNoclosingBalanceAsOfDateInCurrency()

gnc_numeric xaccAccountGetNoclosingBalanceAsOfDateInCurrency ( Account acc,
time64  date,
gnc_commodity *  report_commodity,
gboolean  include_children 
)

This function gets the balance at the end of the given date, ignoring closing entries, in the desired commodity.

Definition at line 3817 of file Account.cpp.

3820 {
3821  return xaccAccountGetXxxBalanceAsOfDateInCurrencyRecursive
3822  (acc, date, xaccAccountGetNoclosingBalanceAsOfDate,
3823  report_commodity, include_children);
3824 }

◆ xaccAccountGetNonStdSCU()

gboolean xaccAccountGetNonStdSCU ( const Account account)

Return boolean, indicating whether this account uses a non-standard SCU.

Definition at line 2745 of file Account.cpp.

2746 {
2747  g_return_val_if_fail(GNC_IS_ACCOUNT(acc), 0);
2748  return GET_PRIVATE(acc)->non_standard_scu;
2749 }

◆ xaccAccountGetReconciledBalanceAsOfDate()

gnc_numeric xaccAccountGetReconciledBalanceAsOfDate ( Account account,
time64  date 
)

Get the reconciled balance of the account at the end of the day of the date specified.

Definition at line 3501 of file Account.cpp.

3502 {
3503  return GetBalanceAsOfDate (acc, date, xaccSplitGetReconciledBalance);
3504 }
gnc_numeric xaccSplitGetReconciledBalance(const Split *s)
Returns the reconciled-balance of this split.
Definition: Split.cpp:1315

◆ xaccAccountGetType()

GNCAccountType xaccAccountGetType ( const Account account)

Returns the account's account type.

This must not be confused with the GType as returned by gnc_account_get_type(), which is related to glib's type system.

Definition at line 3237 of file Account.cpp.

3238 {
3239  g_return_val_if_fail(GNC_IS_ACCOUNT(acc), ACCT_TYPE_NONE);
3240  return GET_PRIVATE(acc)->type;
3241 }
Not a type.
Definition: Account.h:105

◆ xaccAccountHasAncestor()

gboolean xaccAccountHasAncestor ( const Account acc,
const Account ancestor 
)

Returns true if the account is 'ancestor' or has 'ancestor' as an ancestor.

An ancestor account may be the accounts parent, its parent's parent, its parent's parent's parent, etc. Returns false if either one is NULL.

Definition at line 4179 of file Account.cpp.

4180 {
4181  const Account *parent;
4182 
4183  g_return_val_if_fail(GNC_IS_ACCOUNT(acc), FALSE);
4184  g_return_val_if_fail(GNC_IS_ACCOUNT(ancestor), FALSE);
4185 
4186  parent = acc;
4187  while (parent && parent != ancestor)
4188  parent = GET_PRIVATE(parent)->parent;
4189 
4190  return (parent == ancestor);
4191 }
STRUCTS.

◆ xaccAccountIsPriced()

gboolean xaccAccountIsPriced ( const Account acc)

Returns true if the account is a stock, mutual fund or currency, otherwise false.

Definition at line 4506 of file Account.cpp.

4507 {
4508  AccountPrivate *priv;
4509 
4510  g_return_val_if_fail(GNC_IS_ACCOUNT(acc), FALSE);
4511 
4512  priv = GET_PRIVATE(acc);
4513  return (priv->type == ACCT_TYPE_STOCK || priv->type == ACCT_TYPE_MUTUAL ||
4514  priv->type == ACCT_TYPE_CURRENCY);
4515 }
Mutual Fund accounts will typically be shown in registers which show three columns: price...
Definition: Account.h:125
Stock accounts will typically be shown in registers which show three columns: price, number of shares, and value.
Definition: Account.h:122
The currency account type indicates that the account is a currency trading account.
Definition: Account.h:129

◆ xaccAccountLookup()

Account* xaccAccountLookup ( const GncGUID guid,
QofBook *  book 
)

The xaccAccountLookup() subroutine will return the account associated with the given id, or NULL if there is no such account.

Definition at line 2052 of file Account.cpp.

2053 {
2054  QofCollection *col;
2055  if (!guid || !book) return nullptr;
2056  col = qof_book_get_collection (book, GNC_ID_ACCOUNT);
2057  return (Account *) qof_collection_lookup_entity (col, guid);
2058 }
QofInstance * qof_collection_lookup_entity(const QofCollection *col, const GncGUID *guid)
Find the entity going only from its guid.
Definition: qofid.cpp:212
STRUCTS.
QofCollection * qof_book_get_collection(const QofBook *book, QofIdType entity_type)
Return The table of entities of the given type.
Definition: qofbook.cpp:521

◆ xaccAccountOrder()

int xaccAccountOrder ( const Account account_1,
const Account account_2 
)

The xaccAccountOrder() subroutine defines a sorting order on accounts.

It takes pointers to two accounts, and returns an int < 0 if the first account is "less than" the second, returns an int > 0 if the first is "greater than" the second, and 0 if they are equal. To determine the sort order, first the account codes are compared, and if these are equal, then account types, then account names. If still equal, it compares GUID to ensure that there aren't any ties.

Definition at line 2360 of file Account.cpp.

2361 {
2362  AccountPrivate *priv_aa, *priv_ab;
2363  const char *da, *db;
2364  int ta, tb, result;
2365 
2366  if ( aa && !ab ) return -1;
2367  if ( !aa && ab ) return +1;
2368  if ( !aa && !ab ) return 0;
2369 
2370  priv_aa = GET_PRIVATE(aa);
2371  priv_ab = GET_PRIVATE(ab);
2372 
2373  /* sort on accountCode strings */
2374  da = priv_aa->accountCode;
2375  db = priv_ab->accountCode;
2376 
2377  /* Otherwise do a string sort */
2378  result = g_strcmp0 (da, db);
2379  if (result)
2380  return result;
2381 
2382  /* if account-type-order array not initialized, initialize it */
2383  /* this will happen at most once during program invocation */
2384  if (-1 == revorder[0])
2385  {
2386  int i;
2387  for (i = 0; i < NUM_ACCOUNT_TYPES; i++)
2388  {
2389  revorder [typeorder[i]] = i;
2390  }
2391  }
2392 
2393  /* otherwise, sort on account type */
2394  ta = priv_aa->type;
2395  tb = priv_ab->type;
2396  ta = revorder[ta];
2397  tb = revorder[tb];
2398  if (ta < tb) return -1;
2399  if (ta > tb) return +1;
2400 
2401  /* otherwise, sort on accountName strings */
2402  da = priv_aa->accountName;
2403  db = priv_ab->accountName;
2404  result = safe_utf8_collate(da, db);
2405  if (result)
2406  return result;
2407 
2408  /* guarantee a stable sort */
2409  return qof_instance_guid_compare(aa, ab);
2410 }
int safe_utf8_collate(const char *da, const char *db)
Collate two UTF-8 strings.
stop here; the following types just aren&#39;t ready for prime time
Definition: Account.h:161
gint qof_instance_guid_compare(gconstpointer ptr1, gconstpointer ptr2)
Compare the GncGUID values of two instances.

◆ xaccAccountSetAssociatedAccount()

void xaccAccountSetAssociatedAccount ( Account acc,
const char *  tag,
const Account assoc_acct 
)

Set the account's associated account e.g.

stock account -> dividend account

Definition at line 2640 of file Account.cpp.

2641 {
2642  g_return_if_fail (GNC_IS_ACCOUNT(acc));
2643  g_return_if_fail (tag && *tag);
2644 
2645  set_kvp_account_path (acc, {"associated-account", tag}, assoc_acct);
2646 }

◆ xaccAccountSetCommoditySCU()

void xaccAccountSetCommoditySCU ( Account account,
int  frac 
)

Set the SCU for the account.

Normally, this routine is not required, as the default SCU for an account is given by its commodity.

Definition at line 2693 of file Account.cpp.

2694 {
2695  AccountPrivate *priv;
2696 
2697  g_return_if_fail(GNC_IS_ACCOUNT(acc));
2698 
2699  priv = GET_PRIVATE(acc);
2700  xaccAccountBeginEdit(acc);
2701  priv->commodity_scu = scu;
2702  if (scu != gnc_commodity_get_fraction(priv->commodity))
2703  priv->non_standard_scu = TRUE;
2704  mark_account(acc);
2705  xaccAccountCommitEdit(acc);
2706 }
int gnc_commodity_get_fraction(const gnc_commodity *cm)
Retrieve the fraction for the specified commodity.
void xaccAccountBeginEdit(Account *acc)
The xaccAccountBeginEdit() subroutine is the first phase of a two-phase-commit wrapper for account up...
Definition: Account.cpp:1477
void xaccAccountCommitEdit(Account *acc)
ThexaccAccountCommitEdit() subroutine is the second phase of a two-phase-commit wrapper for account u...
Definition: Account.cpp:1518

◆ xaccAccountSetNonStdSCU()

void xaccAccountSetNonStdSCU ( Account account,
gboolean  flag 
)

Set the flag indicating that this account uses a non-standard SCU.

Definition at line 2729 of file Account.cpp.

2730 {
2731  AccountPrivate *priv;
2732 
2733  g_return_if_fail(GNC_IS_ACCOUNT(acc));
2734 
2735  priv = GET_PRIVATE(acc);
2736  if (priv->non_standard_scu == flag)
2737  return;
2738  xaccAccountBeginEdit(acc);
2739  priv->non_standard_scu = flag;
2740  mark_account (acc);
2741  xaccAccountCommitEdit(acc);
2742 }
void xaccAccountBeginEdit(Account *acc)
The xaccAccountBeginEdit() subroutine is the first phase of a two-phase-commit wrapper for account up...
Definition: Account.cpp:1477
void xaccAccountCommitEdit(Account *acc)
ThexaccAccountCommitEdit() subroutine is the second phase of a two-phase-commit wrapper for account u...
Definition: Account.cpp:1518

◆ xaccAccountSortSplits()

void xaccAccountSortSplits ( Account acc,
gboolean  force 
)

The xaccAccountSortSplits() routine will resort the account's splits if the sort is dirty.

If 'force' is true, the account is sorted even if the editlevel is not zero.

Definition at line 2006 of file Account.cpp.

2007 {
2008  AccountPrivate *priv;
2009 
2010  g_return_if_fail(GNC_IS_ACCOUNT(acc));
2011 
2012  priv = GET_PRIVATE(acc);
2013  if (!priv->sort_dirty || (!force && qof_instance_get_editlevel(acc) > 0))
2014  return;
2015  std::sort (priv->splits.begin(), priv->splits.end(), split_cmp_less);
2016  priv->sort_dirty = FALSE;
2017  priv->balance_dirty = TRUE;
2018 }

◆ xaccCloneAccount()

Account* xaccCloneAccount ( const Account source,
QofBook *  book 
)

The xaccCloneAccount() routine makes a simple copy of the indicated account, placing it in the indicated book.

It copies the account type, name, description, and the kvp values; it does not copy splits/transactions. The book should have a commodity table in it that has commodities with the same unique name as the ones being copied in the account (the commodities in the clone will be those from the book).

Definition at line 1304 of file Account.cpp.

1305 {
1306  Account *ret;
1307  AccountPrivate *from_priv, *priv;
1308 
1309  g_return_val_if_fail(GNC_IS_ACCOUNT(from), nullptr);
1310  g_return_val_if_fail(QOF_IS_BOOK(book), nullptr);
1311 
1312  ENTER (" ");
1313  ret = static_cast<Account*>(g_object_new (GNC_TYPE_ACCOUNT, nullptr));
1314  g_return_val_if_fail (ret, nullptr);
1315 
1316  from_priv = GET_PRIVATE(from);
1317  priv = GET_PRIVATE(ret);
1318  xaccInitAccount (ret, book);
1319 
1320  /* Do not Begin/CommitEdit() here; give the caller
1321  * a chance to fix things up, and let them do it.
1322  * Also let caller issue the generate_event (EVENT_CREATE) */
1323  priv->type = from_priv->type;
1324 
1325  priv->accountName = qof_string_cache_replace(priv->accountName, from_priv->accountName);
1326  priv->accountCode = qof_string_cache_replace(priv->accountCode, from_priv->accountCode);
1327  priv->description = qof_string_cache_replace(priv->description, from_priv->description);
1328 
1329  qof_instance_copy_kvp (QOF_INSTANCE (ret), QOF_INSTANCE (from));
1330 
1331  /* The new book should contain a commodity that matches
1332  * the one in the old book. Find it, use it. */
1333  priv->commodity = gnc_commodity_obtain_twin(from_priv->commodity, book);
1334  gnc_commodity_increment_usage_count(priv->commodity);
1335 
1336  priv->commodity_scu = from_priv->commodity_scu;
1337  priv->non_standard_scu = from_priv->non_standard_scu;
1338 
1339  qof_instance_set_dirty(&ret->inst);
1340  LEAVE (" ");
1341  return ret;
1342 }
const char * qof_string_cache_replace(char const *dst, char const *src)
Same as CACHE_REPLACE below, but safe to call from C++.
STRUCTS.
#define ENTER(format, args...)
Print a function entry debugging message.
Definition: qoflog.h:272
void gnc_commodity_increment_usage_count(gnc_commodity *cm)
Increment a commodity&#39;s internal counter that tracks how many accounts are using that commodity...
#define LEAVE(format, args...)
Print a function exit debugging message.
Definition: qoflog.h:282
gnc_commodity * gnc_commodity_obtain_twin(const gnc_commodity *from, QofBook *book)
Given the commodity &#39;findlike&#39;, this routine will find and return the equivalent commodity (commodity...