mbed Phone Platform

Dependencies:   ulaw mbed ConfigFile

Committer:
okini3939
Date:
Sun Dec 26 15:49:07 2010 +0000
Revision:
1:0f82c574096f

        

Who changed what in which revision?

UserRevisionLine numberNew contents of line
okini3939 1:0f82c574096f 1
okini3939 1:0f82c574096f 2 /*
okini3939 1:0f82c574096f 3 Copyright (c) 2010 Donatien Garnier (donatiengar [at] gmail [dot] com)
okini3939 1:0f82c574096f 4
okini3939 1:0f82c574096f 5 Permission is hereby granted, free of charge, to any person obtaining a copy
okini3939 1:0f82c574096f 6 of this software and associated documentation files (the "Software"), to deal
okini3939 1:0f82c574096f 7 in the Software without restriction, including without limitation the rights
okini3939 1:0f82c574096f 8 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
okini3939 1:0f82c574096f 9 copies of the Software, and to permit persons to whom the Software is
okini3939 1:0f82c574096f 10 furnished to do so, subject to the following conditions:
okini3939 1:0f82c574096f 11
okini3939 1:0f82c574096f 12 The above copyright notice and this permission notice shall be included in
okini3939 1:0f82c574096f 13 all copies or substantial portions of the Software.
okini3939 1:0f82c574096f 14
okini3939 1:0f82c574096f 15 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
okini3939 1:0f82c574096f 16 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
okini3939 1:0f82c574096f 17 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
okini3939 1:0f82c574096f 18 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
okini3939 1:0f82c574096f 19 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
okini3939 1:0f82c574096f 20 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
okini3939 1:0f82c574096f 21 THE SOFTWARE.
okini3939 1:0f82c574096f 22 */
okini3939 1:0f82c574096f 23
okini3939 1:0f82c574096f 24 #ifndef NETUDPSOCKET_H
okini3939 1:0f82c574096f 25 #define NETUDPSOCKET_H
okini3939 1:0f82c574096f 26
okini3939 1:0f82c574096f 27 #include "net.h"
okini3939 1:0f82c574096f 28 #include "host.h"
okini3939 1:0f82c574096f 29
okini3939 1:0f82c574096f 30 #include <queue>
okini3939 1:0f82c574096f 31 using std::queue;
okini3939 1:0f82c574096f 32
okini3939 1:0f82c574096f 33 //Implements a Berkeley-like socket if
okini3939 1:0f82c574096f 34 //Can be interfaced either to lwip or a Telit module
okini3939 1:0f82c574096f 35
okini3939 1:0f82c574096f 36 enum NetUdpSocketErr
okini3939 1:0f82c574096f 37 {
okini3939 1:0f82c574096f 38 __NETUDPSOCKET_MIN = -0xFFFF,
okini3939 1:0f82c574096f 39 NETUDPSOCKET_SETUP, //NetUdpSocket not properly configured
okini3939 1:0f82c574096f 40 NETUDPSOCKET_IF, //If has problems
okini3939 1:0f82c574096f 41 NETUDPSOCKET_MEM, //Not enough mem
okini3939 1:0f82c574096f 42 NETUDPSOCKET_INUSE, //If/Port is in use
okini3939 1:0f82c574096f 43 //...
okini3939 1:0f82c574096f 44 NETUDPSOCKET_OK = 0
okini3939 1:0f82c574096f 45 };
okini3939 1:0f82c574096f 46
okini3939 1:0f82c574096f 47 enum NetUdpSocketEvent //Only one lonely event here... but who knows, maybe some day there'll be another one!
okini3939 1:0f82c574096f 48 {
okini3939 1:0f82c574096f 49 NETUDPSOCKET_READABLE, //Data in buf
okini3939 1:0f82c574096f 50 };
okini3939 1:0f82c574096f 51
okini3939 1:0f82c574096f 52
okini3939 1:0f82c574096f 53 class NetUdpSocket
okini3939 1:0f82c574096f 54 {
okini3939 1:0f82c574096f 55 public:
okini3939 1:0f82c574096f 56 NetUdpSocket();
okini3939 1:0f82c574096f 57 virtual ~NetUdpSocket(); //close()
okini3939 1:0f82c574096f 58
okini3939 1:0f82c574096f 59 virtual NetUdpSocketErr bind(const Host& me) = 0;
okini3939 1:0f82c574096f 60
okini3939 1:0f82c574096f 61 virtual int /*if < 0 : NetUdpSocketErr*/ sendto(const char* buf, int len, Host* pHost) = 0;
okini3939 1:0f82c574096f 62 virtual int /*if < 0 : NetUdpSocketErr*/ recvfrom(char* buf, int len, Host* pHost) = 0;
okini3939 1:0f82c574096f 63
okini3939 1:0f82c574096f 64 /* TODO NTH : printf / scanf helpers that call send/recv */
okini3939 1:0f82c574096f 65
okini3939 1:0f82c574096f 66 virtual NetUdpSocketErr close() = 0;
okini3939 1:0f82c574096f 67
okini3939 1:0f82c574096f 68 virtual NetUdpSocketErr poll() = 0;
okini3939 1:0f82c574096f 69
okini3939 1:0f82c574096f 70 class CDummy;
okini3939 1:0f82c574096f 71 //Callbacks
okini3939 1:0f82c574096f 72 template<class T>
okini3939 1:0f82c574096f 73 //Linker bug : Must be defined here :(
okini3939 1:0f82c574096f 74 void setOnEvent( T* pItem, void (T::*pMethod)(NetUdpSocketEvent) )
okini3939 1:0f82c574096f 75 {
okini3939 1:0f82c574096f 76 m_pCbItem = (CDummy*) pItem;
okini3939 1:0f82c574096f 77 m_pCbMeth = (void (CDummy::*)(NetUdpSocketEvent)) pMethod;
okini3939 1:0f82c574096f 78 }
okini3939 1:0f82c574096f 79
okini3939 1:0f82c574096f 80 void resetOnEvent(); //Disable callback
okini3939 1:0f82c574096f 81
okini3939 1:0f82c574096f 82 protected:
okini3939 1:0f82c574096f 83 void queueEvent(NetUdpSocketEvent e);
okini3939 1:0f82c574096f 84 void discardEvents();
okini3939 1:0f82c574096f 85 void flushEvents(); //to be called during polling
okini3939 1:0f82c574096f 86
okini3939 1:0f82c574096f 87 Host m_host;
okini3939 1:0f82c574096f 88 Host m_client;
okini3939 1:0f82c574096f 89
okini3939 1:0f82c574096f 90 friend class Net;
okini3939 1:0f82c574096f 91 int m_refs;
okini3939 1:0f82c574096f 92
okini3939 1:0f82c574096f 93 bool m_closed;
okini3939 1:0f82c574096f 94 bool m_removed;
okini3939 1:0f82c574096f 95
okini3939 1:0f82c574096f 96 private:
okini3939 1:0f82c574096f 97 //We do not want to execute user code in interrupt routines, so we queue events until the server is polled
okini3939 1:0f82c574096f 98 //If we port this to a multithreaded OS, we could avoid this (however some functions here are not thread-safe, so beware ;) )
okini3939 1:0f82c574096f 99 void onEvent(NetUdpSocketEvent e); //To be called on poll
okini3939 1:0f82c574096f 100 CDummy* m_pCbItem;
okini3939 1:0f82c574096f 101 void (CDummy::*m_pCbMeth)(NetUdpSocketEvent);
okini3939 1:0f82c574096f 102 queue<NetUdpSocketEvent> m_events;
okini3939 1:0f82c574096f 103
okini3939 1:0f82c574096f 104 };
okini3939 1:0f82c574096f 105
okini3939 1:0f82c574096f 106 #endif