From 835411009ea43a8182b16b78c03b11616f989f50 Mon Sep 17 00:00:00 2001 From: zautrix Date: Wed, 27 Oct 2004 10:27:34 +0000 Subject: added kde AB sync cl prog --- (limited to 'kde2file/abdump') diff --git a/kde2file/abdump/abdump.pro b/kde2file/abdump/abdump.pro new file mode 100644 index 0000000..b6b6374 --- a/dev/null +++ b/kde2file/abdump/abdump.pro @@ -0,0 +1,13 @@ + +TEMPLATE = app +CONFIG += qt +include( ../../variables.pri ) +DESTDIR= ../../bin +TARGET = kdeabdump +INCLUDEPATH += . $(KDEDIR)/include $(KDE_DEV_DIR)/libkdepim +#LIBS += $(KDEDIR)/lib/libkcal.so +LIBS += $(KDEDIR)/lib/libkabc.so +LIBS += $(KDEDIR)/lib/libkdepim.so +HEADERS += + +SOURCES += main.cpp diff --git a/kde2file/abdump/main.cpp b/kde2file/abdump/main.cpp new file mode 100644 index 0000000..d452ee9 --- a/dev/null +++ b/kde2file/abdump/main.cpp @@ -0,0 +1,193 @@ +/******************************************************************************* + * main.cpp * + * * + * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program 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 General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the Free Software * + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + * * + * As a special exception, permission is given to link this program * + * with any edition of Qt, and distribute the resulting executable, * + * without including the source code for Qt in the source distribution. * + * * + ******************************************************************************/ + +#include +#include +#include +#include +#include +#include +#include + +#include +#include +#include +#include + +#include +#include +#include +#include + +#include +#include + +using namespace std; + +static const char progName[] = "kdecalendar"; +static const char progDisplay[] = "KDE_Addressbook"; +static const char progVersion[] = "33.1/3"; +static const char progDesc[] = "A command line interface to KDE addressbooks"; + + +static KCmdLineOptions options[] = + { + { "dump", + I18N_NOOP( "Dumps addressbook" ), 0 }, + { "read", + I18N_NOOP( "Reads addressbook" ), 0 }, + KCmdLineLastOption + }; + +int main( int argc, char *argv[] ) +{ + KAboutData aboutData( + progName, // internal program name + I18N_NOOP( progDisplay ), // displayable program name. + progVersion, // version string + I18N_NOOP( progDesc ), // short porgram description + KAboutData::License_GPL, // license type + "(c) 2004, Lutz Rogowski", // copyright statement + 0, // any free form text + "", // program home page address + "bugs.kde.org" // bug report email address + ); + + + // KCmdLineArgs::init() final 'true' argument indicates no commandline options + // for QApplication/KApplication (no KDE or Qt options) + KCmdLineArgs::init( argc, argv, &aboutData, true ); + KCmdLineArgs::addCmdLineOptions( options ); // Add our own options. + + KInstance ins ( progName ); + + KCmdLineArgs *args = KCmdLineArgs::parsedArgs(); + + bool read = false; + if ( args->isSet( "read" ) ) { + read = true; + qDebug("read "); + } + QString fileName = QDir::homeDirPath ()+"/.kdeaddressbookdump.vcf"; + + KABC::StdAddressBook* standardAddressBook = KABC::StdAddressBook::self(); + standardAddressBook->setAutomaticSave( false ); + qDebug("************************************* "); + qDebug("***************kdeABdump************* "); + qDebug("************************************* "); + if ( !read ) { + KABC::AddressBook::Iterator it; + KABC::VCardConverter converter; + QString datastream; + for( it = standardAddressBook->begin(); it != standardAddressBook->end(); ++it ) { + if ( (*it).isEmpty() || ! (*it).resource() ) + continue; + if ( (*it).resource()->readOnly() ) + continue; + KABC::Addressee a = ( *it ); + QString vcard = converter.createVCard( a ); + vcard += QString("\r\n"); + datastream += vcard; + } + QFile outFile(fileName); + if ( outFile.open(IO_WriteOnly) ) { + QTextStream t( &outFile ); // use a text stream + t.setEncoding( QTextStream::UnicodeUTF8 ); + t <findByUid( (*it).uid() ); + if ( ! std.isEmpty() ) + (*it).setResource(std.resource()); + standardAddressBook->insertAddressee( (*it) ); + ++changedC; + } else { + //maybe added? + KABC::Addressee std = standardAddressBook->findByUid( (*it).uid() ); + if ( std.isEmpty() ) { + standardAddressBook->insertAddressee( (*it) ); + ++added; + } + } + } + KABC::AddressBook::Iterator itA = standardAddressBook->begin(); + KABC::AddressBook::Iterator it2 ; + while ( itA != standardAddressBook->end() ) { + bool found = false; + KABC::Addressee::List::Iterator itL; + for ( itL = list.begin();itL != list.end();++itL) { + if ( (*itL).uid() == (*itA).uid() ) { + found = true; + break; + } + } + if ( !found ) { + it2 = itA; + ++itA; + standardAddressBook->removeAddressee( it2 ); + ++deleted; + } else { + ++itA; + } + } + + //standardAddressBook->saveAll(); + standardAddressBook->setAutomaticSave( true ); + qDebug("************************************* "); + qDebug("*************kdeABdump*************** "); + qDebug("************************************* "); + qDebug("Addressbook entries\nchanged %d\ndeleted %d\nadded %d\nfrom file %s", changedC,deleted, added, fileName.latin1()); + } else + qDebug("error open file "); + } + + KABC::StdAddressBook::close(); + + qDebug("ente "); + return 0; +} -- cgit v0.9.0.2