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 NETUDPSOCKET_H
okini3939 0:5b2e60110d9b 25 #define NETUDPSOCKET_H
okini3939 0:5b2e60110d9b 26
okini3939 0:5b2e60110d9b 27 #include "net.h"
okini3939 0:5b2e60110d9b 28 #include "host.h"
okini3939 0:5b2e60110d9b 29
okini3939 0:5b2e60110d9b 30 #include <queue>
okini3939 0:5b2e60110d9b 31 using std::queue;
okini3939 0:5b2e60110d9b 32
okini3939 0:5b2e60110d9b 33 //Implements a Berkeley-like socket if
okini3939 0:5b2e60110d9b 34 //Can be interfaced either to lwip or a Telit module
okini3939 0:5b2e60110d9b 35
okini3939 0:5b2e60110d9b 36 enum NetUdpSocketErr
okini3939 0:5b2e60110d9b 37 {
okini3939 0:5b2e60110d9b 38 __NETUDPSOCKET_MIN = -0xFFFF,
okini3939 0:5b2e60110d9b 39 NETUDPSOCKET_SETUP, //NetUdpSocket not properly configured
okini3939 0:5b2e60110d9b 40 NETUDPSOCKET_IF, //If has problems
okini3939 0:5b2e60110d9b 41 NETUDPSOCKET_MEM, //Not enough mem
okini3939 0:5b2e60110d9b 42 NETUDPSOCKET_INUSE, //If/Port is in use
okini3939 0:5b2e60110d9b 43 //...
okini3939 0:5b2e60110d9b 44 NETUDPSOCKET_OK = 0
okini3939 0:5b2e60110d9b 45 };
okini3939 0:5b2e60110d9b 46
okini3939 0:5b2e60110d9b 47 enum NetUdpSocketEvent //Only one lonely event here... but who knows, maybe some day there'll be another one!
okini3939 0:5b2e60110d9b 48 {
okini3939 0:5b2e60110d9b 49 NETUDPSOCKET_READABLE, //Data in buf
okini3939 0:5b2e60110d9b 50 };
okini3939 0:5b2e60110d9b 51
okini3939 0:5b2e60110d9b 52
okini3939 0:5b2e60110d9b 53 class NetUdpSocket
okini3939 0:5b2e60110d9b 54 {
okini3939 0:5b2e60110d9b 55 public:
okini3939 0:5b2e60110d9b 56 NetUdpSocket();
okini3939 0:5b2e60110d9b 57 virtual ~NetUdpSocket(); //close()
okini3939 0:5b2e60110d9b 58
okini3939 0:5b2e60110d9b 59 virtual NetUdpSocketErr bind(const Host& me) = 0;
okini3939 0:5b2e60110d9b 60
okini3939 0:5b2e60110d9b 61 virtual int /*if < 0 : NetUdpSocketErr*/ sendto(const char* buf, int len, Host* pHost) = 0;
okini3939 0:5b2e60110d9b 62 virtual int /*if < 0 : NetUdpSocketErr*/ recvfrom(char* buf, int len, Host* pHost) = 0;
okini3939 0:5b2e60110d9b 63
okini3939 0:5b2e60110d9b 64 /* TODO NTH : printf / scanf helpers that call send/recv */
okini3939 0:5b2e60110d9b 65
okini3939 0:5b2e60110d9b 66 virtual NetUdpSocketErr close() = 0;
okini3939 0:5b2e60110d9b 67
okini3939 0:5b2e60110d9b 68 virtual NetUdpSocketErr poll() = 0;
okini3939 0:5b2e60110d9b 69
okini3939 0:5b2e60110d9b 70 class CDummy;
okini3939 0:5b2e60110d9b 71 //Callbacks
okini3939 0:5b2e60110d9b 72 template<class T>
okini3939 0:5b2e60110d9b 73 //Linker bug : Must be defined here :(
okini3939 0:5b2e60110d9b 74 void setOnEvent( T* pItem, void (T::*pMethod)(NetUdpSocketEvent) )
okini3939 0:5b2e60110d9b 75 {
okini3939 0:5b2e60110d9b 76 m_pCbItem = (CDummy*) pItem;
okini3939 0:5b2e60110d9b 77 m_pCbMeth = (void (CDummy::*)(NetUdpSocketEvent)) pMethod;
okini3939 0:5b2e60110d9b 78 }
okini3939 0:5b2e60110d9b 79
okini3939 0:5b2e60110d9b 80 void resetOnEvent(); //Disable callback
okini3939 0:5b2e60110d9b 81
okini3939 0:5b2e60110d9b 82 protected:
okini3939 0:5b2e60110d9b 83 void queueEvent(NetUdpSocketEvent e);
okini3939 0:5b2e60110d9b 84 void discardEvents();
okini3939 0:5b2e60110d9b 85 void flushEvents(); //to be called during polling
okini3939 0:5b2e60110d9b 86
okini3939 0:5b2e60110d9b 87 Host m_host;
okini3939 0:5b2e60110d9b 88 Host m_client;
okini3939 0:5b2e60110d9b 89
okini3939 0:5b2e60110d9b 90 friend class Net;
okini3939 0:5b2e60110d9b 91 int m_refs;
okini3939 0:5b2e60110d9b 92
okini3939 0:5b2e60110d9b 93 bool m_closed;
okini3939 0:5b2e60110d9b 94 bool m_removed;
okini3939 0:5b2e60110d9b 95
okini3939 0:5b2e60110d9b 96 private:
okini3939 0:5b2e60110d9b 97 //We do not want to execute user code in interrupt routines, so we queue events until the server is polled
okini3939 0:5b2e60110d9b 98 //If we port this to a multithreaded OS, we could avoid this (however some functions here are not thread-safe, so beware ;) )
okini3939 0:5b2e60110d9b 99 void onEvent(NetUdpSocketEvent e); //To be called on poll
okini3939 0:5b2e60110d9b 100 CDummy* m_pCbItem;
okini3939 0:5b2e60110d9b 101 void (CDummy::*m_pCbMeth)(NetUdpSocketEvent);
okini3939 0:5b2e60110d9b 102 queue<NetUdpSocketEvent> m_events;
okini3939 0:5b2e60110d9b 103
okini3939 0:5b2e60110d9b 104 };
okini3939 0:5b2e60110d9b 105
okini3939 0:5b2e60110d9b 106 #endif