Files
gnucash/src/optional/python-bindings/gnucash_core.py

531 lines
21 KiB
Python
Raw Normal View History

# gnucash_core.py -- High level python wrapper classes for the core parts
# of GnuCash
#
# Copyright (C) 2008 ParIT Worker Co-operative <paritinfo@parit.ca>
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License as
# published by the Free Software Foundation; either version 2 of
# the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, contact:
# Free Software Foundation Voice: +1-617-542-5942
# 51 Franklin Street, Fifth Floor Fax: +1-617-542-2652
# Boston, MA 02110-1301, USA gnu@gnu.org
#
# @author Mark Jenkins, ParIT Worker Co-operative <mark@parit.ca>
# @author Jeff Green, ParIT Worker Co-operative <jeff@parit.ca>
import gnucash_core_c
from function_class import \
ClassFromFunctions, extract_attributes_with_prefix, \
default_arguments_decorator, method_function_returns_instance, \
methods_return_instance
from gnucash_core_c import gncInvoiceLookup, gncInvoiceGetInvoiceFromTxn, \
gncInvoiceGetInvoiceFromLot, gncEntryLookup, gncInvoiceLookup, \
gncCustomerLookup, gncVendorLookup, gncJobLookup, gncEmployeeLookup, \
gncTaxTableLookup, gncTaxTableLookupByName, search_invoice_on_id, \
search_customer_on_id, search_bill_on_id
class GnuCashCoreClass(ClassFromFunctions):
_module = gnucash_core_c
def do_lookup_create_oo_instance(self, lookup_function, cls, *args):
thing = lookup_function(self.get_instance(), *args)
if thing != None:
thing = cls(instance=thing)
return thing
class GnuCashBackendException(Exception):
def __init__(self, msg, errors):
Exception.__init__(self, msg)
self.errors = errors
class Session(GnuCashCoreClass):
2009-09-05 00:11:31 +00:00
"""A GnuCash book editing session
To commit changes to the session you may need to call save,
(this is allways the case with the file backend).
When you're down with a session you may need to call end()
Every Session has a Book in the book attribute, which you'll definetely
be interested in, as every GnuCash entity (Transaction, Split, Vendor,
Invoice..) is associated with a particular book where it is stored.
"""
def __init__(self, book_uri=None, is_new=False):
"""A convienent contructor that allows you to specify a book URI,
begin the session, and load the book.
This can give you the power of calling
qof_session_new, qof_session_begin, and qof_session_load all in one!
book_uri can be None to skip the calls to qof_session_begin and
qof_session_load, or it can be a string like "file:/test.xac"
qof_session_load is only called if is_new is set to False
is_new is passed to qof_session_begin as the
argument create_if_nonexistent
This function can raise a GnuCashBackendException. If it does,
you don't need to cleanup and call end() and destroy(), that is handled
for you, and the exception is raised.
"""
GnuCashCoreClass.__init__(self)
if book_uri is not None:
try:
self.begin(book_uri, False, is_new)
if not is_new:
self.load()
except GnuCashBackendException, backend_exception:
self.end()
self.destroy()
raise
def raise_backend_errors(self, called_function="qof_session function"):
"""Raises a GnuCashBackendException if there are outstanding
QOF_BACKEND errors.
set called_function to name the function that was last called
"""
errors = self.pop_all_errors()
if errors != ():
raise GnuCashBackendException(
"call to %s resulted in the "
"following errors, %s" % (called_function, errors),
errors )
def generate_errors(self):
"""A generator that yeilds any outstanding QofBackend errors
"""
while self.get_error() is not ERR_BACKEND_NO_ERR:
error = self.pop_error()
yield error
def pop_all_errors(self):
"""Returns any accumulated qof backend errors as a tuple
"""
return tuple( self.generate_errors() )
# STATIC METHODS
@staticmethod
def raise_backend_errors_after_call(function):
"""A function decorator that results in a call to
raise_backend_errors after execution.
"""
def new_function(self, *args):
return_value = function(self, *args)
self.raise_backend_errors(function.__name__)
return return_value
return new_function
2009-09-05 00:11:31 +00:00
class Book(GnuCashCoreClass):
"""A Book encapsulates all of the GnuCash data, it is the place where
all GnuCash entities (Transaction, Split, Vendor, Invoice...), are
stored. You'll notice that all of the constructors for those entities
need a book to be associated with.
The most common way to get a book is through the book property in the
Session class, that is, create a session that connects to some storage,
such as through 'my_session = Session('file:my_books.xac')', and access
the book via the book property, 'my_session.book'
If you would like to create a Book without any backing storage, call the
Book constructor wihout any parameters, 'Book()'. You can later merge
such a book into a book with actual store by using merge_init.
Methods of interest
get_root_account -- Returns the root level Account
get_table -- Returns a commodity lookup table, of type GncCommodityTable
"""
def InvoiceLookup(self, guid):
from gnucash_business import Invoice
return self.do_lookup_create_oo_instance(
gncInvoiceLookup, Invoice, guid.get_instance() )
def EntryLookup(self, guid):
from gnucash_business import Entr
return self.do_lookup_create_oo_instance(
gncEntryLookup, Entry, guid.get_instance() )
def CustomerLookup(self, guid):
from gnucash_business import Customer
return self.do_lookup_create_oo_instance(
gncCustomerLookup, Customer, guid.get_instance())
def JobLookup(self, guid):
from gnucash_business import Job
return self.do_lookup_create_oo_instance(
gncJobLookup, Job, guid.get_instance() )
def VendorLookup(self, guid):
from gnucash_business import Vendor
return self.do_lookup_create_oo_instance(
gncVendorLookup, Vendor, guid.get_instance() )
def EmployeeLookup(self, guid):
from gnucash_business import Employee
return self.do_lookup_create_oo_instance(
gncEmployeeLookup, Employee, guid.get_instance() )
def TaxTableLookup(self, guid):
from gnucash_business import TaxTable
return self.do_lookup_create_oo_instance(
gncTaxTableLookup, TaxTable, guid.get_instance() )
def TaxTableLookupByName(self, name):
from gnucash_business import TaxTable
return self.do_lookup_create_oo_instance(
gncTaxTableLookupByName, TaxTable, name)
def BillLoookupByID(self, id):
from gnucash_business import Bill
return self.do_lookup_create_oo_instance(
search_bill_on_id, Bill, id)
def InvoiceLookupByID(self, id):
from gnucash_business import Invoice
return self.do_lookup_create_oo_instance(
search_invoice_on_id, Invoice, id)
def CustomerLookupByID(self, id):
from gnucash_business import Customer
return self.do_lookup_create_oo_instance(
search_customer_on_id, Customer, id)
class GncNumeric(GnuCashCoreClass):
2009-09-05 00:11:31 +00:00
"""Object used by GnuCash to store all numbers. Always consists of a
numerator and denominator.
The constants GNC_DENOM_AUTO,
GNC_HOW_RND_FLOOR, GNC_HOW_RND_CEIL, GNC_HOW_RND_TRUNC,
GNC_HOW_RND_PROMOTE, GNC_HOW_RND_ROUND_HALF_DOWN,
GNC_HOW_RND_ROUND_HALF_UP, GNC_HOW_RND_ROUND, GNC_HOW_RND_NEVER,
GNC_HOW_DENOM_EXACT, GNC_HOW_DENOM_REDUCE, GNC_HOW_DENOM_LCD,
and GNC_HOW_DENOM_FIXED are available for arithmetic
functions like GncNumeric.add
Look at gnc-numeric.h to see how ot use these
2009-09-05 00:11:31 +00:00
"""
def __init__(self, num=0, denom=1, **kargs):
"""Constructor that allows you to set the numerator and denominator or
leave them blank with a default value of 0 (not a good idea since there
is currently no way to alter the value after instantiation)
"""
GnuCashCoreClass.__init__(self, num, denom, **kargs)
#if INSTANCE_ARG in kargs:
# GnuCashCoreClass.__init__(**kargs)
#else:
# self.set_denom(denom) # currently undefined
# self.set_num(num) # currently undefined
2009-09-05 00:11:31 +00:00
class GncCommodity(GnuCashCoreClass): pass
class GncCommodityTable(GnuCashCoreClass):
"""A CommodityTable provides a way to store and lookup commoditys.
Commoditys are primarily currencies, but other tradable things such as
stocks, mutual funds, and material substances are posible.
Users of this library should not create thier own CommodityTable, instead
the get_table method from the Book class should be used.
2009-09-05 00:11:31 +00:00
This table is automatically populated with the GnuCash default commodity's
which includes most of the world's currencies.
"""
pass
class GncLot(GnuCashCoreClass):
def GetInvoiceFromLot(self):
from gnucash_business import Invoice
return self.do_lookup_create_oo_instance(
gncInvoiceGetInvoiceFromLot, Invoice )
class Transaction(GnuCashCoreClass):
2009-09-05 00:11:31 +00:00
"""A GnuCash Transaction
Consists of at least one (generally two) splits to represent a transaction
between two accounts.
Has a GetImbalance() method that returns a list of all the imbalanced
currencies. Each list item is a two element tuple, the first element is
the imbalanced commodity, the second element is the value.
Warning, the commodity.get_instance() value can be None when there
is no currency set for the transaction.
2009-09-05 00:11:31 +00:00
"""
_new_instance = 'xaccMallocTransaction'
def GetNthSplit(self, n):
return self.GetSplitList().pop(n)
def GetInvoiceFromTxn(self):
from gnucash_business import Transaction
return self.do_lookup_create_oo_instance(
gncInvoiceGetInvoiceFromTxn, Transaction )
def decorate_monetary_list_returning_function(orig_function):
def new_function(self):
# warning, item.commodity has been shown to be None
# when the transaction doesn't have a currency
return [(GncCommodity(instance=item.commodity),
GncNumeric(instance=item.value))
for item in orig_function(self) ]
return new_function
class Split(GnuCashCoreClass):
2009-09-05 00:11:31 +00:00
"""A GnuCash Split
The most basic representation of a movement of currency from one account to
another.
"""
_new_instance = 'xaccMallocSplit'
class Account(GnuCashCoreClass):
2009-09-05 00:11:31 +00:00
"""A GnuCash Account.
A fundamental entity in accounting, an Account provides representation
for a financial object, such as a ACCT_TYPE_BANK account, an
ACCT_TYPE_ASSET (like a building),
a ACCT_TYPE_LIABILITY (such as a bank loan), a summary of some type of
ACCT_TYPE_EXPENSE, or a summary of some source of ACCT_TYPE_INCOME .
2009-09-05 00:11:31 +00:00
The words in upper case are the constants that GnuCash and this library uses
to describe account type. Here is the full list:
ACCT_TYPE_ASSET, ACCT_TYPE_BANK, ACCT_TYPE_CASH, ACCT_TYPE_CHECKING, \
ACCT_TYPE_CREDIT, ACCT_TYPE_EQUITY, ACCT_TYPE_EXPENSE, ACCT_TYPE_INCOME, \
ACCT_TYPE_LIABILITY, ACCT_TYPE_MUTUAL, ACCT_TYPE_PAYABLE, \
ACCT_TYPE_RECEIVABLE, ACCT_TYPE_STOCK, ACCT_TYPE_ROOT, ACCT_TYPE_TRADING
2009-09-05 00:11:31 +00:00
These are not strings, they are attributes you can import from this
module
"""
_new_instance = 'xaccMallocAccount'
class GUID(GnuCashCoreClass):
_new_instance = 'guid_new_return'
# Session
Session.add_constructor_and_methods_with_prefix('qof_session_', 'new')
def one_arg_default_none(function):
return default_arguments_decorator(function, None, None)
Session.decorate_functions(one_arg_default_none, "load", "save")
Session.decorate_functions( Session.raise_backend_errors_after_call,
"begin", "load", "save", "end")
Session.get_book = method_function_returns_instance(
Session.get_book, Book )
Session.book = property( Session.get_book )
# import all of the session backend error codes into this module
this_module_dict = globals()
for error_name, error_value, error_name_after_prefix in \
extract_attributes_with_prefix(gnucash_core_c, 'ERR_'):
this_module_dict[ error_name ] = error_value
# GncNumeric demoniminator computation schemes
# Used for the denom argument in arithmetic functions like GncNumeric.add
from gnucash.gnucash_core_c import GNC_DENOM_AUTO
# GncNumeric rounding instructions
# used for the how argument in arithmetic functions like GncNumeric.add
from gnucash.gnucash_core_c import \
GNC_HOW_RND_FLOOR, GNC_HOW_RND_CEIL, GNC_HOW_RND_TRUNC, \
GNC_HOW_RND_PROMOTE, GNC_HOW_RND_ROUND_HALF_DOWN, \
GNC_HOW_RND_ROUND_HALF_UP, GNC_HOW_RND_ROUND, GNC_HOW_RND_NEVER
# GncNumeric denominator types
# used for the how argument in arithmetic functions like GncNumeric.add
from gnucash.gnucash_core_c import \
GNC_HOW_DENOM_EXACT, GNC_HOW_DENOM_REDUCE, GNC_HOW_DENOM_LCD, \
GNC_HOW_DENOM_FIXED
# import account types
from gnucash.gnucash_core_c import \
ACCT_TYPE_ASSET, ACCT_TYPE_BANK, ACCT_TYPE_CASH, ACCT_TYPE_CHECKING, \
ACCT_TYPE_CREDIT, ACCT_TYPE_EQUITY, ACCT_TYPE_EXPENSE, ACCT_TYPE_INCOME, \
ACCT_TYPE_LIABILITY, ACCT_TYPE_MUTUAL, ACCT_TYPE_PAYABLE, \
ACCT_TYPE_RECEIVABLE, ACCT_TYPE_STOCK, ACCT_TYPE_ROOT, ACCT_TYPE_TRADING
#Book
Book.add_constructor_and_methods_with_prefix('qof_book_', 'new')
Book.add_method('gnc_book_get_root_account', 'get_root_account')
Book.add_method('gnc_book_set_root_account', 'set_root_account')
2009-09-05 00:11:31 +00:00
Book.add_method('gnc_commodity_table_get_table', 'get_table')
#Functions that return Account
Book.get_root_account = method_function_returns_instance(
Book.get_root_account, Account )
2009-09-05 00:11:31 +00:00
#Functions that return GncCommodityTable
Book.get_table = method_function_returns_instance(
Book.get_table, GncCommodityTable )
# GncNumeric
GncNumeric.add_constructor_and_methods_with_prefix('gnc_numeric_', 'create')
gncnumeric_dict = {
'same' : GncNumeric,
'add' : GncNumeric,
'sub' : GncNumeric,
'mul' : GncNumeric,
'div' : GncNumeric,
'neg' : GncNumeric,
'abs' : GncNumeric,
'add_fixed' : GncNumeric,
'sub_fixed' : GncNumeric,
'add_with_error' : GncNumeric,
'sub_with_error' : GncNumeric,
'mul_with_error' : GncNumeric,
'div_with_error' : GncNumeric,
'convert' : GncNumeric,
'reduce' : GncNumeric
}
methods_return_instance(GncNumeric, gncnumeric_dict)
# GncCommodity
GncCommodity.add_constructor_and_methods_with_prefix('gnc_commodity_', 'new')
#Functions that return GncCommodity
GncCommodity.clone = method_function_returns_instance(
GncCommodity.clone, GncCommodity )
# GncCommodityTable
2009-09-05 00:11:31 +00:00
GncCommodityTable.add_methods_with_prefix('gnc_commodity_table_')
commoditytable_dict = {
'lookup' : GncCommodity,
'lookup_unique' : GncCommodity,
'find_full' : GncCommodity,
'insert' : GncCommodity
}
methods_return_instance(GncCommodityTable, commoditytable_dict)
# GncLot
GncLot.add_constructor_and_methods_with_prefix('gnc_lot_', 'new')
gnclot_dict = {
'get_account' : Account,
'get_book' : Book,
'get_earliest_split' : Split,
'get_latest_split' : Split,
'get_balance' : GncNumeric,
'lookup' : GncLot,
'make_default' : GncLot
}
methods_return_instance(GncLot, gnclot_dict)
# Transaction
Transaction.add_methods_with_prefix('xaccTrans')
2009-09-05 00:11:31 +00:00
Transaction.add_method('gncTransGetGUID', 'GetGUID');
trans_dict = {
'GetSplit': Split,
'FindSplitByAccount': Split,
'GetNthSplit': Split,
'Clone': Transaction,
'Reverse': Transaction,
'GetReversedBy': Transaction,
'GetImbalanceValue': GncNumeric,
'GetAccountValue': GncNumeric,
'GetAccountAmount': GncNumeric,
'GetAccountConvRate': GncNumeric,
'GetAccountBalance': GncNumeric,
2009-09-05 00:11:31 +00:00
'GetCurrency': GncCommodity,
'GetGUID': GUID
}
methods_return_instance(Transaction, trans_dict)
Transaction.decorate_functions(
decorate_monetary_list_returning_function, 'GetImbalance')
# Split
Split.add_methods_with_prefix('xaccSplit')
2009-09-05 00:11:31 +00:00
Split.add_method('gncSplitGetGUID', 'GetGUID');
split_dict = {
'GetBook': Book,
'GetAccount': Account,
'GetParent': Transaction,
'Lookup': Split,
'GetOtherSplit': Split,
'GetAmount': GncNumeric,
'GetValue': GncNumeric,
'GetSharePrice': GncNumeric,
'ConvertAmount': GncNumeric,
'GetBaseValue': GncNumeric,
'GetBalance': GncNumeric,
'GetClearedBalance': GncNumeric,
'GetReconciledBalance': GncNumeric,
'VoidFormerAmount': GncNumeric,
2009-09-05 00:11:31 +00:00
'VoidFormerValue': GncNumeric,
'GetGUID': GUID
}
methods_return_instance(Split, split_dict)
Split.account = property( Split.GetAccount, Split.SetAccount )
Split.parent = property( Split.GetParent, Split.SetParent )
# Account
Account.add_methods_with_prefix('xaccAccount')
Account.add_methods_with_prefix('gnc_account_')
2009-09-05 00:11:31 +00:00
Account.add_method('gncAccountGetGUID', 'GetGUID');
account_dict = {
'get_book' : Book,
'Lookup' : Account,
'get_parent' : Account,
'get_root' : Account,
'nth_child' : Account,
'lookup_by_code' : Account,
'lookup_by_name' : Account,
'lookup_by_full_name' : Account,
'FindTransByDesc' : Transaction,
'FindSplitByDesc' : Split,
'get_start_balance' : GncNumeric,
'get_start_cleared_balance' : GncNumeric,
'GetBalance' : GncNumeric,
'GetClearedBalance' : GncNumeric,
'GetReconciledBalance' : GncNumeric,
'GetPresentBalance' : GncNumeric,
'GetProjectedMinimumBalance' : GncNumeric,
'GetBalanceAsOfDate' : GncNumeric,
'ConvertBalanceToCurrency' : GncNumeric,
'ConvertBalanceToCurrencyAsOfDate' : GncNumeric,
'GetBalanceInCurrency' : GncNumeric,
'GetClearedBalanceInCurrency' : GncNumeric,
'GetReconciledBalanceInCurrency' : GncNumeric,
'GetPresentBalanceInCurrency' : GncNumeric,
'GetProjectedMinimumBalanceInCurrency' : GncNumeric,
'GetBalanceAsOfDateInCurrency' : GncNumeric,
'GetBalanceChangeForPeriod' : GncNumeric,
2009-09-05 00:11:31 +00:00
'GetCommodity' : GncCommodity,
'GetGUID': GUID
}
methods_return_instance(Account, account_dict)
Account.name = property( Account.GetName, Account.SetName )
#GUID
GUID.add_methods_with_prefix('guid_')
2009-09-05 00:11:31 +00:00
GUID.add_method('xaccAccountLookup', 'AccountLookup')
GUID.add_method('xaccTransLookup', 'TransLookup')
GUID.add_method('xaccSplitLookup', 'SplitLookup')
guid_dict = {
'copy' : GUID,
'TransLookup': Transaction,
'AccountLookup': Account,
'SplitLookup': Split
}
methods_return_instance(GUID, guid_dict)