|
| 1 | +package timefmt |
| 2 | + |
| 3 | +import "time" |
| 4 | + |
| 5 | +const digits = "0123456789" |
| 6 | + |
| 7 | +const smallsString = "00010203040506070809" + |
| 8 | + "10111213141516171819" + |
| 9 | + "20212223242526272829" + |
| 10 | + "30313233343536373839" + |
| 11 | + "40414243444546474849" + |
| 12 | + "50515253545556575859" + |
| 13 | + "60616263646566676869" + |
| 14 | + "70717273747576777879" + |
| 15 | + "80818283848586878889" + |
| 16 | + "90919293949596979899" |
| 17 | + |
| 18 | +func appendInt2(dst []byte, i int) []byte { |
| 19 | + u := uint(i) |
| 20 | + if u < 10 { |
| 21 | + return append(dst, '0', digits[u]) |
| 22 | + } |
| 23 | + return append(dst, smallsString[u*2:u*2+2]...) |
| 24 | +} |
| 25 | + |
| 26 | +// appendInt appends the decimal form of x to b and returns the result. |
| 27 | +// If the decimal form (excluding sign) is shorter than width, the result is padded with leading 0's. |
| 28 | +// Duplicates functionality in strconv, but avoids dependency. |
| 29 | +func appendInt(b []byte, x int, width int) []byte { |
| 30 | + u := uint(x) |
| 31 | + if x < 0 { |
| 32 | + b = append(b, '-') |
| 33 | + u = uint(-x) |
| 34 | + } |
| 35 | + |
| 36 | + // 2-digit and 4-digit fields are the most common in time formats. |
| 37 | + utod := func(u uint) byte { return '0' + byte(u) } |
| 38 | + switch { |
| 39 | + case width == 2 && u < 1e2: |
| 40 | + return append(b, utod(u/1e1), utod(u%1e1)) |
| 41 | + case width == 4 && u < 1e4: |
| 42 | + return append(b, utod(u/1e3), utod(u/1e2%1e1), utod(u/1e1%1e1), utod(u%1e1)) |
| 43 | + } |
| 44 | + |
| 45 | + // Compute the number of decimal digits. |
| 46 | + var n int |
| 47 | + if u == 0 { |
| 48 | + n = 1 |
| 49 | + } |
| 50 | + for u2 := u; u2 > 0; u2 /= 10 { |
| 51 | + n++ |
| 52 | + } |
| 53 | + |
| 54 | + // Add 0-padding. |
| 55 | + for pad := width - n; pad > 0; pad-- { |
| 56 | + b = append(b, '0') |
| 57 | + } |
| 58 | + |
| 59 | + // Ensure capacity. |
| 60 | + if len(b)+n <= cap(b) { |
| 61 | + b = b[:len(b)+n] |
| 62 | + } else { |
| 63 | + b = append(b, make([]byte, n)...) |
| 64 | + } |
| 65 | + |
| 66 | + // Assemble decimal in reverse order. |
| 67 | + i := len(b) - 1 |
| 68 | + for u >= 10 && i > 0 { |
| 69 | + q := u / 10 |
| 70 | + b[i] = utod(u - q*10) |
| 71 | + u = q |
| 72 | + i-- |
| 73 | + } |
| 74 | + b[i] = utod(u) |
| 75 | + return b |
| 76 | +} |
| 77 | + |
| 78 | +// formatTime formats time t with layout "2006-01-02 15:04:05.999999999-07:00" |
| 79 | +func Format(t time.Time) []byte { |
| 80 | + b := make([]byte, 0, len("2006-01-02 15:04:05.999999999-07:00")) |
| 81 | + |
| 82 | + // 2006-01-02 |
| 83 | + year, month, day := t.Date() |
| 84 | + b = appendInt(b, year, 4) |
| 85 | + b = append(b, '-') |
| 86 | + b = appendInt2(b, int(month)) |
| 87 | + b = append(b, '-') |
| 88 | + b = appendInt2(b, day) |
| 89 | + |
| 90 | + // 15:04:05 |
| 91 | + b = append(b, ' ') |
| 92 | + b = appendInt2(b, t.Hour()) |
| 93 | + b = append(b, ':') |
| 94 | + b = appendInt2(b, t.Minute()) |
| 95 | + b = append(b, ':') |
| 96 | + b = appendInt2(b, t.Second()) |
| 97 | + |
| 98 | + // .999999999 |
| 99 | + b = append(b, '.') |
| 100 | + b = appendInt(b, t.Nanosecond(), 9) |
| 101 | + for len(b) > 0 && b[len(b)-1] == '0' { |
| 102 | + b = b[:len(b)-1] |
| 103 | + } |
| 104 | + if len(b) > 0 && b[len(b)-1] == '.' { |
| 105 | + b = b[:len(b)-1] |
| 106 | + } |
| 107 | + |
| 108 | + // -07:00 |
| 109 | + _, offset := t.Zone() |
| 110 | + zone := offset / 60 |
| 111 | + if zone < 0 { |
| 112 | + b = append(b, '-') |
| 113 | + zone = -zone |
| 114 | + } else { |
| 115 | + b = append(b, '+') |
| 116 | + } |
| 117 | + b = appendInt2(b, zone/60) |
| 118 | + b = append(b, ':') |
| 119 | + b = appendInt2(b, zone%60) |
| 120 | + |
| 121 | + return b |
| 122 | +} |
0 commit comments