-rw-r--r-- | kabc/vcardformatimpl.cpp | 11 | ||||
-rw-r--r-- | kabc/vcardformatimpl.h | 5 |
2 files changed, 16 insertions, 0 deletions
diff --git a/kabc/vcardformatimpl.cpp b/kabc/vcardformatimpl.cpp index 1bf2cde..ede5773 100644 --- a/kabc/vcardformatimpl.cpp +++ b/kabc/vcardformatimpl.cpp @@ -32,24 +32,31 @@ $Id$ #include <kmdcodec.h> #include <kstandarddirs.h> #include <ktempfile.h> #include <VCard.h> #include "addressbook.h" #include "vcardformatimpl.h" using namespace KABC; using namespace VCARD; +int VCardFormatImpl::debug = -1; + +VCardFormatImpl::VCardFormatImpl() +{ + debug = (getenv("KABC_DEBUG") != 0); +} + bool VCardFormatImpl::load( Addressee &addressee, QFile *file ) { kdDebug(5700) << "VCardFormat::load()" << endl; QByteArray fdata = file->readAll(); QCString data(fdata.data(), fdata.size()+1); VCardEntity e( data ); VCardListIterator it( e.cardList() ); if ( it.current() ) { @@ -71,24 +78,28 @@ bool VCardFormatImpl::loadAll( AddressBook *addressBook, Resource *resource, QFi VCardEntity e( data ); VCardListIterator it( e.cardList() ); for (; it.current(); ++it) { //US VCard v(*it.current()); Addressee addressee; //US loadAddressee( addressee, v ); loadAddressee( addressee, it.current() ); addressee.setResource( resource ); addressBook->insertAddressee( addressee ); + if (debug == true) + { + printf("address %s loaded successfully\n", addressee.formattedName().latin1()); + } } return true; } void VCardFormatImpl::save( const Addressee &addressee, QFile *file ) { VCardEntity vcards; VCardList vcardlist; vcardlist.setAutoDelete( true ); VCard *v = new VCard; diff --git a/kabc/vcardformatimpl.h b/kabc/vcardformatimpl.h index fa3d55f..4821047 100644 --- a/kabc/vcardformatimpl.h +++ b/kabc/vcardformatimpl.h @@ -40,24 +40,26 @@ namespace KABC { class AddressBook; /** @short Implementation of vCard backend for address book. This class implements reading and writing of address book information using the vCard format. It requires the vCard lib from kdepim. */ class VCardFormatImpl { public: + VCardFormatImpl(); + bool load( Addressee &, QFile *file ); bool loadAll( AddressBook *, Resource *, QFile *file ); void save( const Addressee &, QFile *file ); void saveAll( AddressBook *, Resource *, QFile *file ); bool readFromString( const QString &vcard, Addressee &addr ); bool writeToString( const Addressee &addressee, QString &vcard ); protected: bool loadAddressee( Addressee &, VCARD::VCard * ); void saveAddressee( const Addressee &, VCARD::VCard *, bool intern ); @@ -97,16 +99,19 @@ class VCardFormatImpl void addKeyValue( VCARD::VCard *, const Key & ); Key readKeyValue( VCARD::ContentLine * ); void addPictureValue( VCARD::VCard *, VCARD::EntityType, const Picture &, const Addressee &, bool ); Picture readPictureValue( VCARD::ContentLine *, VCARD::EntityType, const Addressee &addr ); void addSoundValue( VCARD::VCard *, const Sound &, const Addressee &, bool ); Sound readSoundValue( VCARD::ContentLine *, const Addressee &addr ); void addAgentValue( VCARD::VCard *, const Agent & ); Agent readAgentValue( VCARD::ContentLine * ); + + private: + static int debug; }; } #endif |