revise exported headers and cleanup headers
[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 #include <map>
21 #include <vector>
22 #include <string>
23
24 #include "ServiceInstance.h"
25
26 namespace smartcard_service_api
27 {
28         class ClientInstance
29         {
30         private :
31                 string name;
32                 pid_t pid;
33                 vector<ByteArray> certHashes;
34                 map<unsigned int, ServiceInstance *> mapServices;
35
36         public :
37                 ClientInstance(const char *name, pid_t pid) :
38                         name(name), pid(pid)
39                 {
40                 }
41                 inline ~ClientInstance() { removeServices(); }
42                 inline bool operator ==(const char *name) const { return (this->name.compare(name) == 0); }
43
44                 inline void setPID(int pid) { this->pid = pid; }
45                 inline int getPID() const { return pid; }
46
47                 ServiceInstance *createService();
48                 ServiceInstance *getService(unsigned int handle);
49                 void removeService(unsigned int handle);
50                 void removeServices();
51                 inline size_t getServiceCounts() const { return mapServices.size(); }
52                 void generateCertificationHashes();
53
54                 inline vector<ByteArray> &getCertificationHashes() { return certHashes; }
55         };
56 } /* namespace smartcard_service_api */
57
58 #endif /* CLIENTINSTANCE_H_ */