non/Timeline/Loggable.C

669 lines
14 KiB
C++
Raw Normal View History

2008-02-22 12:44:35 +01:00
/*******************************************************************************/
/* Copyright (C) 2008 Jonathan Moore Liles */
/* */
/* 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; see the file COPYING. If not,write to the Free Software */
/* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
/*******************************************************************************/
2008-05-22 17:32:26 +02:00
2008-02-22 12:44:35 +01:00
#include "Loggable.H"
2008-02-25 05:14:19 +01:00
#include <stdlib.h>
2008-02-22 12:44:35 +01:00
#include <stdio.h>
#include <stdarg.h>
2008-03-05 08:05:08 +01:00
#include <string.h>
2008-02-22 12:44:35 +01:00
#include "util/file.h"
2008-05-22 22:58:36 +02:00
#include <algorithm>
using std::min;
using std::max;
2008-06-05 06:27:55 +02:00
#include <FL/Fl.H> // for Fl::check()
2008-05-22 22:58:36 +02:00
2008-02-22 21:20:44 +01:00
FILE *Loggable::_fp;
2008-02-22 12:44:35 +01:00
int Loggable::_log_id = 0;
int Loggable::_level = 0;
2008-02-25 23:47:49 +01:00
int Loggable::_undo_index = 1;
2008-02-22 12:44:35 +01:00
size_t Loggable::_loggables_size = 0;
Loggable ** Loggable::_loggables;
2008-05-22 22:58:36 +02:00
std::map <std::string, create_func*> Loggable::_class_map;
std::queue <char *> Loggable::_transaction;
2008-02-24 08:42:41 +01:00
2008-06-05 06:27:55 +02:00
progress_func *Loggable::_progress_callback = NULL;
void *Loggable::_progress_callback_arg = NULL;
2008-06-04 06:41:53 +02:00
/** Open the journal /filename/ and replay it, bringing the end state back into RAM */
2008-02-22 21:20:44 +01:00
bool
Loggable::open ( const char *filename )
{
2008-04-20 04:15:54 +02:00
FILE *fp;
Loggable::_fp = NULL;
2008-04-20 04:15:54 +02:00
if ( ! ( fp = fopen( filename, "a+" ) ) )
2008-02-22 21:20:44 +01:00
{
2008-05-03 18:46:48 +02:00
WARNING( "Could not open log file for writing!" );
2008-02-22 21:20:44 +01:00
return false;
}
if ( newer( "snapshot", filename ) )
{
DMESSAGE( "Loading snapshot" );
FILE *fp = fopen( "snapshot", "r" );
replay( fp );
fclose( fp );
}
else
{
DMESSAGE( "Replaying journal" );
replay( fp );
}
fseek( fp, 0, SEEK_END );
2008-04-20 04:15:54 +02:00
Loggable::_fp = fp;
2008-02-22 21:20:44 +01:00
return true;
}
2008-06-05 06:27:55 +02:00
#include <sys/stat.h>
#include <unistd.h>
/** replay journal or snapshot */
bool
Loggable::replay ( FILE *fp )
{
/* FIXME: bogus */
char buf[BUFSIZ];
2008-06-05 06:27:55 +02:00
struct stat st;
fstat( fileno( fp ), &st );
off_t total = st.st_size;
off_t current = 0;
if ( _progress_callback )
_progress_callback( 0, _progress_callback_arg );
while ( fscanf( fp, "%[^\n]\n", buf ) == 1 )
{
if ( ! ( ! strcmp( buf, "{" ) || ! strcmp( buf, "}" ) ) )
{
if ( *buf == '\t' )
do_this( buf + 1, false );
else
do_this( buf, false );
}
2008-06-05 06:27:55 +02:00
current = ftell( fp );
if ( _progress_callback )
_progress_callback( current * 100 / total, _progress_callback_arg );
}
2008-06-05 06:27:55 +02:00
if ( _progress_callback )
_progress_callback( 0, _progress_callback_arg );
2008-06-05 06:27:55 +02:00
return true;
}
2008-06-04 06:41:53 +02:00
/** close journal and delete all loggable objects, returing the systemt to a blank slate */
2008-05-04 00:50:32 +02:00
bool
Loggable::close ( void )
{
DMESSAGE( "closing journal and destroying all journaled objects" );
2008-05-04 09:32:54 +02:00
if ( ! _fp )
return true;
2008-05-04 00:50:32 +02:00
fclose( _fp );
_fp = NULL;
snapshot( "snapshot" );
for ( int i = 0; i < _log_id - 1; ++i )
2008-05-04 00:50:32 +02:00
{
Loggable ** l = &_loggables[ i ];
if ( *l )
{
2008-05-04 00:50:32 +02:00
delete *l;
*l = NULL;
}
2008-05-04 00:50:32 +02:00
}
_log_id = 0;
2008-05-04 00:50:32 +02:00
return true;
}
2008-06-04 06:41:53 +02:00
/** must be called after construction in create() methods */
void
Loggable::update_id ( int id )
{
/* make sure we're the last one */
assert( _id == _log_id );
assert( _loggables[ _id - 1 ] == this );
_loggables[ _id - 1 ] = NULL;
_log_id = max( _log_id, id );
/* return this id number to the system */
// --_log_id;
_id = id;
/* make sure it'll fit */
ensure_size( _id );
ASSERT( ! _loggables[ _id - 1 ], "Attempt to create object with an ID (0x%X) that already exists. The existing object is of type \"%s\", the new one is \"%s\". Corrupt journal?", _id, _loggables[ _id - 1 ]->class_name(), class_name() );
_loggables[ _id - 1 ] = this;
}
/** return a pointer to a static copy of /s/ with all special characters escaped */
const char *
Loggable::escape ( const char *s )
{
static char r[512];
2008-05-06 07:34:46 +02:00
size_t i = 0;
for ( ; *s && i < sizeof( r ); ++i, ++s )
{
if ( '\n' == *s )
{
r[ i++ ] = '\\';
r[ i ] = 'n';
}
else if ( '"' == *s )
{
r[ i++ ] = '\\';
r[ i ] = '"';
}
else
r[ i ] = *s;
}
2008-05-06 07:34:46 +02:00
r[ i ] = '\0';
return r;
}
2008-05-05 02:04:20 +02:00
/** 'do' a message like "Audio_Region 0xF1 set :r 123" */
bool
Loggable::do_this ( const char *s, bool reverse )
{
int id;
if ( ! ( sscanf( s, "%*s %X ", &id ) > 0 ) )
return false;
Loggable *l = find( id );
// assert( l );
char classname[40];
char command[40];
2008-05-07 17:19:55 +02:00
char *arguments = NULL;
const char *create, *destroy;
if ( reverse )
{
2008-05-07 17:19:55 +02:00
// sscanf( s, "%s %*X %s %*[^\n<]<< %a[^\n]", classname, command, &arguments );
sscanf( s, "%s %*X %s%*[^\n<]<< %a[^\n]", classname, command, &arguments );
create = "destroy";
destroy = "create";
}
else
{
sscanf( s, "%s %*X %s %a[^\n<]", classname, command, &arguments );
create = "create";
destroy = "destroy";
}
if ( ! strcmp( command, destroy ) )
{
2008-04-25 23:35:51 +02:00
/* deleting eg. a track, which contains a list of other
2008-06-04 06:41:53 +02:00
widgets, causes destroy messages to be emitted for all those
widgets, but when replaying the journal the destroy message
causes the children to be deleted also... This is a temporary
hack. Would it be better to queue up objects for deletion
(when?) */
2008-04-25 23:35:51 +02:00
if ( l )
delete l;
}
else if ( ! strcmp( command, "set" ) )
{
// printf( "got set command (%s).\n", arguments );
2008-06-04 05:34:36 +02:00
Log_Entry e( arguments );
2008-04-20 04:15:54 +02:00
l->log_start();
2008-04-20 04:15:54 +02:00
l->set( e );
l->log_end();
}
else if ( ! strcmp( command, create ) )
{
2008-06-04 05:34:36 +02:00
Log_Entry e( arguments );
2008-05-22 22:58:36 +02:00
ASSERT( _class_map[ std::string( classname ) ], "Journal contains an object of class \"%s\", but I don't know how to create such objects.", classname );
{
/* create */
2008-05-22 22:58:36 +02:00
Loggable *l = _class_map[ std::string( classname ) ]( e );
l->update_id( id );
l->log_create();
}
}
2008-05-07 04:32:37 +02:00
if ( arguments )
free( arguments );
return true;
}
2008-02-27 21:04:17 +01:00
2008-06-04 06:41:53 +02:00
/** Reverse the last journal transaction */
2008-02-25 05:14:19 +01:00
void
Loggable::undo ( void )
{
char *buf = new char[ BUFSIZ ];
// fflush( _fp );
/* FIXME: handle more than the first block!!! */
2008-02-25 23:47:49 +01:00
fseek( _fp, 0, SEEK_END );
size_t len = ftell( _fp );
2008-02-25 05:14:19 +01:00
2008-02-25 23:47:49 +01:00
fseek( _fp, 0 - (BUFSIZ > len ? len : BUFSIZ), SEEK_END );
2008-02-22 12:44:35 +01:00
2008-02-25 23:47:49 +01:00
len = fread( buf, 1, BUFSIZ, _fp );
2008-02-25 05:14:19 +01:00
char *s = buf + len - 1;
2008-02-25 23:47:49 +01:00
int i = 1;
2008-02-27 21:04:17 +01:00
/* move back _undo_index items from the end */
2008-02-25 23:47:49 +01:00
for ( int j = _undo_index; j-- ; )
for ( --s; *s && s >= buf; --s, ++i )
2008-02-25 05:14:19 +01:00
{
2008-02-25 23:47:49 +01:00
if ( *s == '\n' )
{
2008-02-27 21:04:17 +01:00
if ( *(s + 1) == '\t' )
continue;
2008-03-05 08:05:08 +01:00
if ( *(s + 1) == '}' )
{
*(s + 1) = NULL;
continue;
}
2008-02-25 23:47:49 +01:00
break;
}
2008-02-25 05:14:19 +01:00
}
2008-02-25 23:47:49 +01:00
s++;
2008-02-25 05:14:19 +01:00
buf[ len ] = NULL;
2008-02-25 23:47:49 +01:00
if ( ! strlen( s ) )
{
2008-05-03 18:46:48 +02:00
WARNING( "corrupt undo file or no undo entries." );
2008-02-25 23:47:49 +01:00
return;
}
2008-03-05 08:05:08 +01:00
char *b = s;
2008-02-25 05:14:19 +01:00
2008-03-05 08:05:08 +01:00
s += strlen( s ) - 1;
2008-02-25 05:14:19 +01:00
2008-03-05 08:05:08 +01:00
if ( strtok( b, "\n" ) == NULL )
2008-05-03 18:46:48 +02:00
FATAL( "empty undo transaction!\n" );
2008-02-27 21:04:17 +01:00
2008-03-05 08:05:08 +01:00
int n = 1;
while ( strtok( NULL, "\n" ) )
++n;
2008-02-27 21:04:17 +01:00
int ui = _undo_index;
2008-02-25 05:14:19 +01:00
block_start();
if ( strcmp( b, "{" ) )
{
/* It's a single undo, get rid of trailing messages in this block */
n = 1;
s = b + 2;
s += strlen( s ) - 1;
}
2008-03-05 08:05:08 +01:00
while ( n-- )
{
while ( s >= b && *(--s) );
s++;
if ( ! strcmp( s, "{" ) )
2008-06-04 06:41:53 +02:00
break;
2008-03-05 08:05:08 +01:00
if ( *s == '\t' )
s++;
2008-05-07 17:19:55 +02:00
DMESSAGE( "undoing \"%s\"", s );
2008-03-05 08:05:08 +01:00
do_this( s, true );
2008-03-05 08:05:08 +01:00
s -= 2;
}
2008-02-27 21:04:17 +01:00
block_end();
_undo_index = ui + 2;
2008-03-05 08:05:08 +01:00
2008-04-28 18:48:35 +02:00
delete[] buf;
2008-02-25 05:14:19 +01:00
}
2008-06-05 06:27:55 +02:00
void
Loggable::compact_ids ( void )
{
int id = 0;
for ( int i = 0; i < _log_id; ++i )
if ( _loggables[ i ] )
{
++id;
if ( _loggables[ id - 1 ] )
continue;
_loggables[ id - 1 ] = _loggables[ i ];
_loggables[ i ] = NULL;
_loggables[ id - 1 ]->_id = id;
}
_log_id = id;
2008-06-05 06:27:55 +02:00
}
/* FIXME: we need a version of this that is fully const, right? */
/** write a snapshot of the state of all loggable objects, sufficient
* for later reconstruction, to /fp/ */
bool
Loggable::snapshot ( FILE *fp )
{
FILE *ofp = _fp;
if ( ! ( _fp = fp ) )
{
_fp = ofp;
return false;
}
block_start();
for ( int i = 0; i < _log_id; ++i )
{
2008-04-25 08:34:08 +02:00
const Loggable * l = _loggables[ i ];
2008-05-22 22:58:36 +02:00
if ( l && _class_map[ std::string( l->class_name() ) ] )
2008-04-25 08:34:08 +02:00
l->log_create();
}
block_end();
_fp = ofp;
return true;
}
2008-02-25 05:14:19 +01:00
bool
Loggable::snapshot ( const char *name )
{
FILE *fp;
if ( ! ( fp = fopen( name, "w" ) ))
return false;
snapshot( fp );
fclose( fp );
2008-06-05 06:27:55 +02:00
return true;
}
2008-06-04 06:41:53 +02:00
/** Replace the journal with a snapshot of the current state */
2008-04-24 00:29:14 +02:00
void
Loggable::compact ( void )
{
2008-04-24 02:33:44 +02:00
fseek( _fp, 0, SEEK_SET );
ftruncate( fileno( _fp ), 0 );
2008-04-24 00:29:14 +02:00
2008-06-05 06:27:55 +02:00
compact_ids();
if ( ! snapshot( _fp ) )
FATAL( "Could not write snapshot!" );
2008-04-24 00:29:14 +02:00
_undo_index = 1;
2008-04-24 02:33:44 +02:00
}
2008-04-24 00:29:14 +02:00
2008-06-04 06:41:53 +02:00
/** Buffered sprintf wrapper */
2008-02-25 05:14:19 +01:00
void
Loggable::log ( const char *fmt, ... )
{
if ( ! _fp )
return;
/* FIXME: bogus limit */
static char buf[1024];
static int i = 0;
2008-02-25 05:14:19 +01:00
va_list args;
if ( fmt )
{
va_start( args, fmt );
i += vsprintf( buf + i, fmt, args );
2008-02-25 05:14:19 +01:00
va_end( args );
}
2008-02-25 23:47:49 +01:00
if ( rindex( buf, '\n' ) )
{
_transaction.push( strdup( buf ) );
i = 0;
}
2008-02-25 05:14:19 +01:00
}
2008-02-24 08:42:41 +01:00
2008-06-04 06:41:53 +02:00
/** End the current transaction and commit it to the journal */
void
Loggable::flush ( void )
{
if ( ! _fp )
{
2008-04-21 05:05:25 +02:00
// printf( "error: no log file open!\n" );
while ( ! _transaction.empty() )
{
free( _transaction.front() );
_transaction.pop();
}
return;
}
int n = _transaction.size();
if ( n )
/* something done, reset undo index */
_undo_index = 1;
if ( n > 1 )
fprintf( _fp, "{\n" );
while ( ! _transaction.empty() )
{
char *s = _transaction.front();
_transaction.pop();
if ( n > 1 )
fprintf( _fp, "\t" );
fprintf( _fp, "%s", s );
free( s );
}
if ( n > 1 )
fprintf( _fp, "}\n" );
fflush( _fp );
}
2008-02-24 08:42:41 +01:00
2008-06-04 06:41:53 +02:00
/** Print bidirectional journal entry */
2008-02-24 08:42:41 +01:00
void
2008-06-04 06:28:28 +02:00
Loggable::log_print( const Log_Entry *o, const Log_Entry *n ) const
2008-02-24 08:42:41 +01:00
{
2008-06-04 06:28:28 +02:00
if ( ! _fp )
return;
2008-02-24 08:42:41 +01:00
if ( n )
2008-06-04 06:28:28 +02:00
for ( int i = 0; i < n->size(); ++i )
{
const char *s, *v;
n->get( i, &s, &v );
log( "%s %s%s", s, v, n->size() == i + 1 ? "" : " " );
}
2008-02-24 08:42:41 +01:00
2008-06-04 06:28:28 +02:00
if ( o && o->size() )
2008-02-24 08:42:41 +01:00
{
2008-02-25 05:14:19 +01:00
if ( n ) log( " << " );
2008-06-04 06:28:28 +02:00
for ( int i = 0; i < o->size(); ++i )
{
const char *s, *v;
o->get( i, &s, &v );
log( "%s %s%s", s, v, o->size() == i + 1 ? "" : " " );
2008-06-04 06:28:28 +02:00
}
2008-02-24 08:42:41 +01:00
}
2008-02-25 05:14:19 +01:00
log( "\n" );
2008-02-24 08:42:41 +01:00
}
2008-06-04 06:41:53 +02:00
/** Remember current object state for later comparison. *Must* be
* called before any user action that might change one of the object's
* journaled properties. */
2008-02-24 08:42:41 +01:00
void
Loggable::log_start ( void )
{
2008-02-24 14:28:55 +01:00
if ( ! _old_state )
2008-04-20 04:15:54 +02:00
{
2008-06-04 05:47:26 +02:00
_old_state = new Log_Entry;
2008-02-24 14:28:55 +01:00
2008-06-04 05:47:26 +02:00
get( *_old_state );
2008-04-20 04:15:54 +02:00
}
2008-02-24 14:28:55 +01:00
++_nest;
2008-02-24 08:42:41 +01:00
}
2008-06-04 06:41:53 +02:00
/** Log any change to the object's state since log_start(). */
2008-02-24 08:42:41 +01:00
void
Loggable::log_end ( void )
{
2008-02-24 14:28:55 +01:00
if ( --_nest > 0 )
return;
2008-06-04 06:28:28 +02:00
Log_Entry *new_state;
2008-04-20 04:15:54 +02:00
2008-06-04 06:28:28 +02:00
new_state = new Log_Entry;
2008-04-20 04:15:54 +02:00
2008-06-04 06:28:28 +02:00
get( *new_state );
2008-02-24 08:42:41 +01:00
2008-06-04 06:28:28 +02:00
if ( *_old_state != *new_state )
{
2008-02-25 05:14:19 +01:00
log( "%s 0x%X set ", class_name(), _id );
2008-02-24 08:42:41 +01:00
2008-06-04 06:28:28 +02:00
log_print( _old_state, new_state );
}
2008-02-24 08:42:41 +01:00
2008-06-04 06:28:28 +02:00
if ( new_state )
delete new_state;
2008-02-24 08:42:41 +01:00
2008-02-24 14:28:55 +01:00
if ( _old_state )
2008-06-04 05:47:26 +02:00
delete _old_state;
2008-02-24 14:28:55 +01:00
2008-02-24 08:42:41 +01:00
_old_state = NULL;
2008-02-24 14:28:55 +01:00
if ( Loggable::_level == 0 )
Loggable::flush();
2008-02-24 08:42:41 +01:00
}
2008-06-04 06:41:53 +02:00
/** Log object creation. *Must* be called at the end of all public
* constructors for leaf classes */
2008-02-24 08:42:41 +01:00
void
2008-04-25 08:34:08 +02:00
Loggable::log_create ( void ) const
2008-02-24 08:42:41 +01:00
{
if ( ! _fp )
/* replaying, don't bother */
return;
2008-02-27 21:04:17 +01:00
log( "%s 0x%X create ", class_name(), _id );
2008-02-24 08:42:41 +01:00
2008-04-20 04:15:54 +02:00
Log_Entry e;
get( e );
if ( e.size() )
log_print( NULL, &e );
else
log( "\n" );
if ( Loggable::_level == 0 )
Loggable::flush();
2008-02-24 08:42:41 +01:00
}
2008-06-04 06:41:53 +02:00
/** Log object destruction. *Must* be called at the beginning of the
* destructors of leaf classes */
2008-02-24 08:42:41 +01:00
void
2008-04-25 08:34:08 +02:00
Loggable::log_destroy ( void ) const
2008-02-24 08:42:41 +01:00
{
if ( ! _fp )
/* tearing down... don't bother */
return;
2008-05-07 17:19:55 +02:00
log( "%s 0x%X destroy << ", class_name(), _id );
2008-02-24 08:42:41 +01:00
2008-04-20 04:15:54 +02:00
Log_Entry e;
get( e );
2008-06-04 06:28:28 +02:00
log_print( NULL, &e );
if ( Loggable::_level == 0 )
Loggable::flush();
2008-02-24 08:42:41 +01:00
}