mbeduino + Weatherduino Weather Stations post test

Dependencies:   mbed

Committer:
okini3939
Date:
Tue Oct 26 17:19:28 2010 +0000
Revision:
0:10bcaa7c2253

        

Who changed what in which revision?

UserRevisionLine numberNew contents of line
okini3939 0:10bcaa7c2253 1
okini3939 0:10bcaa7c2253 2 /*
okini3939 0:10bcaa7c2253 3 Copyright (c) 2010 Donatien Garnier (donatiengar [at] gmail [dot] com)
okini3939 0:10bcaa7c2253 4
okini3939 0:10bcaa7c2253 5 Permission is hereby granted, free of charge, to any person obtaining a copy
okini3939 0:10bcaa7c2253 6 of this software and associated documentation files (the "Software"), to deal
okini3939 0:10bcaa7c2253 7 in the Software without restriction, including without limitation the rights
okini3939 0:10bcaa7c2253 8 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
okini3939 0:10bcaa7c2253 9 copies of the Software, and to permit persons to whom the Software is
okini3939 0:10bcaa7c2253 10 furnished to do so, subject to the following conditions:
okini3939 0:10bcaa7c2253 11
okini3939 0:10bcaa7c2253 12 The above copyright notice and this permission notice shall be included in
okini3939 0:10bcaa7c2253 13 all copies or substantial portions of the Software.
okini3939 0:10bcaa7c2253 14
okini3939 0:10bcaa7c2253 15 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
okini3939 0:10bcaa7c2253 16 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
okini3939 0:10bcaa7c2253 17 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
okini3939 0:10bcaa7c2253 18 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
okini3939 0:10bcaa7c2253 19 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
okini3939 0:10bcaa7c2253 20 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
okini3939 0:10bcaa7c2253 21 THE SOFTWARE.
okini3939 0:10bcaa7c2253 22 */
okini3939 0:10bcaa7c2253 23
okini3939 0:10bcaa7c2253 24 #ifndef LWIPNETDNSREQUEST_H
okini3939 0:10bcaa7c2253 25 #define LWIPNETDNSREQUEST_H
okini3939 0:10bcaa7c2253 26
okini3939 0:10bcaa7c2253 27 #define NET_LWIP_STACK 1
okini3939 0:10bcaa7c2253 28 #include "if/net/netdnsrequest.h"
okini3939 0:10bcaa7c2253 29
okini3939 0:10bcaa7c2253 30 //struct ip_addr_t;
okini3939 0:10bcaa7c2253 31 #include "lwip/ip_addr.h"
okini3939 0:10bcaa7c2253 32
okini3939 0:10bcaa7c2253 33 class LwipNetDnsRequest : public NetDnsRequest
okini3939 0:10bcaa7c2253 34 {
okini3939 0:10bcaa7c2253 35 public:
okini3939 0:10bcaa7c2253 36 LwipNetDnsRequest(const char* hostname);
okini3939 0:10bcaa7c2253 37 LwipNetDnsRequest(Host* pHost);
okini3939 0:10bcaa7c2253 38 virtual ~LwipNetDnsRequest();
okini3939 0:10bcaa7c2253 39
okini3939 0:10bcaa7c2253 40 //Execute request & return OK if found, NOTFOUND or ERROR on error, or PROCESSING if the request has not completed yet
okini3939 0:10bcaa7c2253 41 virtual void poll();
okini3939 0:10bcaa7c2253 42
okini3939 0:10bcaa7c2253 43 virtual void close();
okini3939 0:10bcaa7c2253 44
okini3939 0:10bcaa7c2253 45 protected:
okini3939 0:10bcaa7c2253 46 void foundCb(const char *name, ip_addr_t *ipaddr);
okini3939 0:10bcaa7c2253 47
okini3939 0:10bcaa7c2253 48 private:
okini3939 0:10bcaa7c2253 49 enum LwipNetDnsState
okini3939 0:10bcaa7c2253 50 {
okini3939 0:10bcaa7c2253 51 LWIPNETDNS_START,
okini3939 0:10bcaa7c2253 52 LWIPNETDNS_PROCESSING, //Req has not completed
okini3939 0:10bcaa7c2253 53 LWIPNETDNS_NOTFOUND,
okini3939 0:10bcaa7c2253 54 LWIPNETDNS_ERROR,
okini3939 0:10bcaa7c2253 55 LWIPNETDNS_OK
okini3939 0:10bcaa7c2253 56 };
okini3939 0:10bcaa7c2253 57
okini3939 0:10bcaa7c2253 58 LwipNetDnsState m_state;
okini3939 0:10bcaa7c2253 59 bool m_cbFired;
okini3939 0:10bcaa7c2253 60
okini3939 0:10bcaa7c2253 61 //Static callbacks : Transforms into a C++ callback
okini3939 0:10bcaa7c2253 62 static void sFoundCb(const char *name, ip_addr_t *ipaddr, void *arg);
okini3939 0:10bcaa7c2253 63
okini3939 0:10bcaa7c2253 64 bool m_closing;
okini3939 0:10bcaa7c2253 65 };
okini3939 0:10bcaa7c2253 66
okini3939 0:10bcaa7c2253 67 #endif