IPC unit tests and testing framework improvements
[platform/core/security/vasum.git] / libs / ipc / unique-id.cpp
1 /*
2  *  Copyright (c) 2015 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  *  Contact: Lukasz Kostyra <l.kostyra@samsung.com>
5  *
6  *  Licensed under the Apache License, Version 2.0 (the "License");
7  *  you may not use this file except in compliance with the License.
8  *  You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  *  Unless required by applicable law or agreed to in writing, software
13  *  distributed under the License is distributed on an "AS IS" BASIS,
14  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  *  See the License for the specific language governing permissions and
16  *  limitations under the License
17  */
18
19 /**
20  * @file
21  * @author  Lukasz Kostyra (l.kostyra@samsung.com)
22  * @brief   Unique ID type definition
23  */
24
25 #include "unique-id.hpp"
26
27 namespace ipc {
28
29 UniqueID::UniqueID()
30 {
31     mTime.tv_sec = 0;
32     mTime.tv_nsec = 0;
33     ::uuid_clear(mUUID);
34 }
35
36 void UniqueID::generate()
37 {
38     ::clock_gettime(CLOCK_REALTIME, &mTime);
39     ::uuid_generate_random(mUUID);
40 }
41
42 bool UniqueID::operator==(const UniqueID& other) const
43 {
44     return (mTime.tv_sec == other.mTime.tv_sec)
45         && (mTime.tv_nsec == other.mTime.tv_nsec)
46         && (::uuid_compare(mUUID, other.mUUID) == 0); // uuid_compare works just like strcmp
47 }
48
49 UniqueID::operator std::string() const
50 {
51     char uuid[37]; // uuid_unparse assures that it will print 36 chars + terminating zero
52     ::uuid_unparse(mUUID, uuid);
53     return std::to_string(mTime.tv_sec) + '.' + std::to_string(mTime.tv_nsec) + ':' + uuid;
54 }
55
56 std::ostream& operator<<(std::ostream& str, const UniqueID& id)
57 {
58     str << static_cast<std::string>(id);
59     return str;
60 }
61
62 } // namespace ipc