aboutsummaryrefslogtreecommitdiffstats
path: root/ethutil/list.go
blob: a5147573abea24cb90ac762b42f93bfb15c70b4d (plain) (blame)
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
package ethutil

import (
    "encoding/json"
    "fmt"
    "reflect"
)

// The list type is an anonymous slice handler which can be used
// for containing any slice type to use in an environment which
// does not support slice types (e.g., JavaScript, QML)
type List struct {
    list   reflect.Value
    Length int
}

// Initialise a new list. Panics if non-slice type is given.
func NewList(t interface{}) *List {
    list := reflect.ValueOf(t)
    if list.Kind() != reflect.Slice {
        panic("list container initialized with a non-slice type")
    }

    return &List{list, list.Len()}
}

func EmptyList() *List {
    return NewList([]interface{}{})
}

// Get N element from the embedded slice. Returns nil if OOB.
func (self *List) Get(i int) interface{} {
    if self.list.Len() == 3 {
        fmt.Println("get", i, self.list.Index(i).Interface())
    }

    if self.list.Len() > i {
        return self.list.Index(i).Interface()
    }

    return nil
}

// Appends value at the end of the slice. Panics when incompatible value
// is given.
func (self *List) Append(v interface{}) {
    self.list = reflect.Append(self.list, reflect.ValueOf(v))
    self.Length = self.list.Len()
}

// Returns the underlying slice as interface.
func (self *List) Interface() interface{} {
    return self.list.Interface()
}

// For JavaScript <3
func (self *List) ToJSON() string {
    var list []interface{}
    for i := 0; i < self.Length; i++ {
        list = append(list, self.Get(i))
    }

    data, _ := json.Marshal(list)

    return string(data)
}