2023-09-28 15:09:45 +00:00
|
|
|
/*
|
2024-01-14 18:39:14 +00:00
|
|
|
Copyright © 2024 Seednode <seednode@seedno.de>
|
2023-09-28 15:09:45 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/gob"
|
|
|
|
"fmt"
|
|
|
|
"net/http"
|
|
|
|
"os"
|
|
|
|
"sync"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/julienschmidt/httprouter"
|
|
|
|
"github.com/klauspost/compress/zstd"
|
|
|
|
"seedno.de/seednode/roulette/types"
|
|
|
|
)
|
|
|
|
|
|
|
|
type fileIndex struct {
|
|
|
|
mutex *sync.RWMutex
|
|
|
|
list []string
|
|
|
|
}
|
|
|
|
|
|
|
|
func (index *fileIndex) List() []string {
|
|
|
|
index.mutex.RLock()
|
|
|
|
val := make([]string, len(index.list))
|
|
|
|
copy(val, index.list)
|
|
|
|
index.mutex.RUnlock()
|
|
|
|
|
|
|
|
return val
|
|
|
|
}
|
|
|
|
|
|
|
|
func (index *fileIndex) remove(path string) {
|
|
|
|
index.mutex.RLock()
|
|
|
|
tempIndex := make([]string, len(index.list))
|
|
|
|
copy(tempIndex, index.list)
|
|
|
|
index.mutex.RUnlock()
|
|
|
|
|
|
|
|
var position int
|
|
|
|
|
|
|
|
for k, v := range tempIndex {
|
|
|
|
if path == v {
|
|
|
|
position = k
|
|
|
|
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
tempIndex[position] = tempIndex[len(tempIndex)-1]
|
|
|
|
|
|
|
|
index.mutex.Lock()
|
|
|
|
index.list = make([]string, len(tempIndex)-1)
|
|
|
|
copy(index.list, tempIndex[:len(tempIndex)-1])
|
|
|
|
index.mutex.Unlock()
|
|
|
|
}
|
|
|
|
|
2024-01-14 15:43:22 +00:00
|
|
|
func (index *fileIndex) set(val []string, encoder *zstd.Encoder, errorChannel chan<- error) {
|
2023-09-28 15:09:45 +00:00
|
|
|
length := len(val)
|
|
|
|
|
|
|
|
if length < 1 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
index.mutex.Lock()
|
|
|
|
index.list = make([]string, length)
|
|
|
|
copy(index.list, val)
|
|
|
|
index.mutex.Unlock()
|
|
|
|
|
|
|
|
if Index && IndexFile != "" {
|
2024-01-14 15:43:22 +00:00
|
|
|
index.Export(IndexFile, encoder, errorChannel)
|
2023-09-28 15:09:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (index *fileIndex) clear() {
|
|
|
|
index.mutex.Lock()
|
|
|
|
index.list = nil
|
|
|
|
index.mutex.Unlock()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (index *fileIndex) isEmpty() bool {
|
|
|
|
index.mutex.RLock()
|
|
|
|
length := len(index.list)
|
|
|
|
index.mutex.RUnlock()
|
|
|
|
|
|
|
|
return length == 0
|
|
|
|
}
|
|
|
|
|
2024-01-14 15:43:22 +00:00
|
|
|
func (index *fileIndex) Export(path string, encoder *zstd.Encoder, errorChannel chan<- error) {
|
2023-09-28 15:09:45 +00:00
|
|
|
startTime := time.Now()
|
|
|
|
|
|
|
|
file, err := os.OpenFile(path, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, 0600)
|
|
|
|
if err != nil {
|
2024-01-14 15:29:22 +00:00
|
|
|
errorChannel <- err
|
|
|
|
|
|
|
|
return
|
2023-09-28 15:09:45 +00:00
|
|
|
}
|
|
|
|
defer file.Close()
|
|
|
|
|
2024-01-14 15:43:22 +00:00
|
|
|
encoder.Reset(file)
|
2024-01-14 15:29:22 +00:00
|
|
|
|
2024-01-06 02:39:05 +00:00
|
|
|
defer encoder.Close()
|
2023-09-28 15:09:45 +00:00
|
|
|
|
2024-01-06 02:39:05 +00:00
|
|
|
enc := gob.NewEncoder(encoder)
|
2023-09-28 15:09:45 +00:00
|
|
|
|
|
|
|
index.mutex.RLock()
|
2023-10-04 20:47:43 +00:00
|
|
|
err = enc.Encode(&index.list)
|
|
|
|
if err != nil {
|
2024-01-04 18:43:26 +00:00
|
|
|
index.mutex.RUnlock()
|
|
|
|
|
2024-01-14 15:29:22 +00:00
|
|
|
errorChannel <- err
|
|
|
|
|
|
|
|
return
|
2023-10-04 20:47:43 +00:00
|
|
|
}
|
2023-09-28 15:09:45 +00:00
|
|
|
length := len(index.list)
|
|
|
|
index.mutex.RUnlock()
|
|
|
|
|
2024-01-04 18:43:26 +00:00
|
|
|
// Close encoder prior to checking file size,
|
|
|
|
// to ensure the correct value is returned.
|
2024-01-14 15:29:22 +00:00
|
|
|
encoder.Close()
|
2024-01-04 18:43:26 +00:00
|
|
|
|
2024-01-04 14:43:52 +00:00
|
|
|
stats, err := file.Stat()
|
|
|
|
if err != nil {
|
2024-01-14 15:29:22 +00:00
|
|
|
errorChannel <- err
|
|
|
|
|
|
|
|
return
|
2024-01-04 14:43:52 +00:00
|
|
|
}
|
|
|
|
|
2023-09-28 15:09:45 +00:00
|
|
|
if Verbose {
|
2024-01-04 14:43:52 +00:00
|
|
|
fmt.Printf("%s | INDEX: Exported %d entries to %s (%s) in %s\n",
|
2023-09-28 15:09:45 +00:00
|
|
|
time.Now().Format(logDate),
|
|
|
|
length,
|
|
|
|
path,
|
2024-01-04 14:43:52 +00:00
|
|
|
humanReadableSize(int(stats.Size())),
|
2024-01-11 09:36:16 +00:00
|
|
|
time.Since(startTime).Round(time.Microsecond),
|
2023-09-28 15:09:45 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-01-14 15:29:22 +00:00
|
|
|
func (index *fileIndex) Import(path string, errorChannel chan<- error) {
|
2023-09-28 15:09:45 +00:00
|
|
|
startTime := time.Now()
|
|
|
|
|
|
|
|
file, err := os.OpenFile(path, os.O_RDONLY, 0600)
|
|
|
|
if err != nil {
|
2024-01-14 15:29:22 +00:00
|
|
|
errorChannel <- err
|
|
|
|
|
|
|
|
return
|
2023-09-28 15:09:45 +00:00
|
|
|
}
|
|
|
|
defer file.Close()
|
|
|
|
|
2024-01-04 14:43:52 +00:00
|
|
|
stats, err := file.Stat()
|
|
|
|
if err != nil {
|
2024-01-14 15:29:22 +00:00
|
|
|
errorChannel <- err
|
|
|
|
|
|
|
|
return
|
2024-01-04 14:43:52 +00:00
|
|
|
}
|
|
|
|
|
2024-01-14 15:43:22 +00:00
|
|
|
reader, err := zstd.NewReader(file)
|
2023-09-28 15:09:45 +00:00
|
|
|
if err != nil {
|
2024-01-14 15:29:22 +00:00
|
|
|
errorChannel <- err
|
|
|
|
|
|
|
|
return
|
2023-09-28 15:09:45 +00:00
|
|
|
}
|
2024-01-09 19:39:08 +00:00
|
|
|
defer reader.Close()
|
2023-09-28 15:09:45 +00:00
|
|
|
|
2024-01-06 02:39:05 +00:00
|
|
|
dec := gob.NewDecoder(reader)
|
2023-09-28 15:09:45 +00:00
|
|
|
|
|
|
|
index.mutex.Lock()
|
|
|
|
err = dec.Decode(&index.list)
|
|
|
|
if err != nil {
|
2024-01-04 18:43:26 +00:00
|
|
|
index.mutex.Unlock()
|
|
|
|
|
2024-01-14 15:29:22 +00:00
|
|
|
errorChannel <- err
|
|
|
|
|
|
|
|
return
|
2023-09-28 15:09:45 +00:00
|
|
|
}
|
2023-10-04 20:47:43 +00:00
|
|
|
length := len(index.list)
|
|
|
|
index.mutex.Unlock()
|
2023-09-28 15:09:45 +00:00
|
|
|
|
|
|
|
if Verbose {
|
2024-01-04 14:43:52 +00:00
|
|
|
fmt.Printf("%s | INDEX: Imported %d entries from %s (%s) in %s\n",
|
2023-09-28 15:09:45 +00:00
|
|
|
time.Now().Format(logDate),
|
|
|
|
length,
|
|
|
|
path,
|
2024-01-04 14:43:52 +00:00
|
|
|
humanReadableSize(int(stats.Size())),
|
2024-01-11 09:36:16 +00:00
|
|
|
time.Since(startTime).Round(time.Microsecond),
|
2023-09-28 15:09:45 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-01-30 10:27:18 +00:00
|
|
|
func rebuildIndex(args []string, index *fileIndex, formats types.Types, encoder *zstd.Encoder, errorChannel chan<- error) {
|
|
|
|
index.clear()
|
|
|
|
|
|
|
|
fileList(args, &filters{}, "", index, formats, encoder, errorChannel)
|
|
|
|
}
|
|
|
|
|
2024-01-14 15:43:22 +00:00
|
|
|
func serveIndexRebuild(args []string, index *fileIndex, formats types.Types, encoder *zstd.Encoder, errorChannel chan<- error) httprouter.Handle {
|
2023-09-28 15:09:45 +00:00
|
|
|
return func(w http.ResponseWriter, r *http.Request, p httprouter.Params) {
|
2024-01-08 04:43:51 +00:00
|
|
|
startTime := time.Now()
|
|
|
|
|
2024-01-30 10:27:18 +00:00
|
|
|
rebuildIndex(args, index, formats, encoder, errorChannel)
|
2023-09-28 15:09:45 +00:00
|
|
|
|
2024-01-25 15:30:28 +00:00
|
|
|
w.Header().Set("Content-Type", "text/plain;charset=UTF-8")
|
2023-09-28 15:09:45 +00:00
|
|
|
|
2024-01-08 04:43:51 +00:00
|
|
|
_, err := w.Write([]byte("Ok\n"))
|
|
|
|
if err != nil {
|
|
|
|
errorChannel <- err
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if Verbose {
|
|
|
|
fmt.Printf("%s | SERVE: Index rebuild requested by %s took %s\n",
|
|
|
|
startTime.Format(logDate),
|
|
|
|
realIP(r),
|
|
|
|
time.Since(startTime).Round(time.Microsecond),
|
|
|
|
)
|
|
|
|
}
|
2023-09-28 15:09:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-01-14 15:43:22 +00:00
|
|
|
func importIndex(args []string, index *fileIndex, formats types.Types, encoder *zstd.Encoder, errorChannel chan<- error) {
|
2023-09-28 15:09:45 +00:00
|
|
|
if IndexFile != "" {
|
2024-01-14 15:29:22 +00:00
|
|
|
index.Import(IndexFile, errorChannel)
|
2023-09-28 15:09:45 +00:00
|
|
|
}
|
|
|
|
|
2024-01-14 15:43:22 +00:00
|
|
|
fileList(args, &filters{}, "", index, formats, encoder, errorChannel)
|
2023-09-28 15:09:45 +00:00
|
|
|
}
|