Dependencies:   mbed

Committer:
robertcook
Date:
Wed Jun 13 18:39:46 2012 +0000
Revision:
0:32a0996dff0f

        

Who changed what in which revision?

UserRevisionLine numberNew contents of line
robertcook 0:32a0996dff0f 1
robertcook 0:32a0996dff0f 2 /*
robertcook 0:32a0996dff0f 3 Copyright (c) 2010 Donatien Garnier (donatiengar [at] gmail [dot] com)
robertcook 0:32a0996dff0f 4
robertcook 0:32a0996dff0f 5 Permission is hereby granted, free of charge, to any person obtaining a copy
robertcook 0:32a0996dff0f 6 of this software and associated documentation files (the "Software"), to deal
robertcook 0:32a0996dff0f 7 in the Software without restriction, including without limitation the rights
robertcook 0:32a0996dff0f 8 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
robertcook 0:32a0996dff0f 9 copies of the Software, and to permit persons to whom the Software is
robertcook 0:32a0996dff0f 10 furnished to do so, subject to the following conditions:
robertcook 0:32a0996dff0f 11
robertcook 0:32a0996dff0f 12 The above copyright notice and this permission notice shall be included in
robertcook 0:32a0996dff0f 13 all copies or substantial portions of the Software.
robertcook 0:32a0996dff0f 14
robertcook 0:32a0996dff0f 15 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
robertcook 0:32a0996dff0f 16 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
robertcook 0:32a0996dff0f 17 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
robertcook 0:32a0996dff0f 18 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
robertcook 0:32a0996dff0f 19 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
robertcook 0:32a0996dff0f 20 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
robertcook 0:32a0996dff0f 21 THE SOFTWARE.
robertcook 0:32a0996dff0f 22 */
robertcook 0:32a0996dff0f 23
robertcook 0:32a0996dff0f 24 #ifndef LWIPNETTCPSOCKET_H
robertcook 0:32a0996dff0f 25 #define LWIPNETTCPSOCKET_H
robertcook 0:32a0996dff0f 26
robertcook 0:32a0996dff0f 27 #define NET_LWIP_STACK 1
robertcook 0:32a0996dff0f 28 #include "if/net/nettcpsocket.h"
robertcook 0:32a0996dff0f 29 #include "LwipNetIf.h"
robertcook 0:32a0996dff0f 30
robertcook 0:32a0996dff0f 31 #include "stdint.h"
robertcook 0:32a0996dff0f 32
robertcook 0:32a0996dff0f 33 //Implements NetTcpSockets over lwIP raw API
robertcook 0:32a0996dff0f 34
robertcook 0:32a0996dff0f 35 struct tcp_pcb; //Represents a Tcp Connection, "Protocol Control Block", see rawapi.txt & tcp.h
robertcook 0:32a0996dff0f 36 struct pbuf; //Lwip Buffer Container
robertcook 0:32a0996dff0f 37
robertcook 0:32a0996dff0f 38 typedef signed char err_t;
robertcook 0:32a0996dff0f 39 typedef uint16_t u16_t;
robertcook 0:32a0996dff0f 40
robertcook 0:32a0996dff0f 41 class LwipNetTcpSocket: public NetTcpSocket
robertcook 0:32a0996dff0f 42 {
robertcook 0:32a0996dff0f 43 public:
robertcook 0:32a0996dff0f 44 LwipNetTcpSocket(tcp_pcb* pPcb = NULL); //Passes a pcb if already created (by an accept req for instance), in that case transfers ownership
robertcook 0:32a0996dff0f 45 virtual ~LwipNetTcpSocket();
robertcook 0:32a0996dff0f 46
robertcook 0:32a0996dff0f 47 virtual NetTcpSocketErr bind(const Host& me);
robertcook 0:32a0996dff0f 48 virtual NetTcpSocketErr listen();
robertcook 0:32a0996dff0f 49 virtual NetTcpSocketErr connect(const Host& host);
robertcook 0:32a0996dff0f 50 virtual NetTcpSocketErr accept(Host* pClient, NetTcpSocket** ppNewNetTcpSocket);
robertcook 0:32a0996dff0f 51
robertcook 0:32a0996dff0f 52 virtual int /*if < 0 : NetTcpSocketErr*/ send(const char* buf, int len);
robertcook 0:32a0996dff0f 53 virtual int /*if < 0 : NetTcpSocketErr*/ recv(char* buf, int len);
robertcook 0:32a0996dff0f 54
robertcook 0:32a0996dff0f 55 virtual NetTcpSocketErr close();
robertcook 0:32a0996dff0f 56
robertcook 0:32a0996dff0f 57 virtual NetTcpSocketErr poll();
robertcook 0:32a0996dff0f 58
robertcook 0:32a0996dff0f 59 protected:
robertcook 0:32a0996dff0f 60 volatile tcp_pcb* m_pPcb;
robertcook 0:32a0996dff0f 61
robertcook 0:32a0996dff0f 62 //Events callbacks from lwIp
robertcook 0:32a0996dff0f 63 err_t acceptCb(tcp_pcb* newpcb, err_t err);
robertcook 0:32a0996dff0f 64 err_t connectedCb(tcp_pcb* tpcb, err_t err);
robertcook 0:32a0996dff0f 65
robertcook 0:32a0996dff0f 66 void errCb(err_t err);
robertcook 0:32a0996dff0f 67
robertcook 0:32a0996dff0f 68 err_t sentCb(tcp_pcb* tpcb, u16_t len);
robertcook 0:32a0996dff0f 69 err_t recvCb(tcp_pcb* tpcb, pbuf *p, err_t err);
robertcook 0:32a0996dff0f 70
robertcook 0:32a0996dff0f 71 private:
robertcook 0:32a0996dff0f 72 void cleanUp(); //Flush input buffer
robertcook 0:32a0996dff0f 73
robertcook 0:32a0996dff0f 74 // queue<tcp_pcb*> m_lpInPcb; //Incoming connections that have not been accepted yet
robertcook 0:32a0996dff0f 75 queue<LwipNetTcpSocket*> m_lpInNetTcpSocket; //Incoming connections that have not been accepted yet
robertcook 0:32a0996dff0f 76
robertcook 0:32a0996dff0f 77 volatile pbuf* m_pReadPbuf; //Ptr to read buffer
robertcook 0:32a0996dff0f 78
robertcook 0:32a0996dff0f 79 //Static callbacks : Transforms into a C++ callback
robertcook 0:32a0996dff0f 80 static err_t sAcceptCb(void *arg, struct tcp_pcb *newpcb, err_t err);
robertcook 0:32a0996dff0f 81 static err_t sConnectedCb(void *arg, struct tcp_pcb *tpcb, err_t err);
robertcook 0:32a0996dff0f 82
robertcook 0:32a0996dff0f 83 static void sErrCb(void *arg, err_t err);
robertcook 0:32a0996dff0f 84
robertcook 0:32a0996dff0f 85 static err_t sSentCb(void *arg, struct tcp_pcb *tpcb, u16_t len);
robertcook 0:32a0996dff0f 86 static err_t sRecvCb(void *arg, struct tcp_pcb *tpcb, struct pbuf *p, err_t err);
robertcook 0:32a0996dff0f 87
robertcook 0:32a0996dff0f 88 };
robertcook 0:32a0996dff0f 89
robertcook 0:32a0996dff0f 90 #endif