Example with tcp non blocking and events managements

This commit is contained in:
lilian 2017-09-28 10:15:58 +02:00
parent ce67dcd097
commit ac6381f1ac
2 changed files with 186 additions and 0 deletions

View file

@ -0,0 +1,5 @@
# Makefile for tcp_non_blocking example
PROGRAM=tcp_non_blocking
EXTRA_COMPONENTS=extras/dhcpserver
include ../../common.mk

View file

@ -0,0 +1,181 @@
/*
The ESP in the example runs a echo server on 172.16.0.1 (port 50 and 100 ) that
outputs information about your ip/port then echo all text you write.
It is manage multiple connection and multiple port with one task.
This example code is in the public domain.
*/
#include <string.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <espressif/esp_common.h>
#include <esp8266.h>
#include <esp/uart.h>
#include <FreeRTOS.h>
#include <task.h>
#include <queue.h>
#include <dhcpserver.h>
#include <lwip/api.h>
#define AP_SSID "esp-open-rtos AP"
#define AP_PSK "esp-open-rtos"
#define ECHO_PORT_1 50
#define ECHO_PORT_2 100
QueueHandle_t xQueue_events;
typedef struct {
struct netconn *nc ;
uint8_t evt ;
} socket_events;
/*
* This function will be call in Lwip in each event on netconn
*/
static void netCallback(struct netconn *conn, enum netconn_evt evt, uint16_t length)
{
//Show some callback information (debug)
printf("C:sock:%u\tsta:%u\tevt:%u\tlen:%u\ttyp:%u\tfla:%02X\terr:%d\n", \
(uint32_t)conn,conn->state,evt,length,conn->type,conn->flags,conn->last_err);
socket_events events ;
//If socket got error, it is close or deleted, dont do treatments on it.
if (conn->last_err)
{
return;
}
//Send the event to the queue
events.nc = conn ;
events.evt = evt ;
xQueueSend(xQueue_events, &events, 1000);
}
/*
* Initialize a server netconn and listen port
*/
static void set_tcp_server_socket(struct netconn **nc, uint16_t port, netconn_callback callback)
{
if(nc == NULL)
{
printf("%s: netconn missing .\n",__FUNCTION__);
return;
}
*nc = netconn_new_with_callback(NETCONN_TCP, netCallback);
if(!*nc) {
printf("Status monitor: Failed to allocate socket.\n");
return;
}
netconn_set_nonblocking(*nc,NETCONN_FLAG_NON_BLOCKING);
//netconn_set_recvtimeout(*nc, 10);
netconn_bind(*nc, IP_ADDR_ANY, port);
netconn_listen(*nc);
}
/*
* This task manage each netconn connection without block anything
*/
static void nonBlockingTCP(void *pvParameters)
{
struct netconn *nc = NULL; // To create servers
set_tcp_server_socket(&nc, ECHO_PORT_1, netCallback);
printf("Server netconn ready: %u\n",(uint32_t)nc);
set_tcp_server_socket(&nc, ECHO_PORT_2, netCallback);
printf("Server netconn ready: %u\n",(uint32_t)nc);
struct netbuf *netbuf = NULL; // To store incoming Data
struct netconn *nc_in = NULL; // To accept incoming netconn
//
char buf[50];
char* buffer;
uint16_t len_buf;
while(1) {
socket_events events;
xQueueReceive(xQueue_events, &events, portMAX_DELAY); // Wait here an event on netconn
if (events.nc->state == NETCONN_LISTEN && events.evt == NETCONN_EVT_RCVPLUS) // If socket is a server and receive incoming event on it
{
printf("client incoming on server %u\n", (uint32_t)events.nc);
int err = netconn_accept(events.nc, &nc_in);
if (err != ERR_OK)
{
if(nc_in)
netconn_delete(nc_in);
}
printf("New client is %u\n",(uint32_t)nc_in);
ip_addr_t client_addr;
uint16_t client_port; //Client port
netconn_peer(nc_in, &client_addr, &client_port);
snprintf(buf, sizeof(buf), "Your address is %d.%d.%d.%d:%u\r\n",
ip4_addr1(&client_addr), ip4_addr2(&client_addr),
ip4_addr3(&client_addr), ip4_addr4(&client_addr),
client_port);
netconn_write(nc_in, buf, strlen(buf), NETCONN_COPY);
}
else if(events.evt == NETCONN_EVT_RCVPLUS && events.nc != nc)
{
printf("Client %u send a message.\n", (uint32_t)events.nc);
if ((netconn_recv(events.nc, &netbuf)) == ERR_OK) // data incoming ?
{
do
{
netbuf_data(netbuf, (void*)&buffer, &len_buf);
netconn_write(events.nc, buffer, strlen(buffer), NETCONN_COPY);
printf("%s\n",buf);
}
while (netbuf_next(netbuf) >= 0);
netbuf_delete(netbuf);
}
else
{
printf("error read socket %u, close it \n",(uint32_t)events.nc);
netconn_close(events.nc);
netconn_delete(events.nc);
}
}
}
}
void user_init(void)
{
uart_set_baud(0, 115200);
sdk_os_delay_us(500); // Wait UART
printf("SDK version:%s\n", sdk_system_get_sdk_version());
sdk_wifi_set_opmode(SOFTAP_MODE);
struct ip_info ap_ip;
IP4_ADDR(&ap_ip.ip, 172, 16, 0, 1);
IP4_ADDR(&ap_ip.gw, 0, 0, 0, 0);
IP4_ADDR(&ap_ip.netmask, 255, 255, 0, 0);
sdk_wifi_set_ip_info(1, &ap_ip);
struct sdk_softap_config ap_config = {
.ssid = AP_SSID,
.ssid_hidden = 0,
.channel = 3,
.ssid_len = strlen(AP_SSID),
.authmode = AUTH_WPA_WPA2_PSK,
.password = AP_PSK,
.max_connection = 3,
.beacon_interval = 100,
};
sdk_wifi_softap_set_config(&ap_config);
ip_addr_t first_client_ip;
IP4_ADDR(&first_client_ip, 172, 16, 0, 2);
dhcpserver_start(&first_client_ip, 4);
printf("DHCP started\n");
//Create a queue to store events on netconns
xQueue_events = xQueueCreate( 20, sizeof(socket_events));
xTaskCreate(nonBlockingTCP, "lwiptest_noblock", 512, NULL, 2, NULL);
}