Committer:
mbed714
Date:
Tue Nov 09 19:32:44 2010 +0000
Revision:
3:0c324737064d
Parent:
0:98aadd37a5c5

        

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mbed714 0:98aadd37a5c5 1
mbed714 0:98aadd37a5c5 2 /*
mbed714 0:98aadd37a5c5 3 Copyright (c) 2010 Donatien Garnier (donatiengar [at] gmail [dot] com)
mbed714 0:98aadd37a5c5 4
mbed714 0:98aadd37a5c5 5 Permission is hereby granted, free of charge, to any person obtaining a copy
mbed714 0:98aadd37a5c5 6 of this software and associated documentation files (the "Software"), to deal
mbed714 0:98aadd37a5c5 7 in the Software without restriction, including without limitation the rights
mbed714 0:98aadd37a5c5 8 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
mbed714 0:98aadd37a5c5 9 copies of the Software, and to permit persons to whom the Software is
mbed714 0:98aadd37a5c5 10 furnished to do so, subject to the following conditions:
mbed714 0:98aadd37a5c5 11
mbed714 0:98aadd37a5c5 12 The above copyright notice and this permission notice shall be included in
mbed714 0:98aadd37a5c5 13 all copies or substantial portions of the Software.
mbed714 0:98aadd37a5c5 14
mbed714 0:98aadd37a5c5 15 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
mbed714 0:98aadd37a5c5 16 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
mbed714 0:98aadd37a5c5 17 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
mbed714 0:98aadd37a5c5 18 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
mbed714 0:98aadd37a5c5 19 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
mbed714 0:98aadd37a5c5 20 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
mbed714 0:98aadd37a5c5 21 THE SOFTWARE.
mbed714 0:98aadd37a5c5 22 */
mbed714 0:98aadd37a5c5 23
mbed714 0:98aadd37a5c5 24 #include "UDPSocket.h"
mbed714 0:98aadd37a5c5 25 #include "if/net/netudpsocket.h"
mbed714 0:98aadd37a5c5 26
mbed714 0:98aadd37a5c5 27 UDPSocket::UDPSocket() : m_pNetUdpSocket(NULL), m_pCbItem(NULL), m_pCbMeth(NULL), m_pCb(NULL)
mbed714 0:98aadd37a5c5 28 {
mbed714 0:98aadd37a5c5 29
mbed714 0:98aadd37a5c5 30 }
mbed714 0:98aadd37a5c5 31
mbed714 0:98aadd37a5c5 32 UDPSocket::~UDPSocket() //close()
mbed714 0:98aadd37a5c5 33 {
mbed714 0:98aadd37a5c5 34 close();
mbed714 0:98aadd37a5c5 35 }
mbed714 0:98aadd37a5c5 36
mbed714 0:98aadd37a5c5 37 UDPSocketErr UDPSocket::bind(const Host& me)
mbed714 0:98aadd37a5c5 38 {
mbed714 0:98aadd37a5c5 39 UDPSocketErr udpSocketErr = checkInst();
mbed714 0:98aadd37a5c5 40 if(udpSocketErr)
mbed714 0:98aadd37a5c5 41 return udpSocketErr;
mbed714 0:98aadd37a5c5 42 return (UDPSocketErr) m_pNetUdpSocket->bind(me);
mbed714 0:98aadd37a5c5 43 }
mbed714 0:98aadd37a5c5 44
mbed714 0:98aadd37a5c5 45 int /*if < 0 : UDPSocketErr*/ UDPSocket::sendto(const char* buf, int len, Host* pHost)
mbed714 0:98aadd37a5c5 46 {
mbed714 0:98aadd37a5c5 47 UDPSocketErr udpSocketErr = checkInst();
mbed714 0:98aadd37a5c5 48 if(udpSocketErr)
mbed714 0:98aadd37a5c5 49 return udpSocketErr;
mbed714 0:98aadd37a5c5 50 return m_pNetUdpSocket->sendto(buf, len, pHost);
mbed714 0:98aadd37a5c5 51 }
mbed714 0:98aadd37a5c5 52
mbed714 0:98aadd37a5c5 53 int /*if < 0 : UDPSocketErr*/ UDPSocket::recvfrom(char* buf, int len, Host* pHost)
mbed714 0:98aadd37a5c5 54 {
mbed714 0:98aadd37a5c5 55 UDPSocketErr udpSocketErr = checkInst();
mbed714 0:98aadd37a5c5 56 if(udpSocketErr)
mbed714 0:98aadd37a5c5 57 return udpSocketErr;
mbed714 0:98aadd37a5c5 58 return m_pNetUdpSocket->recvfrom(buf, len, pHost);
mbed714 0:98aadd37a5c5 59 }
mbed714 0:98aadd37a5c5 60
mbed714 0:98aadd37a5c5 61 UDPSocketErr UDPSocket::close()
mbed714 0:98aadd37a5c5 62 {
mbed714 0:98aadd37a5c5 63 if(!m_pNetUdpSocket)
mbed714 0:98aadd37a5c5 64 return UDPSOCKET_SETUP;
mbed714 0:98aadd37a5c5 65 m_pNetUdpSocket->resetOnEvent();
mbed714 0:98aadd37a5c5 66 UDPSocketErr udpSocketErr = (UDPSocketErr) m_pNetUdpSocket->close(); //Close (can already be closed)
mbed714 0:98aadd37a5c5 67 Net::releaseUdpSocket(m_pNetUdpSocket); //And release it so it can be freed when properly removed
mbed714 0:98aadd37a5c5 68 m_pNetUdpSocket = NULL;
mbed714 0:98aadd37a5c5 69 return udpSocketErr;
mbed714 0:98aadd37a5c5 70 }
mbed714 0:98aadd37a5c5 71
mbed714 0:98aadd37a5c5 72 //Callbacks
mbed714 0:98aadd37a5c5 73 void UDPSocket::setOnEvent( void (*pMethod)(UDPSocketEvent) )
mbed714 0:98aadd37a5c5 74 {
mbed714 0:98aadd37a5c5 75 m_pCb = pMethod;
mbed714 0:98aadd37a5c5 76 }
mbed714 0:98aadd37a5c5 77
mbed714 0:98aadd37a5c5 78 #if 0 //For info only
mbed714 0:98aadd37a5c5 79 template<class T>
mbed714 0:98aadd37a5c5 80 void UDPSocket::setOnEvent( T* pItem, void (T::*pMethod)(UDPSocketEvent) )
mbed714 0:98aadd37a5c5 81 {
mbed714 0:98aadd37a5c5 82 m_pCbItem = (CDummy*) pItem;
mbed714 0:98aadd37a5c5 83 m_pCbMeth = (void (CDummy::*)(UDPSocketEvent)) pMethod;
mbed714 0:98aadd37a5c5 84 }
mbed714 0:98aadd37a5c5 85 #endif
mbed714 0:98aadd37a5c5 86
mbed714 0:98aadd37a5c5 87 void UDPSocket::resetOnEvent() //Disable callback
mbed714 0:98aadd37a5c5 88 {
mbed714 0:98aadd37a5c5 89 m_pCb = NULL;
mbed714 0:98aadd37a5c5 90 m_pCbItem = NULL;
mbed714 0:98aadd37a5c5 91 m_pCbMeth = NULL;
mbed714 0:98aadd37a5c5 92 }
mbed714 0:98aadd37a5c5 93
mbed714 0:98aadd37a5c5 94 void UDPSocket::onNetUdpSocketEvent(NetUdpSocketEvent e)
mbed714 0:98aadd37a5c5 95 {
mbed714 0:98aadd37a5c5 96 if(m_pCbItem && m_pCbMeth)
mbed714 0:98aadd37a5c5 97 (m_pCbItem->*m_pCbMeth)((UDPSocketEvent) e);
mbed714 0:98aadd37a5c5 98 else if(m_pCb)
mbed714 0:98aadd37a5c5 99 m_pCb((UDPSocketEvent) e);
mbed714 0:98aadd37a5c5 100 }
mbed714 0:98aadd37a5c5 101
mbed714 0:98aadd37a5c5 102 UDPSocketErr UDPSocket::checkInst()
mbed714 0:98aadd37a5c5 103 {
mbed714 0:98aadd37a5c5 104 if(!m_pNetUdpSocket)
mbed714 0:98aadd37a5c5 105 {
mbed714 0:98aadd37a5c5 106 m_pNetUdpSocket = Net::udpSocket();
mbed714 0:98aadd37a5c5 107 if(!m_pNetUdpSocket)
mbed714 0:98aadd37a5c5 108 {
mbed714 0:98aadd37a5c5 109 return UDPSOCKET_IF; //Interface did not return a socket (usually because a default interface does not exist)
mbed714 0:98aadd37a5c5 110 }
mbed714 0:98aadd37a5c5 111 m_pNetUdpSocket->setOnEvent(this, &UDPSocket::onNetUdpSocketEvent);
mbed714 0:98aadd37a5c5 112 }
mbed714 0:98aadd37a5c5 113 return UDPSOCKET_OK;
mbed714 0:98aadd37a5c5 114 }