EthernetNetIf Compatibility.

Dependents:   XBeeWiFi_SPI_example

Fork of NetServicesSource by Donatien Garnier

Committer:
donatien
Date:
Fri Jun 18 09:22:54 2010 +0000
Revision:
2:a4f97773c90f
Parent:
0:632c9925f013
Child:
5:dd63a1e02b1b

        

Who changed what in which revision?

UserRevisionLine numberNew contents of line
donatien 0:632c9925f013 1
donatien 0:632c9925f013 2 /*
donatien 0:632c9925f013 3 Copyright (c) 2010 Donatien Garnier (donatiengar [at] gmail [dot] com)
donatien 0:632c9925f013 4
donatien 0:632c9925f013 5 Permission is hereby granted, free of charge, to any person obtaining a copy
donatien 0:632c9925f013 6 of this software and associated documentation files (the "Software"), to deal
donatien 0:632c9925f013 7 in the Software without restriction, including without limitation the rights
donatien 0:632c9925f013 8 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
donatien 0:632c9925f013 9 copies of the Software, and to permit persons to whom the Software is
donatien 0:632c9925f013 10 furnished to do so, subject to the following conditions:
donatien 0:632c9925f013 11
donatien 0:632c9925f013 12 The above copyright notice and this permission notice shall be included in
donatien 0:632c9925f013 13 all copies or substantial portions of the Software.
donatien 0:632c9925f013 14
donatien 0:632c9925f013 15 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
donatien 0:632c9925f013 16 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
donatien 0:632c9925f013 17 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
donatien 0:632c9925f013 18 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
donatien 0:632c9925f013 19 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
donatien 0:632c9925f013 20 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
donatien 0:632c9925f013 21 THE SOFTWARE.
donatien 0:632c9925f013 22 */
donatien 0:632c9925f013 23
donatien 0:632c9925f013 24 #ifndef NTP_CLIENT_H
donatien 0:632c9925f013 25 #define NTP_CLIENT_H
donatien 0:632c9925f013 26
donatien 0:632c9925f013 27 #include "if/net/net.h"
donatien 0:632c9925f013 28 #include "api/UDPSocket.h"
donatien 0:632c9925f013 29 #include "api/DNSRequest.h"
donatien 0:632c9925f013 30 #include "mbed.h"
donatien 0:632c9925f013 31
donatien 0:632c9925f013 32 enum NTPResult
donatien 0:632c9925f013 33 {
donatien 0:632c9925f013 34 NTP_OK,
donatien 0:632c9925f013 35 NTP_PROCESSING,
donatien 0:632c9925f013 36 NTP_PRTCL, //Protocol error
donatien 0:632c9925f013 37 NTP_TIMEOUT, //Connection timeout
donatien 0:632c9925f013 38 NTP_DNS //Could not resolve DNS Addr
donatien 0:632c9925f013 39 };
donatien 0:632c9925f013 40
donatien 2:a4f97773c90f 41 class NTPClient : protected NetService
donatien 0:632c9925f013 42 {
donatien 0:632c9925f013 43 public:
donatien 0:632c9925f013 44 NTPClient();
donatien 0:632c9925f013 45 virtual ~NTPClient();
donatien 0:632c9925f013 46
donatien 0:632c9925f013 47 //High level setup functions
donatien 0:632c9925f013 48 NTPResult setTime(const Host& host); //Blocking
donatien 0:632c9925f013 49 NTPResult setTime(const Host& host, void (*pMethod)(NTPResult)); //Non blocking
donatien 0:632c9925f013 50 template<class T>
donatien 0:632c9925f013 51 NTPResult setTime(const Host& host, T* pItem, void (T::*pMethod)(NTPResult)) //Non blocking
donatien 0:632c9925f013 52 {
donatien 0:632c9925f013 53 setOnResult(pItem, pMethod);
donatien 0:632c9925f013 54 doSetTime(host);
donatien 0:632c9925f013 55 return NTP_PROCESSING;
donatien 0:632c9925f013 56 }
donatien 0:632c9925f013 57
donatien 0:632c9925f013 58 void doSetTime(const Host& host);
donatien 0:632c9925f013 59
donatien 0:632c9925f013 60 void setOnResult( void (*pMethod)(NTPResult) );
donatien 0:632c9925f013 61 class CDummy;
donatien 0:632c9925f013 62 template<class T>
donatien 0:632c9925f013 63 void setOnResult( T* pItem, void (T::*pMethod)(NTPResult) )
donatien 0:632c9925f013 64 {
donatien 0:632c9925f013 65 m_pCbItem = (CDummy*) pItem;
donatien 0:632c9925f013 66 m_pCbMeth = (void (CDummy::*)(NTPResult)) pMethod;
donatien 0:632c9925f013 67 }
donatien 0:632c9925f013 68
donatien 0:632c9925f013 69 void close();
donatien 0:632c9925f013 70
donatien 2:a4f97773c90f 71 protected:
donatien 2:a4f97773c90f 72 virtual void poll(); //Called by NetServices
donatien 2:a4f97773c90f 73
donatien 0:632c9925f013 74 private:
donatien 2:a4f97773c90f 75 void init();
donatien 2:a4f97773c90f 76 void open();
donatien 2:a4f97773c90f 77
donatien 0:632c9925f013 78 __packed struct NTPPacket //See RFC 4330 for Simple NTP
donatien 0:632c9925f013 79 {
donatien 0:632c9925f013 80 //WARN: We are in LE! Network is BE!
donatien 0:632c9925f013 81 //LSb first
donatien 0:632c9925f013 82 unsigned mode : 3;
donatien 0:632c9925f013 83 unsigned vn : 3;
donatien 0:632c9925f013 84 unsigned li : 2;
donatien 0:632c9925f013 85
donatien 0:632c9925f013 86 uint8_t stratum;
donatien 0:632c9925f013 87 uint8_t poll;
donatien 0:632c9925f013 88 uint8_t precision;
donatien 0:632c9925f013 89 //32 bits header
donatien 0:632c9925f013 90
donatien 0:632c9925f013 91 uint32_t rootDelay;
donatien 0:632c9925f013 92 uint32_t rootDispersion;
donatien 0:632c9925f013 93 uint32_t refId;
donatien 0:632c9925f013 94
donatien 0:632c9925f013 95 uint32_t refTm_s;
donatien 0:632c9925f013 96 uint32_t refTm_f;
donatien 0:632c9925f013 97 uint32_t origTm_s;
donatien 0:632c9925f013 98 uint32_t origTm_f;
donatien 0:632c9925f013 99 uint32_t rxTm_s;
donatien 0:632c9925f013 100 uint32_t rxTm_f;
donatien 0:632c9925f013 101 uint32_t txTm_s;
donatien 0:632c9925f013 102 uint32_t txTm_f;
donatien 0:632c9925f013 103 };
donatien 0:632c9925f013 104
donatien 0:632c9925f013 105 void process(); //Main state-machine
donatien 0:632c9925f013 106
donatien 0:632c9925f013 107 void setTimeout(int ms);
donatien 0:632c9925f013 108 void resetTimeout();
donatien 0:632c9925f013 109
donatien 0:632c9925f013 110 void onTimeout(); //Connection has timed out
donatien 0:632c9925f013 111 void onDNSReply(DNSReply r);
donatien 0:632c9925f013 112 void onUDPSocketEvent(UDPSocketEvent e);
donatien 0:632c9925f013 113 void onResult(NTPResult r); //Called when exchange completed or on failure
donatien 0:632c9925f013 114
donatien 0:632c9925f013 115 NTPResult blockingProcess(); //Called in blocking mode, calls Net::poll() until return code is available
donatien 0:632c9925f013 116
donatien 0:632c9925f013 117 UDPSocket* m_pUDPSocket;
donatien 0:632c9925f013 118
donatien 0:632c9925f013 119 enum NTPStep
donatien 0:632c9925f013 120 {
donatien 0:632c9925f013 121 NTP_PING,
donatien 0:632c9925f013 122 NTP_PONG
donatien 0:632c9925f013 123 };
donatien 0:632c9925f013 124
donatien 0:632c9925f013 125 NTPStep m_state;
donatien 0:632c9925f013 126
donatien 2:a4f97773c90f 127 NTPPacket m_pkt;
donatien 2:a4f97773c90f 128
donatien 0:632c9925f013 129 CDummy* m_pCbItem;
donatien 0:632c9925f013 130 void (CDummy::*m_pCbMeth)(NTPResult);
donatien 0:632c9925f013 131
donatien 0:632c9925f013 132 void (*m_pCb)(NTPResult);
donatien 0:632c9925f013 133
donatien 2:a4f97773c90f 134 Timer m_watchdog;
donatien 0:632c9925f013 135 int m_timeout;
donatien 0:632c9925f013 136
donatien 0:632c9925f013 137 bool m_closed;
donatien 0:632c9925f013 138
donatien 0:632c9925f013 139 Host m_host;
donatien 0:632c9925f013 140
donatien 0:632c9925f013 141 DNSRequest* m_pDnsReq;
donatien 0:632c9925f013 142
donatien 0:632c9925f013 143 NTPResult m_blockingResult; //Result if blocking mode
donatien 0:632c9925f013 144
donatien 0:632c9925f013 145 };
donatien 0:632c9925f013 146
donatien 0:632c9925f013 147 #endif