mbed Phone Platform

Dependencies:   ulaw mbed ConfigFile

Committer:
okini3939
Date:
Sun Dec 26 15:49:07 2010 +0000
Revision:
1:0f82c574096f

        

Who changed what in which revision?

UserRevisionLine numberNew contents of line
okini3939 1:0f82c574096f 1
okini3939 1:0f82c574096f 2 /*
okini3939 1:0f82c574096f 3 Copyright (c) 2010 Donatien Garnier (donatiengar [at] gmail [dot] com)
okini3939 1:0f82c574096f 4
okini3939 1:0f82c574096f 5 Permission is hereby granted, free of charge, to any person obtaining a copy
okini3939 1:0f82c574096f 6 of this software and associated documentation files (the "Software"), to deal
okini3939 1:0f82c574096f 7 in the Software without restriction, including without limitation the rights
okini3939 1:0f82c574096f 8 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
okini3939 1:0f82c574096f 9 copies of the Software, and to permit persons to whom the Software is
okini3939 1:0f82c574096f 10 furnished to do so, subject to the following conditions:
okini3939 1:0f82c574096f 11
okini3939 1:0f82c574096f 12 The above copyright notice and this permission notice shall be included in
okini3939 1:0f82c574096f 13 all copies or substantial portions of the Software.
okini3939 1:0f82c574096f 14
okini3939 1:0f82c574096f 15 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
okini3939 1:0f82c574096f 16 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
okini3939 1:0f82c574096f 17 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
okini3939 1:0f82c574096f 18 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
okini3939 1:0f82c574096f 19 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
okini3939 1:0f82c574096f 20 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
okini3939 1:0f82c574096f 21 THE SOFTWARE.
okini3939 1:0f82c574096f 22 */
okini3939 1:0f82c574096f 23
okini3939 1:0f82c574096f 24 /**
okini3939 1:0f82c574096f 25 \file Net Service base class header file
okini3939 1:0f82c574096f 26 */
okini3939 1:0f82c574096f 27
okini3939 1:0f82c574096f 28 #ifndef NETSERVICE_H
okini3939 1:0f82c574096f 29 #define NETSERVICE_H
okini3939 1:0f82c574096f 30
okini3939 1:0f82c574096f 31 #include <list>
okini3939 1:0f82c574096f 32 using std::list;
okini3939 1:0f82c574096f 33
okini3939 1:0f82c574096f 34 ///Net Service base class
okini3939 1:0f82c574096f 35 /**
okini3939 1:0f82c574096f 36 Each connection-oriented object can register as service (by inheriting this class), so that it is polled regularly.
okini3939 1:0f82c574096f 37 It notifies the pool when the connection is terminated so that it can be destroyed.
okini3939 1:0f82c574096f 38 */
okini3939 1:0f82c574096f 39 class NetService
okini3939 1:0f82c574096f 40 {
okini3939 1:0f82c574096f 41 public:
okini3939 1:0f82c574096f 42 ///Instantiates a new service
okini3939 1:0f82c574096f 43 /**
okini3939 1:0f82c574096f 44 @param owned If true the object is owned by the pool and will be destroyed on closure.
okini3939 1:0f82c574096f 45 */
okini3939 1:0f82c574096f 46 NetService(bool owned = true); //Is owned by the pool?
okini3939 1:0f82c574096f 47 virtual ~NetService();
okini3939 1:0f82c574096f 48
okini3939 1:0f82c574096f 49 ///This method can be inherited so that it is called on each @a Net::poll() call.
okini3939 1:0f82c574096f 50 virtual void poll();
okini3939 1:0f82c574096f 51
okini3939 1:0f82c574096f 52 static void servicesPoll(); //Poll all registered services & destroy closed ones
okini3939 1:0f82c574096f 53
okini3939 1:0f82c574096f 54 protected:
okini3939 1:0f82c574096f 55 ///This flags the service as to be destructed if owned by the pool.
okini3939 1:0f82c574096f 56 void close();
okini3939 1:0f82c574096f 57
okini3939 1:0f82c574096f 58 private:
okini3939 1:0f82c574096f 59 bool m_closed;
okini3939 1:0f82c574096f 60 bool m_removed;
okini3939 1:0f82c574096f 61 bool m_owned;
okini3939 1:0f82c574096f 62
okini3939 1:0f82c574096f 63 static list<NetService*>& lpServices(); //Helper to prevent static initialization fiasco
okini3939 1:0f82c574096f 64
okini3939 1:0f82c574096f 65 };
okini3939 1:0f82c574096f 66
okini3939 1:0f82c574096f 67 #endif