/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Copyright (C) 2015 Simon Stürz * * Copyright (C) 2014 Michael Zanetti * * * * This file is part of nymea. * * * * This library is free software; you can redistribute it and/or * * modify it under the terms of the GNU Lesser General Public * * License as published by the Free Software Foundation; either * * version 2.1 of the License, or (at your option) any later version. * * * * This library 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 * * Lesser General Public License for more details. * * * * You should have received a copy of the GNU Lesser General Public * * License along with this library; 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); void disappear(); 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