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.
Parse "zoneinfo" time zone file. This is a fairly standard file format used on OS X, Linux, BSD, Sun, and others. See tzfile(5), https://en.wikipedia.org/wiki/Zoneinfo, and ftp://munnari.oz.au/pub/oldtz/

package time

import (
	
	
	
)
registerLoadFromEmbeddedTZData is called by the time/tzdata package, if it is imported.
loadFromEmbeddedTZData is used to load a specific tzdata file from tzdata information embedded in the binary itself. This is set when the time/tzdata package is imported, via registerLoadFromEmbeddedTzdata.
maxFileSize is the max permitted size of files read by readFile. As reference, the zoneinfo.zip distributed by Go is ~350 KB, so 10MB is overkill.
const maxFileSize = 10 << 20

type fileSizeError string

func ( fileSizeError) () string {
	return "time: file " + string() + " is too large"
}
Copies of io.Seek* constants to avoid importing "io":
const (
	seekStart   = 0
	seekCurrent = 1
	seekEnd     = 2
)
Simple I/O interface to binary blob of data.
type dataIO struct {
	p     []byte
	error bool
}

func ( *dataIO) ( int) []byte {
	if len(.p) <  {
		.p = nil
		.error = true
		return nil
	}
	 := .p[0:]
	.p = .p[:]
	return 
}

func ( *dataIO) () ( uint32,  bool) {
	 := .read(4)
	if len() < 4 {
		.error = true
		return 0, false
	}
	return uint32([3]) | uint32([2])<<8 | uint32([1])<<16 | uint32([0])<<24, true
}

func ( *dataIO) () ( uint64,  bool) {
	,  := .big4()
	,  := .big4()
	if ! || ! {
		.error = true
		return 0, false
	}
	return (uint64() << 32) | uint64(), true
}

func ( *dataIO) () ( byte,  bool) {
	 := .read(1)
	if len() < 1 {
		.error = true
		return 0, false
	}
	return [0], true
}
read returns the read of the data in the buffer.
func ( *dataIO) () []byte {
	 := .p
	.p = nil
	return 
}
Make a string by stopping at the first NUL
func ( []byte) string {
	for  := 0;  < len(); ++ {
		if [] == 0 {
			return string([0:])
		}
	}
	return string()
}

var badData = errors.New("malformed time zone information")
LoadLocationFromTZData returns a Location with the given name initialized from the IANA Time Zone database-formatted data. The data should be in the format of a standard IANA time zone file (for example, the content of /etc/localtime on Unix systems).
func ( string,  []byte) (*Location, error) {
	 := dataIO{, false}
4-byte magic "TZif"
	if  := .read(4); string() != "TZif" {
		return nil, badData
	}
1-byte version, then 15 bytes of padding
	var  int
	var  []byte
	if  = .read(16); len() != 16 {
		return nil, badData
	} else {
		switch [0] {
		case 0:
			 = 1
		case '2':
			 = 2
		case '3':
			 = 3
		default:
			return nil, badData
		}
	}
six big-endian 32-bit integers: number of UTC/local indicators number of standard/wall indicators number of leap seconds number of transition times number of local time zones number of characters of time zone abbrev strings
	const (
		 = iota
		
		
		
		
		
	)
	var  [6]int
	for  := 0;  < 6; ++ {
		,  := .big4()
		if ! {
			return nil, badData
		}
		if uint32(int()) !=  {
			return nil, badData
		}
		[] = int()
	}
If we have version 2 or 3, then the data is first written out in a 32-bit format, then written out again in a 64-bit format. Skip the 32-bit format and read the 64-bit one, as it can describe a broader range of dates.

	 := false
Skip the 32-bit data.
		 := []*4 +
			[] +
			[]*6 +
			[] +
			[]*8 +
			[] +
Skip the version 2 header that we just read.
		 += 4 + 16
		.read()

		 = true
Read the counts again, they can differ.
		for  := 0;  < 6; ++ {
			,  := .big4()
			if ! {
				return nil, badData
			}
			if uint32(int()) !=  {
				return nil, badData
			}
			[] = int()
		}
	}

	 := 4
	if  {
		 = 8
	}
Transition times.
	 := dataIO{.read([] * ), false}
Time zone indices for transition times.
	 := .read([])
Zone info structures
	 := dataIO{.read([] * 6), false}
