disable.go 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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. "github.com/golang/protobuf/proto"
  9. "github.com/tsuna/gohbase/pb"
  10. )
  11. // DisableTable represents a DisableTable HBase call
  12. type DisableTable struct {
  13. base
  14. }
  15. // NewDisableTable creates a new DisableTable request that will disable the
  16. // given table in HBase. For use by the admin client.
  17. func NewDisableTable(ctx context.Context, table []byte) *DisableTable {
  18. return &DisableTable{
  19. base{
  20. table: table,
  21. ctx: ctx,
  22. resultch: make(chan RPCResult, 1),
  23. },
  24. }
  25. }
  26. // Name returns the name of this RPC call.
  27. func (dt *DisableTable) Name() string {
  28. return "DisableTable"
  29. }
  30. // ToProto converts the RPC into a protobuf message
  31. func (dt *DisableTable) ToProto() proto.Message {
  32. return &pb.DisableTableRequest{
  33. TableName: &pb.TableName{
  34. // TODO: handle namespaces
  35. Namespace: []byte("default"),
  36. Qualifier: dt.table,
  37. },
  38. }
  39. }
  40. // NewResponse creates an empty protobuf message to read the response of this
  41. // RPC.
  42. func (dt *DisableTable) NewResponse() proto.Message {
  43. return &pb.DisableTableResponse{}
  44. }