cleanup
This commit is contained in:
parent
c8e3e98432
commit
966201a95f
16
cache.go
16
cache.go
@ -9,12 +9,12 @@ import (
|
|||||||
"sort"
|
"sort"
|
||||||
)
|
)
|
||||||
|
|
||||||
type fileCache struct {
|
type cache struct {
|
||||||
baseDir string
|
baseDir string
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *fileCache) retrieveFile(context *Context, outputPath string, inputFiles []*File) (*File, error) {
|
func (cache *cache) retrieveFile(context *Context, outputPath string, inputFiles []*File) (*File, error) {
|
||||||
cachePath, err := c.buildCachePath(context, outputPath, inputFiles)
|
cachePath, err := cache.buildCachePath(context, outputPath, inputFiles)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
@ -31,13 +31,13 @@ func (c *fileCache) retrieveFile(context *Context, outputPath string, inputFiles
|
|||||||
return outputFile, nil
|
return outputFile, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *fileCache) storeFile(context *Context, outputFile *File, inputFiles []*File) error {
|
func (cache *cache) storeFile(context *Context, outputFile *File, inputFiles []*File) error {
|
||||||
cachePath, err := c.buildCachePath(context, outputFile.Path(), inputFiles)
|
cachePath, err := cache.buildCachePath(context, outputFile.Path(), inputFiles)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
if err := os.MkdirAll(c.baseDir, 0755); err != nil {
|
if err := os.MkdirAll(cache.baseDir, 0755); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -67,7 +67,7 @@ func (c *fileCache) storeFile(context *Context, outputFile *File, inputFiles []*
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *fileCache) 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.hash)
|
||||||
|
|
||||||
@ -88,7 +88,7 @@ func (c *fileCache) buildCachePath(context *Context, outputPath string, inputFil
|
|||||||
hasher.Write([]byte(inputFile.Path()))
|
hasher.Write([]byte(inputFile.Path()))
|
||||||
}
|
}
|
||||||
|
|
||||||
cachePath := filepath.Join(c.baseDir, fmt.Sprintf(
|
cachePath := filepath.Join(cache.baseDir, fmt.Sprintf(
|
||||||
"gs_%.8x%s",
|
"gs_%.8x%s",
|
||||||
hasher.Sum32(),
|
hasher.Sum32(),
|
||||||
filepath.Ext(outputPath),
|
filepath.Ext(outputPath),
|
||||||
|
50
context.go
50
context.go
@ -50,52 +50,52 @@ func (*Context) CreateFileFromAsset(sourcePath, dataPath string) (*File, error)
|
|||||||
return file, nil
|
return file, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (ctx *Context) DispatchFile(file *File) {
|
func (context *Context) DispatchFile(file *File) {
|
||||||
ctx.outputFiles <- file
|
context.outputFiles <- file
|
||||||
}
|
}
|
||||||
|
|
||||||
func (ctx *Context) DispatchAndCacheFile(outputFile *File, inputFiles ...*File) {
|
func (context *Context) DispatchAndCacheFile(outputFile *File, inputFiles ...*File) {
|
||||||
ctx.goldsmith.storeFile(ctx, outputFile, inputFiles)
|
context.goldsmith.storeFile(context, outputFile, inputFiles)
|
||||||
ctx.outputFiles <- outputFile
|
context.outputFiles <- outputFile
|
||||||
}
|
}
|
||||||
|
|
||||||
func (ctx *Context) RetrieveCachedFile(outputPath string, inputFiles ...*File) *File {
|
func (context *Context) RetrieveCachedFile(outputPath string, inputFiles ...*File) *File {
|
||||||
return ctx.goldsmith.retrieveFile(ctx, outputPath, inputFiles)
|
return context.goldsmith.retrieveFile(context, outputPath, inputFiles)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (ctx *Context) step() {
|
func (context *Context) step() {
|
||||||
defer close(ctx.outputFiles)
|
defer close(context.outputFiles)
|
||||||
|
|
||||||
var err error
|
var err error
|
||||||
var filter Filter
|
var filter Filter
|
||||||
if initializer, ok := ctx.plugin.(Initializer); ok {
|
if initializer, ok := context.plugin.(Initializer); ok {
|
||||||
filter, err = initializer.Initialize(ctx)
|
filter, err = initializer.Initialize(context)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
ctx.goldsmith.fault(ctx.plugin.Name(), nil, err)
|
context.goldsmith.fault(context.plugin.Name(), nil, err)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if ctx.inputFiles != nil {
|
if context.inputFiles != nil {
|
||||||
processor, _ := ctx.plugin.(Processor)
|
processor, _ := context.plugin.(Processor)
|
||||||
|
|
||||||
var wg sync.WaitGroup
|
var wg sync.WaitGroup
|
||||||
for i := 0; i < runtime.NumCPU(); i++ {
|
for i := 0; i < runtime.NumCPU(); i++ {
|
||||||
wg.Add(1)
|
wg.Add(1)
|
||||||
go func() {
|
go func() {
|
||||||
defer wg.Done()
|
defer wg.Done()
|
||||||
for inputFile := range ctx.inputFiles {
|
for inputFile := range context.inputFiles {
|
||||||
accept := processor != nil
|
accept := processor != nil
|
||||||
|
|
||||||
var fileFilters []Filter
|
var fileFilters []Filter
|
||||||
fileFilters = append(fileFilters, ctx.fileFilters...)
|
fileFilters = append(fileFilters, context.fileFilters...)
|
||||||
if filter != nil {
|
if filter != nil {
|
||||||
fileFilters = append(fileFilters, filter)
|
fileFilters = append(fileFilters, filter)
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, fileFilter := range fileFilters {
|
for _, fileFilter := range fileFilters {
|
||||||
if accept, err = fileFilter.Accept(ctx, inputFile); err != nil {
|
if accept, err = fileFilter.Accept(context, inputFile); err != nil {
|
||||||
ctx.goldsmith.fault(fileFilter.Name(), inputFile, err)
|
context.goldsmith.fault(fileFilter.Name(), inputFile, err)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
if !accept {
|
if !accept {
|
||||||
@ -105,13 +105,13 @@ func (ctx *Context) step() {
|
|||||||
|
|
||||||
if accept {
|
if accept {
|
||||||
if _, err := inputFile.Seek(0, os.SEEK_SET); err != nil {
|
if _, err := inputFile.Seek(0, os.SEEK_SET); err != nil {
|
||||||
ctx.goldsmith.fault("core", inputFile, err)
|
context.goldsmith.fault("core", inputFile, err)
|
||||||
}
|
}
|
||||||
if err := processor.Process(ctx, inputFile); err != nil {
|
if err := processor.Process(context, inputFile); err != nil {
|
||||||
ctx.goldsmith.fault(ctx.plugin.Name(), inputFile, err)
|
context.goldsmith.fault(context.plugin.Name(), inputFile, err)
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
ctx.outputFiles <- inputFile
|
context.outputFiles <- inputFile
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}()
|
}()
|
||||||
@ -119,9 +119,9 @@ func (ctx *Context) step() {
|
|||||||
wg.Wait()
|
wg.Wait()
|
||||||
}
|
}
|
||||||
|
|
||||||
if finalizer, ok := ctx.plugin.(Finalizer); ok {
|
if finalizer, ok := context.plugin.(Finalizer); ok {
|
||||||
if err := finalizer.Finalize(ctx); err != nil {
|
if err := finalizer.Finalize(context); err != nil {
|
||||||
ctx.goldsmith.fault(ctx.plugin.Name(), nil, err)
|
context.goldsmith.fault(context.plugin.Name(), nil, err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
8
error.go
8
error.go
@ -8,11 +8,11 @@ type Error struct {
|
|||||||
Err error
|
Err error
|
||||||
}
|
}
|
||||||
|
|
||||||
func (e Error) Error() string {
|
func (err Error) Error() string {
|
||||||
var path string
|
var path string
|
||||||
if len(e.Path) > 0 {
|
if len(err.Path) > 0 {
|
||||||
path = "@" + e.Path
|
path = "@" + err.Path
|
||||||
}
|
}
|
||||||
|
|
||||||
return fmt.Sprintf("[%s%s]: %s", e.Name, path, e.Err.Error())
|
return fmt.Sprintf("[%s%s]: %s", err.Name, path, err.Err.Error())
|
||||||
}
|
}
|
||||||
|
116
file.go
116
file.go
@ -26,75 +26,61 @@ type File struct {
|
|||||||
modTime time.Time
|
modTime time.Time
|
||||||
}
|
}
|
||||||
|
|
||||||
func (f *File) Path() string {
|
func (file *File) Path() string {
|
||||||
return f.sourcePath
|
return file.sourcePath
|
||||||
}
|
}
|
||||||
|
|
||||||
func (f *File) Name() string {
|
func (file *File) Name() string {
|
||||||
return path.Base(f.sourcePath)
|
return path.Base(file.sourcePath)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (f *File) Dir() string {
|
func (file *File) Dir() string {
|
||||||
return path.Dir(f.sourcePath)
|
return path.Dir(file.sourcePath)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (f *File) Ext() string {
|
func (file *File) Ext() string {
|
||||||
return path.Ext(f.sourcePath)
|
return path.Ext(file.sourcePath)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (f *File) Size() int64 {
|
func (file *File) Size() int64 {
|
||||||
return f.size
|
return file.size
|
||||||
}
|
}
|
||||||
|
|
||||||
func (f *File) ModTime() time.Time {
|
func (file *File) ModTime() time.Time {
|
||||||
return f.modTime
|
return file.modTime
|
||||||
}
|
}
|
||||||
|
|
||||||
func (f *File) Read(data []byte) (int, error) {
|
func (file *File) Read(data []byte) (int, error) {
|
||||||
if err := f.load(); err != nil {
|
if err := file.load(); err != nil {
|
||||||
return 0, err
|
return 0, err
|
||||||
}
|
}
|
||||||
|
|
||||||
return f.reader.Read(data)
|
return file.reader.Read(data)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (f *File) WriteTo(writer io.Writer) (int64, error) {
|
func (file *File) WriteTo(writer io.Writer) (int64, error) {
|
||||||
if err := f.load(); err != nil {
|
if err := file.load(); err != nil {
|
||||||
return 0, err
|
return 0, err
|
||||||
}
|
}
|
||||||
|
|
||||||
return f.reader.WriteTo(writer)
|
return file.reader.WriteTo(writer)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (f *File) Seek(offset int64, whence int) (int64, error) {
|
func (file *File) Seek(offset int64, whence int) (int64, error) {
|
||||||
if f.reader == nil && offset == 0 && (whence == os.SEEK_SET || whence == os.SEEK_CUR) {
|
if file.reader == nil && offset == 0 && (whence == os.SEEK_SET || whence == os.SEEK_CUR) {
|
||||||
return 0, nil
|
return 0, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
if err := f.load(); err != nil {
|
if err := file.load(); err != nil {
|
||||||
return 0, err
|
return 0, err
|
||||||
}
|
}
|
||||||
|
|
||||||
return f.reader.Seek(offset, whence)
|
return file.reader.Seek(offset, whence)
|
||||||
}
|
}
|
||||||
|
|
||||||
type FilesByPath []*File
|
func (file *File) export(targetDir string) error {
|
||||||
|
targetPath := filepath.Join(targetDir, file.sourcePath)
|
||||||
func (f FilesByPath) Len() int {
|
if targetInfo, err := os.Stat(targetPath); err == nil && targetInfo.ModTime().After(file.ModTime()) {
|
||||||
return len(f)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (f FilesByPath) Swap(i, j int) {
|
|
||||||
f[i], f[j] = f[j], f[i]
|
|
||||||
}
|
|
||||||
|
|
||||||
func (f FilesByPath) Less(i, j int) bool {
|
|
||||||
return strings.Compare(f[i].Path(), f[j].Path()) < 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (f *File) export(targetDir string) error {
|
|
||||||
targetPath := filepath.Join(targetDir, f.sourcePath)
|
|
||||||
if targetInfo, err := os.Stat(targetPath); err == nil && targetInfo.ModTime().After(f.ModTime()) {
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -108,8 +94,8 @@ func (f *File) export(targetDir string) error {
|
|||||||
}
|
}
|
||||||
defer fw.Close()
|
defer fw.Close()
|
||||||
|
|
||||||
if f.reader == nil {
|
if file.reader == nil {
|
||||||
fr, err := os.Open(f.dataPath)
|
fr, err := os.Open(file.dataPath)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
@ -119,11 +105,11 @@ func (f *File) export(targetDir string) error {
|
|||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if _, err := f.Seek(0, os.SEEK_SET); err != nil {
|
if _, err := file.Seek(0, os.SEEK_SET); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
if _, err := f.WriteTo(fw); err != nil {
|
if _, err := file.WriteTo(fw); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -131,50 +117,64 @@ func (f *File) export(targetDir string) error {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (f *File) load() error {
|
func (file *File) load() error {
|
||||||
if f.reader != nil {
|
if file.reader != nil {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
data, err := ioutil.ReadFile(f.dataPath)
|
data, err := ioutil.ReadFile(file.dataPath)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
f.reader = bytes.NewReader(data)
|
file.reader = bytes.NewReader(data)
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (f *File) hash() (uint32, error) {
|
func (file *File) hash() (uint32, error) {
|
||||||
if f.hashValid {
|
if file.hashValid {
|
||||||
return f.hashValue, nil
|
return file.hashValue, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
if err := f.load(); err != nil {
|
if err := file.load(); err != nil {
|
||||||
return 0, err
|
return 0, err
|
||||||
}
|
}
|
||||||
|
|
||||||
offset, err := f.Seek(0, os.SEEK_CUR)
|
offset, err := file.Seek(0, os.SEEK_CUR)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return 0, err
|
return 0, err
|
||||||
}
|
}
|
||||||
|
|
||||||
if _, err := f.Seek(0, os.SEEK_SET); err != nil {
|
if _, err := file.Seek(0, os.SEEK_SET); err != nil {
|
||||||
return 0, err
|
return 0, err
|
||||||
}
|
}
|
||||||
|
|
||||||
hasher := crc32.NewIEEE()
|
hasher := crc32.NewIEEE()
|
||||||
if _, err := io.Copy(hasher, f.reader); err != nil {
|
if _, err := io.Copy(hasher, file.reader); err != nil {
|
||||||
return 0, err
|
return 0, err
|
||||||
}
|
}
|
||||||
|
|
||||||
if _, err := f.Seek(offset, os.SEEK_SET); err != nil {
|
if _, err := file.Seek(offset, os.SEEK_SET); err != nil {
|
||||||
return 0, err
|
return 0, err
|
||||||
}
|
}
|
||||||
|
|
||||||
f.hashValue = hasher.Sum32()
|
file.hashValue = hasher.Sum32()
|
||||||
f.hashValid = true
|
file.hashValid = true
|
||||||
return f.hashValue, nil
|
return file.hashValue, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
type FilesByPath []*File
|
||||||
|
|
||||||
|
func (file FilesByPath) Len() int {
|
||||||
|
return len(file)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (file FilesByPath) Swap(i, j int) {
|
||||||
|
file[i], file[j] = file[j], file[i]
|
||||||
|
}
|
||||||
|
|
||||||
|
func (file FilesByPath) Less(i, j int) bool {
|
||||||
|
return strings.Compare(file[i].Path(), file[j].Path()) < 0
|
||||||
}
|
}
|
||||||
|
|
||||||
type fileInfo struct {
|
type fileInfo struct {
|
||||||
|
100
goldsmith.go
100
goldsmith.go
@ -17,128 +17,128 @@ type Goldsmith struct {
|
|||||||
|
|
||||||
fileRefs map[string]bool
|
fileRefs map[string]bool
|
||||||
fileFilters []Filter
|
fileFilters []Filter
|
||||||
fileCache *fileCache
|
fileCache *cache
|
||||||
|
|
||||||
errors []error
|
errors []error
|
||||||
errorMtx sync.Mutex
|
mutex sync.Mutex
|
||||||
}
|
}
|
||||||
|
|
||||||
func Begin(sourceDir string) *Goldsmith {
|
func Begin(sourceDir string) *Goldsmith {
|
||||||
gs := &Goldsmith{
|
goldsmith := &Goldsmith{
|
||||||
sourceDir: sourceDir,
|
sourceDir: sourceDir,
|
||||||
contextHasher: crc32.NewIEEE(),
|
contextHasher: crc32.NewIEEE(),
|
||||||
fileRefs: make(map[string]bool),
|
fileRefs: make(map[string]bool),
|
||||||
}
|
}
|
||||||
|
|
||||||
gs.Chain(new(loader))
|
goldsmith.Chain(new(loader))
|
||||||
return gs
|
return goldsmith
|
||||||
}
|
}
|
||||||
|
|
||||||
func (gs *Goldsmith) Cache(cacheDir string) *Goldsmith {
|
func (goldsmith *Goldsmith) Cache(cacheDir string) *Goldsmith {
|
||||||
gs.fileCache = &fileCache{cacheDir}
|
goldsmith.fileCache = &cache{cacheDir}
|
||||||
return gs
|
return goldsmith
|
||||||
}
|
}
|
||||||
|
|
||||||
func (gs *Goldsmith) Chain(plugin Plugin) *Goldsmith {
|
func (goldsmith *Goldsmith) Chain(plugin Plugin) *Goldsmith {
|
||||||
gs.contextHasher.Write([]byte(plugin.Name()))
|
goldsmith.contextHasher.Write([]byte(plugin.Name()))
|
||||||
|
|
||||||
context := &Context{
|
context := &Context{
|
||||||
goldsmith: gs,
|
goldsmith: goldsmith,
|
||||||
plugin: plugin,
|
plugin: plugin,
|
||||||
hash: gs.contextHasher.Sum32(),
|
hash: goldsmith.contextHasher.Sum32(),
|
||||||
outputFiles: make(chan *File),
|
outputFiles: make(chan *File),
|
||||||
}
|
}
|
||||||
|
|
||||||
context.fileFilters = append(context.fileFilters, gs.fileFilters...)
|
context.fileFilters = append(context.fileFilters, goldsmith.fileFilters...)
|
||||||
|
|
||||||
if len(gs.contexts) > 0 {
|
if len(goldsmith.contexts) > 0 {
|
||||||
context.inputFiles = gs.contexts[len(gs.contexts)-1].outputFiles
|
context.inputFiles = goldsmith.contexts[len(goldsmith.contexts)-1].outputFiles
|
||||||
}
|
}
|
||||||
|
|
||||||
gs.contexts = append(gs.contexts, context)
|
goldsmith.contexts = append(goldsmith.contexts, context)
|
||||||
return gs
|
return goldsmith
|
||||||
}
|
}
|
||||||
|
|
||||||
func (gs *Goldsmith) FilterPush(filter Filter) *Goldsmith {
|
func (goldsmith *Goldsmith) FilterPush(filter Filter) *Goldsmith {
|
||||||
gs.fileFilters = append(gs.fileFilters, filter)
|
goldsmith.fileFilters = append(goldsmith.fileFilters, filter)
|
||||||
return gs
|
return goldsmith
|
||||||
}
|
}
|
||||||
|
|
||||||
func (gs *Goldsmith) FilterPop() *Goldsmith {
|
func (goldsmith *Goldsmith) FilterPop() *Goldsmith {
|
||||||
count := len(gs.fileFilters)
|
count := len(goldsmith.fileFilters)
|
||||||
if count == 0 {
|
if count == 0 {
|
||||||
panic("attempted to pop empty filter stack")
|
panic("attempted to pop empty filter stack")
|
||||||
}
|
}
|
||||||
|
|
||||||
gs.fileFilters = gs.fileFilters[:count-1]
|
goldsmith.fileFilters = goldsmith.fileFilters[:count-1]
|
||||||
return gs
|
return goldsmith
|
||||||
}
|
}
|
||||||
|
|
||||||
func (gs *Goldsmith) End(targetDir string) []error {
|
func (goldsmith *Goldsmith) End(targetDir string) []error {
|
||||||
gs.targetDir = targetDir
|
goldsmith.targetDir = targetDir
|
||||||
|
|
||||||
for _, context := range gs.contexts {
|
for _, context := range goldsmith.contexts {
|
||||||
go context.step()
|
go context.step()
|
||||||
}
|
}
|
||||||
|
|
||||||
context := gs.contexts[len(gs.contexts)-1]
|
context := goldsmith.contexts[len(goldsmith.contexts)-1]
|
||||||
for file := range context.outputFiles {
|
for file := range context.outputFiles {
|
||||||
gs.exportFile(file)
|
goldsmith.exportFile(file)
|
||||||
}
|
}
|
||||||
|
|
||||||
gs.removeUnreferencedFiles()
|
goldsmith.removeUnreferencedFiles()
|
||||||
return gs.errors
|
return goldsmith.errors
|
||||||
}
|
}
|
||||||
|
|
||||||
func (gs *Goldsmith) retrieveFile(context *Context, outputPath string, inputFiles []*File) *File {
|
func (goldsmith *Goldsmith) retrieveFile(context *Context, outputPath string, inputFiles []*File) *File {
|
||||||
if gs.fileCache != nil {
|
if goldsmith.fileCache != nil {
|
||||||
outputFile, _ := gs.fileCache.retrieveFile(context, outputPath, inputFiles)
|
outputFile, _ := goldsmith.fileCache.retrieveFile(context, outputPath, inputFiles)
|
||||||
return outputFile
|
return outputFile
|
||||||
}
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (gs *Goldsmith) storeFile(context *Context, outputFile *File, inputFiles []*File) {
|
func (goldsmith *Goldsmith) storeFile(context *Context, outputFile *File, inputFiles []*File) {
|
||||||
if gs.fileCache != nil {
|
if goldsmith.fileCache != nil {
|
||||||
gs.fileCache.storeFile(context, outputFile, inputFiles)
|
goldsmith.fileCache.storeFile(context, outputFile, inputFiles)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (gs *Goldsmith) removeUnreferencedFiles() {
|
func (goldsmith *Goldsmith) removeUnreferencedFiles() {
|
||||||
infos := make(chan fileInfo)
|
infos := make(chan fileInfo)
|
||||||
go scanDir(gs.targetDir, infos)
|
go scanDir(goldsmith.targetDir, infos)
|
||||||
|
|
||||||
for info := range infos {
|
for info := range infos {
|
||||||
if info.path != gs.targetDir {
|
if info.path != goldsmith.targetDir {
|
||||||
relPath, _ := filepath.Rel(gs.targetDir, info.path)
|
relPath, _ := filepath.Rel(goldsmith.targetDir, info.path)
|
||||||
if contained, _ := gs.fileRefs[relPath]; !contained {
|
if contained, _ := goldsmith.fileRefs[relPath]; !contained {
|
||||||
os.RemoveAll(info.path)
|
os.RemoveAll(info.path)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (gs *Goldsmith) exportFile(file *File) error {
|
func (goldsmith *Goldsmith) exportFile(file *File) error {
|
||||||
if err := file.export(gs.targetDir); err != nil {
|
if err := file.export(goldsmith.targetDir); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
for pathSeg := cleanPath(file.sourcePath); pathSeg != "."; pathSeg = filepath.Dir(pathSeg) {
|
for pathSeg := cleanPath(file.sourcePath); pathSeg != "."; pathSeg = filepath.Dir(pathSeg) {
|
||||||
gs.fileRefs[pathSeg] = true
|
goldsmith.fileRefs[pathSeg] = true
|
||||||
}
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (gs *Goldsmith) fault(pluginName string, file *File, err error) {
|
func (goldsmith *Goldsmith) fault(pluginName string, file *File, err error) {
|
||||||
gs.errorMtx.Lock()
|
goldsmith.mutex.Lock()
|
||||||
defer gs.errorMtx.Unlock()
|
defer goldsmith.mutex.Unlock()
|
||||||
|
|
||||||
faultError := &Error{Name: pluginName, Err: err}
|
faultError := &Error{Name: pluginName, Err: err}
|
||||||
if file != nil {
|
if file != nil {
|
||||||
faultError.Path = file.sourcePath
|
faultError.Path = file.sourcePath
|
||||||
}
|
}
|
||||||
|
|
||||||
gs.errors = append(gs.errors, faultError)
|
goldsmith.errors = append(goldsmith.errors, faultError)
|
||||||
}
|
}
|
||||||
|
@ -1,15 +1,15 @@
|
|||||||
package goldsmith
|
package goldsmith
|
||||||
|
|
||||||
type Initializer interface {
|
type Initializer interface {
|
||||||
Initialize(ctx *Context) (Filter, error)
|
Initialize(context *Context) (Filter, error)
|
||||||
}
|
}
|
||||||
|
|
||||||
type Processor interface {
|
type Processor interface {
|
||||||
Process(ctx *Context, file *File) error
|
Process(context *Context, file *File) error
|
||||||
}
|
}
|
||||||
|
|
||||||
type Finalizer interface {
|
type Finalizer interface {
|
||||||
Finalize(ctx *Context) error
|
Finalize(context *Context) error
|
||||||
}
|
}
|
||||||
|
|
||||||
type Component interface {
|
type Component interface {
|
||||||
@ -18,7 +18,7 @@ type Component interface {
|
|||||||
|
|
||||||
type Filter interface {
|
type Filter interface {
|
||||||
Component
|
Component
|
||||||
Accept(ctx *Context, file *File) (bool, error)
|
Accept(context *Context, file *File) (bool, error)
|
||||||
}
|
}
|
||||||
|
|
||||||
type Plugin interface {
|
type Plugin interface {
|
||||||
|
Loading…
Reference in New Issue
Block a user