Documentation
¶
Index ¶
- func NewFieldIterator(v *Value) field.Iterator
- type Array
- type ArrayBucket
- type ArrayPool
- type ArrayPoolOptions
- func (o *ArrayPoolOptions) InstrumentOptions() instrument.Options
- func (o *ArrayPoolOptions) RefillHighWatermark() float64
- func (o *ArrayPoolOptions) RefillLowWatermark() float64
- func (o *ArrayPoolOptions) SetInstrumentOptions(v instrument.Options) *ArrayPoolOptions
- func (o *ArrayPoolOptions) SetRefillHighWatermark(v float64) *ArrayPoolOptions
- func (o *ArrayPoolOptions) SetRefillLowWatermark(v float64) *ArrayPoolOptions
- func (o *ArrayPoolOptions) SetSize(v int) *ArrayPoolOptions
- func (o *ArrayPoolOptions) Size() int
- type BucketizedArrayPool
- type BucketizedKVArrayPool
- type KV
- type KVArray
- type KVArrayBucket
- type KVArrayPool
- type KVArrayPoolOptions
- func (o *KVArrayPoolOptions) InstrumentOptions() instrument.Options
- func (o *KVArrayPoolOptions) RefillHighWatermark() float64
- func (o *KVArrayPoolOptions) RefillLowWatermark() float64
- func (o *KVArrayPoolOptions) SetInstrumentOptions(v instrument.Options) *KVArrayPoolOptions
- func (o *KVArrayPoolOptions) SetRefillHighWatermark(v float64) *KVArrayPoolOptions
- func (o *KVArrayPoolOptions) SetRefillLowWatermark(v float64) *KVArrayPoolOptions
- func (o *KVArrayPoolOptions) SetSize(v int) *KVArrayPoolOptions
- func (o *KVArrayPoolOptions) Size() int
- type Object
- type Pool
- type PoolOptions
- func (o *PoolOptions) InstrumentOptions() instrument.Options
- func (o *PoolOptions) RefillHighWatermark() float64
- func (o *PoolOptions) RefillLowWatermark() float64
- func (o *PoolOptions) SetInstrumentOptions(v instrument.Options) *PoolOptions
- func (o *PoolOptions) SetRefillHighWatermark(v float64) *PoolOptions
- func (o *PoolOptions) SetRefillLowWatermark(v float64) *PoolOptions
- func (o *PoolOptions) SetSize(v int) *PoolOptions
- func (o *PoolOptions) Size() int
- type Type
- type Value
- func (v *Value) Array() (Array, error)
- func (v *Value) Bool() (bool, error)
- func (v *Value) Bytes() ([]byte, error)
- func (v *Value) Close()
- func (v *Value) Get(keys ...string) (*Value, bool)
- func (v *Value) MarshalTo(dst []byte) ([]byte, error)
- func (v *Value) MustArray() Array
- func (v *Value) MustBool() bool
- func (v *Value) MustBytes() []byte
- func (v *Value) MustNumber() float64
- func (v *Value) MustObject() Object
- func (v *Value) Number() (float64, error)
- func (v *Value) Object() (Object, error)
- func (v *Value) Reset()
- func (v *Value) SetArray(a Array)
- func (v *Value) SetBool(b bool)
- func (v *Value) SetBytes(s []byte)
- func (v *Value) SetNull()
- func (v *Value) SetNumber(n float64)
- func (v *Value) SetObject(o Object)
- func (v *Value) Type() Type
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewFieldIterator ¶
NewFieldIterator creates a new field iterator from a JSON value. NB(xichen): This iterator currently skips all nested JSON arrays.
Types ¶
type Array ¶
type Array struct {
// contains filtered or unexported fields
}
Array is an array of values.
func NewArray ¶
func NewArray(raw []*Value, p *BucketizedArrayPool) Array
NewArray creates a new value array.
type ArrayBucket ¶
type ArrayBucket struct { // Capacity is the size of each element in the bucket. Capacity int // Count is the number of fixed elements in the bucket. Count int // Options is an optional override to specify options to use for a bucket, // specify nil to use the options specified to the bucketized pool // constructor for this bucket. Options *ArrayPoolOptions }
ArrayBucket specifies a bucket.
type ArrayPool ¶
type ArrayPool struct {
// contains filtered or unexported fields
}
ArrayPool is a value pool.
func NewArrayPool ¶
func NewArrayPool(opts *ArrayPoolOptions) *ArrayPool
NewArrayPool creates a new pool.
type ArrayPoolOptions ¶
type ArrayPoolOptions struct {
// contains filtered or unexported fields
}
ArrayPoolOptions provide a set of options for the value pool.
func NewArrayPoolOptions ¶
func NewArrayPoolOptions() *ArrayPoolOptions
NewArrayPoolOptions create a new set of value pool options.
func (*ArrayPoolOptions) InstrumentOptions ¶
func (o *ArrayPoolOptions) InstrumentOptions() instrument.Options
InstrumentOptions returns the instrument options.
func (*ArrayPoolOptions) RefillHighWatermark ¶
func (o *ArrayPoolOptions) RefillHighWatermark() float64
RefillHighWatermark returns the high watermark for stop refilling the pool.
func (*ArrayPoolOptions) RefillLowWatermark ¶
func (o *ArrayPoolOptions) RefillLowWatermark() float64
RefillLowWatermark returns the low watermark for refilling the pool.
func (*ArrayPoolOptions) SetInstrumentOptions ¶
func (o *ArrayPoolOptions) SetInstrumentOptions(v instrument.Options) *ArrayPoolOptions
SetInstrumentOptions sets the instrument options.
func (*ArrayPoolOptions) SetRefillHighWatermark ¶
func (o *ArrayPoolOptions) SetRefillHighWatermark(v float64) *ArrayPoolOptions
SetRefillHighWatermark sets the high watermark for refilling the pool.
func (*ArrayPoolOptions) SetRefillLowWatermark ¶
func (o *ArrayPoolOptions) SetRefillLowWatermark(v float64) *ArrayPoolOptions
SetRefillLowWatermark sets the low watermark for refilling the pool.
func (*ArrayPoolOptions) SetSize ¶
func (o *ArrayPoolOptions) SetSize(v int) *ArrayPoolOptions
SetSize sets the pool size.
type BucketizedArrayPool ¶
type BucketizedArrayPool struct {
// contains filtered or unexported fields
}
BucketizedArrayPool is a bucketized value pool.
func NewBucketizedArrayPool ¶
func NewBucketizedArrayPool(sizes []ArrayBucket, opts *ArrayPoolOptions) *BucketizedArrayPool
NewBucketizedArrayPool creates a bucketized object pool.
func (*BucketizedArrayPool) Get ¶
func (p *BucketizedArrayPool) Get(capacity int) Array
Get gets a value from the pool.
func (*BucketizedArrayPool) Init ¶
func (p *BucketizedArrayPool) Init(alloc func(capacity int) Array)
Init initializes the bucketized pool.
func (*BucketizedArrayPool) Put ¶
func (p *BucketizedArrayPool) Put(v Array, capacity int)
Put puts a value to the pool.
type BucketizedKVArrayPool ¶
type BucketizedKVArrayPool struct {
// contains filtered or unexported fields
}
BucketizedKVArrayPool is a bucketized value pool.
func NewBucketizedKVArrayPool ¶
func NewBucketizedKVArrayPool(sizes []KVArrayBucket, opts *KVArrayPoolOptions) *BucketizedKVArrayPool
NewBucketizedKVArrayPool creates a bucketized object pool.
func (*BucketizedKVArrayPool) Get ¶
func (p *BucketizedKVArrayPool) Get(capacity int) KVArray
Get gets a value from the pool.
func (*BucketizedKVArrayPool) Init ¶
func (p *BucketizedKVArrayPool) Init(alloc func(capacity int) KVArray)
Init initializes the bucketized pool.
func (*BucketizedKVArrayPool) Put ¶
func (p *BucketizedKVArrayPool) Put(v KVArray, capacity int)
Put puts a value to the pool.
type KVArray ¶
type KVArray struct {
// contains filtered or unexported fields
}
KVArray is an array of key value pairs.
func NewKVArray ¶
func NewKVArray(raw []KV, p *BucketizedKVArrayPool) KVArray
NewKVArray creates a new KV array.
type KVArrayBucket ¶
type KVArrayBucket struct { // Capacity is the size of each element in the bucket. Capacity int // Count is the number of fixed elements in the bucket. Count int // Options is an optional override to specify options to use for a bucket, // specify nil to use the options specified to the bucketized pool // constructor for this bucket. Options *KVArrayPoolOptions }
KVArrayBucket specifies a bucket.
type KVArrayPool ¶
type KVArrayPool struct {
// contains filtered or unexported fields
}
KVArrayPool is a value pool.
func NewKVArrayPool ¶
func NewKVArrayPool(opts *KVArrayPoolOptions) *KVArrayPool
NewKVArrayPool creates a new pool.
func (*KVArrayPool) Init ¶
func (p *KVArrayPool) Init(alloc func() KVArray)
Init initializes the pool.
type KVArrayPoolOptions ¶
type KVArrayPoolOptions struct {
// contains filtered or unexported fields
}
KVArrayPoolOptions provide a set of options for the value pool.
func NewKVArrayPoolOptions ¶
func NewKVArrayPoolOptions() *KVArrayPoolOptions
NewKVArrayPoolOptions create a new set of value pool options.
func (*KVArrayPoolOptions) InstrumentOptions ¶
func (o *KVArrayPoolOptions) InstrumentOptions() instrument.Options
InstrumentOptions returns the instrument options.
func (*KVArrayPoolOptions) RefillHighWatermark ¶
func (o *KVArrayPoolOptions) RefillHighWatermark() float64
RefillHighWatermark returns the high watermark for stop refilling the pool.
func (*KVArrayPoolOptions) RefillLowWatermark ¶
func (o *KVArrayPoolOptions) RefillLowWatermark() float64
RefillLowWatermark returns the low watermark for refilling the pool.
func (*KVArrayPoolOptions) SetInstrumentOptions ¶
func (o *KVArrayPoolOptions) SetInstrumentOptions(v instrument.Options) *KVArrayPoolOptions
SetInstrumentOptions sets the instrument options.
func (*KVArrayPoolOptions) SetRefillHighWatermark ¶
func (o *KVArrayPoolOptions) SetRefillHighWatermark(v float64) *KVArrayPoolOptions
SetRefillHighWatermark sets the high watermark for refilling the pool.
func (*KVArrayPoolOptions) SetRefillLowWatermark ¶
func (o *KVArrayPoolOptions) SetRefillLowWatermark(v float64) *KVArrayPoolOptions
SetRefillLowWatermark sets the low watermark for refilling the pool.
func (*KVArrayPoolOptions) SetSize ¶
func (o *KVArrayPoolOptions) SetSize(v int) *KVArrayPoolOptions
SetSize sets the pool size.
type Object ¶
type Object struct {
// contains filtered or unexported fields
}
Object is an object containing a list of key value pairs.
func (*Object) Get ¶
Get returns the value for the given key in the o, and a bool indicating whether the value is found.
type PoolOptions ¶
type PoolOptions struct {
// contains filtered or unexported fields
}
PoolOptions provide a set of options for the value pool.
func NewPoolOptions ¶
func NewPoolOptions() *PoolOptions
NewPoolOptions create a new set of value pool options.
func (*PoolOptions) InstrumentOptions ¶
func (o *PoolOptions) InstrumentOptions() instrument.Options
InstrumentOptions returns the instrument options.
func (*PoolOptions) RefillHighWatermark ¶
func (o *PoolOptions) RefillHighWatermark() float64
RefillHighWatermark returns the high watermark for stop refilling the pool.
func (*PoolOptions) RefillLowWatermark ¶
func (o *PoolOptions) RefillLowWatermark() float64
RefillLowWatermark returns the low watermark for refilling the pool.
func (*PoolOptions) SetInstrumentOptions ¶
func (o *PoolOptions) SetInstrumentOptions(v instrument.Options) *PoolOptions
SetInstrumentOptions sets the instrument options.
func (*PoolOptions) SetRefillHighWatermark ¶
func (o *PoolOptions) SetRefillHighWatermark(v float64) *PoolOptions
SetRefillHighWatermark sets the high watermark for refilling the pool.
func (*PoolOptions) SetRefillLowWatermark ¶
func (o *PoolOptions) SetRefillLowWatermark(v float64) *PoolOptions
SetRefillLowWatermark sets the low watermark for refilling the pool.
func (*PoolOptions) SetSize ¶
func (o *PoolOptions) SetSize(v int) *PoolOptions
SetSize sets the pool size.
type Value ¶
type Value struct {
// contains filtered or unexported fields
}
Value is a union of different types of values. There is at most one value in the union that is active at any point in time. The active value is determined by the type field in the value.
func NewArrayValue ¶
NewArrayValue creates a new array value.
func NewBoolValue ¶
NewBoolValue creates a new boolean value.
func NewBytesValue ¶
NewBytesValue creates a new bytes value.
func NewEmptyValue ¶
NewEmptyValue creates an empty value associated with the given pool.
func NewNumberValue ¶
NewNumberValue creates a new number value.
func NewObjectValue ¶
NewObjectValue creates a new object value.
func (*Value) Array ¶
Array returns an array value if the value type is array, or an error otherwise.
func (*Value) Bool ¶
Bool returns a boolean value if the value type is boolean, or an error otherwise.
func (*Value) Bytes ¶
Bytes returns a bytes value if the value type is bytes, or an error otherwise.
func (*Value) Close ¶
func (v *Value) Close()
Close closes the value and returns objects to pools where necessary.
func (*Value) Get ¶
Get returns value by the given keys path, and a boolean value indicating whether the key at path exists.
NB: array indexes may be represented as decimal numbers in keys.
func (*Value) MustArray ¶
MustArray returns an array value or panics if the value type is not array.
func (*Value) MustBool ¶
MustBool returns a boolean value or panics if the value type is not boolean.
func (*Value) MustNumber ¶
MustNumber returns a numeric value or panics if the value type is not number.
func (*Value) MustObject ¶
MustObject returns an object value or panics if the value type is not object.
func (*Value) Number ¶
Number returns a numeric value if the value type is number, or an error otherwise.
func (*Value) Object ¶
Object returns an object value if the value type is object, or an error otherwise.