Difference between revisions of "List of external software interfaces"

From GnuCash
Jump to: navigation, search
m (+src repository links; mv. some text to GnuCash XML format)
m (+links)
Line 18: Line 18:
 
*** "The new <nowiki>[1.6]</nowiki> version uses XML (making it much easier to write independent tools to manipulate GnuCash files) …" [[http://www.gnucash.org/docs/v1.6/C/t2780.html#AEN2783 GnuCash 1.6 User Manual]]
 
*** "The new <nowiki>[1.6]</nowiki> version uses XML (making it much easier to write independent tools to manipulate GnuCash files) …" [[http://www.gnucash.org/docs/v1.6/C/t2780.html#AEN2783 GnuCash 1.6 User Manual]]
 
*** "[''modifying'' the XML is] risky and not recommended" (see [[FAQ#Q: Is there a way to merge two accounts into one? That is, move all transactions from one account into another? That would save a lot of time compaired to moving each transaction!|FAQ]])
 
*** "[''modifying'' the XML is] risky and not recommended" (see [[FAQ#Q: Is there a way to merge two accounts into one? That is, move all transactions from one account into another? That would save a lot of time compaired to moving each transaction!|FAQ]])
** PostgreSQL ([http://svn.gnucash.org/trac/browser/gnucash/branches/1.8/src/backend/postgres back-end source (1.8)]) - the PostgreSQL backend is not actively maintained and has several serious issues [http://bugzilla.gnome.org/buglist.cgi?product=GnuCash&bug_status=NEW&bug_status=REOPENED&bug_status=ASSIGNED&bug_status=UNCONFIRMED&component=SQL%20Backend]
+
** PostgreSQL ([http://svn.gnucash.org/trac/browser/gnucash/branches/1.8/src/backend/postgres back-end source (1.8)]) - the PostgreSQL backend is not actively maintained and has several serious issues [http://bugzilla.gnome.org/buglist.cgi?product=GnuCash&bug_status=NEW&bug_status=REOPENED&bug_status=ASSIGNED&bug_status=UNCONFIRMED&component=SQL%20Backend] (see also [[New SQL backend]])
 
* QOF access to the data file. I hope http://qof.sourceforge.net does offer some documentation about how this is intended to work, but I don't understand it so far. For some part it could be used as a command-line utility to import and export various data parts into and from the gnucash file.
 
* QOF access to the data file. I hope http://qof.sourceforge.net does offer some documentation about how this is intended to work, but I don't understand it so far. For some part it could be used as a command-line utility to import and export various data parts into and from the gnucash file.
 
* custom reports (in the programming language [[Wikipedia:Scheme|Scheme]])
 
* custom reports (in the programming language [[Wikipedia:Scheme|Scheme]])
Line 69: Line 69:
 
==See also==
 
==See also==
 
* [[WishList#Connecting with PalmOS]]
 
* [[WishList#Connecting with PalmOS]]
 +
* [[Development]]
 +
** [[Building]]
 +
** [[Subversion]]
 +
** [[Bugzilla]]

Revision as of 01:18, 1 March 2006

This article lists past and present external software interfaces of GnuCash, and suggests possible additional interfaces. It was started to figure out how one can "plug in" to gnucash.

This article is just descriptive, and neither normative nor authoritative.

Current interfaces

  • QIF/OFX/HBCI import (src/import-export (1.8); src/import-export (1.9))
    • From files: There are two different implementations of importing possibilities in gnucash. One is for QIF, the other for OFX and HBCI/AqBanking.
    • OFX Direct Connect via AqBanking library http://www.aquamaniac.de/aqbanking. Aqbanking has also additional import/export facilities which are currently not yet implemented in gnucash, but are almost finished for a MT940 file import. (Note: HBCI and Aqbanking are used interchangeably because the predecessor of Aqbanking only supported the German online banking protocol HBCI, but Aqbanking now supports not only this but additionally other means of online banking protocols plus file importing.)
    • HBCI
    • Bugs for general import, including HBCI/AqBanking import issues [3]
  • direct data manipulation
  • QOF access to the data file. I hope http://qof.sourceforge.net does offer some documentation about how this is intended to work, but I don't understand it so far. For some part it could be used as a command-line utility to import and export various data parts into and from the gnucash file.
  • custom reports (in the programming language Scheme)
  • Finance::Quote

Legacy/unsupported interfaces

These interfaces were supported in prior versions of GnuCash.

Prospective interfaces

The main place for submitting enhancement requests is the Bugzilla database. Feel free to collect anything you want here on this page, especially any kind of overview, but please keep in mind that single issues are followed by the developers in Bugzilla much more closely.

  • CORBA, to communicate with a running GnuCash instance. E.g., a running GnuCash incarnates a CORBA object of type:
interface GnuCash // simplified
{
  exception GnuCashException

  typedef string Guid;

  struct Split
  {
    Guid id;
    boolean reconciledState;
    string value;
    string quantity;
    Guid account;
  };

  typedef sequence<Split> SplitSeq;

  struct Transaction
  {
    Guid id;
    string datePosted;
    string dateEntered;
    string description;
    SplitSeq splits;
  };

  void submitTransaction(in Transaction t)
    raises (GnuCashException);
};
  • linkable library (see also WishList#Export an API)
      • Note that the modular structure of gnucash "almost" already offers this -- the "engine" module is pretty much exactly this kind of API. Except that nobody recently tried to use it from anywhere outside of gnucash.
    • for communicating with a running GnuCash instance
    • for manipulation of GnuCash database or XML file directly

See also