You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

482 lines
15 KiB

// -*- mode: C++; c-file-style: "gnu" -*-
#ifndef _KMKERNEL_H
#define _KMKERNEL_H
#include <QByteArray>
#include <QList>
#include <QObject>
#include <QString>
#include <QDBusObjectPath>
#include <kconfig.h>
#include <kurl.h>
#include "kmail_export.h"
#include "globalsettings.h"
#include <kcomponentdata.h>
#include <akonadi/kmime/specialmailcollections.h>
#include <akonadi/servermanager.h>
#define kmkernel KMKernel::self()
#define kmconfig KMKernel::config()
namespace Akonadi {
class Collection;
class ChangeRecorder;
class EntityTreeModel;
class EntityMimeTypeFilterModel;
}
namespace KIO {
class Job;
}
namespace KPIM {
class ProgressItem;
}
class KStatusNotifierItem;
class MessageSender;
class KJob;
/** The KMail namespace contains classes used for KMail.
* This is to keep them out of the way from all the other
* un-namespaced classes in libs and the rest of PIM.
*/
namespace KMail {
class MailServiceImpl;
class UndoStack;
class JobScheduler;
}
namespace KPIM { class ProgressDialog; }
using KMail::MailServiceImpl;
using KMail::UndoStack;
using KMail::JobScheduler;
using KPIM::ProgressDialog;
class KMFilterMgr;
class KMFilterActionDict;
class AkonadiSender;
class FolderCollection;
namespace KPIMIdentities {
class Identity;
class IdentityManager;
}
class KMKernel;
class KComponentData;
class QTimer;
class KMMainWin;
class KMainWindow;
class KMMainWidget;
class ConfigureDialog;
class FolderCollectionMonitor;
class KMSystemTray;
/**
* @short Central point of coordination in KMail
*
* The KMKernel class represents the core of KMail, where the different parts
* come together and are coordinated. It is currently also the class which exports
* KMail's main D-BUS interfaces.
*
* The kernel is responsible for creating various
* (singleton) objects such as the identity manager and the message sender.
*
* The kernel also creates an Akonadi Session, Monitor and EntityTreeModel. These
* are shared so that other objects in KMail have access to it. Having only one EntityTreeModel
* instead of many reduces the overall communication with the Akonadi server.
*
* The kernel also manages some stuff that should be factored out:
* - default collection handling, like inboxCollectionFolder()
* - job handling, like jobScheduler()
* - handling of some config settings, like wrapCol()
* - various other stuff
*/
class KMAIL_EXPORT KMKernel : public QObject
{
Q_OBJECT
Q_CLASSINFO("D-Bus Interface", "org.kde.kmail.kmail")
public:
explicit KMKernel (QObject *parent=0, const char *name=0);
~KMKernel ();
/**
* Start of D-Bus callable stuff. The D-Bus methods need to be public slots,
* otherwise they can't be accessed.
*/
public Q_SLOTS:
Q_SCRIPTABLE void checkMail();
Q_SCRIPTABLE void openReader() { openReader( false ); }
/**
* Pauses all background jobs and does not
* allow new background jobs to be started.
*/
Q_SCRIPTABLE void pauseBackgroundJobs();
/**
* Resumes all background jobs and allows
* new jobs to be started.
*/
Q_SCRIPTABLE void resumeBackgroundJobs();
/**
* Stops all network related jobs and enter offline mode
* New network jobs cannot be started.
*/
Q_SCRIPTABLE void stopNetworkJobs();
/**
* Resumes all network related jobs and enter online mode
* New network jobs can be started.
*/
Q_SCRIPTABLE void resumeNetworkJobs();
Q_SCRIPTABLE QStringList accounts();
/**
* Checks the account with the specified name for new mail.
* If the account name is empty, all accounts not excluded from manual
* mail check will be checked.
*/
Q_SCRIPTABLE void checkAccount( const QString & account );
Q_SCRIPTABLE void selectFolder( const QString & folder );
Q_SCRIPTABLE bool canQueryClose();
Q_SCRIPTABLE bool handleCommandLine( bool noArgsOpensReader );
/**
* returns id of composer if more are opened
*/
Q_SCRIPTABLE int openComposer( const QString & to,
const QString & cc,
const QString & bcc,
const QString & subject,
const QString & body,
bool hidden,
const QString & messageFile,
const QStringList & attachmentPaths,
const QStringList & customHeaders );
Q_SCRIPTABLE int openComposer( const QString & to,
const QString & cc,
const QString & bcc,
const QString & subject,
const QString & body,
bool hidden,
const QString & attachName,
const QByteArray & attachCte,
const QByteArray &attachData,
const QByteArray & attachType,
const QByteArray & attachSubType,
const QByteArray & attachParamAttr,
const QString & attachParamValue,
const QByteArray & attachContDisp,
const QByteArray & attachCharset,
unsigned int identity );
Q_SCRIPTABLE QDBusObjectPath openComposer( const QString & to,
const QString & cc,
const QString & bcc,
const QString & subject,
const QString & body,
bool hidden );
/**
* D-Bus call used by the Kontact plugin to create a new message.
*/
Q_SCRIPTABLE QDBusObjectPath newMessage( const QString & to,
const QString & cc,
const QString & bcc,
bool hidden,
bool useFolderId,
const QString & messageFile,
const QString & attachURL );
Q_SCRIPTABLE bool showMail( quint32 serialNumber, const QString & messageId );
Q_SCRIPTABLE int viewMessage( const KUrl & messageFile );
/**
* End of D-Bus callable stuff
*/
public:
void checkMailOnStartup();
/** A static helper function that asks the user
* if they want to go online.
* @return true if the user wants to go online
* @return false if the user wants to stay offline
*/
static bool askToGoOnline();
/** Checks if the current network state is online or offline
* @return true if the network state is offline
* @return false if the network state is online
*/
static bool isOffline();
/** normal control stuff */
static KMKernel *self();
static KSharedConfig::Ptr config();
void init();
void setupDBus();
void readConfig();
Akonadi::ChangeRecorder *monitor() const;
/**
* Returns the main model, which contains all folders and the items of recently opened folders.
*/
Akonadi::EntityTreeModel *entityTreeModel() const;
/**
* Returns a model of all folders in KMail. This is basically the same as entityTreeModel(),
* but with items filtered out, the model contains only collections.
*/
Akonadi::EntityMimeTypeFilterModel *collectionModel() const;
void recoverDeadLetters();
void closeAllKMailWindows();
void cleanup(void);
void quit();
bool doSessionManagement();
bool firstInstance() const { return the_firstInstance; }
void setFirstInstance(bool value) { the_firstInstance = value; }
void action( bool mailto, bool check, const QString &to, const QString &cc,
const QString &bcc, const QString &subj, const QString &body,
const KUrl &messageFile, const KUrl::List &attach,
const QStringList &customHeaders );
bool folderIsDraftOrOutbox(const Akonadi::Collection &);
bool folderIsDrafts(const Akonadi::Collection&);
bool folderIsTemplates(const Akonadi::Collection &);
bool folderIsTrash( const Akonadi::Collection & );
Akonadi::Collection trashCollectionFromResource( const Akonadi::Collection & col );
/**
* Returns true if the folder is one of the sent-mail folders.
*/
bool folderIsSentMailFolder( const Akonadi::Collection& );
bool isImapFolder( const Akonadi::Collection& );
const KComponentData &xmlGuiInstance() { return mXmlGuiInstance; }
void setXmlGuiInstance( const KComponentData &instance ) { mXmlGuiInstance = instance; }
Akonadi::Collection inboxCollectionFolder();
Akonadi::Collection outboxCollectionFolder();
Akonadi::Collection sentCollectionFolder();
Akonadi::Collection trashCollectionFolder();
Akonadi::Collection draftsCollectionFolder();
Akonadi::Collection templatesCollectionFolder();
bool isSystemFolderCollection( const Akonadi::Collection &col);
/** Returns true if this folder is the inbox on the local disk */
bool isMainFolderCollection( const Akonadi::Collection &col );
UndoStack *undoStack() { return the_undoStack; }
KMFilterMgr *filterMgr() { return the_filterMgr; }
KMFilterMgr *popFilterMgr() { return the_popFilterMgr; }
KMFilterActionDict *filterActionDict() { return the_filterActionDict; }
MessageSender *msgSender();
/** return the pointer to the identity manager */
KPIMIdentities::IdentityManager *identityManager();
JobScheduler* jobScheduler() { return mJobScheduler; }
/** Expire all folders, used for the gui action */
void expireAllFoldersNow();
int wrapCol() const { return mWrapCol;}
bool firstStart() const { return the_firstStart; }
/** Mark first start as done */
void firstStartDone() { the_firstStart = false; }
QString previousVersion() const { return the_previousVersion; }
bool startingUp() const { return the_startingUp; }
void setStartingUp (bool flag) { the_startingUp = flag; }
bool shuttingDown() const { return the_shuttingDown; }
void setShuttingDown(bool flag) { the_shuttingDown = flag; }
/** Returns the full path of the user's local data directory for KMail.
The path ends with '/'.
*/
static QString localDataPath();
/** Returns true if we have a system tray applet. This is needed in order
* to know whether the application should be allowed to exit in case the
* last visible composer or separate message window is closed.
*/
bool haveSystemTrayApplet();
bool registerSystemTrayApplet( KMSystemTray* );
bool unregisterSystemTrayApplet( KMSystemTray* );
/// Reimplemented from KMailIface
void emergencyExit( const QString& reason );
QTextCodec *networkCodec() { return netCodec; }
/** returns a reference to the first Mainwin or a temporary Mainwin */
KMainWindow* mainWin();
/** Get first mainwidget */
KMMainWidget *getKMMainWidget();
/**
* Returns a list of all currently loaded folders. Since folders are loaded async, this
* is empty at startup.
*/
Akonadi::Collection::List allFolders() const;
void selectCollectionFromId( const Akonadi::Collection::Id id);
/**
* Returns the collection associated with the given @p id, or an invalid collection if not found.
* The EntityTreeModel of the kernel is searched for the collection. Since the ETM is loaded
* async, this method will not find the collection right after startup, when the ETM is not yet
* fully loaded.
*/
Akonadi::Collection collectionFromId( const Akonadi::Collection::Id& id ) const;
/**
* Converts @p idString into a number and returns the collection for it.
* @see collectionFromId( qint64 )
*/
Akonadi::Collection collectionFromId( const QString &idString ) const;
/**
* @deprecated this uses exec(), don't use. Use collectionFromId() but be aware of the
* restrictions.
*/
Akonadi::Collection KDE_DEPRECATED findFolderCollectionById( const QString& id );
void raise();
void findCreateDefaultCollection( Akonadi::SpecialMailCollections::Type );
void stopAgentInstance();
void updateSystemTray();
public slots:
/** Custom templates have changed, so all windows using them need
to regenerate their menus */
void updatedTemplates();
/// Save contents of all open composer widnows to ~/dead.letter
void dumpDeadLetters();
/** Call this slot instead of directly KConfig::sync() to
minimize the overall config writes. Calling this slot will
schedule a sync of the application config file using a timer, so
that many consecutive calls can be condensed into a single
sync, which is more efficient. */
void slotRequestConfigSync();
/**
* Sync the config immediatley
*/
void slotSyncConfig();
/** empty all the trash bins */
void slotEmptyTrash();
void slotShowConfigurationDialog();
void slotRunBackgroundTasks();
void slotConfigChanged();
void slotDefaultCollectionsChanged();
signals:
void configChanged();
void onlineStatusChanged( GlobalSettings::EnumNetworkState::type );
void customTemplatesChanged();
void startCheckMail();
void endCheckMail();
private slots:
/** Updates identities when a transport has been deleted. */
void transportRemoved( int id, const QString &name );
/** Updates identities when a transport has been renamed. */
void transportRenamed( int id, const QString &oldName, const QString &newName );
void itemDispatchStarted();
void instanceProgressChanged( Akonadi::AgentInstance );
void createDefaultCollectionDone( KJob * job);
void initFolders();
void akonadiStateChanged( Akonadi::ServerManager::State );
void slotProgressItemCompletedOrCanceled( KPIM::ProgressItem * item);
private:
void openReader( bool onlyCheck );
QSharedPointer<FolderCollection> currentFolderCollection();
Akonadi::Collection::Id the_inboxCollectionFolder;
Akonadi::Collection::Id the_outboxCollectionFolder;
Akonadi::Collection::Id the_sentCollectionFolder;
Akonadi::Collection::Id the_trashCollectionFolder;
Akonadi::Collection::Id the_draftsCollectionFolder;
Akonadi::Collection::Id the_templatesCollectionFolder;
UndoStack *the_undoStack;
KMFilterMgr *the_filterMgr;
KMFilterMgr *the_popFilterMgr;
KMFilterActionDict *the_filterActionDict;
mutable KPIMIdentities::IdentityManager *mIdentityManager;
AkonadiSender *the_msgSender;
/** previous KMail version. If different from current,
the user has just updated. read from config */
QString the_previousVersion;
/** is this the first start? read from config */
bool the_firstStart;
/** are we starting up? set in main.cpp directly before kapp->exec() */
bool the_startingUp;
/** are we going down? set from here */
bool the_shuttingDown;
/** true unles kmail is closed by session management */
bool closed_by_user;
bool the_firstInstance;
KSharedConfig::Ptr mConfig;
QTextCodec *netCodec;
KComponentData mXmlGuiInstance;
ConfigureDialog *mConfigureDialog;
QTimer *mBackgroundTasksTimer;
JobScheduler* mJobScheduler;
// temporary mainwin
KMMainWin *mWin;
MailServiceImpl *mMailService;
QList<KMSystemTray*> systemTrayApplets;
FolderCollectionMonitor *mFolderCollectionMonitor;
Akonadi::EntityTreeModel *mEntityTreeModel;
Akonadi::EntityMimeTypeFilterModel *mCollectionModel;
QList<KPIM::ProgressItem *>mListProgressItem;
int mWrapCol;
};
#endif // _KMKERNEL_H