summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/zfjagann
diff options
context:
space:
mode:
authorWim <wim@42.be>2017-02-18 23:00:46 +0100
committerWim <wim@42.be>2017-02-18 23:11:48 +0100
commit930b639cc9cd2d2873302f30303378c0e53816a8 (patch)
tree8cd3f1d464fb5d4e5607fe16255c35a31a9d8b62 /vendor/github.com/zfjagann
parent58483ea70c2c99a352592c5e50686fb03985650e (diff)
downloadmatterbridge-msglm-930b639cc9cd2d2873302f30303378c0e53816a8.tar.gz
matterbridge-msglm-930b639cc9cd2d2873302f30303378c0e53816a8.tar.bz2
matterbridge-msglm-930b639cc9cd2d2873302f30303378c0e53816a8.zip
Update vendor
Diffstat (limited to 'vendor/github.com/zfjagann')
-rw-r--r--vendor/github.com/zfjagann/golang-ring/LICENSE12
-rw-r--r--vendor/github.com/zfjagann/golang-ring/ring.go144
2 files changed, 156 insertions, 0 deletions
diff --git a/vendor/github.com/zfjagann/golang-ring/LICENSE b/vendor/github.com/zfjagann/golang-ring/LICENSE
new file mode 100644
index 00000000..22a291cb
--- /dev/null
+++ b/vendor/github.com/zfjagann/golang-ring/LICENSE
@@ -0,0 +1,12 @@
+Copyright (c) 2014, Zeal Jagannatha
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
+
+1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
+
+2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
+
+3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
diff --git a/vendor/github.com/zfjagann/golang-ring/ring.go b/vendor/github.com/zfjagann/golang-ring/ring.go
new file mode 100644
index 00000000..2214c4ba
--- /dev/null
+++ b/vendor/github.com/zfjagann/golang-ring/ring.go
@@ -0,0 +1,144 @@
+/*
+Package ring provides a simple implementation of a ring buffer.
+*/
+package ring
+
+/*
+The DefaultCapacity of an uninitialized Ring buffer.
+
+Changing this value only affects ring buffers created after it is changed.
+*/
+var DefaultCapacity int = 10
+
+/*
+Type Ring implements a Circular Buffer.
+The default value of the Ring struct is a valid (empty) Ring buffer with capacity DefaultCapacify.
+*/
+type Ring struct {
+ head int // the most recent value written
+ tail int // the least recent value written
+ buff []interface{}
+}
+
+/*
+Set the maximum size of the ring buffer.
+*/
+func (r *Ring) SetCapacity(size int) {
+ r.checkInit()
+ r.extend(size)
+}
+
+/*
+Capacity returns the current capacity of the ring buffer.
+*/
+func (r Ring) Capacity() int {
+ return len(r.buff)
+}
+
+/*
+Enqueue a value into the Ring buffer.
+*/
+func (r *Ring) Enqueue(i interface{}) {
+ r.checkInit()
+ r.set(r.head+1, i)
+ old := r.head
+ r.head = r.mod(r.head + 1)
+ if old != -1 && r.head == r.tail {
+ r.tail = r.mod(r.tail + 1)
+ }
+}
+
+/*
+Dequeue a value from the Ring buffer.
+
+Returns nil if the ring buffer is empty.
+*/
+func (r *Ring) Dequeue() interface{} {
+ r.checkInit()
+ if r.head == -1 {
+ return nil
+ }
+ v := r.get(r.tail)
+ if r.tail == r.head {
+ r.head = -1
+ r.tail = 0
+ } else {
+ r.tail = r.mod(r.tail + 1)
+ }
+ return v
+}
+
+/*
+Read the value that Dequeue would have dequeued without actually dequeuing it.
+
+Returns nil if the ring buffer is empty.
+*/
+func (r *Ring) Peek() interface{} {
+ r.checkInit()
+ if r.head == -1 {
+ return nil
+ }
+ return r.get(r.tail)
+}
+
+/*
+Values returns a slice of all the values in the circular buffer without modifying them at all.
+The returned slice can be modified independently of the circular buffer. However, the values inside the slice
+are shared between the slice and circular buffer.
+*/
+func (r *Ring) Values() []interface{} {
+ if r.head == -1 {
+ return []interface{}{}
+ }
+ arr := make([]interface{}, 0, r.Capacity())
+ for i := 0; i < r.Capacity(); i++ {
+ idx := r.mod(i + r.tail)
+ arr = append(arr, r.get(idx))
+ if idx == r.head {
+ break
+ }
+ }
+ return arr
+}
+
+/**
+*** Unexported methods beyond this point.
+**/
+
+// sets a value at the given unmodified index and returns the modified index of the value
+func (r *Ring) set(p int, v interface{}) {
+ r.buff[r.mod(p)] = v
+}
+
+// gets a value based at a given unmodified index
+func (r *Ring) get(p int) interface{} {
+ return r.buff[r.mod(p)]
+}
+
+// returns the modified index of an unmodified index
+func (r *Ring) mod(p int) int {
+ return p % len(r.buff)
+}
+
+func (r *Ring) checkInit() {
+ if r.buff == nil {
+ r.buff = make([]interface{}, DefaultCapacity)
+ for i := range r.buff {
+ r.buff[i] = nil
+ }
+ r.head, r.tail = -1, 0
+ }
+}
+
+func (r *Ring) extend(size int) {
+ if size == len(r.buff) {
+ return
+ } else if size < len(r.buff) {
+ r.buff = r.buff[0:size]
+ }
+ newb := make([]interface{}, size-len(r.buff))
+ for i := range newb {
+ newb[i] = nil
+ }
+ r.buff = append(r.buff, newb...)
+}