ESPAsyncWebServer/src/AsyncEventSource.h

91 lines
2.9 KiB
C
Raw Normal View History

2016-06-28 11:51:48 -07:00
/*
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 <Arduino.h>
#include <ESPAsyncTCP.h>
#include <ESPAsyncWebServer.h>
class AsyncEventSource;
class AsyncEventSourceResponse;
class AsyncEventSourceClient;
typedef std::function<void(AsyncEventSourceClient *client)> ArEventHandlerFunction;
2016-06-28 11:51:48 -07:00
class AsyncEventSourceClient {
private:
AsyncClient *_client;
AsyncEventSource *_server;
2016-06-29 11:21:10 -07:00
uint32_t _lastId;
2016-06-28 11:51:48 -07:00
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);
2016-06-28 11:51:48 -07:00
bool connected(){ return (_client != NULL) && _client->connected(); }
2016-06-29 11:21:10 -07:00
uint32_t lastId(){ return _lastId; }
2016-06-28 11:51:48 -07:00
//system callbacks (do not call)
void _onTimeout(uint32_t time);
void _onDisconnect();
};
class AsyncEventSource: public AsyncWebHandler {
private:
String _url;
AsyncEventSourceClient * _clients;
ArEventHandlerFunction _connectcb;
2016-06-28 11:51:48 -07:00
public:
AsyncEventSource(String url);
~AsyncEventSource();
const char * url(){ return _url.c_str(); }
void close();
void onConnect(ArEventHandlerFunction cb);
2016-06-28 11:51:48 -07:00
void send(const char *message, const char *event=NULL, uint32_t id=0, uint32_t reconnect=0);
2016-06-30 01:26:20 -07:00
size_t count(); //number clinets connected
2016-06-28 11:51:48 -07:00
//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_ */