Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(47)

Unified Diff: go/src/infra/libs/clock/clockflag/time.go

Issue 1154213012: Add context-aware "time" library wrapper. (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Added coverage files. Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « go/src/infra/libs/clock/clockflag/duration_test.go ('k') | go/src/infra/libs/clock/clockflag/time_test.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: go/src/infra/libs/clock/clockflag/time.go
diff --git a/go/src/infra/libs/clock/clockflag/time.go b/go/src/infra/libs/clock/clockflag/time.go
new file mode 100644
index 0000000000000000000000000000000000000000..3065183950ca4c550c54434a5d02bffb76175b74
--- /dev/null
+++ b/go/src/infra/libs/clock/clockflag/time.go
@@ -0,0 +1,59 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+package clockflag
+
+import (
+ "encoding/json"
+ "flag"
+ "time"
+)
+
+// Time is a flag- and JSON-compatible Time which parses from RFC3339 strings.
+type Time time.Time
+
+var _ interface {
+ flag.Value
+ json.Unmarshaler
+ json.Marshaler
+} = (*Time)(nil)
+
+// Time returns the Time value associated with this Time.
+func (t Time) Time() time.Time {
+ return time.Time(t)
+}
+
+// Set implements flag.Value.
+func (t *Time) Set(value string) error {
+ timeValue, err := time.Parse(time.RFC3339Nano, value)
+ if err != nil {
+ return err
+ }
+ *t = Time(timeValue.UTC())
+ return nil
+}
+
+func (t *Time) String() string {
+ return time.Time(*t).String()
+}
+
+// UnmarshalJSON implements json.Unmarshaler.
+//
+// Unmarshals a JSON entry into the underlying type. The entry is expected to
+// contain a string corresponding to one of the enum's keys.
+func (t *Time) UnmarshalJSON(data []byte) error {
+ var value time.Time
+ if err := value.UnmarshalJSON(data); err != nil {
+ return err
+ }
+ *t = Time(value.UTC())
+ return nil
+}
+
+// MarshalJSON implements json.Marshaler.
+//
+// Marshals a Time into an RFC3339 time string.
+func (t Time) MarshalJSON() ([]byte, error) {
+ return t.Time().UTC().MarshalJSON()
+}
« no previous file with comments | « go/src/infra/libs/clock/clockflag/duration_test.go ('k') | go/src/infra/libs/clock/clockflag/time_test.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698