-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathleetcode.go
115 lines (92 loc) · 2.07 KB
/
leetcode.go
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
package store
import (
"encoding/json"
"fmt"
"github.com/boltdb/bolt"
)
const storeKey = `leetcode.questions`
type Store struct {
Title string `json:"title"`
TranslatedTitle string `json:"translated_title"`
QuestionID string `json:"question_id"`
Languages []string `json:"language"`
Tags []string `json:"tags"`
Difficulty string `json:"difficulty"`
SaveDir []string `json:"save_dir"`
TitleSlug string `json:"title_slug"`
Question string `json:"question"`
}
// Stats leetcode db stats
func Stats() {
leetcode, err := leetcodeDB()
if err != nil {
return
}
defer leetcode.Close()
b, _ := json.Marshal(leetcode.Stats())
fmt.Println(string(b))
}
func (th Store) Bytes() []byte {
b, _ := json.Marshal(th)
return b
}
func UpdateQuestionInfo(store Store) error {
leetcode, err := leetcodeDB()
if err != nil {
return err
}
defer leetcode.Close()
return leetcode.Update(func(tx *bolt.Tx) error {
b, err := tx.CreateBucketIfNotExists([]byte(storeKey))
if err != nil {
return err
}
keyTitle := []byte(fmt.Sprint(store.TitleSlug))
keyID := []byte(fmt.Sprint(store.QuestionID))
b.Put(keyID, store.Bytes())
return b.Put(keyTitle, store.Bytes())
})
}
func QuestionInfo(titleSlug string) (info Store, err error) {
leetcode, err := leetcodeDB()
if err != nil {
return
}
defer leetcode.Close()
err = leetcode.View(func(tx *bolt.Tx) error {
b := tx.Bucket([]byte(storeKey))
if b == nil {
return nil
}
data := b.Get([]byte(titleSlug))
if len(data) == 0 {
return nil
}
err = json.Unmarshal(data, &info)
return err
})
return
}
func AllQuestionTitleSlug() (titles []string, err error) {
leetcode, err := leetcodeDB()
if err != nil {
return
}
defer leetcode.Close()
err = leetcode.View(func(tx *bolt.Tx) error {
b := tx.Bucket([]byte(storeKey))
if b == nil {
return nil
}
return b.ForEach(func(k, v []byte) error {
var s Store
err = json.Unmarshal(v, &s)
if err != nil {
return err
}
titles = append(titles, s.TitleSlug)
return nil
})
})
return
}