📄 cxpersistence.cpp
字号:
/*M///////////////////////////////////////////////////////////////////////////////////////
//
// IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
//
// By downloading, copying, installing or using the software you agree to this license.
// If you do not agree to this license, do not download, install,
// copy or use the software.
//
//
// Intel License Agreement
// For Open Source Computer Vision Library
//
// Copyright (C) 2000, Intel Corporation, all rights reserved.
// Third party copyrights are property of their respective owners.
//
// Redistribution and use in source and binary forms, with or without modification,
// are permitted provided that the following conditions are met:
//
// * Redistribution's of source code must retain the above copyright notice,
// this list of conditions and the following disclaimer.
//
// * Redistribution's in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation
// and/or other materials provided with the distribution.
//
// * The name of Intel Corporation may not be used to endorse or promote products
// derived from this software without specific prior written permission.
//
// This software is provided by the copyright holders and contributors "as is" and
// any express or implied warranties, including, but not limited to, the implied
// warranties of merchantability and fitness for a particular purpose are disclaimed.
// In no event shall the Intel Corporation or contributors be liable for any direct,
// indirect, incidental, special, exemplary, or consequential damages
// (including, but not limited to, procurement of substitute goods or services;
// loss of use, data, or profits; or business interruption) however caused
// and on any theory of liability, whether in contract, strict liability,
// or tort (including negligence or otherwise) arising in any way out of
// the use of this software, even if advised of the possibility of such damage.
//
//M*/
#include "_cxcore.h"
#include <ctype.h>
/****************************************************************************************\
* Common macros and type definitions *
\****************************************************************************************/
#define cv_isprint(c) ((signed char)(c) >= (signed char)' ')
#define cv_isprint_or_tab(c) ((signed char)(c) >= (signed char)' ' || (c) == '\t')
static char* icv_itoa( int _val, char* buffer, int /*radix*/ )
{
const int radix = 10;
char* ptr=buffer + 23 /* enough even for 64-bit integers */;
unsigned val = abs(_val);
*ptr = '\0';
do
{
unsigned r = val / radix;
*--ptr = (char)(val - (r*radix) + '0');
val = r;
}
while( val != 0 );
if( _val < 0 )
*--ptr = '-';
return ptr;
}
typedef struct CvGenericHash
{
CV_SET_FIELDS()
int tab_size;
void** table;
}
CvGenericHash;
typedef CvGenericHash CvStringHash;
typedef struct CvFileMapNode
{
CvFileNode value;
const CvStringHashNode* key;
struct CvFileMapNode* next;
}
CvFileMapNode;
typedef struct CvXMLStackRecord
{
CvMemStoragePos pos;
CvString struct_tag;
int struct_indent;
int struct_flags;
}
CvXMLStackRecord;
#define CV_XML_OPENING_TAG 1
#define CV_XML_CLOSING_TAG 2
#define CV_XML_EMPTY_TAG 3
#define CV_XML_HEADER_TAG 4
#define CV_XML_DIRECTIVE_TAG 5
//typedef void (*CvParse)( struct CvFileStorage* fs );
typedef void (*CvStartWriteStruct)( struct CvFileStorage* fs, const char* key,
int struct_flags, const char* type_name );
typedef void (*CvEndWriteStruct)( struct CvFileStorage* fs );
typedef void (*CvWriteInt)( struct CvFileStorage* fs, const char* key, int value );
typedef void (*CvWriteReal)( struct CvFileStorage* fs, const char* key, double value );
typedef void (*CvWriteString)( struct CvFileStorage* fs, const char* key,
const char* value, int quote );
typedef void (*CvWriteComment)( struct CvFileStorage* fs, const char* comment, int eol_comment );
typedef void (*CvStartNextStream)( struct CvFileStorage* fs );
typedef struct CvFileStorage
{
int flags;
int is_xml;
int write_mode;
int is_first;
CvMemStorage* memstorage;
CvMemStorage* dststorage;
CvMemStorage* strstorage;
CvStringHash* str_hash;
CvSeq* roots;
CvSeq* write_stack;
int struct_indent;
int struct_flags;
CvString struct_tag;
int space;
char* filename;
FILE* file;
char* buffer;
char* buffer_start;
char* buffer_end;
int wrap_margin;
int lineno;
int dummy_eof;
const char* errmsg;
char errmsgbuf[128];
CvStartWriteStruct start_write_struct;
CvEndWriteStruct end_write_struct;
CvWriteInt write_int;
CvWriteReal write_real;
CvWriteString write_string;
CvWriteComment write_comment;
CvStartNextStream start_next_stream;
//CvParse parse;
}
CvFileStorage;
#define CV_YML_INDENT 3
#define CV_XML_INDENT 2
#define CV_YML_INDENT_FLOW 1
#define CV_FS_MAX_LEN 4096
#define CV_FILE_STORAGE ('Y' + ('A' << 8) + ('M' << 16) + ('L' << 24))
#define CV_IS_FILE_STORAGE(fs) ((fs) != 0 && (fs)->flags == CV_FILE_STORAGE)
#define CV_CHECK_FILE_STORAGE(fs) \
{ \
if( !CV_IS_FILE_STORAGE(fs) ) \
CV_ERROR( (fs) ? CV_StsBadArg : CV_StsNullPtr, \
"Invalid pointer to file storage" ); \
}
#define CV_CHECK_OUTPUT_FILE_STORAGE(fs) \
{ \
CV_CHECK_FILE_STORAGE(fs); \
if( !fs->write_mode ) \
CV_ERROR( CV_StsError, "The file storage is opened for reading" ); \
}
CV_IMPL const char*
cvAttrValue( const CvAttrList* attr, const char* attr_name )
{
while( attr && attr->attr )
{
int i;
for( i = 0; attr->attr[i*2] != 0; i++ )
{
if( strcmp( attr_name, attr->attr[i*2] ) == 0 )
return attr->attr[i*2+1];
}
attr = attr->next;
}
return 0;
}
static CvGenericHash*
cvCreateMap( int flags, int header_size, int elem_size,
CvMemStorage* storage, int start_tab_size )
{
CvGenericHash* map = 0;
CV_FUNCNAME( "cvCreateMap" );
__BEGIN__;
if( header_size < (int)sizeof(CvGenericHash) )
CV_ERROR( CV_StsBadSize, "Too small map header_size" );
if( start_tab_size <= 0 )
start_tab_size = 16;
CV_CALL( map = (CvGenericHash*)cvCreateSet( flags, header_size, elem_size, storage ));
map->tab_size = start_tab_size;
start_tab_size *= sizeof(map->table[0]);
CV_CALL( map->table = (void**)cvMemStorageAlloc( storage, start_tab_size ));
memset( map->table, 0, start_tab_size );
__END__;
if( cvGetErrStatus() < 0 )
map = 0;
return map;
}
#define CV_PARSE_ERROR( errmsg ) \
{ \
icvParseError( fs, cvFuncName, (errmsg), __FILE__, __LINE__ ); \
EXIT; \
}
static void
icvParseError( CvFileStorage* fs, const char* func_name,
const char* err_msg, const char* source_file, int source_line )
{
char buf[1<<10];
sprintf( buf, "%s(%d): %s", fs->filename, fs->lineno, err_msg );
cvError( CV_StsParseError, func_name, buf, source_file, source_line );
}
static void
icvFSCreateCollection( CvFileStorage* fs, int tag, CvFileNode* collection )
{
CV_FUNCNAME( "icvFSCreateCollection" );
__BEGIN__;
if( CV_NODE_IS_MAP(tag) )
{
if( collection->tag != CV_NODE_NONE )
{
assert( fs->is_xml != 0 );
CV_PARSE_ERROR( "Sequence element should not have name (use <_></_>)" );
}
CV_CALL( collection->data.map = cvCreateMap( 0, sizeof(CvFileNodeHash),
sizeof(CvFileMapNode), fs->memstorage, 16 ));
}
else
{
CvSeq* seq;
CV_CALL( seq = cvCreateSeq( 0, sizeof(CvSeq), sizeof(CvFileNode), fs->memstorage ));
// if <collection> contains some scalar element, add it to the newly created collection
if( CV_NODE_TYPE(collection->tag) != CV_NODE_NONE )
cvSeqPush( seq, collection );
collection->data.seq = seq;
}
collection->tag = tag;
cvSetSeqBlockSize( collection->data.seq, 8 );
__END__;
}
/*static void
icvFSReleaseCollection( CvSeq* seq )
{
if( seq )
{
int is_map = CV_IS_SET(seq);
CvSeqReader reader;
int i, total = seq->total;
cvStartReadSeq( seq, &reader, 0 );
for( i = 0; i < total; i++ )
{
CvFileNode* node = (CvFileNode*)reader.ptr;
if( (!is_map || CV_IS_SET_ELEM( node )) && CV_NODE_IS_COLLECTION(node->tag) )
{
if( CV_NODE_IS_USER(node->tag) && node->info && node->data.obj.decoded )
cvRelease( (void**)&node->data.obj.decoded );
if( !CV_NODE_SEQ_IS_SIMPLE( node->data.seq ))
icvFSReleaseCollection( node->data.seq );
}
CV_NEXT_SEQ_ELEM( seq->elem_size, reader );
}
}
}*/
static char*
icvFSDoResize( CvFileStorage* fs, char* ptr, int len )
{
char* new_ptr = 0;
CV_FUNCNAME( "icvFSDoResize" );
__BEGIN__;
int written_len = (int)(ptr - fs->buffer_start);
int new_size = (int)((fs->buffer_end - fs->buffer_start)*3/2);
new_size = MAX( written_len + len, new_size );
CV_CALL( new_ptr = (char*)cvAlloc( new_size + 256 ));
fs->buffer = new_ptr + (fs->buffer - fs->buffer_start);
if( written_len > 0 )
memcpy( new_ptr, fs->buffer_start, written_len );
fs->buffer_start = new_ptr;
fs->buffer_end = fs->buffer_start + new_size;
new_ptr += written_len;
__END__;
return new_ptr;
}
inline char* icvFSResizeWriteBuffer( CvFileStorage* fs, char* ptr, int len )
{
return ptr + len < fs->buffer_end ? ptr : icvFSDoResize( fs, ptr, len );
}
static char*
icvFSFlush( CvFileStorage* fs )
{
char* ptr = fs->buffer;
int indent;
if( ptr > fs->buffer_start + fs->space )
{
ptr[0] = '\n';
ptr[1] = '\0';
fputs( fs->buffer_start, fs->file );
fs->buffer = fs->buffer_start;
}
indent = fs->struct_indent;
if( fs->space != indent )
{
if( fs->space < indent )
memset( fs->buffer_start + fs->space, ' ', indent - fs->space );
fs->space = indent;
}
ptr = fs->buffer = fs->buffer_start + fs->space;
return ptr;
}
/* closes file storage and deallocates buffers */
CV_IMPL void
cvReleaseFileStorage( CvFileStorage** p_fs )
{
CV_FUNCNAME("cvReleaseFileStorage" );
__BEGIN__;
if( !p_fs )
CV_ERROR( CV_StsNullPtr, "NULL double pointer to file storage" );
if( *p_fs )
{
CvFileStorage* fs = *p_fs;
*p_fs = 0;
if( fs->write_mode && fs->file )
{
if( fs->write_stack )
{
while( fs->write_stack->total > 0 )
cvEndWriteStruct(fs);
}
icvFSFlush(fs);
if( fs->is_xml )
fputs("</opencv_storage>\n", fs->file );
}
//icvFSReleaseCollection( fs->roots ); // delete all the user types recursively
if( fs->file )
{
fclose( fs->file );
fs->file = 0;
}
cvReleaseMemStorage( &fs->strstorage );
cvFree( &fs->buffer_start );
cvReleaseMemStorage( &fs->memstorage );
memset( fs, 0, sizeof(*fs) );
cvFree( &fs );
}
__END__;
}
#define CV_HASHVAL_SCALE 33
CV_IMPL CvStringHashNode*
cvGetHashedKey( CvFileStorage* fs, const char* str, int len, int create_missing )
{
CvStringHashNode* node = 0;
CV_FUNCNAME( "cvGetHashedKey" );
__BEGIN__;
unsigned hashval = 0;
int i, tab_size;
CvStringHash* map = fs->str_hash;
if( !fs )
EXIT;
if( len < 0 )
{
for( i = 0; str[i] != '\0'; i++ )
hashval = hashval*CV_HASHVAL_SCALE + (unsigned char)str[i];
len = i;
}
else for( i = 0; i < len; i++ )
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -