badger_store.go 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  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. "log"
  17. "github.com/dgraph-io/badger"
  18. )
  19. // Badger badger.KV db store
  20. type Badger struct {
  21. db *badger.DB
  22. }
  23. // OpenBadger open Badger store
  24. func OpenBadger(dbPath string) (Store, error) {
  25. // err := os.MkdirAll(dbPath, 0777)
  26. // if err != nil {
  27. // log.Fatal("os.MkdirAll: ", err)
  28. // os.Exit(1)
  29. // }
  30. // os.MkdirAll(path.Dir(dbPath), os.ModePerm)
  31. opt := badger.DefaultOptions
  32. opt.Dir = dbPath
  33. opt.ValueDir = dbPath
  34. opt.SyncWrites = true
  35. kv, err := badger.Open(opt)
  36. if err != nil {
  37. log.Fatal("badger NewKV: ", err)
  38. }
  39. return &Badger{kv}, err
  40. }
  41. // WALName is useless for this kv database
  42. func (s *Badger) WALName() string {
  43. return "" // 对于此数据库,本函数没用~
  44. }
  45. // Set sets the provided value for a given key.
  46. // If key is not present, it is created. If it is present,
  47. // the existing value is overwritten with the one provided.
  48. func (s *Badger) Set(k, v []byte) error {
  49. err := s.db.Update(func(txn *badger.Txn) error {
  50. // return txn.Set(k, v, 0x00)
  51. return txn.Set(k, v)
  52. })
  53. return err
  54. }
  55. // Get looks for key and returns a value.
  56. // If key is not found, value is nil.
  57. func (s *Badger) Get(k []byte) ([]byte, error) {
  58. var ival []byte
  59. err := s.db.View(func(txn *badger.Txn) error {
  60. item, err := txn.Get(k)
  61. if err != nil {
  62. return err
  63. }
  64. ival, err = item.Value()
  65. return err
  66. })
  67. return ival, err
  68. }
  69. // Delete deletes a key. Exposing this so that user does not
  70. // have to specify the Entry directly. For example, BitDelete
  71. // seems internal to badger.
  72. func (s *Badger) Delete(k []byte) error {
  73. err := s.db.Update(func(txn *badger.Txn) error {
  74. return txn.Delete(k)
  75. })
  76. return err
  77. }
  78. // Has returns true if the DB does contains the given key.
  79. func (s *Badger) Has(k []byte) (bool, error) {
  80. // return s.db.Exists(k)
  81. val, err := s.Get(k)
  82. if string(val) == "" && err != nil {
  83. return false, err
  84. }
  85. return true, err
  86. }
  87. // Len returns the size of lsm and value log files in bytes.
  88. // It can be used to decide how often to call RunValueLogGC.
  89. func (s *Badger) Len() (int64, int64) {
  90. return s.db.Size()
  91. }
  92. // ForEach get all key and value
  93. func (s *Badger) ForEach(fn func(k, v []byte) error) error {
  94. err := s.db.View(func(txn *badger.Txn) error {
  95. opts := badger.DefaultIteratorOptions
  96. opts.PrefetchSize = 1000
  97. it := txn.NewIterator(opts)
  98. defer it.Close()
  99. for it.Rewind(); it.Valid(); it.Next() {
  100. item := it.Item()
  101. key := item.Key()
  102. val, err := item.Value()
  103. if err != nil {
  104. return err
  105. }
  106. if err := fn(key, val); err != nil {
  107. return err
  108. }
  109. }
  110. return nil
  111. })
  112. return err
  113. }
  114. // Close closes a KV. It's crucial to call it to ensure
  115. // all the pending updates make their way to disk.
  116. func (s *Badger) Close() error {
  117. return s.db.Close()
  118. }