You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

55 lines
1.4 KiB

  1. // Copyright 2014 Gary Burd
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License"): you may
  4. // not use this file except in compliance with the License. You may obtain
  5. // a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
  11. // WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
  12. // License for the specific language governing permissions and limitations
  13. // under the License.
  14. package internal // import "github.com/garyburd/redigo/internal"
  15. import (
  16. "strings"
  17. )
  18. const (
  19. WatchState = 1 << iota
  20. MultiState
  21. SubscribeState
  22. MonitorState
  23. )
  24. type CommandInfo struct {
  25. Set, Clear int
  26. }
  27. var commandInfos = map[string]CommandInfo{
  28. "WATCH": {Set: WatchState},
  29. "UNWATCH": {Clear: WatchState},
  30. "MULTI": {Set: MultiState},
  31. "EXEC": {Clear: WatchState | MultiState},
  32. "DISCARD": {Clear: WatchState | MultiState},
  33. "PSUBSCRIBE": {Set: SubscribeState},
  34. "SUBSCRIBE": {Set: SubscribeState},
  35. "MONITOR": {Set: MonitorState},
  36. }
  37. func init() {
  38. for n, ci := range commandInfos {
  39. commandInfos[strings.ToLower(n)] = ci
  40. }
  41. }
  42. func LookupCommandInfo(commandName string) CommandInfo {
  43. if ci, ok := commandInfos[commandName]; ok {
  44. return ci
  45. }
  46. return commandInfos[strings.ToUpper(commandName)]
  47. }