Geiger counter http://geigermaps.jp/Create/Tutorials/mbed_geiger/ja

Dependencies:   mbed

Committer:
okini3939
Date:
Fri Apr 15 16:51:30 2011 +0000
Revision:
0:5b2e60110d9b

        

Who changed what in which revision?

UserRevisionLine numberNew contents of line
okini3939 0:5b2e60110d9b 1
okini3939 0:5b2e60110d9b 2 /*
okini3939 0:5b2e60110d9b 3 Copyright (c) 2010 Donatien Garnier (donatiengar [at] gmail [dot] com)
okini3939 0:5b2e60110d9b 4
okini3939 0:5b2e60110d9b 5 Permission is hereby granted, free of charge, to any person obtaining a copy
okini3939 0:5b2e60110d9b 6 of this software and associated documentation files (the "Software"), to deal
okini3939 0:5b2e60110d9b 7 in the Software without restriction, including without limitation the rights
okini3939 0:5b2e60110d9b 8 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
okini3939 0:5b2e60110d9b 9 copies of the Software, and to permit persons to whom the Software is
okini3939 0:5b2e60110d9b 10 furnished to do so, subject to the following conditions:
okini3939 0:5b2e60110d9b 11
okini3939 0:5b2e60110d9b 12 The above copyright notice and this permission notice shall be included in
okini3939 0:5b2e60110d9b 13 all copies or substantial portions of the Software.
okini3939 0:5b2e60110d9b 14
okini3939 0:5b2e60110d9b 15 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
okini3939 0:5b2e60110d9b 16 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
okini3939 0:5b2e60110d9b 17 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
okini3939 0:5b2e60110d9b 18 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
okini3939 0:5b2e60110d9b 19 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
okini3939 0:5b2e60110d9b 20 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
okini3939 0:5b2e60110d9b 21 THE SOFTWARE.
okini3939 0:5b2e60110d9b 22 */
okini3939 0:5b2e60110d9b 23
okini3939 0:5b2e60110d9b 24 #ifndef NETDNSREQUEST_H
okini3939 0:5b2e60110d9b 25 #define NETDNSREQUEST_H
okini3939 0:5b2e60110d9b 26
okini3939 0:5b2e60110d9b 27 //class Socket;
okini3939 0:5b2e60110d9b 28 class Host;
okini3939 0:5b2e60110d9b 29 //class NetService;
okini3939 0:5b2e60110d9b 30 class NetDnsRequest;
okini3939 0:5b2e60110d9b 31
okini3939 0:5b2e60110d9b 32 #include "netservice.h"
okini3939 0:5b2e60110d9b 33 #include "ipaddr.h"
okini3939 0:5b2e60110d9b 34 #include "host.h"
okini3939 0:5b2e60110d9b 35
okini3939 0:5b2e60110d9b 36 enum NetDnsReply
okini3939 0:5b2e60110d9b 37 {
okini3939 0:5b2e60110d9b 38 NETDNS_PRTCL,
okini3939 0:5b2e60110d9b 39 NETDNS_NOTFOUND, //Hostname is unknown
okini3939 0:5b2e60110d9b 40 NETDNS_ERROR, //Problem with DNS Service
okini3939 0:5b2e60110d9b 41 //...
okini3939 0:5b2e60110d9b 42 NETDNS_FOUND,
okini3939 0:5b2e60110d9b 43 };
okini3939 0:5b2e60110d9b 44
okini3939 0:5b2e60110d9b 45 class NetDnsRequest : public NetService
okini3939 0:5b2e60110d9b 46 {
okini3939 0:5b2e60110d9b 47 public:
okini3939 0:5b2e60110d9b 48 NetDnsRequest(const char* hostname);
okini3939 0:5b2e60110d9b 49 NetDnsRequest(Host* pHost);
okini3939 0:5b2e60110d9b 50 virtual ~NetDnsRequest();
okini3939 0:5b2e60110d9b 51
okini3939 0:5b2e60110d9b 52 class CDummy;
okini3939 0:5b2e60110d9b 53 template<class T>
okini3939 0:5b2e60110d9b 54 //Linker bug : Must be defined here :(
okini3939 0:5b2e60110d9b 55 void setOnReply( T* pItem, void (T::*pMethod)(NetDnsReply) )
okini3939 0:5b2e60110d9b 56 {
okini3939 0:5b2e60110d9b 57 m_pCbItem = (CDummy*) pItem;
okini3939 0:5b2e60110d9b 58 m_pCbMeth = (void (CDummy::*)(NetDnsReply)) pMethod;
okini3939 0:5b2e60110d9b 59 }
okini3939 0:5b2e60110d9b 60
okini3939 0:5b2e60110d9b 61 //Execute request & return OK if found, NOTFOUND or ERROR on error, or PROCESSING if the request has not completed yet
okini3939 0:5b2e60110d9b 62 // virtual DnsErr pollState() = 0;
okini3939 0:5b2e60110d9b 63 virtual void poll() = 0; //NetService fn
okini3939 0:5b2e60110d9b 64
okini3939 0:5b2e60110d9b 65 void getResult(IpAddr* pIp);
okini3939 0:5b2e60110d9b 66
okini3939 0:5b2e60110d9b 67 virtual void close();
okini3939 0:5b2e60110d9b 68
okini3939 0:5b2e60110d9b 69 protected:
okini3939 0:5b2e60110d9b 70 void onReply(NetDnsReply reply); //Must be called by impl when the request completes
okini3939 0:5b2e60110d9b 71
okini3939 0:5b2e60110d9b 72 IpAddr m_ip;
okini3939 0:5b2e60110d9b 73 char* m_hostname;
okini3939 0:5b2e60110d9b 74
okini3939 0:5b2e60110d9b 75 private:
okini3939 0:5b2e60110d9b 76 CDummy* m_pCbItem;
okini3939 0:5b2e60110d9b 77 void (CDummy::*m_pCbMeth)(NetDnsReply);
okini3939 0:5b2e60110d9b 78
okini3939 0:5b2e60110d9b 79 Host* m_pHost;
okini3939 0:5b2e60110d9b 80
okini3939 0:5b2e60110d9b 81 bool m_closed;
okini3939 0:5b2e60110d9b 82 };
okini3939 0:5b2e60110d9b 83
okini3939 0:5b2e60110d9b 84 #endif