ldb_store.go 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  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. "github.com/syndtr/goleveldb/leveldb"
  17. )
  18. // Leveldb leveldb store
  19. type Leveldb struct {
  20. db *leveldb.DB
  21. }
  22. // OpenLeveldb opens or creates a DB for the given store. The DB
  23. // will be created if not exist, unless ErrorIfMissing is true.
  24. // Also, if ErrorIfExist is true and the DB exist Open will
  25. // returns os.ErrExist error.
  26. func OpenLeveldb(dbPath string) (Store, error) {
  27. db, err := leveldb.OpenFile(dbPath, nil)
  28. if err != nil {
  29. return nil, err
  30. }
  31. return &Leveldb{db}, nil
  32. }
  33. // WALName is useless for this kv database
  34. func (s *Leveldb) WALName() string {
  35. return "" // 对于此数据库,本函数没用~
  36. }
  37. // Set sets the provided value for a given key.
  38. // If key is not present, it is created. If it is present,
  39. // the existing value is overwritten with the one provided.
  40. func (s *Leveldb) Set(k, v []byte) error {
  41. return s.db.Put(k, v, nil)
  42. }
  43. // Get gets the value for the given key. It returns
  44. // ErrNotFound if the DB does not contains the key.
  45. //
  46. // The returned slice is its own copy, it is safe to modify
  47. // the contents of the returned slice. It is safe to modify the contents
  48. // of the argument after Get returns.
  49. func (s *Leveldb) Get(k []byte) ([]byte, error) {
  50. return s.db.Get(k, nil)
  51. }
  52. // Delete deletes the value for the given key. Delete will not
  53. // returns error if key doesn't exist. Write merge also applies
  54. // for Delete, see Write.
  55. //
  56. // It is safe to modify the contents of the arguments after Delete
  57. // returns but not before.
  58. func (s *Leveldb) Delete(k []byte) error {
  59. return s.db.Delete(k, nil)
  60. }
  61. // Has returns true if the DB does contains the given key.
  62. // It is safe to modify the contents of the argument after Has returns.
  63. func (s *Leveldb) Has(k []byte) (bool, error) {
  64. return s.db.Has(k, nil)
  65. }
  66. // Len calculates approximate sizes of the given key ranges.
  67. // The length of the returned sizes are equal with the length of
  68. // the given ranges. The returned sizes measure store space usage,
  69. // so if the user data compresses by a factor of ten, the returned
  70. // sizes will be one-tenth the size of the corresponding user data size.
  71. // The results may not include the sizes of recently written data.
  72. func (s *Leveldb) Len() (leveldb.Sizes, error) {
  73. return s.db.SizeOf(nil)
  74. }
  75. // ForEach get all key and value
  76. func (s *Leveldb) ForEach(fn func(k, v []byte) error) error {
  77. iter := s.db.NewIterator(nil, nil)
  78. for iter.Next() {
  79. // Remember that the contents of the returned slice should not be modified, and
  80. // only valid until the next call to Next.
  81. key := iter.Key()
  82. val := iter.Value()
  83. if err := fn(key, val); err != nil {
  84. return err
  85. }
  86. }
  87. iter.Release()
  88. return iter.Error()
  89. }
  90. // Close closes the DB. This will also releases any outstanding snapshot,
  91. // abort any in-flight compaction and discard open transaction.
  92. func (s *Leveldb) Close() error {
  93. return s.db.Close()
  94. }