1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2024-12-26 17:47:37 +00:00

new function: tr_bencSaveAsSerializedPHP()

This commit is contained in:
Charles Kerr 2008-03-04 19:29:51 +00:00
parent 93ccd72f77
commit 0e10715b5e
3 changed files with 149 additions and 0 deletions

View file

@ -265,6 +265,44 @@ testParse( void )
return 0; return 0;
} }
static int
testPHPSnippet( const char * benc_str, const char * expected )
{
tr_benc top;
char * serialized;
tr_bencLoad( benc_str, strlen( benc_str ), &top, NULL );
serialized = tr_bencSaveAsSerializedPHP( &top, NULL );
check( !strcmp( serialized, expected ) );
tr_free( serialized );
tr_bencFree( &top );
return 0;
}
static int
testPHP( void )
{
int val;
const char * benc_str;
const char * expected;
benc_str = "i6e";
expected = "i:6;";
if(( val = testPHPSnippet( benc_str, expected )))
return val;
benc_str = "d3:cow3:moo4:spam4:eggse";
expected = "a:2:{s:3:\"cow\";s:3:\"moo\";s:4:\"spam\";s:4:\"eggs\";}";
if(( val = testPHPSnippet( benc_str, expected )))
return val;
benc_str = "l3:cow3:moo4:spam4:eggse";
expected = "a:4:{i:0;s:3:\"cow\";i:1;s:3:\"moo\";i:2;s:4:\"spam\";i:3;s:4:\"eggs\";}";
if(( val = testPHPSnippet( benc_str, expected )))
return val;
return 0;
}
static int static int
testStackSmash( void ) testStackSmash( void )
{ {
@ -311,6 +349,9 @@ main( void )
if(( i = testParse( ))) if(( i = testParse( )))
return i; return i;
if(( i = testPHP( )))
return i;
if(( i = testStackSmash( ))) if(( i = testStackSmash( )))
return i; return i;

View file

@ -33,6 +33,7 @@
#include "transmission.h" #include "transmission.h"
#include "bencode.h" #include "bencode.h"
#include "list.h"
#include "ptrarray.h" #include "ptrarray.h"
#include "utils.h" /* tr_new(), tr_free() */ #include "utils.h" /* tr_new(), tr_free() */
@ -846,3 +847,108 @@ tr_bencPrint( const tr_benc * val )
walkPrint.depth = 0; walkPrint.depth = 0;
bencWalk( val, &walkFuncs, &walkPrint ); bencWalk( val, &walkFuncs, &walkPrint );
} }
/***
****
***/
struct ParentState
{
int type;
int index;
};
struct phpWalk
{
tr_list * parents;
struct evbuffer * out;
};
static void
phpChildFunc( struct phpWalk * data )
{
if( data->parents )
{
struct ParentState * parentState = data->parents->data;
if( parentState->type == TYPE_LIST )
evbuffer_add_printf( data->out, "i:%d;", parentState->index++ );
}
}
static void
phpPushParent( struct phpWalk * data, int type )
{
struct ParentState * parentState = tr_new( struct ParentState, 1 );
parentState->type = type;
parentState->index = 0;
tr_list_prepend( &data->parents, parentState );
}
static void
phpPopParent( struct phpWalk * data )
{
tr_free( tr_list_pop_front( &data->parents ) );
}
static void
phpIntFunc( const tr_benc * val, void * vdata )
{
struct phpWalk * data = vdata;
phpChildFunc( data );
evbuffer_add_printf( data->out, "i:%"PRId64";", tr_bencGetInt(val) );
}
static void
phpStringFunc( const tr_benc * val, void * vdata )
{
struct phpWalk * data = vdata;
phpChildFunc( data );
evbuffer_add_printf( data->out, "s:%d:\"%s\";", val->val.s.i, val->val.s.s );
}
static void
phpDictBeginFunc( const tr_benc * val, void * vdata )
{
struct phpWalk * data = vdata;
phpChildFunc( data );
phpPushParent( data, TYPE_DICT );
evbuffer_add_printf( data->out, "a:%d:{", val->val.l.count/2 );
}
static void
phpListBeginFunc( const tr_benc * val, void * vdata )
{
struct phpWalk * data = vdata;
phpChildFunc( data );
phpPushParent( data, TYPE_LIST );
evbuffer_add_printf( data->out, "a:%d:{", val->val.l.count );
}
static void
phpContainerEndFunc( const tr_benc * val UNUSED, void * vdata )
{
struct phpWalk * data = vdata;
phpPopParent( data );
evbuffer_add_printf( data->out, "}" );
}
char*
tr_bencSaveAsSerializedPHP( const tr_benc * top, int * len )
{
char * ret;
struct WalkFuncs walkFuncs;
struct phpWalk data;
data.out = evbuffer_new( );
data.parents = NULL;
walkFuncs.intFunc = phpIntFunc;
walkFuncs.stringFunc = phpStringFunc;
walkFuncs.dictBeginFunc = phpDictBeginFunc;
walkFuncs.listBeginFunc = phpListBeginFunc;
walkFuncs.containerEndFunc = phpContainerEndFunc;
bencWalk( top, &walkFuncs, &data );
if( len != NULL )
*len = EVBUFFER_LENGTH( data.out );
ret = tr_strndup( (char*) EVBUFFER_DATA( data.out ), EVBUFFER_LENGTH( data.out ) );
evbuffer_free( data.out );
return ret;
}

View file

@ -96,6 +96,8 @@ tr_benc * tr_bencListAdd( tr_benc * list );
tr_benc * tr_bencDictAdd( tr_benc * dict, const char * key ); tr_benc * tr_bencDictAdd( tr_benc * dict, const char * key );
char* tr_bencSave( const tr_benc * val, int * len ); char* tr_bencSave( const tr_benc * val, int * len );
char* tr_bencSaveAsSerializedPHP( const tr_benc * top, int * len );
int64_t tr_bencGetInt( const tr_benc * val ); int64_t tr_bencGetInt( const tr_benc * val );