-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathdeck.go
170 lines (144 loc) · 4.04 KB
/
deck.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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
package leaf
import (
"fmt"
"os"
"strconv"
"strings"
"time"
"github.com/niklasfasching/go-org/org"
)
// OutputFormat defines output type produces during org file parsing.
type OutputFormat int
const (
// OutputFormatOrg defines pretty printed org output.
OutputFormatOrg OutputFormat = iota
// OutputFormatHTML defines html output.
OutputFormatHTML
// DeckPropertyRater defines deck's org-mode property for the rater
DeckPropertyRater = "RATER"
// DeckPropertyAlgorithm defines deck's org-mode property for the
// algorithm
DeckPropertyAlgorithm = "ALGORITHM"
// DeckPropertyPerReview defines deck's org-mode property for the
// per review amount
DeckPropertyPerReview = "PER_REVIEW"
// DeckPropertySides defines deck's org-mode property for the side
// names
DeckPropertySides = "SIDES"
)
// Card represents a single card in a Deck. Each card may have
// multiple sides (answers).
type Card struct {
Question string `json:"card"`
RawQuestion string `json:"raw_card"`
Sides []string `json:"-"`
}
// Answer returns combined space separated answer for all sides of the card.
func (c Card) Answer() string {
return strings.Join(c.Sides, " ")
}
// Deck represents a named collection of the cards to review.
type Deck struct {
Name string
Cards []Card
Algorithm SRS
RatingType RatingType
PerReview int
Sides []string
format OutputFormat
modtime time.Time
filename string
}
// OpenDeck loads deck from an org file. File format is:
// * Deck Name
// ** Question
// side 1
// side 2
func OpenDeck(filename string, format OutputFormat) (*Deck, error) {
f, err := os.Open(filename)
if err != nil {
return nil, fmt.Errorf("file: %s", err)
}
stat, err := f.Stat()
if err != nil {
return nil, fmt.Errorf("file: %s", err)
}
deck := &Deck{modtime: stat.ModTime(), filename: filename, format: format}
if err := deck.load(f); err != nil {
return nil, err
}
return deck, nil
}
// Reload compares ModTime on deck file and reloads cards if necessary.
func (deck *Deck) Reload() error {
stat, err := os.Stat(deck.filename)
if err != nil {
return fmt.Errorf("file: %s", err)
}
if deck.modtime.UnixNano() >= stat.ModTime().UnixNano() {
return nil
}
f, err := os.Open(deck.filename)
if err != nil {
return fmt.Errorf("file: %s", err)
}
if err := deck.load(f); err != nil {
return err
}
deck.modtime = stat.ModTime()
return nil
}
func (deck *Deck) load(f *os.File) error {
doc := org.New().Parse(f, "./")
if len(doc.Nodes) == 0 {
return fmt.Errorf("empty or invalid org-file")
}
root, ok := doc.Nodes[0].(org.Headline)
if !ok {
return fmt.Errorf("org-file doesn't start with a headline")
}
deck.Name = org.String(root.Title)
deck.Cards = make([]Card, 0, len(root.Children))
deck.Algorithm = SRSSupermemo2PlusCustom
deck.RatingType = RatingTypeAuto
deck.PerReview = 20
if root.Properties != nil {
if rater, success := root.Properties.Get(DeckPropertyRater); success {
deck.RatingType = RatingType(rater)
}
if algo, success := root.Properties.Get(DeckPropertyAlgorithm); success {
deck.Algorithm = SRS(algo)
}
if count, success := root.Properties.Get(DeckPropertyPerReview); success {
if c, err := strconv.Atoi(count); err == nil {
deck.PerReview = c
}
}
if sides, success := root.Properties.Get(DeckPropertySides); success {
deck.Sides = strings.Fields(sides)
}
}
for _, node := range root.Children {
headline, ok := node.(org.Headline)
if !ok || len(headline.Children) == 0 {
continue
}
var w org.Writer
if deck.format == OutputFormatHTML {
w = org.NewHTMLWriter()
} else {
w = org.NewOrgWriter()
}
org.WriteNodes(w, headline.Title...)
var answers string
if block, ok := headline.Children[0].(org.Block); ok && block.Name == "SRC" {
org.WriteNodes(w, block)
answers = strings.TrimSpace(org.String(headline.Children[1:]))
} else {
answers = strings.TrimSpace(org.String(headline.Children))
}
card := Card{w.String(), org.String(headline.Title), strings.Split(answers, "\n")}
deck.Cards = append(deck.Cards, card)
}
return nil
}