QOF  0.8.7
Files | Defines | Functions
Undo: Track and undo or redo entity changes
Query Object Framework

Files

file  qofundo.h
 

QOF undo handling.


Defines

#define QOF_MOD_UNDO   "qof-undo"

Functions

void qof_undo_set_param (QofEntity *ent, const QofParam *param, gchar *value)
 Set a value in this parameter of the entity.
void qof_undo_modify (QofInstance *inst, const QofParam *param)
void qof_undo_commit (QofInstance *inst, const QofParam *param)
void qof_undo_create (QofInstance *inst)
void qof_undo_delete (QofInstance *inst)
void qof_book_clear_undo (QofBook *book)
 Free the entire undo list for this book.
void qof_book_undo (QofBook *book)
 Set parameter values from before the previous event.
void qof_book_redo (QofBook *book)
 Set parameter values from after the previous event.
gboolean qof_book_can_undo (QofBook *book)
 event handler for undo widget
gboolean qof_book_can_redo (QofBook *book)
 event handler for redo widget
void qof_book_start_operation (QofBook *book, gchar *label)
 Start recording operation.
void qof_book_end_operation (QofBook *book)
 End recording the current operation.
QofTimeqof_book_undo_first_modified (QofBook *book)
 HIG compliance aid to report time of first change.
gint qof_book_undo_count (QofBook *book)
 Number of undo operations available.

Detailed Description

QOF Undo operates within a QofBook. In order to undo the changes to the entity, the initial state of each parameter is cached when an operation begins. If the entity changes are not successful, the lack of a qof_book_end_operation call before a qof_book_start_operation will cause the cached data to be freed. If the entity is changed successfully, qof_book_end_operation will create the undo data using the operation label and each of the entity changes that were successful.

Within each operation, entity changes can be recorded using QofEventHandler or individually.

Undo data consists of a list of operations that have changed data in this book and a list of entity changes for each of those operations. Each operation can relate to more than one entity change and cover more than one entity but must only relate to one book.

  1. Only QOF parameter changes can be undone or redone. Data from structs that are not QOF objects or which have no QofParam to get and set the data will not be available to the undo process.
  2. Undo relates to 'user interface operations', not engine events. This is because an operation (like an import or voiding a transaction) can involve multiple, possibly conflicting, engine events - e.g. removing an entity from one reference and inserting it as another. Therefore, the UI developer alone can decide where an operation begins and ends. All changes between the two will be undone or redone in one call to qof_book_undo.
  3. Undo operations cannot be nested. Be careful where you start and end an undo operation, if your application calls qof_book_start_operation() before calling qof_book_end_operation(), the undo cache will be freed and QofUndo will not notify you of this. The API is designed to silently handle user aborts during a user operation. As undo data is cached when editing begins, if the edit is never completed the cache must be cleared before the next operation. i.e. if the user starts to edit an entity but then cancels the operation, there are no changes to undo. It follows that any one book can only be the subject of one operation at a time.
Since:
0.7.0

Function Documentation

gboolean qof_book_can_redo ( QofBook book)

event handler for redo widget

Returns:
FALSE if index_position == 0 or index_position == length otherwise TRUE.

Definition at line 420 of file qofundo.c.

{
    QofUndo *book_undo;
    gint length;

    book_undo = book->undo_data;
    length = g_list_length (book_undo->undo_list);
    if ((book_undo->index_position == length) || (length == 0))
        return FALSE;
    return TRUE;
}
gboolean qof_book_can_undo ( QofBook book)

event handler for undo widget

Returns:
FALSE if length == 0 or index_position == 0, otherwise TRUE.

Definition at line 407 of file qofundo.c.

{
    QofUndo *book_undo;
    gint length;

    book_undo = book->undo_data;
    length = g_list_length (book_undo->undo_list);
    if ((book_undo->index_position == 0) || (length == 0))
        return FALSE;
    return TRUE;
}
void qof_book_clear_undo ( QofBook book)

Free the entire undo list for this book.

The application needs to decide whether to reset the undo list upon session_save, application close, user intervention etc.

Definition at line 387 of file qofundo.c.

{
    QofUndoOperation *operation;
    QofUndo *book_undo;

    if (!book)
        return;
    book_undo = book->undo_data;
    while (book_undo != NULL)
    {
        operation = (QofUndoOperation *) book_undo->undo_list->data;
        if(operation->entity_list)
            g_list_free (operation->entity_list);
        book_undo->undo_list = g_list_next (book_undo->undo_list);
    }
    book_undo->index_position = 0;
    g_free (book_undo->undo_label);
}
void qof_book_start_operation ( QofBook book,
gchar *  label 
)

Start recording operation.

Definition at line 565 of file qofundo.c.

