moth/cmd/mothd/mothballs.go

92 lines
2.0 KiB
Go
Raw Normal View History

2019-09-02 19:47:24 -06:00
package main
import (
2020-02-22 15:49:58 -07:00
"github.com/spf13/afero"
2020-02-29 22:37:22 -07:00
"log"
"strings"
2020-03-01 13:27:49 -07:00
"bufio"
"strconv"
2020-03-01 14:03:46 -07:00
"time"
"fmt"
2019-09-02 19:47:24 -06:00
)
type Mothballs struct {
categories map[string]*Zipfs
afero.Fs
2019-09-02 19:47:24 -06:00
}
2020-02-22 15:49:58 -07:00
func NewMothballs(fs afero.Fs) *Mothballs {
2019-09-02 19:47:24 -06:00
return &Mothballs{
2020-02-29 22:37:22 -07:00
Fs: fs,
2019-09-02 19:47:24 -06:00
categories: make(map[string]*Zipfs),
}
}
2020-03-01 14:03:46 -07:00
func (m *Mothballs) Open(cat string, points int, filename string) (ReadSeekCloser, error) {
mb, ok := m.categories[cat]
if ! ok {
return nil, fmt.Errorf("No such category: %s", cat)
}
path := fmt.Sprintf("content/%d/%s", points, filename)
return mb.Open(path)
}
2020-03-01 14:03:46 -07:00
func (m *Mothballs) ModTime(cat string, points int, filename string) (mt time.Time, err error) {
mb, ok := m.categories[cat]
if ! ok {
return mt, fmt.Errorf("No such category: %s", cat)
}
mt = mb.ModTime()
return
}
func (m *Mothballs) Inventory() []Category {
2020-03-01 13:27:49 -07:00
categories := make([]Category, 0, 20)
for cat, zfs := range m.categories {
2020-03-01 13:27:49 -07:00
pointsList := make([]int, 0, 20)
pf, err := zfs.Open("puzzles.txt")
if err != nil {
// No puzzles = no category
continue
}
scanner := bufio.NewScanner(pf)
for scanner.Scan() {
line := scanner.Text()
if pointval, err := strconv.Atoi(line); err != nil {
log.Printf("Reading points for %s: %s", cat, err.Error())
} else {
pointsList = append(pointsList, pointval)
}
}
categories = append(categories, Category{cat, pointsList})
}
2020-03-01 13:27:49 -07:00
return categories
}
func (m *Mothballs) Update() {
2019-09-02 19:47:24 -06:00
// Any new categories?
files, err := afero.ReadDir(m.Fs, "/")
2019-09-02 19:47:24 -06:00
if err != nil {
log.Print("Error listing mothballs: ", err)
return
}
for _, f := range files {
filename := f.Name()
if !strings.HasSuffix(filename, ".mb") {
continue
}
categoryName := strings.TrimSuffix(filename, ".mb")
if _, ok := m.categories[categoryName]; !ok {
zfs, err := OpenZipfs(m.Fs, filename)
2019-09-02 19:47:24 -06:00
if err != nil {
log.Print("Error opening ", filename, ": ", err)
2019-09-02 19:47:24 -06:00
continue
}
log.Print("New mothball: ", filename)
m.categories[categoryName] = zfs
}
}
}