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

150 lines
4.0 KiB
C++
Raw Normal View History

2008-01-06 23:13:01 +01:00
/*
* Copyright 2005-2007 Gerald Schmidt.
2008-01-06 23:13:01 +01:00
*
* This file is part of Xml Copy Editor.
2008-01-06 23:13:01 +01: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
*
* 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
*
* 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 <cstring>
2007-09-07 23:17:30 +02:00
#include "xmlassociatexsd.h"
#include "xmlparseschemans.h"
#include "readfile.h"
#include "replace.h"
2007-09-08 00:25:30 +02:00
XmlAssociateXsd::XmlAssociateXsd (
const std::string& path,
size_t size ) :
2008-01-06 23:13:01 +01:00
d ( new AssociateXsdData() )
2007-09-07 23:17:30 +02:00
{
2008-01-06 23:13:01 +01:00
d->buffer.reserve ( size );
d->path = path;
d->rootElementSeen = false;
XML_SetElementHandler ( p, start, end );
XML_SetDefaultHandlerExpand ( p, defaulthandler );
2007-09-07 23:17:30 +02:00
2008-01-06 23:13:01 +01:00
std::auto_ptr<XmlParseSchemaNs> parser ( new XmlParseSchemaNs() );
std::string normalisedPath, buffer;
normalisedPath = path;
Replace::run ( normalisedPath, "%20", " ", true );
if ( !ReadFile::run ( normalisedPath, buffer ) )
return;
parser->parse ( buffer );
std::vector<std::pair<std::string, std::string> > attributeVector;
attributeVector = parser->getAttributeVector();
std::vector<std::pair<std::string, std::string> >::iterator it;
for ( it = attributeVector.begin(); it != attributeVector.end(); it++ )
{
if ( it->first == "targetNamespace" )
{
namespaceMap.insert ( make_pair ( "xmlns", it->second ) );
}
else if ( it->second == "http://www.w3.org/2001/XMLSchema" )
{
; // skip
}
else if ( it->first.find ( ':' ) != std::string::npos )
{
it->first.erase ( 0, it->first.find ( ':' ) );
it->first.insert ( 0, "xmlns" );
namespaceMap.insert ( make_pair ( it->first, it->second ) );
}
}
d->namespaceMap = namespaceMap;
XML_SetUserData ( p, d.get() );
2007-09-07 23:17:30 +02:00
}
XmlAssociateXsd::~XmlAssociateXsd()
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 XmlAssociateXsd::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
AssociateXsdData *d;
d = ( AssociateXsdData * ) data;
d->buffer.append ( s, len );
2007-09-07 23:17:30 +02:00
}
2007-09-08 00:25:30 +02:00
void XMLCALL XmlAssociateXsd::start ( void *data,
const XML_Char *el,
const XML_Char **attr )
2007-09-07 23:17:30 +02:00
{
2008-01-06 23:13:01 +01:00
AssociateXsdData *d;
d = ( AssociateXsdData * ) data;
2007-09-08 00:25:30 +02:00
2008-01-06 23:13:01 +01:00
d->buffer += "<";
d->buffer += el;
2007-09-07 23:17:30 +02:00
2008-01-06 23:13:01 +01:00
while ( *attr )
{
if ( strstr ( *attr, "xmlns:" ) ||
!strcmp ( *attr, "xmlns" ) ||
!strcmp ( *attr, "xsi:noNamespaceSchemaLocation" ) ||
!strcmp ( *attr, "xsi:schemaLocation" ) )
;
else
{
d->buffer += " ";
d->buffer += *attr;
d->buffer += "=\"";
d->buffer += xmliseAttribute ( * ( attr + 1 ) );
d->buffer += "\"";
}
attr += 2;
}
if ( !d->rootElementSeen )
{
d->buffer += " xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"";
std::map<std::string, std::string>::iterator it;
for ( it = d->namespaceMap.begin(); it != d->namespaceMap.end(); it++ )
{
d->buffer += " ";
d->buffer += it->first;
d->buffer += "=\"";
d->buffer += it->second;
d->buffer += "\"";
}
2007-09-07 23:17:30 +02:00
2008-01-06 23:13:01 +01:00
d->buffer += " xsi:";
bool withNamespace =
( d->namespaceMap.find ( "xmlns" ) != d->namespaceMap.end() );
d->buffer += ( withNamespace ) ? "schemaLocation" : "noNamespaceSchemaLocation";
d->buffer += "=\"";
if ( withNamespace )
{
d->buffer += d->namespaceMap["xmlns"];
d->buffer += " ";
}
d->buffer += d->path;
d->buffer += "\"";
d->rootElementSeen = true;
}
d->buffer += ">";
2007-09-07 23:17:30 +02:00
}
2007-09-08 00:25:30 +02:00
void XMLCALL XmlAssociateXsd::end ( void *data, const XML_Char *el )
2007-09-07 23:17:30 +02:00
{
2008-01-06 23:13:01 +01:00
AssociateXsdData *d;
d = ( AssociateXsdData * ) data;
d->buffer += "</";
d->buffer += el;
d->buffer += ">";
2007-09-07 23:17:30 +02:00
}