{
    QofUndo *book_undo;

    book_undo = book->undo_data;
    if (book_undo->undo_operation_open && book_undo->undo_cache)
    {
        g_list_free (book_undo->undo_cache);
        book_undo->undo_operation_open = FALSE;
        if (book_undo->undo_label)
            g_free (book_undo->undo_label);
    }
    book_undo->undo_label = g_strdup (label);
    book_undo->undo_operation_open = TRUE;
}
void qof_undo_commit ( QofInstance inst,
const QofParam param 
)

Mark this instance parameter after modification

Prepare undo data for this instance after committal. Record the modified state of this parameter of this instance so that if this operation is undone and then redone, the modification can be recreated.

Definition at line 549 of file qofundo.c.

{
    QofUndoEntity *undo_entity;
    QofUndo *book_undo;
    QofBook *book;

    if (!instance || !param)
        return;
    book = instance->book;
    book_undo = book->undo_data;
    undo_entity = qof_prepare_undo (&instance->entity, param);
    book_undo->undo_cache =
        g_list_prepend (book_undo->undo_cache, undo_entity);
}
void qof_undo_create ( QofInstance inst)

prepare undo data for a new instance.

Record the creation of a new (empty) instance so that undo can delete it (and recreate it on redo).

Can be used within a QofEventHandler in response to QOF_EVENT_CREATE.

Definition at line 464 of file qofundo.c.

{
    QofUndoEntity *undo_entity;
    QofBook *book;
    QofUndo *book_undo;

    if (!instance)
        return;
    book = instance->book;
    book_undo = book->undo_data;
    undo_entity = g_new0 (QofUndoEntity, 1);
    // to undo a create, use a delete.
    undo_entity->how = UNDO_DELETE;
    undo_entity->guid = qof_instance_get_guid (instance);
    undo_entity->type = instance->entity.e_type;
    book_undo->undo_cache =
        g_list_prepend (book_undo->undo_cache, undo_entity);
}
void qof_undo_delete ( QofInstance inst)

prepare undo data for an instance to be deleted.

Prepare for the deletion of an entity by storing ALL data in all editable parameters so that this delete operation can be undone.

Can be used within a QofEventHandler in response to QOF_EVENT_DESTROY, before the instance itself is deleted.

Definition at line 501 of file qofundo.c.

{
    QofUndoEntity *undo_entity;
    QofIdType type;
    QofUndo *book_undo;
    QofBook *book;

    if (!instance)
        return;
    book = instance->book;
    book_undo = book->undo_data;
    // now need to store each parameter in a second entity, MODIFY.
    type = instance->entity.e_type;
    qof_class_param_foreach (type, undo_get_entity, instance);
    undo_entity = g_new0 (QofUndoEntity, 1);
    // to undo a delete, use a create.
    undo_entity->how = UNDO_CREATE;
    undo_entity->guid = qof_instance_get_guid (instance);
    undo_entity->type = type;
    book_undo->undo_cache =
        g_list_prepend (book_undo->undo_cache, undo_entity);
}
void qof_undo_modify ( QofInstance inst,
const QofParam param 
)

Mark this instance parameter before modification.

Prepare undo data for this parameter of this instance. Record the initial state of this parameter of this instance in preparation for modification so that undo can reset the value if required.

Definition at line 525 of file qofundo.c.

{
    QofBook *book;
    QofUndo *book_undo;
    QofUndoEntity *undo_entity;

    if (!instance || !param)
        return;
    book = instance->book;
    book_undo = book->undo_data;
    // handle if record is called without a commit.
    undo_entity = qof_prepare_undo (&instance->entity, param);
    book_undo->undo_cache =
        g_list_prepend (book_undo->undo_cache, undo_entity);
    // set the initial state that undo will reinstate.
    if (book_undo->index_position == 0)
    {
        book_undo->undo_list = g_list_prepend (book_undo->undo_list,
            qof_undo_new_operation (book, "initial"));
        book_undo->index_position++;
    }
}
void qof_undo_set_param ( QofEntity ent,
const QofParam param,
gchar *  value 
)

Set a value in this parameter of the entity.

Setting an arbitrary parameter in an entity can involve repetitive string comparisons and setter function prototypes. This function accepts a QofParam (which determines the type of value) and a string representing the value. e.g. for a boolean, pass "TRUE", for a GUID pass the result of guid_to_string_buff.

Sets the undo data for this modification at the same time, calling qof_undo_modify, sets the parameter and qof_undo_commit.

Parameters:
entAn initialised QofEntity from an accessible QofBook.
paramfrom qof_class_get_parameter
valueA string representation of the required value - original type as specified in param->param_type.

Definition at line 188 of file qofundo.c.

{
    qof_undo_modify ((QofInstance*)ent, param);
    set_param (ent, param, value);
    qof_undo_commit ((QofInstance*)ent, param);
}