2020-10-22 19:25:20 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* © 2020, Gregor Baues. All rights reserved.
|
|
|
|
*
|
|
|
|
* This 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 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* It 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 CommandStation. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef Transport_h
|
|
|
|
#define Transport_h
|
|
|
|
|
|
|
|
#include <Arduino.h>
|
|
|
|
#include <Ethernet.h>
|
|
|
|
#include <WiFiEspAT.h>
|
|
|
|
|
2020-10-26 10:29:40 +01:00
|
|
|
#include "NetworkConfig.h"
|
2020-10-23 21:30:56 +02:00
|
|
|
#include "NetworkInterface.h"
|
2020-10-22 19:25:20 +02:00
|
|
|
#include "TransportProcessor.h"
|
|
|
|
|
2020-10-27 09:52:06 +01:00
|
|
|
template <class S, class C, class U> class Transport: public AbstractTransport
|
2020-10-22 19:25:20 +02:00
|
|
|
{
|
|
|
|
|
|
|
|
private:
|
2020-10-26 10:29:40 +01:00
|
|
|
C clients[MAX_SOCK_NUM]; // Client objects created by the connectionPool
|
|
|
|
Connection connections[MAX_SOCK_NUM]; // All the connections build by the connectionPool
|
|
|
|
bool connected = false;
|
2020-10-22 19:25:20 +02:00
|
|
|
TransportProcessor* t; // pointer to the object which handles the incomming flow
|
|
|
|
|
2020-11-09 15:41:17 +01:00
|
|
|
void udpHandler(U* udp); // Reads from a Udp socket - todo add incomming queue for processing when the flow is faster than we can process commands
|
2020-10-22 19:25:20 +02:00
|
|
|
void tcpSessionHandler(S* server); // tcpSessionHandler -> connections are maintained open until close by the client
|
|
|
|
void connectionPool(S* server); // allocates the Sockets at setup time and creates the Connections
|
2020-11-09 15:41:17 +01:00
|
|
|
void connectionPool(U* udp); // allocates the UDP Sockets at setup time and creates the Connection
|
2020-10-22 19:25:20 +02:00
|
|
|
|
|
|
|
public:
|
2020-10-27 09:52:06 +01:00
|
|
|
uint8_t id;
|
2020-10-22 19:25:20 +02:00
|
|
|
uint16_t port;
|
|
|
|
uint8_t protocol; // TCP or UDP
|
|
|
|
uint8_t transport; // WIFI or ETHERNET
|
|
|
|
S* server; // WiFiServer or EthernetServer
|
|
|
|
U* udp; // UDP socket object
|
2020-10-26 10:29:40 +01:00
|
|
|
uint8_t maxConnections; // number of supported connections depending on the network equipment use
|
2020-10-22 19:25:20 +02:00
|
|
|
|
2020-10-27 09:52:06 +01:00
|
|
|
bool setup(NetworkInterface* nwi); // we get the callbacks from the NetworkInterface
|
2020-10-22 19:25:20 +02:00
|
|
|
void loop();
|
|
|
|
|
|
|
|
bool isConnected() {
|
|
|
|
return connected;
|
|
|
|
}
|
|
|
|
|
|
|
|
Transport<S,C,U>();
|
|
|
|
~Transport<S,C,U>();
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2020-10-26 10:29:40 +01:00
|
|
|
#endif // !Transport_h
|