Remove legacy codes
[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         class ClientInstance
33         {
34         private :
35                 string name;
36                 pid_t pid;
37                 vector<ByteArray> certHashes;
38                 map<unsigned int, ServiceInstance *> mapServices;
39
40         public :
41                 ClientInstance(const char *name, pid_t pid) :
42                         name(name), pid(pid)
43                 {
44                 }
45                 inline ~ClientInstance() { removeServices(); }
46                 inline bool operator ==(const char *name) const { return (this->name.compare(name) == 0); }
47
48                 inline void setPID(int pid) { this->pid = pid; }
49                 inline int getPID() const { return pid; }
50
51                 ServiceInstance *createService();
52                 ServiceInstance *getService(unsigned int handle);
53                 void removeService(unsigned int handle);
54                 void removeServices();
55                 inline size_t getServiceCounts() const { return mapServices.size(); }
56                 void generateCertificationHashes();
57
58                 inline vector<ByteArray> &getCertificationHashes() { return certHashes; }
59         };
60 } /* namespace smartcard_service_api */
61
62 #endif /* CLIENTINSTANCE_H_ */