mirror of
https://github.com/transmission/transmission
synced 2024-12-26 01:27:28 +00:00
168 lines
4.2 KiB
C
168 lines
4.2 KiB
C
/*
|
|
* This file Copyright (C) 2008 Charles Kerr <charles@rebelbase.com>
|
|
*
|
|
* This file is licensed by the GPL version 2. Works owned by the
|
|
* Transmission project are granted a special exemption to clause 2(b)
|
|
* so that the bulk of its code can remain under the MIT license.
|
|
* This exemption does not extend to derived works not owned by
|
|
* the Transmission project.
|
|
*
|
|
* $Id$
|
|
*/
|
|
|
|
#include <assert.h>
|
|
#include <ctype.h>
|
|
#include <string.h>
|
|
#include <stdio.h> /* printf */
|
|
|
|
#include <event.h> /* evbuffer */
|
|
|
|
#include "ConvertUTF.h"
|
|
#include "JSON_parser.h"
|
|
|
|
#include "transmission.h"
|
|
#include "bencode.h"
|
|
#include "json.h"
|
|
#include "ptrarray.h"
|
|
#include "utils.h"
|
|
|
|
struct json_benc_data
|
|
{
|
|
tr_benc * top;
|
|
tr_ptrArray * stack;
|
|
char * key;
|
|
};
|
|
|
|
static tr_benc*
|
|
getNode( struct json_benc_data * data )
|
|
{
|
|
tr_benc * parent;
|
|
tr_benc * node = NULL;
|
|
|
|
if( tr_ptrArrayEmpty( data->stack ) )
|
|
parent = NULL;
|
|
else
|
|
parent = tr_ptrArrayBack( data->stack );
|
|
|
|
if( !parent )
|
|
node = data->top;
|
|
else if( tr_bencIsList( parent ) )
|
|
node = tr_bencListAdd( parent );
|
|
else if( tr_bencIsDict( parent ) && data->key ) {
|
|
node = tr_bencDictAdd( parent, data->key );
|
|
tr_free( data->key );
|
|
data->key = NULL;
|
|
}
|
|
|
|
return node;
|
|
}
|
|
|
|
static int
|
|
callback( void * vdata, int type, const JSON_value * value )
|
|
{
|
|
struct json_benc_data * data = vdata;
|
|
tr_benc * node;
|
|
|
|
switch( type )
|
|
{
|
|
case JSON_T_ARRAY_BEGIN:
|
|
node = getNode( data );
|
|
tr_bencInitList( node, 0 );
|
|
tr_ptrArrayAppend( data->stack, node );
|
|
break;
|
|
|
|
case JSON_T_ARRAY_END:
|
|
tr_ptrArrayPop( data->stack );
|
|
break;
|
|
|
|
case JSON_T_OBJECT_BEGIN:
|
|
node = getNode( data );
|
|
tr_bencInitDict( node, 0 );
|
|
tr_ptrArrayAppend( data->stack, node );
|
|
break;
|
|
|
|
case JSON_T_OBJECT_END:
|
|
tr_ptrArrayPop( data->stack );
|
|
break;
|
|
|
|
case JSON_T_FLOAT: {
|
|
char buf[128];
|
|
tr_snprintf( buf, sizeof( buf ), "%f", (double)value->vu.float_value );
|
|
tr_bencInitStrDup( getNode( data ), buf );
|
|
break;
|
|
}
|
|
|
|
case JSON_T_NULL:
|
|
break;
|
|
|
|
case JSON_T_INTEGER:
|
|
tr_bencInitInt( getNode( data ), value->vu.integer_value );
|
|
break;
|
|
|
|
case JSON_T_TRUE:
|
|
tr_bencInitInt( getNode( data ), 1 );
|
|
break;
|
|
|
|
case JSON_T_FALSE:
|
|
tr_bencInitInt( getNode( data ), 0 );
|
|
break;
|
|
|
|
case JSON_T_STRING:
|
|
tr_bencInitRaw( getNode( data ), value->vu.str.value, value->vu.str.length );
|
|
break;
|
|
|
|
case JSON_T_KEY:
|
|
assert( !data->key );
|
|
data->key = tr_strndup( value->vu.str.value, value->vu.str.length );
|
|
break;
|
|
}
|
|
|
|
return 1;
|
|
}
|
|
|
|
int
|
|
tr_jsonParse( const void * vbuf,
|
|
size_t len,
|
|
tr_benc * setme_benc )
|
|
{
|
|
struct JSON_config_struct config;
|
|
struct JSON_parser_struct * checker;
|
|
struct json_benc_data data;
|
|
const UTF8 * utf8_begin;
|
|
const UTF8 * utf8_end;
|
|
UTF32 * utf32_begin;
|
|
UTF32 * utf32_end;
|
|
UTF32 * utf32_walk;
|
|
int err = 0;
|
|
|
|
init_JSON_config( &config );
|
|
config.callback = callback;
|
|
config.callback_ctx = &data;
|
|
config.depth = -1;
|
|
|
|
data.key = NULL;
|
|
data.top = setme_benc;
|
|
data.stack = tr_ptrArrayNew( );
|
|
|
|
/* convert the utf8 that was passed in, into utf32 so that
|
|
* we can be certain that each call to JSON_parser_char()
|
|
* passes through a complete character */
|
|
utf8_begin = vbuf;
|
|
utf8_end = utf8_begin; /* inout argument */
|
|
utf32_begin = tr_new0( UTF32, len );
|
|
utf32_end = utf32_begin; /* inout argument */
|
|
ConvertUTF8toUTF32( &utf8_end, utf8_begin+len,
|
|
&utf32_end, utf32_begin+len, 0 );
|
|
|
|
checker = new_JSON_parser( &config );
|
|
utf32_walk = utf32_begin;
|
|
while( ( utf32_walk != utf32_end ) && JSON_parser_char( checker, *utf32_walk ) )
|
|
++utf32_walk;
|
|
if( utf32_walk != utf32_end )
|
|
err = TR_ERROR;
|
|
|
|
delete_JSON_parser( checker );
|
|
tr_ptrArrayFree( data.stack, NULL );
|
|
tr_free( utf32_begin );
|
|
return err;
|
|
}
|