Time zone abbreviations.
	 := .read([])
Leap-second time pairs
	.read([] * ( + 4))
Whether tx times associated with local time types are specified as standard time or wall time.
	 := .read([])
Whether tx times associated with local time types are specified as UTC or local time.
	 := .read([])

	if .error { // ran out of data
		return nil, badData
	}

	var  string
	 := .rest()
	if len() > 2 && [0] == '\n' && [len()-1] == '\n' {
		 = string([1 : len()-1])
	}
Now we can build up a useful data structure. First the zone information. utcoff[4] isdst[1] nameindex[1]
	 := []
Reject tzdata files with no zones. There's nothing useful in them. This also avoids a panic later when we add and then use a fake transition (golang.org/issue/29437).
		return nil, badData
	}
	 := make([]zone, )
	for  := range  {
		var  bool
		var  uint32
		if ,  = .big4(); ! {
			return nil, badData
		}
		if uint32(int()) !=  {
			return nil, badData
		}
		[].offset = int(int32())
		var  byte
		if ,  = .byte(); ! {
			return nil, badData
		}
		[].isDST =  != 0
		if ,  = .byte(); ! || int() >= len() {
			return nil, badData
		}
		[].name = byteString([:])
There is a bug with AIX 7.2 TL 0 with files in Etc, GMT+1 will return GMT-1 instead of GMT+1 or -01.
GMT+0 is OK
				[].name = [4:]
			}
		}
	}
Now the transition time info.
	 := make([]zoneTrans, [])
	for  := range  {
		var  int64
		if ! {
			if ,  := .big4(); ! {
				return nil, badData
			} else {
				 = int64(int32())
			}
		} else {
			if ,  := .big8(); ! {
				return nil, badData
			} else {
				 = int64()
			}
		}
		[].when = 
		if int([]) >= len() {
			return nil, badData
		}
		[].index = []
		if  < len() {
			[].isstd = [] != 0
		}
		if  < len() {
			[].isutc = [] != 0
		}
	}

Build fake transition to cover all time. This happens in fixed locations like "Etc/GMT0".
		 = append(, zoneTrans{when: alpha, index: 0})
	}
Committed to succeed.
	 := &Location{zone: , tx: , name: , extend: }
