Serves a webpage and saves the user entered data in a .txt file all on the MBED
Fork of EthernetNetIf by
LPC1768/api/TCPSocket.h@0:422060928e37, 2010-06-11 (annotated)
- Committer:
- donatien
- Date:
- Fri Jun 11 16:25:22 2010 +0000
- Revision:
- 0:422060928e37
- Child:
- 5:bc7df6da7589
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
donatien | 0:422060928e37 | 1 | |
donatien | 0:422060928e37 | 2 | /* |
donatien | 0:422060928e37 | 3 | Copyright (c) 2010 Donatien Garnier (donatiengar [at] gmail [dot] com) |
donatien | 0:422060928e37 | 4 | |
donatien | 0:422060928e37 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy |
donatien | 0:422060928e37 | 6 | of this software and associated documentation files (the "Software"), to deal |
donatien | 0:422060928e37 | 7 | in the Software without restriction, including without limitation the rights |
donatien | 0:422060928e37 | 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
donatien | 0:422060928e37 | 9 | copies of the Software, and to permit persons to whom the Software is |
donatien | 0:422060928e37 | 10 | furnished to do so, subject to the following conditions: |
donatien | 0:422060928e37 | 11 | |
donatien | 0:422060928e37 | 12 | The above copyright notice and this permission notice shall be included in |
donatien | 0:422060928e37 | 13 | all copies or substantial portions of the Software. |
donatien | 0:422060928e37 | 14 | |
donatien | 0:422060928e37 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
donatien | 0:422060928e37 | 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
donatien | 0:422060928e37 | 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
donatien | 0:422060928e37 | 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
donatien | 0:422060928e37 | 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
donatien | 0:422060928e37 | 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
donatien | 0:422060928e37 | 21 | THE SOFTWARE. |
donatien | 0:422060928e37 | 22 | */ |
donatien | 0:422060928e37 | 23 | |
donatien | 0:422060928e37 | 24 | #ifndef TCPSOCKET_H |
donatien | 0:422060928e37 | 25 | #define TCPSOCKET_H |
donatien | 0:422060928e37 | 26 | |
donatien | 0:422060928e37 | 27 | #include "if/net/net.h" |
donatien | 0:422060928e37 | 28 | //Essentially it is a safe interface to NetTcpSocket |
donatien | 0:422060928e37 | 29 | |
donatien | 0:422060928e37 | 30 | enum TCPSocketErr |
donatien | 0:422060928e37 | 31 | { |
donatien | 0:422060928e37 | 32 | __TCPSOCKET_MIN = -0xFFFF, |
donatien | 0:422060928e37 | 33 | TCPSOCKET_SETUP, //NetTcpSocket not properly configured |
donatien | 0:422060928e37 | 34 | TCPSOCKET_TIMEOUT, |
donatien | 0:422060928e37 | 35 | TCPSOCKET_IF, //If has problems, does not exist or is not initialized |
donatien | 0:422060928e37 | 36 | TCPSOCKET_MEM, //Not enough mem |
donatien | 0:422060928e37 | 37 | TCPSOCKET_INUSE, //If/Port is in use |
donatien | 0:422060928e37 | 38 | TCPSOCKET_EMPTY, //Connections queue is empty |
donatien | 0:422060928e37 | 39 | TCPSOCKET_RST, // Connection was reset by remote host |
donatien | 0:422060928e37 | 40 | //... |
donatien | 0:422060928e37 | 41 | TCPSOCKET_OK = 0 |
donatien | 0:422060928e37 | 42 | }; |
donatien | 0:422060928e37 | 43 | |
donatien | 0:422060928e37 | 44 | enum TCPSocketEvent |
donatien | 0:422060928e37 | 45 | { |
donatien | 0:422060928e37 | 46 | TCPSOCKET_CONNECTED, //Connected to host, must call accept() if we were listening |
donatien | 0:422060928e37 | 47 | TCPSOCKET_ACCEPT, //Connected to client |
donatien | 0:422060928e37 | 48 | TCPSOCKET_READABLE, //Data in buf |
donatien | 0:422060928e37 | 49 | TCPSOCKET_WRITEABLE, //Can write data to buf |
donatien | 0:422060928e37 | 50 | TCPSOCKET_CONTIMEOUT, |
donatien | 0:422060928e37 | 51 | TCPSOCKET_CONRST, |
donatien | 0:422060928e37 | 52 | TCPSOCKET_CONABRT, |
donatien | 0:422060928e37 | 53 | TCPSOCKET_ERROR, |
donatien | 0:422060928e37 | 54 | TCPSOCKET_DISCONNECTED |
donatien | 0:422060928e37 | 55 | }; |
donatien | 0:422060928e37 | 56 | |
donatien | 0:422060928e37 | 57 | |
donatien | 0:422060928e37 | 58 | class TCPSocket |
donatien | 0:422060928e37 | 59 | { |
donatien | 0:422060928e37 | 60 | public: |
donatien | 0:422060928e37 | 61 | TCPSocket(); |
donatien | 0:422060928e37 | 62 | protected: |
donatien | 0:422060928e37 | 63 | TCPSocket(NetTcpSocket* pNetTcpSocket); |
donatien | 0:422060928e37 | 64 | public: |
donatien | 0:422060928e37 | 65 | ~TCPSocket(); //close() |
donatien | 0:422060928e37 | 66 | |
donatien | 0:422060928e37 | 67 | TCPSocketErr bind(const Host& me); |
donatien | 0:422060928e37 | 68 | TCPSocketErr listen(); |
donatien | 0:422060928e37 | 69 | TCPSocketErr connect(const Host& host); |
donatien | 0:422060928e37 | 70 | TCPSocketErr accept(Host* pClient, TCPSocket** ppNewTcpSocket); |
donatien | 0:422060928e37 | 71 | |
donatien | 0:422060928e37 | 72 | int /*if < 0 : TCPSocketErr*/ send(const char* buf, int len); |
donatien | 0:422060928e37 | 73 | int /*if < 0 : TCPSocketErr*/ recv(char* buf, int len); |
donatien | 0:422060928e37 | 74 | |
donatien | 0:422060928e37 | 75 | /* TODO NTH : printf / scanf helpers that call send/recv */ |
donatien | 0:422060928e37 | 76 | |
donatien | 0:422060928e37 | 77 | TCPSocketErr close(); |
donatien | 0:422060928e37 | 78 | |
donatien | 0:422060928e37 | 79 | class CDummy; |
donatien | 0:422060928e37 | 80 | //Callbacks |
donatien | 0:422060928e37 | 81 | void setOnEvent( void (*pMethod)(TCPSocketEvent) ); |
donatien | 0:422060928e37 | 82 | template<class T> |
donatien | 0:422060928e37 | 83 | void setOnEvent( T* pItem, void (T::*pMethod)(TCPSocketEvent) ) |
donatien | 0:422060928e37 | 84 | { |
donatien | 0:422060928e37 | 85 | m_pCbItem = (CDummy*) pItem; |
donatien | 0:422060928e37 | 86 | m_pCbMeth = (void (CDummy::*)(TCPSocketEvent)) pMethod; |
donatien | 0:422060928e37 | 87 | } |
donatien | 0:422060928e37 | 88 | |
donatien | 0:422060928e37 | 89 | void resetOnEvent(); //Disable callback |
donatien | 0:422060928e37 | 90 | |
donatien | 0:422060928e37 | 91 | protected: |
donatien | 0:422060928e37 | 92 | void onNetTcpSocketEvent(NetTcpSocketEvent e); |
donatien | 0:422060928e37 | 93 | TCPSocketErr checkInst(); |
donatien | 0:422060928e37 | 94 | |
donatien | 0:422060928e37 | 95 | private: |
donatien | 0:422060928e37 | 96 | NetTcpSocket* m_pNetTcpSocket; |
donatien | 0:422060928e37 | 97 | |
donatien | 0:422060928e37 | 98 | CDummy* m_pCbItem; |
donatien | 0:422060928e37 | 99 | void (CDummy::*m_pCbMeth)(TCPSocketEvent); |
donatien | 0:422060928e37 | 100 | |
donatien | 0:422060928e37 | 101 | void (*m_pCb)(TCPSocketEvent); |
donatien | 0:422060928e37 | 102 | |
donatien | 0:422060928e37 | 103 | }; |
donatien | 0:422060928e37 | 104 | |
donatien | 0:422060928e37 | 105 | #endif |