/Users/deen/code/yugabyte-db/src/yb/util/timestamp.cc
Line | Count | Source (jump to first uncovered line) |
1 | | // Copyright (c) YugaByte, Inc. |
2 | | // |
3 | | // Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except |
4 | | // in compliance with the License. You may obtain a copy of the License at |
5 | | // |
6 | | // http://www.apache.org/licenses/LICENSE-2.0 |
7 | | // |
8 | | // Unless required by applicable law or agreed to in writing, software distributed under the License |
9 | | // is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express |
10 | | // or implied. See the License for the specific language governing permissions and limitations |
11 | | // under the License. |
12 | | // |
13 | | |
14 | | #include "yb/util/timestamp.h" |
15 | | #include "yb/util/date_time.h" |
16 | | #include "yb/util/status.h" |
17 | | |
18 | | namespace yb { |
19 | | |
20 | 8.57M | int64_t Timestamp::ToInt64() const { |
21 | 8.57M | return value_; |
22 | 8.57M | } |
23 | | |
24 | 0 | Status Timestamp::FromInt64(int64_t value) { |
25 | 0 | value_ = value; |
26 | 0 | return Status::OK(); |
27 | 0 | } |
28 | | |
29 | 4 | std::string Timestamp::ToString() const { |
30 | 4 | return std::to_string(value_); |
31 | 4 | } |
32 | | |
33 | 5 | std::string Timestamp::ToFormattedString() const { |
34 | 5 | return DateTime::TimestampToString(*this, DateTime::CqlOutputFormat); |
35 | 5 | } |
36 | | |
37 | 25.8k | std::string Timestamp::ToHumanReadableTime() const { |
38 | 25.8k | return DateTime::TimestampToString(*this, DateTime::HumanReadableOutputFormat); |
39 | 25.8k | } |
40 | | |
41 | | } // namespace yb |