/************************************************************************** ** ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: http://www.qt.io/licensing/ ** ** This file is part of the Qt Installer 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$ ** **************************************************************************/ #ifndef REMOTEOBJECT_H #define REMOTEOBJECT_H #include "errors.h" #include "installer_global.h" #include "protocol.h" #include #include #include #include namespace QInstaller { class INSTALLER_EXPORT RemoteObject : public QObject { Q_OBJECT Q_DISABLE_COPY(RemoteObject) public: RemoteObject(const QString &wrappedType, QObject *parent = 0); virtual ~RemoteObject() = 0; bool isConnectedToServer() const; void callRemoteMethod(const QString &name); template void callRemoteMethod(const QString &name, const T1 &arg, const T2 &arg2) { writeData(name, arg, arg2, dummy); } template void callRemoteMethod(const QString &name, const T1 &arg, const T2 &arg2, const T3 & arg3) { writeData(name, arg, arg2, arg3); } template T callRemoteMethod(const QString &name) const { return callRemoteMethod(name, dummy, dummy, dummy); } template T callRemoteMethod(const QString &name, const T1 &arg) const { return callRemoteMethod(name, arg, dummy, dummy); } template T callRemoteMethod(const QString &name, const T1 & arg, const T2 &arg2) const { return callRemoteMethod(name, arg, arg2, dummy); } template T callRemoteMethod(const QString &name, const T1 &arg, const T2 &arg2, const T3 &arg3) const { writeData(name, arg, arg2, arg3); QByteArray command; QByteArray data; while (!receivePacket(m_socket, &command, &data)) { if (!m_socket->waitForReadyRead(-1)) { throw Error(tr("Could not read all data after sending command: %1. " "Bytes expected: %2, Bytes received: %3. Error: %4").arg(name).arg(0) .arg(m_socket->bytesAvailable()).arg(m_socket->errorString())); } } Q_ASSERT(command == Protocol::Reply); QDataStream stream(&data, QIODevice::ReadOnly); T result; stream >> result; Q_ASSERT(stream.status() == QDataStream::Ok); Q_ASSERT(stream.atEnd()); return result; } protected: bool authorize(); bool connectToServer(const QVariantList &arguments = QVariantList()); // Use this structure to allow derived classes to manipulate the template // function signature of the callRemoteMethod templates, since most of the // generated functions will differ in return type rather given arguments. struct Dummy {}; Dummy *dummy; private: template bool isValueType(T) const { return true; } template bool isValueType(T *dummy) const { // Force compiler error while passing anything different then Dummy* to the function. // It really doesn't make sense to send any pointer over to the server, so bail early. Q_UNUSED(static_cast (dummy)) return false; } template void writeData(const QString &name, const T1 &arg, const T2 &arg2, const T3 &arg3) const { QByteArray data; QDataStream out(&data, QIODevice::WriteOnly); if (isValueType(arg)) out << arg; if (isValueType(arg2)) out << arg2; if (isValueType(arg3)) out << arg3; sendPacket(m_socket, name.toLatin1(), data); m_socket->flush(); } private: QString m_type; QLocalSocket *m_socket; }; } // namespace QInstaller #endif // REMOTEOBJECT_H