IBR-DTNSuite  0.10
ApiServer.h
Go to the documentation of this file.
1 /*
2  * ApiServer.h
3  *
4  * Copyright (C) 2011 IBR, TU Braunschweig
5  *
6  * Written-by: Johannes Morgenroth <morgenroth@ibr.cs.tu-bs.de>
7  *
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  * http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  *
20  */
21 
22 #ifndef APISERVER_H_
23 #define APISERVER_H_
24 
25 #include "Component.h"
26 #include "api/Registration.h"
27 #include "api/ClientHandler.h"
28 #include "core/EventReceiver.h"
29 #include "storage/BundleSeeker.h"
31 #include <ibrcommon/net/socket.h>
32 #include <ibrcommon/thread/Mutex.h>
33 #include <ibrcommon/thread/Timer.h>
34 
35 #include <set>
36 #include <list>
37 
38 namespace dtn
39 {
40  namespace api
41  {
43  {
44  public:
45  static const std::string TAG;
46 
47  ApiServer(const ibrcommon::File &socket);
48  ApiServer(const ibrcommon::vinterface &net, int port = 4550);
49  virtual ~ApiServer();
50 
54  virtual const std::string getName() const;
55 
56  void freeRegistration(Registration &reg);
57 
58  void raiseEvent(const dtn::core::Event *evt) throw ();
59 
68  Registration& getRegistration(const std::string &handle);
69 
76  virtual size_t timeout(ibrcommon::Timer*);
77 
78  protected:
79  void __cancellation() throw ();
80 
81  virtual void connectionUp(ClientHandler *conn);
82  virtual void connectionDown(ClientHandler *conn);
83 
84  void componentUp() throw ();
85  void componentRun() throw ();
86  void componentDown() throw ();
87 
88  private:
89 
93  void startGarbageCollector();
99  size_t nextRegistrationExpiry();
100 
101  ibrcommon::vsocket _sockets;
102  bool _shutdown;
103  std::list<Registration> _registrations;
104  std::list<ClientHandler*> _connections;
105  ibrcommon::Mutex _connection_lock;
106  ibrcommon::Mutex _registration_lock;
107  ibrcommon::Timer _garbage_collector;
108  };
109  }
110 }
111 
112 #endif /* APISERVER_H_ */