mirror of
https://github.com/nextcloud/desktop.git
synced 2024-12-18 20:02:17 +03:00
e304dfd5b9
Slightly amended by: Daniel Molkentin <danimo@owncloud.com>
54 lines
1.3 KiB
C++
54 lines
1.3 KiB
C++
/*
|
|
* Copyright (C) by Dominik Schmidt <dev@dominik-schmidt.de>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
* for more details.
|
|
*/
|
|
|
|
|
|
#ifndef SOCKETAPI_H
|
|
#define SOCKETAPI_H
|
|
|
|
#include <QWeakPointer>
|
|
|
|
class QUrl;
|
|
class QLocalSocket;
|
|
class QLocalServer;
|
|
class QStringList;
|
|
|
|
namespace Mirall {
|
|
|
|
class SocketApi : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
SocketApi(QObject* parent, const QUrl& localFile);
|
|
virtual ~SocketApi();
|
|
|
|
private slots:
|
|
void onNewConnection();
|
|
void onLostConnection();
|
|
void onReadyRead();
|
|
void onSyncStateChanged(const QString&);
|
|
|
|
private:
|
|
void sendMessage(QLocalSocket* socket, const QString& message);
|
|
void broadcastMessage(const QString& message);
|
|
|
|
Q_INVOKABLE void command_RETRIEVE_FOLDER_STATUS(const QString& argument, QLocalSocket* socket);
|
|
|
|
private:
|
|
QLocalServer* _localServer;
|
|
QList< QLocalSocket* > _listeners;
|
|
};
|
|
|
|
}
|
|
#endif // SOCKETAPI_H
|