mirror of
https://github.com/golang/go
synced 2024-11-20 03:34:40 -07:00
7340d13977
Loading and testing timezones is currently implemented using several, partly redundant, OS specific data structures and functions. This change merges most of that code into OS independent implementations. Change-Id: Iae2877c5f48d1e4a9de9ce55d0530d52e24cf96e Reviewed-on: https://go-review.googlesource.com/64391 Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org>
53 lines
1.3 KiB
Go
53 lines
1.3 KiB
Go
// Copyright 2009 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.
|
|
|
|
// +build darwin,386 darwin,amd64 dragonfly freebsd linux,!android nacl netbsd openbsd solaris
|
|
|
|
// Parse "zoneinfo" time zone file.
|
|
// This is a fairly standard file format used on OS X, Linux, BSD, Sun, and others.
|
|
// See tzfile(5), http://en.wikipedia.org/wiki/Zoneinfo,
|
|
// and ftp://munnari.oz.au/pub/oldtz/
|
|
|
|
package time
|
|
|
|
import (
|
|
"runtime"
|
|
"syscall"
|
|
)
|
|
|
|
// Many systems use /usr/share/zoneinfo, Solaris 2 has
|
|
// /usr/share/lib/zoneinfo, IRIX 6 has /usr/lib/locale/TZ.
|
|
var zoneSources = []string{
|
|
"/usr/share/zoneinfo/",
|
|
"/usr/share/lib/zoneinfo/",
|
|
"/usr/lib/locale/TZ/",
|
|
runtime.GOROOT() + "/lib/time/zoneinfo.zip",
|
|
}
|
|
|
|
func initLocal() {
|
|
// consult $TZ to find the time zone to use.
|
|
// no $TZ means use the system default /etc/localtime.
|
|
// $TZ="" means use UTC.
|
|
// $TZ="foo" means use /usr/share/zoneinfo/foo.
|
|
|
|
tz, ok := syscall.Getenv("TZ")
|
|
switch {
|
|
case !ok:
|
|
z, err := loadLocation("localtime", []string{"/etc/"})
|
|
if err == nil {
|
|
localLoc = *z
|
|
localLoc.name = "Local"
|
|
return
|
|
}
|
|
case tz != "" && tz != "UTC":
|
|
if z, err := loadLocation(tz, zoneSources); err == nil {
|
|
localLoc = *z
|
|
return
|
|
}
|
|
}
|
|
|
|
// Fall back to UTC.
|
|
localLoc.name = "UTC"
|
|
}
|