checkandput.go 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. // Copyright (C) 2016 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. "fmt"
  8. "github.com/golang/protobuf/proto"
  9. "github.com/tsuna/gohbase/filter"
  10. "github.com/tsuna/gohbase/pb"
  11. )
  12. // CheckAndPut performs a provided Put operation if the value specified
  13. // by condition equals to the one set in the HBase.
  14. type CheckAndPut struct {
  15. *Mutate
  16. family []byte
  17. qualifier []byte
  18. comparator *pb.Comparator
  19. }
  20. // NewCheckAndPut creates a new CheckAndPut request that will compare provided
  21. // expectedValue with the on in HBase located at put's row and provided family:qualifier,
  22. // and if they are equal, perform the provided put request on the row
  23. func NewCheckAndPut(put *Mutate, family string,
  24. qualifier string, expectedValue []byte) (*CheckAndPut, error) {
  25. if put.mutationType != pb.MutationProto_PUT {
  26. return nil, fmt.Errorf("'CheckAndPut' only takes 'Put' request")
  27. }
  28. // The condition that needs to match for the edit to be applied.
  29. exp := filter.NewByteArrayComparable(expectedValue)
  30. cmp, err := filter.NewBinaryComparator(exp).ConstructPBComparator()
  31. if err != nil {
  32. return nil, err
  33. }
  34. // CheckAndPut is not batchable as MultiResponse doesn't return Processed field
  35. // for Mutate Action
  36. put.setSkipBatch(true)
  37. return &CheckAndPut{
  38. Mutate: put,
  39. family: []byte(family),
  40. qualifier: []byte(qualifier),
  41. comparator: cmp,
  42. }, nil
  43. }
  44. // ToProto converts the RPC into a protobuf message
  45. func (cp *CheckAndPut) ToProto() proto.Message {
  46. mutateRequest := cp.toProto()
  47. mutateRequest.Condition = &pb.Condition{
  48. Row: cp.key,
  49. Family: cp.family,
  50. Qualifier: cp.qualifier,
  51. CompareType: pb.CompareType_EQUAL.Enum(),
  52. Comparator: cp.comparator,
  53. }
  54. return mutateRequest
  55. }