Remove gcov rpm package
[platform/core/connectivity/smartcard-service.git] / server / include / ServerSEService.h
1 /*
2  * Copyright (c) 2012, 2013 Samsung Electronics Co., Ltd.
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         /* LCOV_EXCL_START */
35         class ServerSEService : public SEServiceHelper
36         {
37         private:
38                 vector<void *> libraries;
39                 map<string, Terminal *> mapTerminals;
40
41                 ServerSEService();
42                 ~ServerSEService();
43
44                 Terminal *createInstance(void *library);
45                 bool appendSELibrary(char *library);
46
47                 int openSELibraries();
48                 void closeSELibraries();
49
50                 static void terminalCallback(const void *terminal, int event, int error, void *user_param);
51                 static bool dispatcherCallback(void *message, int socket);
52
53         public:
54                 static ServerSEService &getInstance();
55
56 #if 0
57                 bool isValidReaderHandle(void *handle);
58 #endif
59
60                 void shutdown() {}
61                 void shutdownSync() {}
62
63                 friend void terminalCallback(const void *name, int event, int error, void *user_param);
64                 friend bool dispatcherCallback(void *message, int socket);
65                 friend class ServerDispatcher;
66         };
67
68         /* LCOV_EXCL_STOP */
69 } /* namespace smartcard_service_api */
70 #endif /* SERVERSESERVICE_H_ */