aboutsummaryrefslogtreecommitdiffstats
path: root/common/format.go
blob: 119637d2e4fecbef0de8cd7b6bb5c8910cbe2019 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// Copyright 2016 The go-ethereum Authors
// This file is part of the go-ethereum library.
//
// The go-ethereum library is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// The go-ethereum library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.

package common

import (
    "fmt"
    "regexp"
    "strings"
    "time"
)

// PrettyDuration is a pretty printed version of a time.Duration value that cuts
// the unnecessary precision off from the formatted textual representation.
type PrettyDuration time.Duration

var prettyDurationRe = regexp.MustCompile("\\.[0-9]+")

// String implements the Stringer interface, allowing pretty printing of duration
// values rounded to three decimals.
func (d PrettyDuration) String() string {
    label := fmt.Sprintf("%v", time.Duration(d))
    if match := prettyDurationRe.FindString(label); len(match) > 4 {
        label = strings.Replace(label, match, match[:4], 1)
    }
    return label
}
r remaining rubygem-* ports with no arch dependent filespgollucci2015-07-031-0/+2 * - Update to 3.5.9sunpoet2015-04-062-3/+3 * - Update to 3.5.8sunpoet2014-12-282-4/+5 * net/rubygem-whois: update to 3.5.5swills2014-08-242-3/+5 * - Update to 3.3.1sunpoet2013-10-262-4/+5 * Add NO_STAGE all over the place in preparation for the staging support (cat: ...bapt2013-09-211-0/+1 * - Update to 3.2.1swills2013-07-282-3/+3 * - Reset maintainer after no response to mail since Jan 2013swills2013-07-281-1/+1 * - Update to 3.1.3swills2013-07-132-8/+4 * - Update to 2.6.4swills2012-08-292-3/+3 * - Update to 2.6.2sunpoet2012-07-042-3/+3 * - Update to 2.6.1swills2012-06-172-3/+3 * - Update to 2.5.0sunpoet2012-04-262-6/+7 * - Update to 2.2.0pgollucci2012-02-212-3/+3