tizen 2.4 release
[framework/security/key-manager.git] / src / manager / common / client-info-impl.cpp
1 /*
2  *  Copyright (c) 2000 - 2013 Samsung Electronics Co., Ltd All Rights Reserved
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  * @file        client-info-impl.cpp
18  * @author      Kyungwook Tak (k.tak@samsung.com)
19  * @version     1.0
20  * @brief       ClientInfo implementation.
21  */
22
23 #include <ckm/ckm-client-info.h>
24
25 namespace CKM {
26         const std::string ClientInfo::ZONE_DEFAULT = "host";
27         const std::string ClientInfo::DELIMITER = "-";
28
29
30 uid_t ClientInfo::getUID() const
31 {
32     return m_uid;
33 }
34
35 ClientInfo::~ClientInfo()
36 {
37 }
38
39 ClientInfo::ClientInfo(const std::string &zone, const uid_t uid)
40   : m_zone(zone), m_uid(uid)
41 {
42 }
43
44 ClientInfo::ClientInfo(const uid_t uid)
45   : m_zone(ZONE_DEFAULT), m_uid(uid)
46 {
47 }
48
49 ClientID ClientInfo::getClientID() const
50 {
51 #ifdef DB_PER_ZONE_ENABLE
52     return ClientID(m_zone
53         + DELIMITER
54         + std::to_string(m_uid));
55 #else
56     return ClientID(std::to_string(m_uid));
57 #endif
58 }
59
60 std::string ClientInfo::getZone() const
61 {
62     return m_zone;
63 }
64
65 } // namespace CKM