Reference: Referring to entities outside a partial book.
[Query Object Framework]


Data Structures

struct  qof_entity_reference
 External references in a partial QofBook. More...

Files

file  qofreference.h
 Dealing with relationships between entities in partial books.

Detailed Description

Partial book is a QofBook that lacks at least one of the key elements of a fully structured (complete) book:

Partial books are useful for query results, selective export and data mining but need to be merged back into standard books. It is not supported to construct a partial book and then convert the same book to a standard book.

Different backends have different requirements for a complete book - some (like gnucash) are highly customised to that application - however all complete QofBooks must be self-contained, only a partial book uses QofEntityReference.

To retain the relationships between entities, including between a partial and a complete book, QofEntityReference data is stored in the QofBook. This data should be read by backends that support partial books so that the exported data contains the GUID and QofIdType of the referenced entity. Even if that entity does not then exist within the partial book, it can be located when the partial book is merged back into the original, complete, book. (Remember that given the GUID and QofIdType of any QofEntity it is possible to uniquely identify that entity in another book.)

Entities in partial books may need to refer to the entities that remain within the partial book. Once all the entities you want are in the partial book, call qof_book_set_references to restore as many references as possible. Each object type is checked in turn, each entity of that type and then each parameter that can relate to another entity. Any references that cannot be found are left unset - depending on the object these may be undefined or NULL. (It is advisable to set all QOF parameters to either a default value or NULL in the create: routine for the object but QOF has no way of guaranteeing this.)


Define Documentation

#define ENTITYREFERENCE   "QofEntityReference"

Used as the key value for the QofBook data hash.

Retrieved later by QSF (or any other suitable backend) to rebuild the references from the QofEntityReference struct that contains the QofIdType and GUID of the referenced entity of the original QofBook as well as the parameter data and the GUID of the original entity.

Definition at line 137 of file qofreference.h.

#define PARTIAL_QOFBOOK   "PartialQofBook"

Flag indicating a partial QofBook.

When set in the book data with a gboolean value of TRUE, the flag denotes that only a backend that supports partial books can be used to save this session.

Definition at line 146 of file qofreference.h.


Typedef Documentation

External references in a partial QofBook.

For use by any session that deals with partial QofBooks. It is used by the entity copy functions and by the QSF backend. Creates a GList stored in the Book hashtable to contain repeated references for a single entity.


Function Documentation

void qof_book_set_references ( QofBook book  ) 

Read QofEntityReference data for this book and set values.

Parameters:
book The partial book containing the referenceList
The referenceList is a GList of QofEntityReference structures that contain the GUID of each end of a reference. e.g. where one entity refers to another.

The referenceList is used in partial books to store relationships between entities when the entities themselves might not exist in the partial book.

If the book is not marked as a partial book, an assertion error is generated.

This routine tries to lookup each entity in the referenceList for the book and then tries to lookup the reference - to find the child entity that was originally linked to this parent. The child entity is then set in the parent so that it can be located as normal.

If the child entity does not exist in this partial book, the parent entity is not updated. The referenceList is unchanged (in case the child is added later).

Definition at line 231 of file qofreference.c.

QofEntityReference* qof_entity_get_reference_from ( QofEntity ent,
const QofParam param 
)

Get a reference from this entity to another entity.

Note:
Only to be used in situations where the QofParam has already been checked NOT to be QOF_TYPE_COLLECT or other known QOF types because this function expects to return a single reference and a collect parameter would need to return a list of references, other parameters would not return a viable QofEntity. (A string cannot be cast to an entity.)
Used in the preparation of a partial QofBook when the known entity (the one currently being copied into the partial book) refers to any other entity, usually as a parent or child. The routine calls the param_getfcn of the supplied parameter, which must return an object (QofEntity*), not a known QOF data type, to retrieve the referenced entity and therefore the GUID. The GUID of both entities are stored in the reference which then needs to be added to the reference list which is added to the partial book data hash. The reference itself is used to preserve the relationship between entities within and outside the partial book.

See also qof_class_get_referenceList to obtain the list of parameters that provide references to the known entity whilst excluding parameters that return known QOF data types.

Note that even if the referenced entity exists in the partial book (or will exist later), a reference must still be obtained and added to the reference list for the book itself. This maintains the integrity of the partial book during sequential copy operations.

Parameters:
ent The known entity.
param The parameter to use to get the referenced entity.
Returns:
FALSE on error, otherwise a pointer to the QofEntityReference.

< secondary collections are used for one-to-many references between entities and are implemented using QofCollection. These are NOT the same as the main collections in the QofBook.

  1. Each QofCollection contains one or many entities - *all* of a single type.
  2. The entity type within the collection can be determined at run time.
  3. Easy conversions to GList or whatever in the param_setfcn handler.
  4. Each parameter can have its own collection.
  5. Each entity can have a different *type* of collection to its siblings, provided that it is acceptable to the set function.
  6. Each object decides which types are acceptable for which parameter in the set functions. This is then part of the API for that object.

QOF_TYPE_COLLECT has two functions, both related to one-to-many links:

  • Represent a reference between 2 entities with a list of acceptable types. (one object linked to many types of single entities)
  • Represent a reference between one entity and many entities of another type. (one object linked to many entities of a single type.)

If the set function can handle it, it could also be used for true one-to-many links: one object linked to many entities of many types.

n.b. Always subject to each collection holding only one type at runtime. (otherwise use books).

Definition at line 194 of file qofreference.c.

void qof_session_update_reference_list ( QofSession *  session,
QofEntityReference reference 
)

Adds a new reference to the partial book data hash.

Retrieves any existing reference list and appends the new reference.

If the book is not already marked as partial, it will be marked as partial.

Definition at line 237 of file qofsession.c.

00239 {
00240     QofBook *book;
00241     GList *book_ref_list;
00242 
00243     book = qof_session_get_book (session);
00244     book_ref_list = (GList *) qof_book_get_data (book, ENTITYREFERENCE);
00245     book_ref_list = g_list_append (book_ref_list, reference);
00246     qof_book_set_data (book, ENTITYREFERENCE, book_ref_list);
00247     qof_book_set_partial (book);
00248 }


Generated on Mon Feb 23 12:52:23 2009 for QOF by  doxygen 1.5.7