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 /** \file
okini3939 0:5b2e60110d9b 25 UDP Socket header file
okini3939 0:5b2e60110d9b 26 */
okini3939 0:5b2e60110d9b 27
okini3939 0:5b2e60110d9b 28 #ifndef UDPSOCKET_H
okini3939 0:5b2e60110d9b 29 #define UDPSOCKET_H
okini3939 0:5b2e60110d9b 30
okini3939 0:5b2e60110d9b 31 #include "core/net.h"
okini3939 0:5b2e60110d9b 32 #include "core/host.h"
okini3939 0:5b2e60110d9b 33 //Essentially it is a safe interface to NetUdpSocket
okini3939 0:5b2e60110d9b 34
okini3939 0:5b2e60110d9b 35 ///UDP Socket error codes
okini3939 0:5b2e60110d9b 36 enum UDPSocketErr
okini3939 0:5b2e60110d9b 37 {
okini3939 0:5b2e60110d9b 38 __UDPSOCKET_MIN = -0xFFFF,
okini3939 0:5b2e60110d9b 39 UDPSOCKET_SETUP, ///<UDPSocket not properly configured
okini3939 0:5b2e60110d9b 40 UDPSOCKET_IF, ///<Interface has problems, does not exist or is not initialized
okini3939 0:5b2e60110d9b 41 UDPSOCKET_MEM, ///<Not enough mem
okini3939 0:5b2e60110d9b 42 UDPSOCKET_INUSE, ///<Interface / Port is in use
okini3939 0:5b2e60110d9b 43 //...
okini3939 0:5b2e60110d9b 44 UDPSOCKET_OK = 0 ///<Success
okini3939 0:5b2e60110d9b 45 };
okini3939 0:5b2e60110d9b 46
okini3939 0:5b2e60110d9b 47 ///UDP Socket Event(s)
okini3939 0:5b2e60110d9b 48 enum UDPSocketEvent //Only one event here for now, but keeps that model in case we need to implement some others
okini3939 0:5b2e60110d9b 49 {
okini3939 0:5b2e60110d9b 50 UDPSOCKET_READABLE, ///<Data in buf
okini3939 0:5b2e60110d9b 51 };
okini3939 0:5b2e60110d9b 52
okini3939 0:5b2e60110d9b 53 class NetUdpSocket;
okini3939 0:5b2e60110d9b 54 enum NetUdpSocketEvent;
okini3939 0:5b2e60110d9b 55
okini3939 0:5b2e60110d9b 56 ///This is a simple UDP Socket class
okini3939 0:5b2e60110d9b 57 /**
okini3939 0:5b2e60110d9b 58 This class exposes an API to deal with UDP Sockets
okini3939 0:5b2e60110d9b 59 */
okini3939 0:5b2e60110d9b 60 class UDPSocket
okini3939 0:5b2e60110d9b 61 {
okini3939 0:5b2e60110d9b 62 public:
okini3939 0:5b2e60110d9b 63 ///Creates a new socket
okini3939 0:5b2e60110d9b 64 UDPSocket();
okini3939 0:5b2e60110d9b 65
okini3939 0:5b2e60110d9b 66 ///Closes and destroys socket
okini3939 0:5b2e60110d9b 67 ~UDPSocket(); //close()
okini3939 0:5b2e60110d9b 68
okini3939 0:5b2e60110d9b 69 ///Binds the socket to local host or a multicast address
okini3939 0:5b2e60110d9b 70 UDPSocketErr bind(const Host& me);
okini3939 0:5b2e60110d9b 71
okini3939 0:5b2e60110d9b 72 ///Sends data
okini3939 0:5b2e60110d9b 73 /*
okini3939 0:5b2e60110d9b 74 @param pHost : host to send data to
okini3939 0:5b2e60110d9b 75 @return a negative error code or the number of bytes transmitted
okini3939 0:5b2e60110d9b 76 */
okini3939 0:5b2e60110d9b 77 int /*if < 0 : UDPSocketErr*/ sendto(const char* buf, int len, Host* pHost);
okini3939 0:5b2e60110d9b 78
okini3939 0:5b2e60110d9b 79 ///Receives data
okini3939 0:5b2e60110d9b 80 /*
okini3939 0:5b2e60110d9b 81 @param pHost : host from which this piece of data comes from
okini3939 0:5b2e60110d9b 82 @return a negative error code or the number of bytes received
okini3939 0:5b2e60110d9b 83 */
okini3939 0:5b2e60110d9b 84 int /*if < 0 : UDPSocketErr*/ recvfrom(char* buf, int len, Host* pHost);
okini3939 0:5b2e60110d9b 85
okini3939 0:5b2e60110d9b 86 /* TODO NTH : printf / scanf helpers that call send/recv */
okini3939 0:5b2e60110d9b 87
okini3939 0:5b2e60110d9b 88 ///Closes socket
okini3939 0:5b2e60110d9b 89 UDPSocketErr close();
okini3939 0:5b2e60110d9b 90
okini3939 0:5b2e60110d9b 91 //Callbacks
okini3939 0:5b2e60110d9b 92 ///Setups callback
okini3939 0:5b2e60110d9b 93 /**
okini3939 0:5b2e60110d9b 94 @param pMethod : callback function
okini3939 0:5b2e60110d9b 95 */
okini3939 0:5b2e60110d9b 96 void setOnEvent( void (*pMethod)(UDPSocketEvent) );
okini3939 0:5b2e60110d9b 97
okini3939 0:5b2e60110d9b 98 class CDummy;
okini3939 0:5b2e60110d9b 99 ///Setups callback
okini3939 0:5b2e60110d9b 100 /**
okini3939 0:5b2e60110d9b 101 @param pItem : instance of class on which to execute the callback method
okini3939 0:5b2e60110d9b 102 @param pMethod : callback method
okini3939 0:5b2e60110d9b 103 */
okini3939 0:5b2e60110d9b 104 template<class T>
okini3939 0:5b2e60110d9b 105 void setOnEvent( T* pItem, void (T::*pMethod)(UDPSocketEvent) )
okini3939 0:5b2e60110d9b 106 {
okini3939 0:5b2e60110d9b 107 m_pCbItem = (CDummy*) pItem;
okini3939 0:5b2e60110d9b 108 m_pCbMeth = (void (CDummy::*)(UDPSocketEvent)) pMethod;
okini3939 0:5b2e60110d9b 109 }
okini3939 0:5b2e60110d9b 110
okini3939 0:5b2e60110d9b 111 ///Disables callback
okini3939 0:5b2e60110d9b 112 void resetOnEvent();
okini3939 0:5b2e60110d9b 113
okini3939 0:5b2e60110d9b 114 protected:
okini3939 0:5b2e60110d9b 115 void onNetUdpSocketEvent(NetUdpSocketEvent e);
okini3939 0:5b2e60110d9b 116 UDPSocketErr checkInst();
okini3939 0:5b2e60110d9b 117
okini3939 0:5b2e60110d9b 118 private:
okini3939 0:5b2e60110d9b 119 NetUdpSocket* m_pNetUdpSocket;
okini3939 0:5b2e60110d9b 120
okini3939 0:5b2e60110d9b 121 CDummy* m_pCbItem;
okini3939 0:5b2e60110d9b 122 void (CDummy::*m_pCbMeth)(UDPSocketEvent);
okini3939 0:5b2e60110d9b 123
okini3939 0:5b2e60110d9b 124 void (*m_pCb)(UDPSocketEvent);
okini3939 0:5b2e60110d9b 125
okini3939 0:5b2e60110d9b 126 };
okini3939 0:5b2e60110d9b 127
okini3939 0:5b2e60110d9b 128 #endif