forked from quickfixgo/quickfix
-
Notifications
You must be signed in to change notification settings - Fork 4
/
fix_utc_timestamp.go
71 lines (59 loc) · 1.56 KB
/
fix_utc_timestamp.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
package quickfix
import (
"errors"
"time"
)
// TimestampPrecision defines the precision used by FIXUTCTimestamp
type TimestampPrecision int
// All TimestampPrecisions supported by FIX
const (
Millis TimestampPrecision = iota
Seconds
Micros
Nanos
)
// FIXUTCTimestamp is a FIX UTC Timestamp value, implements FieldValue
type FIXUTCTimestamp struct {
time.Time
Precision TimestampPrecision
}
const (
utcTimestampMillisFormat = "20060102-15:04:05.000"
utcTimestampSecondsFormat = "20060102-15:04:05"
utcTimestampMicrosFormat = "20060102-15:04:05.000000"
utcTimestampNanosFormat = "20060102-15:04:05.000000000"
)
func (f *FIXUTCTimestamp) Read(bytes []byte) (err error) {
switch len(bytes) {
//seconds
case 17:
f.Time, err = time.Parse(utcTimestampSecondsFormat, string(bytes))
f.Precision = Seconds
//millis
case 21:
f.Time, err = time.Parse(utcTimestampMillisFormat, string(bytes))
f.Precision = Millis
// micros
case 24:
f.Time, err = time.Parse(utcTimestampMicrosFormat, string(bytes))
f.Precision = Micros
// nanos
case 27:
f.Time, err = time.Parse(utcTimestampNanosFormat, string(bytes))
f.Precision = Nanos
default:
err = errors.New("Invalid Value for Timestamp: " + string(bytes))
}
return
}
func (f FIXUTCTimestamp) Write() []byte {
switch f.Precision {
case Seconds:
return []byte(f.UTC().Format(utcTimestampSecondsFormat))
case Micros:
return []byte(f.UTC().Format(utcTimestampMicrosFormat))
case Nanos:
return []byte(f.UTC().Format(utcTimestampNanosFormat))
}
return []byte(f.UTC().Format(utcTimestampMillisFormat))
}