update the latest source
[platform/core/connectivity/smartcard-service.git] / server / include / ServerSEService.h
1 /*
2 * Copyright (c) 2012 Samsung Electronics Co., Ltd All Rights Reserved
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 #ifndef SERVERSESERVICE_H_
18 #define SERVERSESERVICE_H_
19
20 /* standard library header */
21 #include <vector>
22
23 /* SLP library header */
24
25 /* local header */
26 #include "SEServiceHelper.h"
27 #include "Terminal.h"
28 #include "ServerReader.h"
29
30 using namespace std;
31
32 namespace smartcard_service_api
33 {
34         class ServerSEService : public SEServiceHelper
35         {
36         private:
37                 vector<void *> libraries;
38                 map<char *, Terminal *> mapTerminals;
39
40                 ServerSEService();
41                 ~ServerSEService();
42
43                 Terminal *createInstance(void *library);
44                 bool appendSELibrary(char *library);
45
46                 int openSELibraries();
47                 void closeSELibraries();
48
49                 static void terminalCallback(void *terminal, int event, int error, void *user_param);
50                 static bool dispatcherCallback(void *message, int socket);
51
52         public:
53                 static ServerSEService &getInstance();
54
55 #if 0
56                 bool isValidReaderHandle(void *handle);
57 #endif
58                 friend void terminalCallback(char *name, int event, int error, void *user_param);
59                 friend bool dispatcherCallback(void *message, int socket);
60                 friend class ServerDispatcher;
61         };
62
63 } /* namespace smartcard_service_api */
64 #endif /* SERVERSESERVICE_H_ */