Apply coding rule
[platform/core/connectivity/smartcard-service.git] / server / ClientInstance.cpp
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 /* standard library header */
18 #include <pthread.h>
19
20 /* SLP library header */
21
22 /* local header */
23 #include "Debug.h"
24 #include "ClientInstance.h"
25 #include "ServerResource.h"
26 #include "SignatureHelper.h"
27
28 namespace smartcard_service_api
29 {
30         ServiceInstance *ClientInstance::createService()
31         {
32                 ServiceInstance *result = NULL;
33
34                 result = new ServiceInstance(this);
35                 if (result != NULL) {
36                         mapServices.insert(make_pair(result->getHandle(), result));
37                 } else {
38                         _ERR("alloc failed");
39                 }
40
41                 return result;
42         }
43
44         ServiceInstance *ClientInstance::getService(unsigned int handle)
45         {
46                 ServiceInstance *result = NULL;
47                 map<unsigned int, ServiceInstance *>::iterator item;
48
49                 if ((item = mapServices.find(handle)) != mapServices.end())
50                 {
51                         result = item->second;
52                 }
53
54                 return result;
55         }
56
57         void ClientInstance::removeService(unsigned int handle)
58         {
59                 map<unsigned int, ServiceInstance *>::iterator item;
60
61                 if ((item = mapServices.find(handle)) != mapServices.end())
62                 {
63                         delete item->second;
64                         mapServices.erase(item);
65                 }
66         }
67
68         void ClientInstance::removeServices()
69         {
70                 map<unsigned int, ServiceInstance *>::iterator item;
71
72                 for (item = mapServices.begin(); item != mapServices.end(); item++)
73                 {
74                         delete item->second;
75                 }
76
77                 mapServices.clear();
78         }
79
80         void ClientInstance::generateCertificationHashes()
81         {
82                 SignatureHelper::getCertificationHashes(getPID(), certHashes);
83         }
84 } /* namespace smartcard_service_api */