kde-playground/kdepimlibs/ktnef/ktnefpropertyset.cpp
2015-04-14 21:49:29 +00:00

194 lines
5.3 KiB
C++

/*
ktnefpropertyset.cpp
Copyright (C) 2002 Michael Goffioul <kdeprint@swing.be>
This file is part of KTNEF, the KDE TNEF support library/program.
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.
*/
/**
* @file
* This file is part of the API for handling TNEF data and
* defines the KTNEFPropertySet class.
*
* @author Michael Goffioul
*/
#include "ktnefpropertyset.h"
#include "ktnefproperty.h"
#include <kdebug.h>
#include <QtCore/QList>
using namespace KTnef;
class KTNEFPropertySet::Private
{
public:
QMap<int,KTNEFProperty*> properties_; // used to store MAPI properties
QMap<int,KTNEFProperty*> attributes_; // used to store TNEF attributes
};
KTNEFPropertySet::KTNEFPropertySet()
: d( new Private )
{
}
KTNEFPropertySet::~KTNEFPropertySet()
{
clear( true );
delete d;
}
void KTNEFPropertySet::addProperty( int key, int type, const QVariant &value,
const QVariant &name, bool overwrite )
{
QMap<int,KTNEFProperty*>::ConstIterator it = d->properties_.constFind( key );
if ( it != d->properties_.constEnd() ) {
if ( overwrite ) {
delete ( *it );
} else {
return;
}
}
KTNEFProperty *p = new KTNEFProperty( key, type, value, name );
d->properties_[ p->key() ] = p;
}
QString KTNEFPropertySet::findProp( int key, const QString &fallback,
bool upper ) const
{
QMap<int,KTNEFProperty*>::Iterator it = d->properties_.find( key );
if ( d->properties_.end() != it ) {
return upper ?
KTNEFProperty::formatValue( (*it)->value(), false ).toUpper() :
KTNEFProperty::formatValue( (*it)->value(), false );
} else {
return fallback;
}
}
QString KTNEFPropertySet::findNamedProp( const QString &name,
const QString &fallback,
bool upper ) const
{
for ( QMap<int,KTNEFProperty*>::Iterator it = d->properties_.begin();
it != d->properties_.end();
++it ) {
if ( (*it)->name().isValid() ) {
QString s;
if ( (*it)->name().type() == QVariant::String ) {
s = (*it)->name().toString();
} else {
s = QString().sprintf( "0X%04X", (*it)->name().toUInt() );
}
if ( s.toUpper() == name.toUpper() ) {
QVariant value = ( *it )->value();
if ( value.type() == QVariant::List ) {
QList<QVariant> l = value.toList();
s = "";
for ( QList<QVariant>::ConstIterator lit = l.constBegin();
lit != l.constEnd();
++lit ) {
if ( !s.isEmpty() ) {
s += ',';
}
s += KTNEFProperty::formatValue( *lit, false );
}
} else {
s = KTNEFProperty::formatValue( value, false );
}
return upper ? s.toUpper() : s;
}
}
}
return fallback;
}
QMap<int,KTNEFProperty*>& KTNEFPropertySet::properties()
{
return d->properties_;
}
const QMap<int,KTNEFProperty*>& KTNEFPropertySet::properties() const
{
return d->properties_;
}
QVariant KTNEFPropertySet::property( int key ) const
{
QMap<int,KTNEFProperty*>::ConstIterator it = d->properties_.constFind( key );
if ( it == d->properties_.constEnd() ) {
return QVariant();
} else {
return ( *it )->value();
}
}
void KTNEFPropertySet::clear( bool deleteAll )
{
if ( deleteAll ) {
for ( QMap<int,KTNEFProperty*>::ConstIterator it=d->properties_.constBegin();
it != d->properties_.constEnd();
++it )
delete ( *it );
for ( QMap<int,KTNEFProperty*>::ConstIterator it=d->attributes_.constBegin();
it != d->attributes_.constEnd();
++it )
delete ( *it );
}
d->properties_.clear();
d->attributes_.clear();
}
void KTNEFPropertySet::addAttribute( int key, int type, const QVariant &value,
bool overwrite )
{
QMap<int,KTNEFProperty*>::ConstIterator it = d->attributes_.constFind( key );
if ( it != d->attributes_.constEnd() ) {
if ( overwrite ) {
delete ( *it );
} else {
return;
}
}
KTNEFProperty *p = new KTNEFProperty( key, type, value, QVariant() );
d->attributes_[ p->key() ] = p;
}
QMap<int,KTNEFProperty*>& KTNEFPropertySet::attributes()
{
return d->attributes_;
}
const QMap<int,KTNEFProperty*>& KTNEFPropertySet::attributes() const
{
return d->attributes_;
}
QVariant KTNEFPropertySet::attribute( int key ) const
{
QMap<int,KTNEFProperty*>::ConstIterator it = d->attributes_.constFind( key );
if ( it == d->attributes_.constEnd() ) {
return QVariant();
} else {
return ( *it )->value();
}
}