quorum/common/list.go

82 lines
1.6 KiB
Go
Raw Normal View History

2015-03-16 03:27:38 -07:00
package common
2014-09-22 05:51:41 -07:00
import (
"encoding/json"
"reflect"
2014-10-07 02:18:46 -07:00
"sync"
2014-09-22 05:51:41 -07:00
)
// 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 {
2014-10-07 02:18:46 -07:00
mut sync.Mutex
2014-09-24 11:40:40 -07:00
val interface{}
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")
}
2014-10-07 02:18:46 -07:00
return &List{sync.Mutex{}, t, list, list.Len()}
}
2014-09-13 15:13:23 -07:00
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() > i {
2014-10-07 02:18:46 -07:00
self.mut.Lock()
defer self.mut.Unlock()
2014-09-24 11:40:40 -07:00
i := self.list.Index(i).Interface()
return i
}
return nil
}
2014-09-24 11:40:40 -07:00
func (self *List) GetAsJson(i int) interface{} {
e := self.Get(i)
r, _ := json.Marshal(e)
return string(r)
}
// Appends value at the end of the slice. Panics when incompatible value
// is given.
func (self *List) Append(v interface{}) {
2014-10-07 02:18:46 -07:00
self.mut.Lock()
defer self.mut.Unlock()
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()
}
2014-09-22 05:51:41 -07:00
// For JavaScript <3
func (self *List) ToJSON() string {
2014-10-31 02:50:16 -07:00
// make(T, 0) != nil
list := make([]interface{}, 0)
2014-09-22 05:51:41 -07:00
for i := 0; i < self.Length; i++ {
list = append(list, self.Get(i))
}
data, _ := json.Marshal(list)
return string(data)
}