mirror of
https://github.com/stashapp/stash.git
synced 2025-12-06 16:34:02 +01:00
* Add findFile and findFiles * Add parent folder and zip file fields to file graphql types * Add parent_folder, zip_file fields to Folder graphql type * Add format to ImageFile type * Add format filter fields to image/video file filters
224 lines
5.7 KiB
Go
224 lines
5.7 KiB
Go
// Code generated by github.com/vektah/dataloaden, DO NOT EDIT.
|
|
|
|
package loaders
|
|
|
|
import (
|
|
"sync"
|
|
"time"
|
|
|
|
"github.com/stashapp/stash/pkg/models"
|
|
)
|
|
|
|
// FolderLoaderConfig captures the config to create a new FolderLoader
|
|
type FolderLoaderConfig struct {
|
|
// Fetch is a method that provides the data for the loader
|
|
Fetch func(keys []models.FolderID) ([]*models.Folder, []error)
|
|
|
|
// Wait is how long wait before sending a batch
|
|
Wait time.Duration
|
|
|
|
// MaxBatch will limit the maximum number of keys to send in one batch, 0 = not limit
|
|
MaxBatch int
|
|
}
|
|
|
|
// NewFolderLoader creates a new FolderLoader given a fetch, wait, and maxBatch
|
|
func NewFolderLoader(config FolderLoaderConfig) *FolderLoader {
|
|
return &FolderLoader{
|
|
fetch: config.Fetch,
|
|
wait: config.Wait,
|
|
maxBatch: config.MaxBatch,
|
|
}
|
|
}
|
|
|
|
// FolderLoader batches and caches requests
|
|
type FolderLoader struct {
|
|
// this method provides the data for the loader
|
|
fetch func(keys []models.FolderID) ([]*models.Folder, []error)
|
|
|
|
// how long to done before sending a batch
|
|
wait time.Duration
|
|
|
|
// this will limit the maximum number of keys to send in one batch, 0 = no limit
|
|
maxBatch int
|
|
|
|
// INTERNAL
|
|
|
|
// lazily created cache
|
|
cache map[models.FolderID]*models.Folder
|
|
|
|
// the current batch. keys will continue to be collected until timeout is hit,
|
|
// then everything will be sent to the fetch method and out to the listeners
|
|
batch *folderLoaderBatch
|
|
|
|
// mutex to prevent races
|
|
mu sync.Mutex
|
|
}
|
|
|
|
type folderLoaderBatch struct {
|
|
keys []models.FolderID
|
|
data []*models.Folder
|
|
error []error
|
|
closing bool
|
|
done chan struct{}
|
|
}
|
|
|
|
// Load a Folder by key, batching and caching will be applied automatically
|
|
func (l *FolderLoader) Load(key models.FolderID) (*models.Folder, error) {
|
|
return l.LoadThunk(key)()
|
|
}
|
|
|
|
// LoadThunk returns a function that when called will block waiting for a Folder.
|
|
// This method should be used if you want one goroutine to make requests to many
|
|
// different data loaders without blocking until the thunk is called.
|
|
func (l *FolderLoader) LoadThunk(key models.FolderID) func() (*models.Folder, error) {
|
|
l.mu.Lock()
|
|
if it, ok := l.cache[key]; ok {
|
|
l.mu.Unlock()
|
|
return func() (*models.Folder, error) {
|
|
return it, nil
|
|
}
|
|
}
|
|
if l.batch == nil {
|
|
l.batch = &folderLoaderBatch{done: make(chan struct{})}
|
|
}
|
|
batch := l.batch
|
|
pos := batch.keyIndex(l, key)
|
|
l.mu.Unlock()
|
|
|
|
return func() (*models.Folder, error) {
|
|
<-batch.done
|
|
|
|
var data *models.Folder
|
|
if pos < len(batch.data) {
|
|
data = batch.data[pos]
|
|
}
|
|
|
|
var err error
|
|
// its convenient to be able to return a single error for everything
|
|
if len(batch.error) == 1 {
|
|
err = batch.error[0]
|
|
} else if batch.error != nil {
|
|
err = batch.error[pos]
|
|
}
|
|
|
|
if err == nil {
|
|
l.mu.Lock()
|
|
l.unsafeSet(key, data)
|
|
l.mu.Unlock()
|
|
}
|
|
|
|
return data, err
|
|
}
|
|
}
|
|
|
|
// LoadAll fetches many keys at once. It will be broken into appropriate sized
|
|
// sub batches depending on how the loader is configured
|
|
func (l *FolderLoader) LoadAll(keys []models.FolderID) ([]*models.Folder, []error) {
|
|
results := make([]func() (*models.Folder, error), len(keys))
|
|
|
|
for i, key := range keys {
|
|
results[i] = l.LoadThunk(key)
|
|
}
|
|
|
|
folders := make([]*models.Folder, len(keys))
|
|
errors := make([]error, len(keys))
|
|
for i, thunk := range results {
|
|
folders[i], errors[i] = thunk()
|
|
}
|
|
return folders, errors
|
|
}
|
|
|
|
// LoadAllThunk returns a function that when called will block waiting for a Folders.
|
|
// This method should be used if you want one goroutine to make requests to many
|
|
// different data loaders without blocking until the thunk is called.
|
|
func (l *FolderLoader) LoadAllThunk(keys []models.FolderID) func() ([]*models.Folder, []error) {
|
|
results := make([]func() (*models.Folder, error), len(keys))
|
|
for i, key := range keys {
|
|
results[i] = l.LoadThunk(key)
|
|
}
|
|
return func() ([]*models.Folder, []error) {
|
|
folders := make([]*models.Folder, len(keys))
|
|
errors := make([]error, len(keys))
|
|
for i, thunk := range results {
|
|
folders[i], errors[i] = thunk()
|
|
}
|
|
return folders, errors
|
|
}
|
|
}
|
|
|
|
// Prime the cache with the provided key and value. If the key already exists, no change is made
|
|
// and false is returned.
|
|
// (To forcefully prime the cache, clear the key first with loader.clear(key).prime(key, value).)
|
|
func (l *FolderLoader) Prime(key models.FolderID, value *models.Folder) bool {
|
|
l.mu.Lock()
|
|
var found bool
|
|
if _, found = l.cache[key]; !found {
|
|
// make a copy when writing to the cache, its easy to pass a pointer in from a loop var
|
|
// and end up with the whole cache pointing to the same value.
|
|
cpy := *value
|
|
l.unsafeSet(key, &cpy)
|
|
}
|
|
l.mu.Unlock()
|
|
return !found
|
|
}
|
|
|
|
// Clear the value at key from the cache, if it exists
|
|
func (l *FolderLoader) Clear(key models.FolderID) {
|
|
l.mu.Lock()
|
|
delete(l.cache, key)
|
|
l.mu.Unlock()
|
|
}
|
|
|
|
func (l *FolderLoader) unsafeSet(key models.FolderID, value *models.Folder) {
|
|
if l.cache == nil {
|
|
l.cache = map[models.FolderID]*models.Folder{}
|
|
}
|
|
l.cache[key] = value
|
|
}
|
|
|
|
// keyIndex will return the location of the key in the batch, if its not found
|
|
// it will add the key to the batch
|
|
func (b *folderLoaderBatch) keyIndex(l *FolderLoader, key models.FolderID) int {
|
|
for i, existingKey := range b.keys {
|
|
if key == existingKey {
|
|
return i
|
|
}
|
|
}
|
|
|
|
pos := len(b.keys)
|
|
b.keys = append(b.keys, key)
|
|
if pos == 0 {
|
|
go b.startTimer(l)
|
|
}
|
|
|
|
if l.maxBatch != 0 && pos >= l.maxBatch-1 {
|
|
if !b.closing {
|
|
b.closing = true
|
|
l.batch = nil
|
|
go b.end(l)
|
|
}
|
|
}
|
|
|
|
return pos
|
|
}
|
|
|
|
func (b *folderLoaderBatch) startTimer(l *FolderLoader) {
|
|
time.Sleep(l.wait)
|
|
l.mu.Lock()
|
|
|
|
// we must have hit a batch limit and are already finalizing this batch
|
|
if b.closing {
|
|
l.mu.Unlock()
|
|
return
|
|
}
|
|
|
|
l.batch = nil
|
|
l.mu.Unlock()
|
|
|
|
b.end(l)
|
|
}
|
|
|
|
func (b *folderLoaderBatch) end(l *FolderLoader) {
|
|
b.data, b.error = l.fetch(b.keys)
|
|
close(b.done)
|
|
}
|