array_iter.go 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. // Copyright (c) 2014, Suryandaru Triandana <syndtr@gmail.com>
  2. // All rights reserved.
  3. //
  4. // Use of this source code is governed by a BSD-style license that can be
  5. // found in the LICENSE file.
  6. package iterator
  7. import (
  8. "github.com/syndtr/goleveldb/leveldb/util"
  9. )
  10. // BasicArray is the interface that wraps basic Len and Search method.
  11. type BasicArray interface {
  12. // Len returns length of the array.
  13. Len() int
  14. // Search finds smallest index that point to a key that is greater
  15. // than or equal to the given key.
  16. Search(key []byte) int
  17. }
  18. // Array is the interface that wraps BasicArray and basic Index method.
  19. type Array interface {
  20. BasicArray
  21. // Index returns key/value pair with index of i.
  22. Index(i int) (key, value []byte)
  23. }
  24. // Array is the interface that wraps BasicArray and basic Get method.
  25. type ArrayIndexer interface {
  26. BasicArray
  27. // Get returns a new data iterator with index of i.
  28. Get(i int) Iterator
  29. }
  30. type basicArrayIterator struct {
  31. util.BasicReleaser
  32. array BasicArray
  33. pos int
  34. err error
  35. }
  36. func (i *basicArrayIterator) Valid() bool {
  37. return i.pos >= 0 && i.pos < i.array.Len() && !i.Released()
  38. }
  39. func (i *basicArrayIterator) First() bool {
  40. if i.Released() {
  41. i.err = ErrIterReleased
  42. return false
  43. }
  44. if i.array.Len() == 0 {
  45. i.pos = -1
  46. return false
  47. }
  48. i.pos = 0
  49. return true
  50. }
  51. func (i *basicArrayIterator) Last() bool {
  52. if i.Released() {
  53. i.err = ErrIterReleased
  54. return false
  55. }
  56. n := i.array.Len()
  57. if n == 0 {
  58. i.pos = 0
  59. return false
  60. }
  61. i.pos = n - 1
  62. return true
  63. }
  64. func (i *basicArrayIterator) Seek(key []byte) bool {
  65. if i.Released() {
  66. i.err = ErrIterReleased
  67. return false
  68. }
  69. n := i.array.Len()
  70. if n == 0 {
  71. i.pos = 0
  72. return false
  73. }
  74. i.pos = i.array.Search(key)
  75. if i.pos >= n {
  76. return false
  77. }
  78. return true
  79. }
  80. func (i *basicArrayIterator) Next() bool {
  81. if i.Released() {
  82. i.err = ErrIterReleased
  83. return false
  84. }
  85. i.pos++
  86. if n := i.array.Len(); i.pos >= n {
  87. i.pos = n
  88. return false
  89. }
  90. return true
  91. }
  92. func (i *basicArrayIterator) Prev() bool {
  93. if i.Released() {
  94. i.err = ErrIterReleased
  95. return false
  96. }
  97. i.pos--
  98. if i.pos < 0 {
  99. i.pos = -1
  100. return false
  101. }
  102. return true
  103. }
  104. func (i *basicArrayIterator) Error() error { return i.err }
  105. type arrayIterator struct {
  106. basicArrayIterator
  107. array Array
  108. pos int
  109. key, value []byte
  110. }
  111. func (i *arrayIterator) updateKV() {
  112. if i.pos == i.basicArrayIterator.pos {
  113. return
  114. }
  115. i.pos = i.basicArrayIterator.pos
  116. if i.Valid() {
  117. i.key, i.value = i.array.Index(i.pos)
  118. } else {
  119. i.key = nil
  120. i.value = nil
  121. }
  122. }
  123. func (i *arrayIterator) Key() []byte {
  124. i.updateKV()
  125. return i.key
  126. }
  127. func (i *arrayIterator) Value() []byte {
  128. i.updateKV()
  129. return i.value
  130. }
  131. type arrayIteratorIndexer struct {
  132. basicArrayIterator
  133. array ArrayIndexer
  134. }
  135. func (i *arrayIteratorIndexer) Get() Iterator {
  136. if i.Valid() {
  137. return i.array.Get(i.basicArrayIterator.pos)
  138. }
  139. return nil
  140. }
  141. // NewArrayIterator returns an iterator from the given array.
  142. func NewArrayIterator(array Array) Iterator {
  143. return &arrayIterator{
  144. basicArrayIterator: basicArrayIterator{array: array, pos: -1},
  145. array: array,
  146. pos: -1,
  147. }
  148. }
  149. // NewArrayIndexer returns an index iterator from the given array.
  150. func NewArrayIndexer(array ArrayIndexer) IteratorIndexer {
  151. return &arrayIteratorIndexer{
  152. basicArrayIterator: basicArrayIterator{array: array, pos: -1},
  153. array: array,
  154. }
  155. }