2008-01-06 23:13:01 +01:00
|
|
|
/*
|
2007-09-12 01:14:06 +02:00
|
|
|
* Copyright 2005-2007 Gerald Schmidt.
|
2008-01-06 23:13:01 +01:00
|
|
|
*
|
2007-09-12 01:14:06 +02:00
|
|
|
* This file is part of Xml Copy Editor.
|
2008-01-06 23:13:01 +01:00
|
|
|
*
|
2007-09-12 01:14:06 +02:00
|
|
|
* Xml Copy Editor 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; version 2 of the License.
|
2008-01-06 23:13:01 +01:00
|
|
|
*
|
2007-09-12 01:14:06 +02:00
|
|
|
* Xml Copy Editor 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.
|
2008-01-06 23:13:01 +01:00
|
|
|
*
|
2007-09-12 01:14:06 +02:00
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with Xml Copy Editor; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
2007-09-07 23:17:30 +02:00
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
#include <stdexcept>
|
|
|
|
#include <expat.h>
|
|
|
|
#include "xmlutf8reader.h"
|
|
|
|
|
2007-09-08 00:25:30 +02:00
|
|
|
XmlUtf8Reader::XmlUtf8Reader (
|
|
|
|
bool parseDeclaration,
|
|
|
|
bool expandInternalEntities,
|
|
|
|
size_t size ) :
|
2008-01-06 23:13:01 +01:00
|
|
|
d ( new UtfData() )
|
2007-09-07 23:17:30 +02:00
|
|
|
{
|
2008-01-06 23:13:01 +01:00
|
|
|
d->buffer.reserve ( size );
|
|
|
|
XML_SetUserData ( p, d.get() );
|
2007-09-07 23:17:30 +02:00
|
|
|
|
2008-01-06 23:13:01 +01:00
|
|
|
// parse declaration?
|
|
|
|
if ( parseDeclaration )
|
|
|
|
XML_SetXmlDeclHandler ( p, xmldeclhandler );
|
2007-09-08 00:25:30 +02:00
|
|
|
|
2008-01-06 23:13:01 +01:00
|
|
|
// internal entities
|
|
|
|
if ( expandInternalEntities )
|
|
|
|
XML_SetDefaultHandlerExpand ( p, defaulthandler );
|
|
|
|
else
|
|
|
|
XML_SetDefaultHandler ( p, defaulthandler );
|
2007-09-07 23:17:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
XmlUtf8Reader::~XmlUtf8Reader()
|
2007-09-08 00:25:30 +02:00
|
|
|
{}
|
2007-09-07 23:17:30 +02:00
|
|
|
|
2007-09-08 00:25:30 +02:00
|
|
|
void XMLCALL XmlUtf8Reader::xmldeclhandler (
|
|
|
|
void *data,
|
|
|
|
const XML_Char *version,
|
|
|
|
const XML_Char *encoding,
|
|
|
|
int standalone )
|
2007-09-07 23:17:30 +02:00
|
|
|
{
|
2008-01-06 23:13:01 +01:00
|
|
|
UtfData *d;
|
|
|
|
d = ( UtfData * ) data;
|
2007-09-08 00:25:30 +02:00
|
|
|
|
2008-01-06 23:13:01 +01:00
|
|
|
d->encoding = ( encoding ) ? encoding : "UTF-8";
|
2007-09-07 23:17:30 +02:00
|
|
|
|
2008-01-06 23:13:01 +01:00
|
|
|
d->buffer.append ( "<?xml version=\"" );
|
|
|
|
d->buffer.append ( version );
|
|
|
|
d->buffer.append ( "\" encoding=\"" );
|
|
|
|
d->buffer.append ( d->encoding );
|
|
|
|
d->buffer.append ( "\"" );
|
2007-09-07 23:17:30 +02:00
|
|
|
|
2008-01-06 23:13:01 +01:00
|
|
|
if ( standalone != -1 )
|
|
|
|
{
|
|
|
|
d->buffer.append ( " standalone=\"" );
|
|
|
|
d->buffer.append ( ( standalone == 1 ) ? "yes" : "no" );
|
|
|
|
d->buffer.append ( "\"" );
|
|
|
|
}
|
|
|
|
d->buffer.append ( "?>" );
|
2007-09-07 23:17:30 +02:00
|
|
|
}
|
|
|
|
|
2007-09-08 00:25:30 +02:00
|
|
|
void XMLCALL XmlUtf8Reader::defaulthandler (
|
|
|
|
void *data,
|
|
|
|
const XML_Char *s,
|
|
|
|
int len )
|
2007-09-07 23:17:30 +02:00
|
|
|
{
|
2008-01-06 23:13:01 +01:00
|
|
|
UtfData *d;
|
|
|
|
d = ( UtfData * ) data;
|
|
|
|
d->buffer.append ( s, len );
|
2007-09-07 23:17:30 +02:00
|
|
|
}
|