/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Copyright (C) 2015 Simon Stuerz * * Copyright (C) 2014 Michael Zanetti * * * * This file is part of guh. * * * * Guh 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, version 2 of the License. * * * * Guh 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. * * * * You should have received a copy of the GNU General Public License * * along with guh. If not, see . * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ #ifndef HTTPDAEMON_H #define HTTPDAEMON_H #include "typeutils.h" #include #include #include class Device; class DevicePlugin; class HttpDaemon : public QTcpServer { Q_OBJECT public: HttpDaemon(Device *device, DevicePlugin* parent = 0); ~HttpDaemon(); void incomingConnection(qintptr socket) override; void actionExecuted(const ActionTypeId &actionTypeId); signals: void setState(const StateTypeId &stateTypeId, const QVariant &value); void triggerEvent(const EventTypeId &eventTypeId); private slots: void readClient(); void discardClient(); private: QString generateHeader(); QString generateWebPage(); private: bool disabled; DevicePlugin *m_plugin; Device *m_device; QList > m_actionList; }; #endif // HTTPDAEMON_H