http://mbed.org/users/okini3939/notebook/logger/

Dependencies:   mbed

Committer:
okini3939
Date:
Sat Apr 16 15:15:48 2011 +0000
Revision:
0:a3c892f39cc1

        

Who changed what in which revision?

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