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 NETTCPSOCKET_H
okini3939 1:0f82c574096f 25 #define NETTCPSOCKET_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 NetTcpSocketErr
okini3939 1:0f82c574096f 37 {
okini3939 1:0f82c574096f 38 __NETTCPSOCKET_MIN = -0xFFFF,
okini3939 1:0f82c574096f 39 NETTCPSOCKET_SETUP, //NetTcpSocket not properly configured
okini3939 1:0f82c574096f 40 NETTCPSOCKET_TIMEOUT,
okini3939 1:0f82c574096f 41 NETTCPSOCKET_IF, //If has problems
okini3939 1:0f82c574096f 42 NETTCPSOCKET_MEM, //Not enough mem
okini3939 1:0f82c574096f 43 NETTCPSOCKET_INUSE, //If/Port is in use
okini3939 1:0f82c574096f 44 NETTCPSOCKET_EMPTY, //Connections queue is empty
okini3939 1:0f82c574096f 45 NETTCPSOCKET_RST, // Connection was reset by remote host
okini3939 1:0f82c574096f 46 //...
okini3939 1:0f82c574096f 47 NETTCPSOCKET_OK = 0
okini3939 1:0f82c574096f 48 };
okini3939 1:0f82c574096f 49
okini3939 1:0f82c574096f 50 enum NetTcpSocketEvent
okini3939 1:0f82c574096f 51 {
okini3939 1:0f82c574096f 52 NETTCPSOCKET_CONNECTED, //Connected to host, must call accept() if we were listening
okini3939 1:0f82c574096f 53 NETTCPSOCKET_ACCEPT, //Connected to client
okini3939 1:0f82c574096f 54 NETTCPSOCKET_READABLE, //Data in buf
okini3939 1:0f82c574096f 55 NETTCPSOCKET_WRITEABLE, //Can write data to buf
okini3939 1:0f82c574096f 56 NETTCPSOCKET_CONTIMEOUT,
okini3939 1:0f82c574096f 57 NETTCPSOCKET_CONRST,
okini3939 1:0f82c574096f 58 NETTCPSOCKET_CONABRT,
okini3939 1:0f82c574096f 59 NETTCPSOCKET_ERROR,
okini3939 1:0f82c574096f 60 NETTCPSOCKET_DISCONNECTED
okini3939 1:0f82c574096f 61 };
okini3939 1:0f82c574096f 62
okini3939 1:0f82c574096f 63
okini3939 1:0f82c574096f 64 class NetTcpSocket
okini3939 1:0f82c574096f 65 {
okini3939 1:0f82c574096f 66 public:
okini3939 1:0f82c574096f 67 NetTcpSocket();
okini3939 1:0f82c574096f 68 virtual ~NetTcpSocket(); //close()
okini3939 1:0f82c574096f 69
okini3939 1:0f82c574096f 70 virtual NetTcpSocketErr bind(const Host& me) = 0;
okini3939 1:0f82c574096f 71 virtual NetTcpSocketErr listen() = 0;
okini3939 1:0f82c574096f 72 virtual NetTcpSocketErr connect(const Host& host) = 0;
okini3939 1:0f82c574096f 73 virtual NetTcpSocketErr accept(Host* pClient, NetTcpSocket** ppNewNetTcpSocket) = 0;
okini3939 1:0f82c574096f 74
okini3939 1:0f82c574096f 75 virtual int /*if < 0 : NetTcpSocketErr*/ send(const char* buf, int len) = 0;
okini3939 1:0f82c574096f 76 virtual int /*if < 0 : NetTcpSocketErr*/ recv(char* buf, int len) = 0;
okini3939 1:0f82c574096f 77
okini3939 1:0f82c574096f 78 virtual NetTcpSocketErr close() = 0;
okini3939 1:0f82c574096f 79
okini3939 1:0f82c574096f 80 virtual NetTcpSocketErr poll() = 0;
okini3939 1:0f82c574096f 81
okini3939 1:0f82c574096f 82 class CDummy;
okini3939 1:0f82c574096f 83 //Callbacks
okini3939 1:0f82c574096f 84 template<class T>
okini3939 1:0f82c574096f 85 //Linker bug : Must be defined here :(
okini3939 1:0f82c574096f 86 void setOnEvent( T* pItem, void (T::*pMethod)(NetTcpSocketEvent) )
okini3939 1:0f82c574096f 87 {
okini3939 1:0f82c574096f 88 m_pCbItem = (CDummy*) pItem;
okini3939 1:0f82c574096f 89 m_pCbMeth = (void (CDummy::*)(NetTcpSocketEvent)) pMethod;
okini3939 1:0f82c574096f 90 }
okini3939 1:0f82c574096f 91
okini3939 1:0f82c574096f 92 void resetOnEvent(); //Disable callback
okini3939 1:0f82c574096f 93
okini3939 1:0f82c574096f 94 protected:
okini3939 1:0f82c574096f 95 void queueEvent(NetTcpSocketEvent e);
okini3939 1:0f82c574096f 96 void discardEvents();
okini3939 1:0f82c574096f 97 void flushEvents(); //to be called during polling
okini3939 1:0f82c574096f 98
okini3939 1:0f82c574096f 99 Host m_host;
okini3939 1:0f82c574096f 100 Host m_client;
okini3939 1:0f82c574096f 101
okini3939 1:0f82c574096f 102 friend class Net;
okini3939 1:0f82c574096f 103 int m_refs;
okini3939 1:0f82c574096f 104
okini3939 1:0f82c574096f 105 bool m_closed;
okini3939 1:0f82c574096f 106 bool m_removed;
okini3939 1:0f82c574096f 107
okini3939 1:0f82c574096f 108 private:
okini3939 1:0f82c574096f 109 //We do not want to execute user code in interrupt routines, so we queue events until the server is polled
okini3939 1:0f82c574096f 110 //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 111 void onEvent(NetTcpSocketEvent e); //To be called on poll
okini3939 1:0f82c574096f 112 CDummy* m_pCbItem;
okini3939 1:0f82c574096f 113 void (CDummy::*m_pCbMeth)(NetTcpSocketEvent);
okini3939 1:0f82c574096f 114 queue<NetTcpSocketEvent> m_events;
okini3939 1:0f82c574096f 115
okini3939 1:0f82c574096f 116 };
okini3939 1:0f82c574096f 117
okini3939 1:0f82c574096f 118 #endif