summaryrefslogtreecommitdiff
path: root/src/mongo/gotools/common/json/timestamp.go
blob: dbc38ef56e6a3dd996d27cc8c91fa654dbc55713 (plain)
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
package json

import (
	"fmt"
	"reflect"
)

// Transition functions for recognizing Timestamp.
// Adapted from encoding/json/scanner.go.

// stateUpperT is the state after reading `T`.
func stateUpperT(s *scanner, c int) int {
	if c == 'i' {
		s.step = generateState("Timestamp", []byte("mestamp"), stateConstructor)
		return scanContinue
	}
	return s.error(c, "in literal Timestamp (expecting 'i')")
}

// Decodes a Timestamp literal stored in the underlying byte data into v.
func (d *decodeState) storeTimestamp(v reflect.Value) {
	op := d.scanWhile(scanSkipSpace)
	if op != scanBeginCtor {
		d.error(fmt.Errorf("expected beginning of constructor"))
	}

	args, err := d.ctor("Timestamp", []reflect.Type{uint32Type, uint32Type})
	if err != nil {
		d.error(err)
	}
	switch kind := v.Kind(); kind {
	case reflect.Interface:
		arg0 := uint32(args[0].Uint())
		arg1 := uint32(args[1].Uint())
		v.Set(reflect.ValueOf(Timestamp{arg0, arg1}))
	default:
		d.error(fmt.Errorf("cannot store %v value into %v type", timestampType, kind))
	}
}

// Returns a Timestamp literal from the underlying byte data.
func (d *decodeState) getTimestamp() interface{} {
	op := d.scanWhile(scanSkipSpace)
	if op != scanBeginCtor {
		d.error(fmt.Errorf("expected beginning of constructor"))
	}

	// Prevent d.convertNumber() from parsing the arguments as float64s.
	useNumber := d.useNumber
	d.useNumber = true

	args := d.ctorInterface()
	if err := ctorNumArgsMismatch("Timestamp", 2, len(args)); err != nil {
		d.error(err)
	}
	arg0, err := args[0].(Number).Uint32()
	if err != nil {
		d.error(fmt.Errorf("expected uint32 for first argument of Timestamp constructor"))
	}
	arg1, err := args[1].(Number).Uint32()
	if err != nil {
		d.error(fmt.Errorf("expected uint32 for second argument of Timestamp constructor"))
	}

	d.useNumber = useNumber
	return Timestamp{arg0, arg1}
}