Added Gtest for smartcard-service
[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
25 /* SLP library header */
26
27 /* local header */
28 #include "ServiceInstance.h"
29
30 namespace smartcard_service_api
31 {
32         /* LCOV_EXCL_START */
33         class ClientInstance
34         {
35         private :
36                 string name;
37                 pid_t pid;
38                 vector<ByteArray> certHashes;
39                 map<unsigned int, ServiceInstance *> mapServices;
40
41         public :
42                 ClientInstance(const char *name, pid_t pid) :
43                         name(name), pid(pid)
44                 {
45                 }
46                 inline ~ClientInstance() { removeServices(); }
47                 inline bool operator ==(const char *name) const { return (this->name.compare(name) == 0); }
48
49                 inline void setPID(int pid) { this->pid = pid; }
50                 inline int getPID() const { return pid; }
51
52                 ServiceInstance *createService();
53                 ServiceInstance *getService(unsigned int handle);
54                 void removeService(unsigned int handle);
55                 void removeServices();
56                 inline size_t getServiceCounts() const { return mapServices.size(); }
57                 void generateCertificationHashes();
58
59                 inline vector<ByteArray> &getCertificationHashes() { return certHashes; }
60         };
61         /* LCOV_EXCL_STOP */
62 } /* namespace smartcard_service_api */
63
64 #endif /* CLIENTINSTANCE_H_ */