diff options
| author | Damien Caliste <dcaliste@free.fr> | 2023-09-26 17:11:10 +0200 |
|---|---|---|
| committer | Damien Caliste <dcaliste@free.fr> | 2023-11-06 14:03:08 +0100 |
| commit | a32ca6254da5056e874965976c2ab3dc2620c23c (patch) | |
| tree | 7af5fdee91c27705c31af7edaad74f1949403273 /src/tools/messageserver/mailmessageclient.cpp | |
| parent | d447e7cd55bca326d80e828b7e7329cefa72e82a (diff) | |
Switch to DBus for IPC
There are two IPC mechanisms in QMF:
- one between the messageserver and clients
to perform actions like fetch emails,
search, etc.
- one between every mailstore instances
to notify other instances of changes
in the mail database.
QCop being discontinued, this patch switchs
to use DBus as an IPC transport layer.
The first mechanism is implemented by registering
an object on the session bus (/messageserver)
providing a service (org.qt.messageserver).
The second mechanism is implemented by
registering each client as an object to the
session bus (/mailstore/client) for the
interface org.qt.mailstore. Other clients
can then listen to updated() signal on this
interface.
DBus IPC requires to implement operator<<()
and operator>>() with QDBusArgument for the
objects that need to be transported. In all
cases, each objects are serialised up to
unitary elemental elements like int, byte
arrays, etc. Except for the QMailKeyArgument
that uses first a serialisation into a
byte array before being sent. This is due to
the recursive declaration of QMailKeyArgument
with the subKeys members, not working well
with QDBusArgument serialisation.
Change-Id: I8f10b8b00f73d4b75dad778b591159a765e9fb89
Reviewed-by: Pekka Vuorela <pvuorela@iki.fi>
Diffstat (limited to 'src/tools/messageserver/mailmessageclient.cpp')
| -rw-r--r-- | src/tools/messageserver/mailmessageclient.cpp | 179 |
1 files changed, 0 insertions, 179 deletions
diff --git a/src/tools/messageserver/mailmessageclient.cpp b/src/tools/messageserver/mailmessageclient.cpp deleted file mode 100644 index d01a42b9..00000000 --- a/src/tools/messageserver/mailmessageclient.cpp +++ /dev/null @@ -1,179 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2015 The Qt Company Ltd. -** Contact: http://www.qt.io/licensing/ -** -** This file is part of the Qt Messaging Framework. -** -** $QT_BEGIN_LICENSE:LGPL21$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see http://www.qt.io/terms-conditions. For further -** information use the contact form at http://www.qt.io/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 or version 3 as published by the Free -** Software Foundation and appearing in the file LICENSE.LGPLv21 and -** LICENSE.LGPLv3 included in the packaging of this file. Please review the -** following information to ensure the GNU Lesser General Public License -** requirements will be met: https://www.gnu.org/licenses/lgpl.html and -** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** As a special exception, The Qt Company gives you certain additional -** rights. These rights are described in The Qt Company LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -#include "mailmessageclient.h" -#include <private/qcopadaptor_p.h> - -static bool connectIpc( QObject *sender, const QByteArray& signal, - QObject *receiver, const QByteArray& member) -{ - return QCopAdaptor::connect(sender,signal,receiver,member); -} - -MailMessageClient::MailMessageClient(QObject* parent) - : QObject(parent), - adaptor(new QCopAdaptor("QPE/QMailMessageServer",this)) -{ - connectIpc(this, SIGNAL(actionStarted(QMailActionData)), - adaptor, MESSAGE(actionStarted(QMailActionData))); - connectIpc(this, SIGNAL(activityChanged(quint64, QMailServiceAction::Activity)), - adaptor, MESSAGE(activityChanged(quint64, QMailServiceAction::Activity))); - connectIpc(this, SIGNAL(connectivityChanged(quint64, QMailServiceAction::Connectivity)), - adaptor, MESSAGE(connectivityChanged(quint64, QMailServiceAction::Connectivity))); - connectIpc(this, SIGNAL(statusChanged(quint64, const QMailServiceAction::Status)), - adaptor, MESSAGE(statusChanged(quint64, const QMailServiceAction::Status))); - connectIpc(this, SIGNAL(progressChanged(quint64, uint, uint)), - adaptor, MESSAGE(progressChanged(quint64, uint, uint))); - connectIpc(this, SIGNAL(transmissionCompleted(quint64)), - adaptor, MESSAGE(transmissionCompleted(quint64))); - connectIpc(this, SIGNAL(messagesTransmitted(quint64, QMailMessageIdList)), - adaptor, MESSAGE(messagesTransmitted(quint64, QMailMessageIdList))); - connectIpc(this, SIGNAL(messagesFailedTransmission(quint64, QMailMessageIdList, QMailServiceAction::Status::ErrorCode)), - adaptor, MESSAGE(messagesFailedTransmission(quint64, QMailMessageIdList, QMailServiceAction::Status::ErrorCode))); - connectIpc(this, SIGNAL(retrievalCompleted(quint64)), - adaptor, MESSAGE(retrievalCompleted(quint64))); - connectIpc(this, SIGNAL(messagesDeleted(quint64, QMailMessageIdList)), - adaptor, MESSAGE(messagesDeleted(quint64, QMailMessageIdList))); - connectIpc(this, SIGNAL(messagesCopied(quint64, QMailMessageIdList)), - adaptor, MESSAGE(messagesCopied(quint64, QMailMessageIdList))); - connectIpc(this, SIGNAL(messagesMoved(quint64, QMailMessageIdList)), - adaptor, MESSAGE(messagesMoved(quint64, QMailMessageIdList))); - connectIpc(this, SIGNAL(messagesFlagged(quint64, QMailMessageIdList)), - adaptor, MESSAGE(messagesFlagged(quint64, QMailMessageIdList))); - connectIpc(this, SIGNAL(folderCreated(quint64, QMailFolderId)), - adaptor, MESSAGE(folderCreated(quint64, QMailFolderId))); - connectIpc(this, SIGNAL(folderRenamed(quint64, QMailFolderId)), - adaptor, MESSAGE(folderRenamed(quint64, QMailFolderId))); - connectIpc(this, SIGNAL(folderDeleted(quint64, QMailFolderId)), - adaptor, MESSAGE(folderDeleted(quint64, QMailFolderId))); - connectIpc(this, SIGNAL(folderMoved(quint64, QMailFolderId)), - adaptor, MESSAGE(folderMoved(quint64, QMailFolderId))); - connectIpc(this, SIGNAL(storageActionCompleted(quint64)), - adaptor, MESSAGE(storageActionCompleted(quint64))); - connectIpc(this, SIGNAL(matchingMessageIds(quint64, QMailMessageIdList)), - adaptor, MESSAGE(matchingMessageIds(quint64, QMailMessageIdList))); - connectIpc(this, SIGNAL(remainingMessagesCount(quint64, uint)), - adaptor, MESSAGE(remainingMessagesCount(quint64, uint))); - connectIpc(this, SIGNAL(messagesCount(quint64, uint)), - adaptor, MESSAGE(messagesCount(quint64, uint))); - connectIpc(this, SIGNAL(searchCompleted(quint64)), - adaptor, MESSAGE(searchCompleted(quint64))); - connectIpc(this, SIGNAL(actionsListed(QMailActionDataList)), - adaptor, MESSAGE(actionsListed(QMailActionDataList))); - connectIpc(this, SIGNAL(protocolResponse(quint64, QString, QVariant)), - adaptor, MESSAGE(protocolResponse(quint64, QString, QVariant))); - connectIpc(this, SIGNAL(protocolRequestCompleted(quint64)), - adaptor, MESSAGE(protocolRequestCompleted(quint64))); - - connectIpc(adaptor, MESSAGE(transmitMessages(quint64, QMailAccountId)), - this, SIGNAL(transmitMessages(quint64, QMailAccountId))); - connectIpc(adaptor, MESSAGE(transmitMessage(quint64, QMailMessageId)), - this, SIGNAL(transmitMessage(quint64, QMailMessageId))); - connectIpc(adaptor, MESSAGE(retrieveFolderList(quint64, QMailAccountId, QMailFolderId, bool)), - this, SIGNAL(retrieveFolderList(quint64, QMailAccountId, QMailFolderId, bool))); - connectIpc(adaptor, MESSAGE(retrieveMessageLists(quint64, QMailAccountId, QMailFolderIdList, uint, QMailMessageSortKey)), - this, SIGNAL(retrieveMessageLists(quint64, QMailAccountId, QMailFolderIdList, uint, QMailMessageSortKey))); - connectIpc(adaptor, MESSAGE(retrieveMessageList(quint64, QMailAccountId, QMailFolderId, uint, QMailMessageSortKey)), - this, SIGNAL(retrieveMessageList(quint64, QMailAccountId, QMailFolderId, uint, QMailMessageSortKey))); - connectIpc(adaptor, MESSAGE(retrieveNewMessages(quint64, QMailAccountId, QMailFolderIdList)), - this, SIGNAL(retrieveNewMessages(quint64, QMailAccountId, QMailFolderIdList))); - connectIpc(adaptor, MESSAGE(createStandardFolders(quint64, QMailAccountId)), - this, SIGNAL(createStandardFolders(quint64, QMailAccountId))); - connectIpc(adaptor, MESSAGE(retrieveMessages(quint64, QMailMessageIdList, QMailRetrievalAction::RetrievalSpecification)), - this, SIGNAL(retrieveMessages(quint64, QMailMessageIdList, QMailRetrievalAction::RetrievalSpecification))); - connectIpc(adaptor, MESSAGE(retrieveMessagePart(quint64, QMailMessagePart::Location)), - this, SIGNAL(retrieveMessagePart(quint64, QMailMessagePart::Location))); - connectIpc(adaptor, MESSAGE(retrieveMessageRange(quint64, QMailMessageId, uint)), - this, SIGNAL(retrieveMessageRange(quint64, QMailMessageId, uint))); - connectIpc(adaptor, MESSAGE(retrieveMessagePartRange(quint64, QMailMessagePart::Location, uint)), - this, SIGNAL(retrieveMessagePartRange(quint64, QMailMessagePart::Location, uint))); - connectIpc(adaptor, MESSAGE(retrieveAll(quint64, QMailAccountId)), - this, SIGNAL(retrieveAll(quint64, QMailAccountId))); - connectIpc(adaptor, MESSAGE(exportUpdates(quint64, QMailAccountId)), - this, SIGNAL(exportUpdates(quint64, QMailAccountId))); - connectIpc(adaptor, MESSAGE(synchronize(quint64, QMailAccountId)), - this, SIGNAL(synchronize(quint64, QMailAccountId))); - connectIpc(adaptor, MESSAGE(onlineDeleteMessages(quint64, QMailMessageIdList, QMailStore::MessageRemovalOption)), - this, SIGNAL(onlineDeleteMessages(quint64, QMailMessageIdList, QMailStore::MessageRemovalOption))); - connectIpc(adaptor, MESSAGE(onlineCopyMessages(quint64, QMailMessageIdList, QMailFolderId)), - this, SIGNAL(onlineCopyMessages(quint64, QMailMessageIdList, QMailFolderId))); - connectIpc(adaptor, MESSAGE(onlineMoveMessages(quint64, QMailMessageIdList, QMailFolderId)), - this, SIGNAL(onlineMoveMessages(quint64, QMailMessageIdList, QMailFolderId))); - connectIpc(adaptor, MESSAGE(onlineFlagMessagesAndMoveToStandardFolder(quint64, QMailMessageIdList, quint64, quint64)), - this, SIGNAL(onlineFlagMessagesAndMoveToStandardFolder(quint64, QMailMessageIdList, quint64, quint64))); - connectIpc(adaptor, MESSAGE(addMessages(quint64,QMailMessageMetaDataList)), - this, SIGNAL(addMessages(quint64, QMailMessageMetaDataList))); - connectIpc(adaptor, MESSAGE(updateMessages(quint64,QMailMessageMetaDataList)), - this, SIGNAL(updateMessages(quint64, QMailMessageMetaDataList))); - connectIpc(adaptor, MESSAGE(deleteMessages(quint64, QMailMessageIdList)), - this, SIGNAL(deleteMessages(quint64, QMailMessageIdList))); - connectIpc(adaptor, MESSAGE(rollBackUpdates(quint64, QMailAccountId)), - this, SIGNAL(rollBackUpdates(quint64, QMailAccountId))); - connectIpc(adaptor, MESSAGE(moveToStandardFolder(quint64, QMailMessageIdList, quint64)), - this, SIGNAL(moveToStandardFolder(quint64, QMailMessageIdList, quint64))); - connectIpc(adaptor, MESSAGE(moveToFolder(quint64, QMailMessageIdList, QMailFolderId)), - this, SIGNAL(moveToFolder(quint64, QMailMessageIdList, QMailFolderId))); - connectIpc(adaptor, MESSAGE(flagMessages(quint64, QMailMessageIdList, quint64, quint64)), - this, SIGNAL(flagMessages(quint64, QMailMessageIdList, quint64, quint64))); - connectIpc(adaptor, MESSAGE(restoreToPreviousFolder(quint64, QMailMessageKey)), - this, SIGNAL(restoreToPreviousFolder(quint64, QMailMessageKey))); - connectIpc(adaptor, MESSAGE(onlineCreateFolder(quint64, QString, QMailAccountId, QMailFolderId)), - this, SIGNAL(onlineCreateFolder(quint64,QString,QMailAccountId,QMailFolderId))); - connectIpc(adaptor, MESSAGE(onlineRenameFolder(quint64, QMailFolderId, QString)), - this, SIGNAL(onlineRenameFolder(quint64,QMailFolderId,QString))); - connectIpc(adaptor, MESSAGE(onlineDeleteFolder(quint64, QMailFolderId)), - this, SIGNAL(onlineDeleteFolder(quint64,QMailFolderId))); - connectIpc(adaptor, MESSAGE(onlineMoveFolder(quint64, QMailFolderId, QMailFolderId)), - this, SIGNAL(onlineMoveFolder(quint64,QMailFolderId,QMailFolderId))); - connectIpc(adaptor, MESSAGE(cancelTransfer(quint64)), - this, SIGNAL(cancelTransfer(quint64))); - connectIpc(adaptor, MESSAGE(cancelSearch(quint64)), - this, SIGNAL(cancelSearch(quint64))); - connectIpc(adaptor, MESSAGE(shutdown()), - this, SIGNAL(shutdown())); - connectIpc(adaptor, MESSAGE(listActions()), - this, SIGNAL(listActions())); - connectIpc(adaptor, MESSAGE(searchMessages(quint64, QMailMessageKey, QString, QMailSearchAction::SearchSpecification, QMailMessageSortKey)), - this, SIGNAL(searchMessages(quint64, QMailMessageKey, QString, QMailSearchAction::SearchSpecification, QMailMessageSortKey))); - connectIpc(adaptor, MESSAGE(searchMessages(quint64, QMailMessageKey, QString, QMailSearchAction::SearchSpecification, quint64, QMailMessageSortKey)), - this, SIGNAL(searchMessages(quint64, QMailMessageKey, QString, QMailSearchAction::SearchSpecification, quint64, QMailMessageSortKey))); - connectIpc(adaptor, MESSAGE(countMessages(quint64, QMailMessageKey, QString)), - this, SIGNAL(countMessages(quint64, QMailMessageKey, QString))); - connectIpc(adaptor, MESSAGE(protocolRequest(quint64, QMailAccountId, QString, QVariant)), - this, SIGNAL(protocolRequest(quint64, QMailAccountId, QString, QVariant))); -} - -MailMessageClient::~MailMessageClient() -{ -} - |
