enable.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. // EnableTable represents a EnableTable HBase call
  12. type EnableTable struct {
  13. base
  14. }
  15. // NewEnableTable creates a new EnableTable request that will enable the
  16. // given table in HBase. For use by the admin client.
  17. func NewEnableTable(ctx context.Context, table []byte) *EnableTable {
  18. return &EnableTable{
  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 (et *EnableTable) Name() string {
  28. return "EnableTable"
  29. }
  30. // ToProto converts the RPC into a protobuf message
  31. func (et *EnableTable) ToProto() proto.Message {
  32. return &pb.EnableTableRequest{
  33. TableName: &pb.TableName{
  34. // TODO: handle namespaces
  35. Namespace: []byte("default"),
  36. Qualifier: et.table,
  37. },
  38. }
  39. }
  40. // NewResponse creates an empty protobuf message to read the response of this
  41. // RPC.
  42. func (et *EnableTable) NewResponse() proto.Message {
  43. return &pb.EnableTableResponse{}
  44. }