mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-24 10:52:53 +00:00
149 lines
4.4 KiB
C++
149 lines
4.4 KiB
C++
/*
|
|
* This file is part of the syndication library
|
|
*
|
|
* Copyright (C) 2006 Frank Osterfeld <osterfeld@kde.org>
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Library General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2 of the License, or (at your option) any later version.
|
|
*
|
|
* This library 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
|
|
* Library General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Library General Public License
|
|
* along with this library; see the file COPYING.LIB. If not, write to
|
|
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
* Boston, MA 02110-1301, USA.
|
|
*
|
|
*/
|
|
|
|
#include "modelmaker.h"
|
|
#include "literal.h"
|
|
#include "model.h"
|
|
#include "property.h"
|
|
#include "rdfvocab.h"
|
|
#include "resource.h"
|
|
#include "sequence.h"
|
|
#include "statement.h"
|
|
|
|
#include <QtXml/QDomElement>
|
|
#include <QtCore/QString>
|
|
|
|
namespace Syndication {
|
|
namespace RDF {
|
|
|
|
|
|
Model ModelMaker::createFromXML(const QDomDocument& doc)
|
|
{
|
|
Model model;
|
|
|
|
if (doc.isNull())
|
|
return model;
|
|
|
|
QDomElement rdfNode = doc.documentElement();
|
|
|
|
QDomNodeList list = rdfNode.childNodes();
|
|
|
|
for (uint i = 0; i < list.length(); ++i)
|
|
{
|
|
if (list.item(i).isElement())
|
|
{
|
|
QDomElement el = list.item(i).toElement();
|
|
readResource(model, el);
|
|
}
|
|
}
|
|
|
|
return model;
|
|
}
|
|
|
|
ResourcePtr ModelMaker::readResource(Model& model, const QDomElement& el)
|
|
{
|
|
QString rdfns = RDFVocab::self()->namespaceURI();
|
|
QString about = QLatin1String("about");
|
|
QString resource = QLatin1String("resource");
|
|
QString descriptionStr = QLatin1String("Description");
|
|
|
|
ResourcePtr res;
|
|
|
|
ResourcePtr type = model.createResource(el.namespaceURI() + el.localName());
|
|
|
|
if (*type == *(RDFVocab::self()->seq()))
|
|
{
|
|
SequencePtr seq = model.createSequence(el.attribute(about));
|
|
|
|
res = seq;
|
|
}
|
|
else
|
|
{
|
|
res = model.createResource(el.attribute(about));
|
|
}
|
|
|
|
model.addStatement(res, RDFVocab::self()->type(), type);
|
|
|
|
QDomNodeList children = el.childNodes();
|
|
|
|
bool isSeq = res->isSequence();
|
|
|
|
for (uint i = 0; i < children.length(); ++i)
|
|
{
|
|
if (children.item(i).isElement())
|
|
{
|
|
QDomElement ce = children.item(i).toElement();
|
|
|
|
PropertyPtr pred = model.createProperty(ce.namespaceURI() + ce.localName());
|
|
|
|
if (ce.hasAttribute(resource)) // referenced Resource via (rdf:)resource
|
|
{
|
|
NodePtr obj = model.createResource(ce.attribute(resource));
|
|
|
|
if (isSeq && *pred == *(RDFVocab::self()->li()))
|
|
{
|
|
SequencePtr tseq = boost::static_pointer_cast<Sequence>(res);
|
|
tseq->append(obj);
|
|
}
|
|
else
|
|
model.addStatement(res, pred, obj);
|
|
}
|
|
else if (!ce.text().isEmpty() && ce.lastChildElement().isNull()) // Literal
|
|
{
|
|
NodePtr obj = model.createLiteral(ce.text());
|
|
|
|
if (isSeq && *pred == *(RDFVocab::self()->li()))
|
|
{
|
|
SequencePtr tseq = boost::static_pointer_cast<Sequence>(res);
|
|
tseq->append(obj);
|
|
}
|
|
else
|
|
model.addStatement(res, pred, obj);
|
|
}
|
|
else // embedded description
|
|
{
|
|
QDomElement re = ce.lastChildElement();
|
|
|
|
QString uri = re.attribute(about);
|
|
|
|
// read recursively
|
|
NodePtr obj = readResource(model, re);
|
|
|
|
if (isSeq && *pred == *(RDFVocab::self()->li()))
|
|
{
|
|
SequencePtr tseq = boost::static_pointer_cast<Sequence>(res);
|
|
tseq->append(obj);
|
|
}
|
|
else
|
|
model.addStatement(res, pred, obj);
|
|
|
|
}
|
|
|
|
//TODO: bag, reification (nice to have, but not important for basic RSS 1.0)
|
|
}
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|
|
} // namespace RDF
|
|
} // namespace Syndication
|