File: rep.go

package info (click to toggle)
golang-github-rickb777-date 1.20.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 460 kB
  • sloc: sh: 63; makefile: 3
file content (35 lines) | stat: -rw-r--r-- 1,276 bytes parent folder | download
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
// Copyright 2015 The Go 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 date

import "time"

const secondsPerDay = 60 * 60 * 24

// encode returns the number of days elapsed from date zero to the date
// corresponding to the given Time value.
func encode(t time.Time) PeriodOfDays {
	// Compute the number of seconds elapsed since January 1, 1970 00:00:00
	// in the location specified by t and not necessarily UTC.
	// A Time value is represented internally as an offset from a UTC base
	// time; because we want to extract a date in the time zone specified
	// by t rather than in UTC, we need to compensate for the time zone
	// difference.
	_, offset := t.Zone()
	secs := t.Unix() + int64(offset)
	// Unfortunately operator / rounds towards 0, so negative values
	// must be handled differently
	if secs >= 0 {
		return PeriodOfDays(secs / secondsPerDay)
	}
	return -PeriodOfDays((secondsPerDay - 1 - secs) / secondsPerDay)
}

// decode returns the Time value corresponding to 00:00:00 UTC of the date
// represented by d, the number of days elapsed since date zero.
func decode(d PeriodOfDays) time.Time {
	secs := int64(d) * secondsPerDay
	return time.Unix(secs, 0).UTC()
}