• Skip to content
  • Skip to link menu
KDE 4.2 API Reference
  • KDE API Reference
  • kdepim
  • Sitemap
  • Contact Us
 

akonadi/clients

fetchcommand.cpp

Go to the documentation of this file.
00001 /*
00002     Copyright (c) 2006 Volker Krause <volker.krause@rwth-aachen.de>
00003 
00004     This library is free software; you can redistribute it and/or modify it
00005     under the terms of the GNU Library General Public License as published by
00006     the Free Software Foundation; either version 2 of the License, or (at your
00007     option) any later version.
00008 
00009     This library is distributed in the hope that it will be useful, but WITHOUT
00010     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
00011     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Library General Public
00012     License for more details.
00013 
00014     You should have received a copy of the GNU Library General Public License
00015     along with this library; see the file COPYING.LIB.  If not, write to the
00016     Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
00017     02110-1301, USA.
00018 */
00019 
00020 #include "fetchcommand.h"
00021 #include "out.h"
00022 
00023 #include <akonadi/itemfetchjob.h>
00024 #include <akonadi/itemfetchscope.h>
00025 
00026 using namespace Akonadi;
00027 
00028 FetchCommand::FetchCommand(const QString & uid, const QByteArray & part ) :
00029     mUid( uid ),  mPart( part )
00030 {
00031   if ( mPart.isEmpty() )
00032     mPart = Item::FullPayload;
00033 }
00034 
00035 void FetchCommand::exec()
00036 {
00037   const Item item( mUid.toLongLong() );
00038   ItemFetchJob* fetchJob = new ItemFetchJob( item );
00039   fetchJob->fetchScope().fetchPayloadPart( mPart );
00040   if ( !fetchJob->exec() ) {
00041     err() << "Error fetching item '" << mUid << "': "
00042         << fetchJob->errorString()
00043         << endl;
00044   } else {
00045     foreach( const Item &item, fetchJob->items() ) {
00046       QByteArray data = item.payloadData();
00047       out() << data << endl;
00048     }
00049   }
00050 }

akonadi/clients

Skip menu "akonadi/clients"
  • Main Page
  • Namespace List
  • Class Hierarchy
  • Alphabetical List
  • Class List
  • File List
  • Class Members

kdepim

Skip menu "kdepim"
  • akonadi
  •   clients
  •   kabc
  •   kcal
  •   kcm
  • akregator
  • console
  •   kabcclient
  •   konsolekalendar
  • kaddressbook
  • kalarm
  •   lib
  • kdgantt
  • kdgantt1
  • kjots
  • kleopatra
  • kmail
  • kmobiletools
  • knode
  • knotes
  • kontact
  • kontactinterfaces
  • korganizer
  •   korgac
  • kpilot
  • ktimetracker
  •   doc
  • libkdepim
  • libkholidays
  • libkleo
  • libkpgp
  • maildir
Generated for kdepim by doxygen 1.5.4
This website is maintained by Adriaan de Groot and Allen Winter.
KDE® and the K Desktop Environment® logo are registered trademarks of KDE e.V. | Legal