mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-24 10:52:52 +00:00
116 lines
3.5 KiB
C++
116 lines
3.5 KiB
C++
/*
|
|
This file is part of the kcal library.
|
|
|
|
Copyright (c) 2003 Cornelius Schumacher <schumacher@kde.org>
|
|
Copyright (C) 2005 Reinhold Kainhofer <reinhold@kainhofe.com>
|
|
|
|
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 "kcal/calendarlocal.h"
|
|
|
|
#include <kaboutdata.h>
|
|
#include <kcomponentdata.h>
|
|
#include <kdebug.h>
|
|
#include <kcmdlineargs.h>
|
|
|
|
#include <QtCore/QFile>
|
|
#include <QtCore/QTextStream>
|
|
|
|
|
|
|
|
using namespace KCal;
|
|
|
|
|
|
|
|
int main( int argc, char **argv )
|
|
{
|
|
KAboutData aboutData( "testrecurson", 0, ki18n("Tests all dates from 2002 to 2010 to test if the event recurs on each individual date. This is meant to test the Recurrence::recursOn method for errors."), "0.1" );
|
|
KCmdLineArgs::init( argc, argv, &aboutData );
|
|
|
|
KCmdLineOptions options;
|
|
options.add("verbose", ki18n("Verbose output"));
|
|
options.add("+input", ki18n("Name of input file"));
|
|
options.add("[+output]", ki18n("optional name of output file for the recurrence dates"));
|
|
KCmdLineArgs::addCmdLineOptions( options );
|
|
|
|
KComponentData componentData( &aboutData );
|
|
//QCoreApplication app( KCmdLineArgs::qtArgc(), KCmdLineArgs::qtArgv() );
|
|
|
|
KCmdLineArgs *args = KCmdLineArgs::parsedArgs();
|
|
|
|
if ( args->count() < 1 ) {
|
|
args->usage( "Wrong number of arguments." );
|
|
}
|
|
|
|
QString input = args->arg( 0 );
|
|
// kDebug() << "Input file:" << input;
|
|
|
|
QTextStream *outstream;
|
|
outstream = 0;
|
|
QString fn("");
|
|
if ( args->count() > 1 ) {
|
|
fn = args->arg( 1 );
|
|
// kDebug() << "We have a file name given:" << fn;
|
|
}
|
|
QFile outfile( fn );
|
|
if ( !fn.isEmpty() && outfile.open( QIODevice::WriteOnly ) ) {
|
|
// kDebug() << "Opened output file!!!";
|
|
outstream = new QTextStream( &outfile );
|
|
}
|
|
|
|
CalendarLocal cal( KDateTime::UTC );
|
|
|
|
if ( !cal.load( input ) ) return 1;
|
|
QString tz = cal.nonKDECustomProperty( "X-LibKCal-Testsuite-OutTZ" );
|
|
if ( !tz.isEmpty() ) {
|
|
cal.setViewTimeZoneId( tz );
|
|
}
|
|
|
|
Incidence::List inc = cal.incidences();
|
|
|
|
for ( Incidence::List::Iterator it = inc.begin(); it != inc.end(); ++it ) {
|
|
Incidence *incidence = *it;
|
|
// kDebug() << "*+*+*+*+*+*+*+*+*+*";
|
|
// kDebug() << " ->" << incidence->summary() << "<-";
|
|
|
|
// incidence->recurrence()->dump();
|
|
|
|
QDate dt( 1996, 7, 1 );
|
|
if ( outstream ) {
|
|
// Output to file for testing purposes
|
|
int nr = 0;
|
|
while ( dt.year() <= 2020 && nr<=500 ) {
|
|
if ( incidence->recursOn( dt, cal.viewTimeSpec() ) ) {
|
|
(*outstream) << dt.toString( Qt::ISODate ) << endl;
|
|
nr++;
|
|
}
|
|
dt = dt.addDays( 1 );
|
|
}
|
|
} else {
|
|
dt = QDate( 2005, 1, 1 );
|
|
while ( dt.year() < 2007 ) {
|
|
if ( incidence->recursOn( dt, cal.viewTimeSpec() ) )
|
|
kDebug() << dt.toString( Qt::ISODate );
|
|
dt = dt.addDays( 1 );
|
|
}
|
|
}
|
|
}
|
|
|
|
delete outstream;
|
|
outfile.close();
|
|
return 0;
|
|
}
|