/* Asynchronous WebServer library for Espressif MCUs Copyright (c) 2016 Hristo Gochkov. All rights reserved. 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, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ #ifndef ASYNCEVENTSOURCE_H_ #define ASYNCEVENTSOURCE_H_ #include #include #include class AsyncEventSource; class AsyncEventSourceResponse; class AsyncEventSourceClient; typedef std::function ArEventHandlerFunction; class AsyncEventSourceClient { private: AsyncClient *_client; AsyncEventSource *_server; uint32_t _lastId; public: AsyncEventSourceClient * next; AsyncEventSourceClient(AsyncWebServerRequest *request, AsyncEventSource *server); ~AsyncEventSourceClient(); AsyncClient* client(){ return _client; } void close(); void write(const char * message, size_t len); void send(const char *message, const char *event=NULL, uint32_t id=0, uint32_t reconnect=0); bool connected(){ return (_client != NULL) && _client->connected(); } uint32_t lastId(){ return _lastId; } //system callbacks (do not call) void _onTimeout(uint32_t time); void _onDisconnect(); }; class AsyncEventSource: public AsyncWebHandler { private: String _url; AsyncEventSourceClient * _clients; ArEventHandlerFunction _connectcb; public: AsyncEventSource(String url); ~AsyncEventSource(); const char * url(){ return _url.c_str(); } void close(); void onConnect(ArEventHandlerFunction cb); void send(const char *message, const char *event=NULL, uint32_t id=0, uint32_t reconnect=0); //system callbacks (do not call) void _addClient(AsyncEventSourceClient * client); void _handleDisconnect(AsyncEventSourceClient * client); bool canHandle(AsyncWebServerRequest *request); void handleRequest(AsyncWebServerRequest *request); }; class AsyncEventSourceResponse: public AsyncWebServerResponse { private: String _content; AsyncEventSource *_server; public: AsyncEventSourceResponse(AsyncEventSource *server); void _respond(AsyncWebServerRequest *request); size_t _ack(AsyncWebServerRequest *request, size_t len, uint32_t time); bool _sourceValid(){ return true; } }; #endif /* ASYNCEVENTSOURCE_H_ */