Fill in the cache with information about right now, since that will be the most common lookup.
	, ,  := now()
	for  := range  {
		if [].when <=  && (+1 == len() ||  < [+1].when) {
			.cacheStart = [].when
			.cacheEnd = omega
			 := [].index
			if +1 < len() {
				.cacheEnd = [+1].when
If we're at the end of the known zone transitions, try the extend string.
				if , , , ,  := tzset(.extend, .cacheEnd, );  {
					.cacheStart = 
Find the zone that is returned by tzset, the last transition is not always the correct zone.
					for ,  := range .zone {
						if .name ==  {
							 = uint8()
							break
						}
					}
				}
			}
			.cacheZone = &.zone[]
			break
		}
	}

	return , nil
}
loadTzinfoFromDirOrZip returns the contents of the file with the given name in dir. dir can either be an uncompressed zip file, or a directory.
func (,  string) ([]byte, error) {
	if len() > 4 && [len()-4:] == ".zip" {
		return loadTzinfoFromZip(, )
	}
	if  != "" {
		 =  + "/" + 
	}
	return readFile()
}
There are 500+ zoneinfo files. Rather than distribute them all individually, we ship them in an uncompressed zip file. Used this way, the zip file format serves as a commonly readable container for the individual small files. We choose zip over tar because zip files have a contiguous table of contents, making individual file lookups faster, and because the per-file overhead in a zip file is considerably less than tar's 512 bytes.
get4 returns the little-endian 32-bit value in b.
func ( []byte) int {
	if len() < 4 {
		return 0
	}
	return int([0]) | int([1])<<8 | int([2])<<16 | int([3])<<24
}
get2 returns the little-endian 16-bit value in b.
func ( []byte) int {
	if len() < 2 {
		return 0
	}
	return int([0]) | int([1])<<8
}
loadTzinfoFromZip returns the contents of the file with the given name in the given uncompressed zip file.
func (,  string) ([]byte, error) {
	,  := open()
	if  != nil {
		return nil, 
	}
	defer closefd()

	const (
		 = 0x06054b50
		  = 0x02014b50
		 = 22

		 = 30
		     = 0x04034b50
	)

	 := make([]byte, )
	if  := preadn(, , -);  != nil || get4() !=  {
		return nil, errors.New("corrupt zip file " + )
	}
	 := get2([10:])
	 := get4([12:])
	 := get4([16:])

	 = make([]byte, )
	if  := preadn(, , );  != nil {
		return nil, errors.New("corrupt zip file " + )
	}

zip entry layout: 0 magic[4] 4 madevers[1] 5 madeos[1] 6 extvers[1] 7 extos[1] 8 flags[2] 10 meth[2] 12 modtime[2] 14 moddate[2] 16 crc[4] 20 csize[4] 24 uncsize[4] 28 namelen[2] 30 xlen[2] 32 fclen[2] 34 disknum[2] 36 iattr[2] 38 eattr[4] 42 off[4] 46 name[namelen] 46+namelen+xlen+fclen - next header
		if get4() !=  {
			break
		}
		 := get2([10:])
		 := get4([24:])
		 := get2([28:])
		 := get2([30:])
		 := get2([32:])
		 := get4([42:])
		 := [46 : 46+]
		 = [46+++:]
		if string() !=  {
			continue
		}
		if  != 0 {
			return nil, errors.New("unsupported compression for " +  + " in " + )
		}
zip per-file header layout: 0 magic[4] 4 extvers[1] 5 extos[1] 6 flags[2] 8 meth[2] 10 modtime[2] 12 moddate[2] 14 crc[4] 18 csize[4] 22 uncsize[4] 26 namelen[2] 28 xlen[2] 30 name[namelen] 30+namelen+xlen - file data
		 = make([]byte, +)
		if  := preadn(, , );  != nil ||
			get4() !=  ||
			get2([8:]) !=  ||
			get2([26:]) !=  ||
			string([30:30+]) !=  {
			return nil, errors.New("corrupt zip file " + )
		}
		 = get2([28:])

		 = make([]byte, )
		if  := preadn(, , +30++);  != nil {
			return nil, errors.New("corrupt zip file " + )
		}

		return , nil
	}

	return nil, syscall.ENOENT
}
loadTzinfoFromTzdata returns the time zone information of the time zone with the given name, from a tzdata database file as they are typically found on android.
var loadTzinfoFromTzdata func(file, name string) ([]byte, error)
loadTzinfo returns the time zone information of the time zone with the given name, from a given source. A source may be a timezone database directory, tzdata database file or an uncompressed zip file, containing the contents of such a directory.
func ( string,  string) ([]byte, error) {
	if len() >= 6 && [len()-6:] == "tzdata" {
		return loadTzinfoFromTzdata(, )
	}
	return loadTzinfoFromDirOrZip(, )
}
loadLocation returns the Location with the given name from one of the specified sources. See loadTzinfo for a list of supported sources. The first timezone data matching the given name that is successfully loaded and parsed is returned as a Location.
func ( string,  []string) ( *Location,  error) {
	for ,  := range  {
		var ,  = loadTzinfo(, )
		if  == nil {
			if ,  = LoadLocationFromTZData(, );  == nil {
				return , nil
			}
		}
		if  == nil &&  != syscall.ENOENT {
			 = 
		}
	}
	if loadFromEmbeddedTZData != nil {
		,  := loadFromEmbeddedTZData()
		if  == nil {
			if ,  = LoadLocationFromTZData(, []byte());  == nil {
				return , nil
			}
		}
		if  == nil &&  != syscall.ENOENT {
			 = 
		}
	}
	if  != nil {
		return nil, 
	}
	return nil, errors.New("unknown time zone " + )
}
readFile reads and returns the content of the named file. It is a trivial implementation of os.ReadFile, reimplemented here to avoid depending on io/ioutil or os. It returns an error if name exceeds maxFileSize bytes.
func ( string) ([]byte, error) {
	,  := open()
	if  != nil {
		return nil, 
	}
	defer closefd()
	var (
		 [4096]byte
		 []byte
		   int
	)
	for {
		,  = read(, [:])
		if  > 0 {
			 = append(, [:]...)
		}
		if  == 0 ||  != nil {
			break
		}
		if len() > maxFileSize {
			return nil, fileSizeError()
		}
	}
	return ,