kde-playground/kdepim-runtime/resources/openxchange/oxa/oxutils.cpp
2015-04-14 22:08:21 +00:00

138 lines
3.1 KiB
C++

/*
This file is part of oxaccess.
Copyright (c) 2009 Tobias Koenig <tokoe@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 "oxutils.h"
#include <kdatetime.h>
using namespace OXA;
QString OXUtils::writeBoolean( bool value )
{
return (value ? QLatin1String( "true" ) : QLatin1String( "false" ));
}
QString OXUtils::writeNumber( qlonglong value )
{
return QString::number( value );
}
QString OXUtils::writeString( const QString &value )
{
QStringList lines = value.split( '\n' );
for ( int i = 0; i < lines.count(); ++i )
{
lines[i].replace( '\\', "\\\\" );
lines[i].replace( '"', "\\\"" );
}
return lines.join( "\n" );
}
QString OXUtils::writeName( const QString &value )
{
//TODO: assert on invalid names
return value;
}
QString OXUtils::writeDateTime( const QDateTime &value )
{
QString result;
//workaround, as QDateTime does not support negative time_t values
QDateTime Time_t_S( QDate( 1970, 1, 1 ), QTime( 0, 0, 0 ), Qt::UTC);
if ( value < Time_t_S ) {
result = QString::number( Time_t_S.secsTo( value ) );
} else {
result = QString::number( value.toUTC().toTime_t() );
}
return QString( result + QLatin1String( "000" ) );
}
QString OXUtils::writeDate( const QDate &value )
{
return writeDateTime( QDateTime( value, QTime( 0, 0, 0 ), Qt::UTC ) );
}
bool OXUtils::readBoolean( const QString &text )
{
if ( text == QLatin1String( "true" ) )
return true;
else if ( text == QLatin1String( "false" ) )
return false;
else {
Q_ASSERT( false );
return false;
}
}
qlonglong OXUtils::readNumber( const QString &text )
{
return text.toLongLong();
}
QString OXUtils::readString( const QString &text )
{
QString value( text );
value.replace( "\\\"", "\"" );
value.replace( "\\\\", "\\" );
return value;
}
QString OXUtils::readName( const QString &text )
{
return text;
}
QDateTime OXUtils::readDateTime( const QString &text )
{
// remove the trailing '000', they exceed the integer dimension
const int ticks = text.mid( 0, text.length() - 3 ).toLongLong();
//workaround, as QDateTime does not support negative time_t values
QDateTime value;
if ( ticks < 0 ) {
value.setTime_t( 0 );
value = value.addSecs( ticks );
} else {
value.setTime_t( ticks );
}
return value;
}
QDate OXUtils::readDate( const QString &text )
{
return readDateTime( text ).date();
}