This commit is contained in:
Alex Yatskov 2021-04-25 08:56:07 -07:00
parent 9cde4d9676
commit 14c434a6a4
5 changed files with 49 additions and 38 deletions

View File

@ -69,7 +69,7 @@ func (cache *cache) storeFile(context *Context, outputFile *File, inputFiles []*
func (cache *cache) buildCachePath(context *Context, outputPath string, inputFiles []*File) (string, error) { func (cache *cache) buildCachePath(context *Context, outputPath string, inputFiles []*File) (string, error) {
uintBuff := make([]byte, 4) uintBuff := make([]byte, 4)
binary.LittleEndian.PutUint32(uintBuff, context.hash) binary.LittleEndian.PutUint32(uintBuff, context.chainHash)
hasher := crc32.NewIEEE() hasher := crc32.NewIEEE()
hasher.Write(uintBuff) hasher.Write(uintBuff)

View File

@ -14,14 +14,16 @@ import (
type Context struct { type Context struct {
goldsmith *Goldsmith goldsmith *Goldsmith
plugin Plugin plugin Plugin
hash uint32 chainHash uint32
filtersExternal filterStack filtersExt filterStack
filtersInternal filterStack filtersInt filterStack
inputFiles chan *File threads int
outputFiles chan *File
filesIn chan *File
filesOut chan *File
} }
// CreateFileFrom data creates a new file instance from the provided data buffer. // CreateFileFrom data creates a new file instance from the provided data buffer.
@ -58,7 +60,7 @@ func (*Context) CreateFileFromAsset(sourcePath, dataPath string) (*File, error)
// DispatchFile causes the file to get passed to the next link in the chain. // DispatchFile causes the file to get passed to the next link in the chain.
func (context *Context) DispatchFile(file *File) { func (context *Context) DispatchFile(file *File) {
context.outputFiles <- file context.filesOut <- file
} }
// DispatchAndCacheFile caches the file data (excluding the metadata), taking // DispatchAndCacheFile caches the file data (excluding the metadata), taking
@ -69,7 +71,7 @@ func (context *Context) DispatchAndCacheFile(outputFile *File, inputFiles ...*Fi
context.goldsmith.fileCache.storeFile(context, outputFile, inputFiles) context.goldsmith.fileCache.storeFile(context, outputFile, inputFiles)
} }
context.outputFiles <- outputFile context.filesOut <- outputFile
} }
// RetrieveCachedFile looks up file data (excluding the metadata), given an // RetrieveCachedFile looks up file data (excluding the metadata), given an
@ -86,12 +88,18 @@ func (context *Context) RetrieveCachedFile(outputPath string, inputFiles ...*Fil
// Specify internal filter(s) that exclude files from being processed. // Specify internal filter(s) that exclude files from being processed.
func (context *Context) Filter(filters ...Filter) *Context { func (context *Context) Filter(filters ...Filter) *Context {
context.filtersInternal = filters context.filtersInt = filters
return context
}
// Specify the maximum number of threads used for processing.
func (context *Context) Threads(threads int) *Context {
context.threads = threads
return context return context
} }
func (context *Context) step() { func (context *Context) step() {
defer close(context.outputFiles) defer close(context.filesOut)
if initializer, ok := context.plugin.(Initializer); ok { if initializer, ok := context.plugin.(Initializer); ok {
if err := initializer.Initialize(context); err != nil { if err := initializer.Initialize(context); err != nil {
@ -100,16 +108,21 @@ func (context *Context) step() {
} }
} }
if context.inputFiles != nil { if context.filesIn != nil {
processor, _ := context.plugin.(Processor) processor, _ := context.plugin.(Processor)
threads := context.threads
if threads < 1 {
threads = runtime.NumCPU()
}
var wg sync.WaitGroup var wg sync.WaitGroup
for i := 0; i < runtime.NumCPU(); i++ { for i := 0; i < threads; i++ {
wg.Add(1) wg.Add(1)
go func() { go func() {
defer wg.Done() defer wg.Done()
for inputFile := range context.inputFiles { for inputFile := range context.filesIn {
if processor != nil && context.filtersInternal.accept(inputFile) && context.filtersExternal.accept(inputFile) { if processor != nil && context.filtersInt.accept(inputFile) && context.filtersExt.accept(inputFile) {
if _, err := inputFile.Seek(0, os.SEEK_SET); err != nil { if _, err := inputFile.Seek(0, os.SEEK_SET); err != nil {
context.goldsmith.fault("core", inputFile, err) context.goldsmith.fault("core", inputFile, err)
} }
@ -117,7 +130,7 @@ func (context *Context) step() {
context.goldsmith.fault(context.plugin.Name(), inputFile, err) context.goldsmith.fault(context.plugin.Name(), inputFile, err)
} }
} else { } else {
context.outputFiles <- inputFile context.filesOut <- inputFile
} }
} }
}() }()

View File

@ -17,9 +17,8 @@ type Goldsmith struct {
contextHasher hash.Hash32 contextHasher hash.Hash32
fileCache *cache fileCache *cache
filters filterStack
filters filterStack clean bool
clean bool
errors []error errors []error
mutex sync.Mutex mutex sync.Mutex
@ -53,16 +52,16 @@ func (goldsmith *Goldsmith) Chain(plugin Plugin) *Goldsmith {
goldsmith.contextHasher.Write([]byte(plugin.Name())) goldsmith.contextHasher.Write([]byte(plugin.Name()))
context := &Context{ context := &Context{
goldsmith: goldsmith, goldsmith: goldsmith,
plugin: plugin, plugin: plugin,
hash: goldsmith.contextHasher.Sum32(), chainHash: goldsmith.contextHasher.Sum32(),
outputFiles: make(chan *File), filesOut: make(chan *File),
} }
context.filtersExternal = append(context.filtersExternal, goldsmith.filters...) context.filtersExt = append(context.filtersExt, goldsmith.filters...)
if len(goldsmith.contexts) > 0 { if len(goldsmith.contexts) > 0 {
context.inputFiles = goldsmith.contexts[len(goldsmith.contexts)-1].outputFiles context.filesIn = goldsmith.contexts[len(goldsmith.contexts)-1].filesOut
} }
goldsmith.contexts = append(goldsmith.contexts, context) goldsmith.contexts = append(goldsmith.contexts, context)
@ -86,8 +85,7 @@ func (goldsmith *Goldsmith) End(targetDir string) []error {
goldsmith.targetDir = targetDir goldsmith.targetDir = targetDir
goldsmith.Chain(&saver{ goldsmith.Chain(&saver{
clean: goldsmith.clean, clean: goldsmith.clean,
tokens: make(map[string]bool),
}) })
for _, context := range goldsmith.contexts { for _, context := range goldsmith.contexts {

View File

@ -8,16 +8,16 @@ func (*loader) Name() string {
return "loader" return "loader"
} }
func (*loader) Initialize(ctx *Context) error { func (*loader) Initialize(context *Context) error {
infos := make(chan fileInfo) infos := make(chan fileInfo)
go scanDir(ctx.goldsmith.sourceDir, infos) go scanDir(context.goldsmith.sourceDir, infos)
for info := range infos { for info := range infos {
if info.IsDir() { if info.IsDir() {
continue continue
} }
relPath, _ := filepath.Rel(ctx.goldsmith.sourceDir, info.path) relPath, _ := filepath.Rel(context.goldsmith.sourceDir, info.path)
file := &File{ file := &File{
sourcePath: relPath, sourcePath: relPath,
@ -27,7 +27,7 @@ func (*loader) Initialize(ctx *Context) error {
dataPath: info.path, dataPath: info.path,
} }
ctx.DispatchFile(file) context.DispatchFile(file)
} }
return nil return nil

View File

@ -3,24 +3,24 @@ package goldsmith
import ( import (
"os" "os"
"path/filepath" "path/filepath"
"sync"
) )
type saver struct { type saver struct {
clean bool clean bool
tokens map[string]bool tokens map[string]bool
mutex sync.Mutex
} }
func (*saver) Name() string { func (*saver) Name() string {
return "saver" return "saver"
} }
func (saver *saver) Process(context *Context, file *File) error { func (saver *saver) Initialize(context *Context) error {
saver.mutex.Lock() saver.tokens = make(map[string]bool)
defer saver.mutex.Unlock() context.Threads(1)
return nil
}
func (saver *saver) Process(context *Context, file *File) error {
for token := cleanPath(file.sourcePath); token != "."; token = filepath.Dir(token) { for token := cleanPath(file.sourcePath); token != "."; token = filepath.Dir(token) {
saver.tokens[token] = true saver.tokens[token] = true
} }