call.go 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276
  1. // Copyright (C) 2015 The GoHBase Authors. All rights reserved.
  2. // This file is part of GoHBase.
  3. // Use of this source code is governed by the Apache License 2.0
  4. // that can be found in the COPYING file.
  5. package hrpc
  6. import (
  7. "context"
  8. "encoding/binary"
  9. "errors"
  10. "fmt"
  11. "unsafe"
  12. "github.com/golang/protobuf/proto"
  13. "github.com/tsuna/gohbase/pb"
  14. )
  15. // RegionInfo represents HBase region.
  16. type RegionInfo interface {
  17. IsUnavailable() bool
  18. AvailabilityChan() <-chan struct{}
  19. MarkUnavailable() bool
  20. MarkAvailable()
  21. MarkDead()
  22. Context() context.Context
  23. String() string
  24. ID() uint64
  25. Name() []byte
  26. StartKey() []byte
  27. StopKey() []byte
  28. Namespace() []byte
  29. Table() []byte
  30. SetClient(RegionClient)
  31. Client() RegionClient
  32. }
  33. // RegionClient represents HBase region client.
  34. type RegionClient interface {
  35. Close()
  36. Addr() string
  37. QueueRPC(Call)
  38. String() string
  39. }
  40. // Call represents an HBase RPC call.
  41. type Call interface {
  42. Table() []byte
  43. Name() string
  44. Key() []byte
  45. Region() RegionInfo
  46. SetRegion(region RegionInfo)
  47. ToProto() proto.Message
  48. // Returns a newly created (default-state) protobuf in which to store the
  49. // response of this call.
  50. NewResponse() proto.Message
  51. ResultChan() chan RPCResult
  52. Context() context.Context
  53. }
  54. type withOptions interface {
  55. Options() []func(Call) error
  56. setOptions([]func(Call) error)
  57. }
  58. // Batchable interface should be implemented by calls that can be batched into MultiRequest
  59. type Batchable interface {
  60. // SkipBatch returns true if a call shouldn't be batched into MultiRequest and
  61. // should be sent right away.
  62. SkipBatch() bool
  63. setSkipBatch(v bool)
  64. }
  65. // SkipBatch is an option for batchable requests (Get and Mutate) to tell
  66. // the client to skip batching and just send the request to Region Server
  67. // right away.
  68. func SkipBatch() func(Call) error {
  69. return func(c Call) error {
  70. if b, ok := c.(Batchable); ok {
  71. b.setSkipBatch(true)
  72. return nil
  73. }
  74. return errors.New("'SkipBatch' option only works with Get and Mutate requests")
  75. }
  76. }
  77. // hasQueryOptions is interface that needs to be implemented by calls
  78. // that allow to provide Families and Filters options.
  79. type hasQueryOptions interface {
  80. setFamilies(families map[string][]string)
  81. setFilter(filter *pb.Filter)
  82. setTimeRangeUint64(from, to uint64)
  83. setMaxVersions(versions uint32)
  84. setMaxResultsPerColumnFamily(maxresults uint32)
  85. setResultOffset(offset uint32)
  86. }
  87. // RPCResult is struct that will contain both the resulting message from an RPC
  88. // call, and any errors that may have occurred related to making the RPC call.
  89. type RPCResult struct {
  90. Msg proto.Message
  91. Error error
  92. }
  93. type base struct {
  94. ctx context.Context
  95. table []byte
  96. key []byte
  97. options []func(Call) error
  98. region RegionInfo
  99. resultch chan RPCResult
  100. }
  101. func (b *base) Context() context.Context {
  102. return b.ctx
  103. }
  104. func (b *base) Region() RegionInfo {
  105. return b.region
  106. }
  107. func (b *base) SetRegion(region RegionInfo) {
  108. b.region = region
  109. }
  110. func (b *base) regionSpecifier() *pb.RegionSpecifier {
  111. return &pb.RegionSpecifier{
  112. Type: pb.RegionSpecifier_REGION_NAME.Enum(),
  113. Value: []byte(b.region.Name()),
  114. }
  115. }
  116. func (b *base) setOptions(options []func(Call) error) {
  117. b.options = options
  118. }
  119. // Options returns all the options passed to this call
  120. func (b *base) Options() []func(Call) error {
  121. return b.options
  122. }
  123. func applyOptions(call Call, options ...func(Call) error) error {
  124. call.(withOptions).setOptions(options)
  125. for _, option := range options {
  126. err := option(call)
  127. if err != nil {
  128. return err
  129. }
  130. }
  131. return nil
  132. }
  133. func (b *base) Table() []byte {
  134. return b.table
  135. }
  136. func (b *base) Key() []byte {
  137. return b.key
  138. }
  139. func (b *base) ResultChan() chan RPCResult {
  140. return b.resultch
  141. }
  142. // Cell is the smallest level of granularity in returned results.
  143. // Represents a single cell in HBase (a row will have one cell for every qualifier).
  144. type Cell pb.Cell
  145. func (c *Cell) String() string {
  146. return (*pb.Cell)(c).String()
  147. }
  148. // cellFromCellBlock deserializes a cell from a reader
  149. func cellFromCellBlock(b []byte) (*pb.Cell, uint32, error) {
  150. if len(b) < 4 {
  151. return nil, 0, fmt.Errorf(
  152. "buffer is too small: expected %d, got %d", 4, len(b))
  153. }
  154. kvLen := binary.BigEndian.Uint32(b[0:4])
  155. if len(b) < int(kvLen)+4 {
  156. return nil, 0, fmt.Errorf(
  157. "buffer is too small: expected %d, got %d", int(kvLen)+4, len(b))
  158. }
  159. rowKeyLen := binary.BigEndian.Uint32(b[4:8])
  160. valueLen := binary.BigEndian.Uint32(b[8:12])
  161. keyLen := binary.BigEndian.Uint16(b[12:14])
  162. b = b[14:]
  163. key := b[:keyLen]
  164. b = b[keyLen:]
  165. familyLen := uint8(b[0])
  166. b = b[1:]
  167. family := b[:familyLen]
  168. b = b[familyLen:]
  169. qualifierLen := rowKeyLen - uint32(keyLen) - uint32(familyLen) - 2 - 1 - 8 - 1
  170. if 4 /*rowKeyLen*/ +4 /*valueLen*/ +2 /*keyLen*/ +
  171. uint32(keyLen)+1 /*familyLen*/ +uint32(familyLen)+qualifierLen+
  172. 8 /*timestamp*/ +1 /*cellType*/ +valueLen != kvLen {
  173. return nil, 0, fmt.Errorf("HBase has lied about KeyValue length: expected %d, got %d",
  174. kvLen, 4+4+2+uint32(keyLen)+1+uint32(familyLen)+qualifierLen+8+1+valueLen)
  175. }
  176. qualifier := b[:qualifierLen]
  177. b = b[qualifierLen:]
  178. timestamp := binary.BigEndian.Uint64(b[:8])
  179. b = b[8:]
  180. cellType := uint8(b[0])
  181. b = b[1:]
  182. value := b[:valueLen]
  183. return &pb.Cell{
  184. Row: key,
  185. Family: family,
  186. Qualifier: qualifier,
  187. Timestamp: &timestamp,
  188. Value: value,
  189. CellType: pb.CellType(cellType).Enum(),
  190. }, kvLen + 4, nil
  191. }
  192. func deserializeCellBlocks(b []byte, cellsLen uint32) ([]*pb.Cell, uint32, error) {
  193. cells := make([]*pb.Cell, cellsLen)
  194. var readLen uint32
  195. for i := 0; i < int(cellsLen); i++ {
  196. c, l, err := cellFromCellBlock(b[readLen:])
  197. if err != nil {
  198. return nil, readLen, err
  199. }
  200. cells[i] = c
  201. readLen += l
  202. }
  203. return cells, readLen, nil
  204. }
  205. // Result holds a slice of Cells as well as miscellaneous information about the response.
  206. type Result struct {
  207. Cells []*Cell
  208. Stale bool
  209. Partial bool
  210. // Exists is only set if existance_only was set in the request query.
  211. Exists *bool
  212. }
  213. func extractBool(v *bool) bool {
  214. return v != nil && *v
  215. }
  216. // ToLocalResult takes a protobuf Result type and converts it to our own
  217. // Result type in constant time.
  218. func ToLocalResult(pbr *pb.Result) *Result {
  219. if pbr == nil {
  220. return &Result{}
  221. }
  222. return &Result{
  223. // Should all be O(1) operations.
  224. Cells: toLocalCells(pbr),
  225. Stale: extractBool(pbr.Stale),
  226. Partial: extractBool(pbr.Partial),
  227. Exists: pbr.Exists,
  228. }
  229. }
  230. func toLocalCells(pbr *pb.Result) []*Cell {
  231. return *(*[]*Cell)(unsafe.Pointer(pbr))
  232. }
  233. // We can now define any helper functions on Result that we want.