mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-24 19:02:53 +00:00
149 lines
2.7 KiB
C++
149 lines
2.7 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 "literal.h"
|
||
|
#include "nodevisitor.h"
|
||
|
|
||
|
#include <QtCore/QString>
|
||
|
|
||
|
namespace Syndication {
|
||
|
namespace RDF {
|
||
|
|
||
|
class Literal::LiteralPrivate
|
||
|
{
|
||
|
public:
|
||
|
|
||
|
QString text;
|
||
|
unsigned int id;
|
||
|
|
||
|
bool operator==(const LiteralPrivate& other) const
|
||
|
{
|
||
|
return text == other.text;
|
||
|
}
|
||
|
};
|
||
|
|
||
|
Literal::Literal() : d()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
Literal::Literal(const Literal& other) : Node(other)
|
||
|
{
|
||
|
d = other.d;
|
||
|
}
|
||
|
|
||
|
Literal* Literal::clone() const
|
||
|
{
|
||
|
return new Literal(*this);
|
||
|
}
|
||
|
|
||
|
void Literal::accept(NodeVisitor* visitor, NodePtr ptr)
|
||
|
{
|
||
|
LiteralPtr lptr = boost::static_pointer_cast<Syndication::RDF::Literal>(ptr);
|
||
|
if (!visitor->visitLiteral(lptr))
|
||
|
Node::accept(visitor, ptr);
|
||
|
}
|
||
|
|
||
|
Literal::Literal(const QString& text) : d(new LiteralPrivate)
|
||
|
{
|
||
|
d->text = text;
|
||
|
d->id = idCounter++;
|
||
|
}
|
||
|
|
||
|
Literal::~Literal()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
Literal& Literal::operator=(const Literal& other)
|
||
|
{
|
||
|
d = other.d;
|
||
|
return *this;
|
||
|
}
|
||
|
|
||
|
bool Literal::operator==(const Node& other) const
|
||
|
{
|
||
|
const Literal* o2 = dynamic_cast<const Literal*>(&other);
|
||
|
if (!o2)
|
||
|
return false;
|
||
|
|
||
|
if (!d || !o2->d)
|
||
|
return d == o2->d;
|
||
|
|
||
|
return *d == *(o2->d);
|
||
|
}
|
||
|
|
||
|
bool Literal::isNull() const
|
||
|
{
|
||
|
return !d;
|
||
|
}
|
||
|
|
||
|
unsigned int Literal::id() const
|
||
|
{
|
||
|
return d ? d->id : 0;
|
||
|
}
|
||
|
|
||
|
bool Literal::isResource() const
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
bool Literal::isProperty() const
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
bool Literal::isLiteral() const
|
||
|
{
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
bool Literal::isAnon() const
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
bool Literal::isSequence() const
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
QString Literal::text() const
|
||
|
{
|
||
|
return d ? d->text : QString();
|
||
|
}
|
||
|
|
||
|
Literal::operator QString() const
|
||
|
{
|
||
|
return d ? d->text : QString();
|
||
|
}
|
||
|
|
||
|
void Literal::setModel(const Model& /*model*/)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
void Literal::setId(unsigned int id)
|
||
|
{
|
||
|
d->id = id;
|
||
|
}
|
||
|
|
||
|
} // namespace RDF
|
||
|
} // namespace Syndication
|