Merge local branch into tizen
[platform/core/connectivity/smartcard-service.git] / server / include / ClientInstance.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 CLIENTINSTANCE_H_
18 #define CLIENTINSTANCE_H_
19
20 /* standard library header */
21 #include <map>
22 #include <vector>
23 #include <string>
24 #ifndef USE_GDBUS
25 #include <glib.h>
26 #endif
27
28 /* SLP library header */
29
30 /* local header */
31 #ifndef USE_GDBUS
32 #include "Message.h"
33 #endif
34 #include "ServiceInstance.h"
35
36 namespace smartcard_service_api
37 {
38         class ClientInstance
39         {
40         private :
41 #ifdef USE_GDBUS
42                 string name;
43 #else
44                 void *ioChannel;
45                 int socket;
46                 int watchID;
47                 int state;
48 #endif
49                 pid_t pid;
50                 vector<ByteArray> certHashes;
51                 map<unsigned int, ServiceInstance *> mapServices;
52
53         public :
54 #ifdef USE_GDBUS
55                 ClientInstance(const char *name, pid_t pid) :
56                         name(name), pid(pid)
57                 {
58                 }
59 #else
60                 ClientInstance(void *ioChannel, int socket, int watchID,
61                         int state, int pid) : ioChannel(ioChannel),
62                         socket(socket), watchID(watchID), state(state), pid(pid)
63                 {
64                 }
65
66                 ClientInstance(pid_t pid) : ioChannel(NULL),
67                         socket(pid), watchID(0), state(0), pid(pid)
68                 {
69                 }
70 #endif
71                 inline ~ClientInstance() { removeServices(); }
72 #ifdef USE_GDBUS
73                 inline bool operator ==(const char *name) const { return (this->name.compare(name) == 0); }
74 #else
75                 inline bool operator ==(const int &socket) const { return (this->socket == socket); }
76 #endif
77
78 #ifndef USE_GDBUS
79                 inline void *getIOChannel() { return ioChannel; }
80                 inline int getSocket() { return socket; }
81                 inline int getWatchID() { return watchID; }
82                 inline int getState() { return state; }
83 #endif
84                 inline void setPID(int pid) { this->pid = pid; }
85                 inline int getPID() const { return pid; }
86
87                 ServiceInstance *createService();
88                 ServiceInstance *getService(unsigned int handle);
89                 void removeService(unsigned int handle);
90                 void removeServices();
91                 inline size_t getServiceCounts() const { return mapServices.size(); }
92 #ifndef USE_GDBUS
93                 bool sendMessageToAllServices(int socket, const Message &msg);
94 #endif
95                 void generateCertificationHashes();
96
97                 inline vector<ByteArray> &getCertificationHashes() { return certHashes; }
98         };
99 } /* namespace smartcard_service_api */
100 #endif /* CLIENTINSTANCE_H_ */