store.go 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. // Copyright 2016 ego authors
  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 store
  15. import (
  16. "fmt"
  17. "os"
  18. )
  19. const (
  20. // DefaultStore default store engine
  21. DefaultStore = "ldb"
  22. // DefaultStore = "bad"
  23. // DefaultStore = "bolt"
  24. )
  25. var supportedStore = map[string]func(path string) (Store, error){
  26. "ldb": OpenLeveldb,
  27. "bg": OpenBadger, // bad to bg
  28. "bolt": OpenBolt,
  29. // "kv": OpenKV,
  30. // "ledisdb": Open,
  31. }
  32. // RegisterStore register store engine
  33. func RegisterStore(name string, fn func(path string) (Store, error)) {
  34. supportedStore[name] = fn
  35. }
  36. // Store is store interface
  37. type Store interface {
  38. // type KVBatch interface {
  39. Set(k, v []byte) error
  40. Get(k []byte) ([]byte, error)
  41. Delete(k []byte) error
  42. Has(k []byte) (bool, error)
  43. ForEach(fn func(k, v []byte) error) error
  44. Close() error
  45. WALName() string
  46. }
  47. // OpenStore open store engine
  48. func OpenStore(path string, args ...string) (Store, error) {
  49. storeName := DefaultStore
  50. if len(args) > 0 && args[0] != "" {
  51. storeName = args[0]
  52. } else {
  53. storeEnv := os.Getenv("Riot_Store_Engine")
  54. if storeEnv != "" {
  55. storeName = storeEnv
  56. }
  57. }
  58. if fn, has := supportedStore[storeName]; has {
  59. return fn(path)
  60. }
  61. return nil, fmt.Errorf("unsupported store engine: %v", storeName)
  62. }