summaryrefslogtreecommitdiff
path: root/app/bitcask_store.go
blob: 7289b3527fd62784536d3d25e1dfba9d309e84b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
package app

import (
	"encoding/binary"
	"fmt"

	log "github.com/sirupsen/logrus"

	"github.com/prologic/bitcask"
)

// BitcaskStore ...
type BitcaskStore struct {
	db *bitcask.Bitcask
}

// NewBitcaskStore ...
func NewBitcaskStore(path string, options ...bitcask.Option) (Store, error) {
	db, err := bitcask.Open(path, options...)
	if err != nil {
		return nil, err
	}
	return &BitcaskStore{db: db}, nil
}

// Close ...
func (s *BitcaskStore) Close() error {
	return s.db.Close()
}

// GetViews ...
func (s *BitcaskStore) GetViews(collection, id string) (int64, error) {
	var views uint64
	rawViews, err := s.db.Get([]byte(fmt.Sprintf("/views/%s/%s", collection, id)))
	if err != nil {
		if err != bitcask.ErrKeyNotFound {
			err := fmt.Errorf("error getting views for %s %s: %w", collection, id, err)
			log.Error(err)
			return 0, err
		}
	} else {
		views = binary.BigEndian.Uint64(rawViews)
	}

	return int64(views), nil
}

// IncView ...
func (s *BitcaskStore) IncView(collection, id string) error {
	views, err := s.GetViews(collection, id)
	if err != nil {
		err := fmt.Errorf("error getting existing views for %s %s: %w", collection, id, err)
		return err
	}

	buf := make([]byte, 8)
	views++
	binary.BigEndian.PutUint64(buf, uint64(views))
	err = s.db.Put([]byte(fmt.Sprintf("/views/%s/%s", collection, id)), buf)
	if err != nil {
		err := fmt.Errorf("error storing updated views for %s %s: %w", collection, id, err)
		return err
	}

	return nil
}