ffead.server.doc
ServicePool.h
1 /*
2  Copyright 2009-2012, Sumeet Chhetri
3 
4  Licensed under the Apache License, Version 2.0 (the "License");
5  you may not use this file except in compliance with the License.
6  You may obtain a copy of the License at
7 
8  http://www.apache.org/licenses/LICENSE-2.0
9 
10  Unless required by applicable law or agreed to in writing, software
11  distributed under the License is distributed on an "AS IS" BASIS,
12  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  See the License for the specific language governing permissions and
14  limitations under the License.
15 */
16 /*
17  * ServicePool.h
18  *
19  * Created on: Jan 29, 2010
20  * Author: sumeet
21  */
22 
23 #ifndef SERVICEPOOL_H_
24 #define SERVICEPOOL_H_
25 #include "string"
26 #include "map"
27 #include "vector"
28 #include "Service.h"
29 #include <time.h>
30 #include "CastUtil.h"
31 using namespace std;
32 class ServicePool {
33 private:
34  ServicePool();
35  virtual ~ServicePool();
36 public:
37  static ServicePool* getInstance();
38  static string registerService(string name,Service service);// will return a unique identification for this service
39  static bool unRegisterService(string id);//unregister will require the unique id
40  static vector<string> getServices(string);//return a list of available services
41  Service getService(string);//return a service
42 };
43 
44 #endif /* SERVICEPOOL_H_ */