Return error code
[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 #if 1
24 #include <glib.h>
25 #endif
26
27 /* SLP library header */
28
29 /* local header */
30 #include "Message.h"
31 #include "ServiceInstance.h"
32
33 namespace smartcard_service_api
34 {
35         class ClientInstance
36         {
37         private:
38                 void *ioChannel;
39                 int socket;
40                 int watchID;
41                 int state;
42                 int pid;
43                 vector<ByteArray> certHashes;
44                 map<unsigned int, ServiceInstance *> mapServices;
45
46                 static gboolean _getCertificationHashes(gpointer user_data);
47
48         public:
49                 ClientInstance(void *ioChannel, int socket, int watchID, int state, int pid)
50                 {
51                         this->ioChannel = ioChannel;
52                         this->socket = socket;
53                         this->watchID = watchID;
54                         this->state = state;
55                         this->pid = pid;
56                 }
57                 ~ClientInstance() { removeServices(); }
58
59                 inline bool operator ==(const int &socket) const { return (this->socket == socket); }
60
61                 inline void *getIOChannel() { return ioChannel; }
62                 inline int getSocket() { return socket; }
63                 inline int getWatchID() { return watchID; }
64                 inline int getState() { return state; }
65
66                 void setPID(int pid);
67                 inline int getPID() { return pid; }
68
69                 ServiceInstance *createService(unsigned int context);
70                 ServiceInstance *getService(unsigned int context);
71                 void removeService(unsigned int context);
72                 void removeServices();
73
74                 bool sendMessageToAllServices(int socket, Message &msg);
75                 void generateCertificationHashes();
76
77                 inline vector<ByteArray> &getCertificationHashes() { return certHashes; }
78
79                 friend gboolean _getCertificationHashes(gpointer user_data);
80         };
81 } /* namespace smartcard_service_api */
82 #endif /* CLIENTINSTANCE_H_ */