time.go 766 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. package replication
  2. import (
  3. "fmt"
  4. "strings"
  5. "time"
  6. )
  7. var (
  8. fracTimeFormat []string
  9. )
  10. // fracTime is a help structure wrapping Golang Time.
  11. type fracTime struct {
  12. time.Time
  13. // Dec must in [0, 6]
  14. Dec int
  15. }
  16. func (t fracTime) String() string {
  17. return t.Format(fracTimeFormat[t.Dec])
  18. }
  19. func formatZeroTime(frac int, dec int) string {
  20. if dec == 0 {
  21. return "0000-00-00 00:00:00"
  22. }
  23. s := fmt.Sprintf("0000-00-00 00:00:00.%06d", frac)
  24. // dec must < 6, if frac is 924000, but dec is 3, we must output 924 here.
  25. return s[0 : len(s)-(6-dec)]
  26. }
  27. func init() {
  28. fracTimeFormat = make([]string, 7)
  29. fracTimeFormat[0] = "2006-01-02 15:04:05"
  30. for i := 1; i <= 6; i++ {
  31. fracTimeFormat[i] = fmt.Sprintf("2006-01-02 15:04:05.%s", strings.Repeat("0", i))
  32. }
  33. }