bolt_store.go 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  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. "time"
  17. "github.com/coreos/bbolt"
  18. // "github.com/boltdb/bolt"
  19. )
  20. var gdocs = []byte("gdocs")
  21. // Bolt bolt store struct
  22. type Bolt struct {
  23. db *bolt.DB
  24. }
  25. // OpenBolt open Bolt store
  26. func OpenBolt(dbPath string) (Store, error) {
  27. db, err := bolt.Open(dbPath, 0600, &bolt.Options{Timeout: 3600 * time.Second})
  28. // db, err := bolt.Open(dbPath, 0600, &bolt.Options{})
  29. if err != nil {
  30. return nil, err
  31. }
  32. err = db.Update(func(tx *bolt.Tx) error {
  33. _, err := tx.CreateBucketIfNotExists(gdocs)
  34. return err
  35. })
  36. if err != nil {
  37. db.Close()
  38. return nil, err
  39. }
  40. return &Bolt{db}, nil
  41. }
  42. // WALName returns the path to currently open database file.
  43. func (s *Bolt) WALName() string {
  44. return s.db.Path()
  45. }
  46. // Set executes a function within the context of a read-write managed
  47. // transaction. If no error is returned from the function then the transaction
  48. // is committed. If an error is returned then the entire transaction is rolled back.
  49. // Any error that is returned from the function or returned from the commit is returned
  50. // from the Update() method.
  51. func (s *Bolt) Set(k []byte, v []byte) error {
  52. return s.db.Update(func(tx *bolt.Tx) error {
  53. return tx.Bucket(gdocs).Put(k, v)
  54. })
  55. }
  56. // Get executes a function within the context of a managed read-only transaction.
  57. // Any error that is returned from the function is returned from the View() method.
  58. func (s *Bolt) Get(k []byte) (b []byte, err error) {
  59. err = s.db.View(func(tx *bolt.Tx) error {
  60. b = tx.Bucket(gdocs).Get(k)
  61. return nil
  62. })
  63. return
  64. }
  65. // Delete deletes a key. Exposing this so that user does not
  66. // have to specify the Entry directly.
  67. func (s *Bolt) Delete(k []byte) error {
  68. return s.db.Update(func(tx *bolt.Tx) error {
  69. return tx.Bucket(gdocs).Delete(k)
  70. })
  71. }
  72. // Has returns true if the DB does contains the given key.
  73. func (s *Bolt) Has(k []byte) (bool, error) {
  74. // return s.db.Exists(k)
  75. var b []byte
  76. err := s.db.View(func(tx *bolt.Tx) error {
  77. b = tx.Bucket(gdocs).Get(k)
  78. return nil
  79. })
  80. // b == nil
  81. if err != nil || string(b) == "" {
  82. return false, err
  83. }
  84. return true, nil
  85. }
  86. // ForEach get all key and value
  87. func (s *Bolt) ForEach(fn func(k, v []byte) error) error {
  88. return s.db.View(func(tx *bolt.Tx) error {
  89. b := tx.Bucket(gdocs)
  90. c := b.Cursor()
  91. for k, v := c.First(); k != nil; k, v = c.Next() {
  92. if err := fn(k, v); err != nil {
  93. return err
  94. }
  95. }
  96. return nil
  97. })
  98. }
  99. // Close releases all database resources. All transactions
  100. // must be closed before closing the database.
  101. func (s *Bolt) Close() error {
  102. return s.db.Close()
  103. }