xml-copy-editor-code/src/xmlassociatexsl.cpp

107 lines
2.7 KiB
C++
Raw Normal View History

/*
* Copyright 2005-2007 Gerald Schmidt.
*
* This file is part of Xml Copy Editor.
*
* 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.
*
* 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.
*
* 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 "xmlassociatexsl.h"
2007-09-08 00:25:30 +02:00
XmlAssociateXsl::XmlAssociateXsl ( const std::string& path, size_t size ) :
d ( new XslData() )
2007-09-07 23:17:30 +02:00
{
2007-09-08 00:25:30 +02:00
d->buffer.reserve ( size );
d->path = path;
d->rootElementSeen = false;
XML_SetUserData ( p, d.get() );
XML_SetElementHandler ( p, start, end );
XML_SetProcessingInstructionHandler ( p, processinghandler );
XML_SetDefaultHandlerExpand ( p, defaulthandler );
2007-09-07 23:17:30 +02:00
}
XmlAssociateXsl::~XmlAssociateXsl()
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 XmlAssociateXsl::defaulthandler (
void *data,
const XML_Char *s,
int len )
2007-09-07 23:17:30 +02:00
{
2007-09-08 00:25:30 +02:00
XslData *d;
d = ( XslData * ) data;
d->buffer.append ( s, len );
2007-09-07 23:17:30 +02:00
}
2007-09-08 00:25:30 +02:00
void XMLCALL XmlAssociateXsl::start ( void *data,
const XML_Char *el,
const XML_Char **attr )
2007-09-07 23:17:30 +02:00
{
2007-09-08 00:25:30 +02:00
XslData *d;
d = ( XslData * ) data;
2007-09-07 23:17:30 +02:00
2007-09-08 00:25:30 +02:00
if ( !d->rootElementSeen )
{
d->buffer += "<?xml-stylesheet type=\"text/xsl\" href=\"";
d->buffer += d->path;
d->buffer += "\"?>\n";
d->rootElementSeen = true;
}
2007-09-07 23:17:30 +02:00
2007-09-08 00:25:30 +02:00
d->buffer += "<";
d->buffer += el;
while ( *attr )
{
d->buffer += " ";
d->buffer += *attr;
d->buffer += "=\"";
d->buffer += xmliseAttribute ( * ( attr + 1 ) );
d->buffer += "\"";
attr += 2;
}
d->buffer += ">";
2007-09-07 23:17:30 +02:00
}
2007-09-08 00:25:30 +02:00
void XMLCALL XmlAssociateXsl::end ( void *data, const XML_Char *el )
2007-09-07 23:17:30 +02:00
{
2007-09-08 00:25:30 +02:00
XslData *d;
d = ( XslData * ) data;
d->buffer += "</";
d->buffer += el;
d->buffer += ">";
2007-09-07 23:17:30 +02:00
}
2007-09-08 00:25:30 +02:00
void XMLCALL XmlAssociateXsl::processinghandler (
void *data,
const XML_Char *target,
const XML_Char *datastring )
2007-09-07 23:17:30 +02:00
{
2007-09-08 00:25:30 +02:00
XslData *d;
d = ( XslData * ) data;
if ( !strcmp ( target, "xml-stylesheet" ) )
return;
2007-09-07 23:17:30 +02:00
2007-09-08 00:25:30 +02:00
d->buffer += "<?";
d->buffer += target;
d->buffer += " ";
d->buffer += datastring;
d->buffer += "?>";
2007-09-07 23:17:30 +02:00
}