list.go 2.4 KB
Newer Older
F
Felix Lange 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
// Copyright 2014 The go-ethereum Authors
// This file is part of go-ethereum.
//
// go-ethereum is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// go-ethereum is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with go-ethereum.  If not, see <http://www.gnu.org/licenses/>.

O
obscuren 已提交
17
package common
18

O
obscuren 已提交
19 20 21
import (
	"encoding/json"
	"reflect"
O
obscuren 已提交
22
	"sync"
O
obscuren 已提交
23
)
24 25 26 27 28

// 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 {
O
obscuren 已提交
29
	mut    sync.Mutex
O
obscuren 已提交
30
	val    interface{}
31 32 33 34 35 36 37 38 39 40 41
	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")
	}

O
obscuren 已提交
42
	return &List{sync.Mutex{}, t, list, list.Len()}
43 44
}

O
obscuren 已提交
45 46 47 48
func EmptyList() *List {
	return NewList([]interface{}{})
}

49 50 51
// Get N element from the embedded slice. Returns nil if OOB.
func (self *List) Get(i int) interface{} {
	if self.list.Len() > i {
O
obscuren 已提交
52 53 54
		self.mut.Lock()
		defer self.mut.Unlock()

O
obscuren 已提交
55 56 57
		i := self.list.Index(i).Interface()

		return i
58 59 60 61 62
	}

	return nil
}

O
obscuren 已提交
63 64 65 66 67 68 69 70
func (self *List) GetAsJson(i int) interface{} {
	e := self.Get(i)

	r, _ := json.Marshal(e)

	return string(r)
}

71 72 73
// Appends value at the end of the slice. Panics when incompatible value
// is given.
func (self *List) Append(v interface{}) {
O
obscuren 已提交
74 75 76
	self.mut.Lock()
	defer self.mut.Unlock()

77 78 79 80 81 82 83 84
	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()
}
O
obscuren 已提交
85 86 87

// For JavaScript <3
func (self *List) ToJSON() string {
O
obscuren 已提交
88 89
	// make(T, 0) != nil
	list := make([]interface{}, 0)
O
obscuren 已提交
90 91 92 93 94 95 96 97
	for i := 0; i < self.Length; i++ {
		list = append(list, self.Get(i))
	}

	data, _ := json.Marshal(list)

	return string(data)
}