YugabyteDB (2.13.1.0-b60, 21121d69985fbf76aa6958d8f04a9bfa936293b5)

Coverage Report

Created: 2022-03-22 16:43

/Users/deen/code/yugabyte-db/src/yb/util/tostring.cc
Line
Count
Source
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/tostring.h"
15
16
namespace yb {
17
18
60.5k
std::string MillisecondsToString(int64_t milliseconds) {
19
60.5k
  const char* sign = "";
20
60.5k
  if (milliseconds < 0) {
21
45
    sign = "-";
22
45
    milliseconds = -milliseconds;
23
45
  }
24
60.5k
  int64_t seconds = milliseconds / 1000;
25
60.5k
  milliseconds -= seconds * 1000;
26
60.5k
  return StringPrintf("%s%" PRId64 ".%03" PRId64 "s", sign, seconds, milliseconds);
27
60.5k
}
28
29
} // namespace yb