date.go 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370
  1. package date
  2. import (
  3. "time"
  4. "errors"
  5. "strings"
  6. "database/sql/driver"
  7. )
  8. type Date time.Time
  9. const NormalDateFormat = "2006-01-02"
  10. func (t Date) MarshalJSON() ([]byte, error) {
  11. if y := t.Year(); y < 0 || y >= 10000 {
  12. return nil, errors.New("Time.MarshalJSON: year outside of range [0,9999]")
  13. }
  14. if t.IsZero() {
  15. b := []byte(`""`)
  16. return b, nil
  17. }
  18. b := make([]byte, 0, len(NormalDateFormat)+2)
  19. b = append(b, '"')
  20. b = t.AppendFormat(b, NormalDateFormat)
  21. b = append(b, '"')
  22. return b, nil
  23. }
  24. func (t *Date) UnmarshalJSON(value []byte) error {
  25. var v = strings.TrimSpace(strings.Trim(string(value), "\""))
  26. if v == "" {
  27. return nil
  28. }
  29. tm, err := time.ParseInLocation(NormalDateFormat, v, time.Local)
  30. if err != nil {
  31. return err
  32. }
  33. *t = Date(Date(tm).OfTime(0,0,0).OfNanosecond(0))
  34. return nil
  35. }
  36. func (t Date) MarshalText() ([]byte, error) {
  37. if y := t.Year(); y < 0 || y >= 10000 {
  38. return nil, errors.New("Time.MarshalText: year outside of range [0,9999]")
  39. }
  40. b := make([]byte, 0, len(NormalDateFormat))
  41. return t.AppendFormat(b, NormalDateFormat), nil
  42. }
  43. func (t *Date) UnmarshalText(data []byte) error {
  44. *t = t.FromString(string(data))
  45. return nil
  46. }
  47. func (t Date) FromString(str string) Date {
  48. tm, err := time.Parse(NormalDateFormat, str)
  49. if nil != err {
  50. return Unix(0, 0).ToDate()
  51. }
  52. return Date(Date(tm).OfTime(0,0,0).OfNanosecond(0))
  53. }
  54. func (t Date) String() string {
  55. return t.Format(NormalDateFormat)
  56. }
  57. func (t Date) Value() (driver.Value, error) {
  58. if t.IsZero() {
  59. return nil, nil
  60. }
  61. return t.Format(NormalDateFormat), nil
  62. }
  63. func (t *Date) Scan(value interface{}) error {
  64. if value == nil {
  65. return nil
  66. }
  67. *t = Date(value.(time.Time))
  68. return nil
  69. }
  70. func (t Date) Format(layout string) string {
  71. return t.T().Format(layout)
  72. }
  73. func (t Date) AppendFormat(b []byte, layout string) []byte {
  74. return t.T().AppendFormat(b, layout)
  75. }
  76. // 当前时间
  77. func Today() Date {
  78. return Date(Date(time.Now()).OfTime(0,0,0).OfNanosecond(0))
  79. }
  80. // 构造date.Time
  81. func NewDate(year int, month time.Month, day int, loc *time.Location) Date {
  82. return Date(time.Date(year, month, day, 0, 0, 0, 0, loc))
  83. }
  84. // 转date.Datetime
  85. func (t Date) ToDatetime() Datetime {
  86. return Datetime(t)
  87. }
  88. // 转date.Date
  89. func AsDate(tm time.Time) Date {
  90. return Date(Date(tm).OfTime(0,0,0).OfNanosecond(0))
  91. }
  92. // 转date.Time
  93. func (t Date) ToTime() Time {
  94. return Time(t)
  95. }
  96. // 转time.Time
  97. func (t Date) T() time.Time {
  98. return time.Time(t)
  99. }
  100. // 是否晚于
  101. func (t Date) After(u Date) bool {
  102. return t.T().After(u.T())
  103. }
  104. // 是否早于
  105. func (t Date) Before(u Date) bool {
  106. return t.T().Before(u.T())
  107. }
  108. // 是否等于
  109. func (t Date) Equal(u Date) bool {
  110. return t.T().Equal(u.T())
  111. }
  112. // 是否零值
  113. func (t Date) IsZero() bool {
  114. return t.T().IsZero()
  115. }
  116. // 获取年、月、日
  117. func (t Date) Date() (year int, month time.Month, day int) {
  118. return t.T().Date()
  119. }
  120. // 获取年
  121. func (t Date) Year() int {
  122. return t.T().Year()
  123. }
  124. // 获取月
  125. func (t Date) Month() time.Month {
  126. return t.T().Month()
  127. }
  128. // 获取日
  129. func (t Date) Day() int {
  130. return t.T().Day()
  131. }
  132. // 获取星期几
  133. func (t Date) Weekday() time.Weekday {
  134. return t.T().Weekday()
  135. }
  136. // 获取年、第几周
  137. func (t Date) ISOWeek() (year, week int) {
  138. return t.T().ISOWeek()
  139. }
  140. // 获取时、分、秒
  141. func (t Date) Clock() (hour, min, sec int) {
  142. return t.T().Clock()
  143. }
  144. // 获取小时
  145. func (t Date) Hour() int {
  146. return t.T().Hour()
  147. }
  148. // 获取分钟
  149. func (t Date) Minute() int {
  150. return t.T().Minute()
  151. }
  152. // 获取秒
  153. func (t Date) Second() int {
  154. return t.T().Second()
  155. }
  156. // 获取毫秒
  157. func (t Date) Millisecond() int {
  158. return int(time.Duration(t.T().Nanosecond()) / time.Millisecond)
  159. }
  160. // 获取微秒
  161. func (t Date) Microsecond() int {
  162. return int(time.Duration(t.T().Nanosecond()) / time.Microsecond)
  163. }
  164. // 获取纳秒
  165. func (t Date) Nanosecond() int {
  166. return t.T().Nanosecond()
  167. }
  168. // 获取是一年中第几天
  169. func (t Date) YearDay() int {
  170. return t.T().YearDay()
  171. }
  172. // 获取该时间 - 参数时间 的时间差
  173. func (t Date) Sub(u Date) time.Duration {
  174. return t.T().Sub(u.T())
  175. }
  176. // 加一个时间差
  177. func (t Date) Add(d time.Duration) Datetime {
  178. return Datetime(t.T().Add(d))
  179. }
  180. // 加年、月、日
  181. func (t Date) AddDate(years int, months int, days int) Date {
  182. return Date(t.T().AddDate(years, months, days))
  183. }
  184. // 加时、分、秒
  185. func (t Date) AddTime(hours int, minutes int, seconds int) Datetime {
  186. d := time.Duration(hours) * time.Hour + time.Duration(minutes) * time.Minute + time.Duration(seconds) * time.Second
  187. return t.Add(d)
  188. }
  189. // 加年
  190. func (t Date) AddYears(years int) Date {
  191. return t.AddDate(years, 0, 0)
  192. }
  193. // 加月
  194. func (t Date) AddMonths(months int) Date {
  195. return t.AddDate(0, months, 0)
  196. }
  197. // 加日
  198. func (t Date) AddDays(days int) Date {
  199. return t.AddDate(0, 0, days)
  200. }
  201. // 加小时
  202. func (t Date) AddHours(hours int) Datetime {
  203. d := time.Duration(hours) * time.Hour
  204. return t.Add(d)
  205. }
  206. // 加分钟
  207. func (t Date) AddMinutes(minutes int) Datetime {
  208. d := time.Duration(minutes) * time.Minute
  209. return t.Add(d)
  210. }
  211. // 加秒
  212. func (t Date) AddSeconds(seconds int) Datetime {
  213. d := time.Duration(seconds) * time.Second
  214. return t.Add(d)
  215. }
  216. // 加纳秒
  217. func (t Date) AddNanoseconds(nanoseconds int) Datetime {
  218. d := time.Duration(nanoseconds) * time.Nanosecond
  219. return t.Add(d)
  220. }
  221. // 指定时间
  222. func (t Date) Of(year int, month time.Month, day int, hour int, minute int, second int, nanosecond int) Datetime {
  223. return Datetime(time.Date(year, month, day, hour, minute, second, nanosecond, t.Location()))
  224. }
  225. // 指定年、月、日
  226. func (t Date) OfDate(year int, month time.Month, day int) Date {
  227. hour, minute, second := t.Clock()
  228. return Date(t.Of(year, month, day, hour, minute, second, t.Nanosecond()))
  229. }
  230. // 指定时、分、秒
  231. func (t Date) OfTime(hour int, minute int, second int) Datetime {
  232. year, month, day := t.Date()
  233. return t.Of(year, month, day, hour, minute, second, t.Nanosecond())
  234. }
  235. // 指定年
  236. func (t Date) OfYear(year int) Date {
  237. return t.OfDate(year, t.Month(), t.Day())
  238. }
  239. // 指定月
  240. func (t Date) OfMonth(month time.Month) Date {
  241. return t.OfDate(t.Year(), month, t.Day())
  242. }
  243. // 指定日
  244. func (t Date) OfDay(day int) Date {
  245. return t.OfDate(t.Year(), t.Month(), day)
  246. }
  247. // 指定小时
  248. func (t Date) OfHour(hour int) Datetime {
  249. return t.OfTime(hour, t.Minute(), t.Second())
  250. }
  251. // 指定分钟
  252. func (t Date) OfMinute(minute int) Datetime {
  253. return t.OfTime(t.Hour(), minute, t.Second())
  254. }
  255. // 指定秒
  256. func (t Date) OfSecond(second int) Datetime {
  257. return t.OfTime(t.Hour(), t.Minute(), second)
  258. }
  259. // 指定纳秒
  260. func (t Date) OfNanosecond(nanosecond int) Datetime {
  261. year, month, day := t.Date()
  262. hour, minute, second := t.Clock()
  263. return t.Of(year, month, day, hour, minute, second, nanosecond)
  264. }
  265. // 转UTC时间
  266. func (t Date) UTC() Datetime {
  267. return Datetime(t.T().UTC())
  268. }
  269. // 转本地时间
  270. func (t Date) Local() Datetime {
  271. return Datetime(t.T().Local())
  272. }
  273. // 转指定时区时间
  274. func (t Date) In(loc *time.Location) Datetime {
  275. return Datetime(t.T().In(loc))
  276. }
  277. // 获取时区
  278. func (t Date) Location() *time.Location {
  279. return t.T().Location()
  280. }
  281. // 获取时区
  282. func (t Date) Zone() (name string, offset int) {
  283. return t.T().Zone()
  284. }
  285. // 获取UTC时间戳
  286. func (t Date) Unix() int64 {
  287. return t.T().Unix()
  288. }
  289. // 获取UTC纳秒数
  290. func (t Date) UnixNano() int64 {
  291. return t.T().Unix()
  292. }
  293. // 从目标日期开始到现在的时间差
  294. func SinceDate(t Date) time.Duration {
  295. return Today().Sub(t)
  296. }
  297. // 现在到目标日期的时间差
  298. func UntilDate(t Date) time.Duration {
  299. return t.Sub(Today())
  300. }