2016-01-13 03:21:30 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2015 Alex Yatskov <alex@foosoft.net>
|
|
|
|
* Author: Alex Yatskov <alex@foosoft.net>
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
|
|
* this software and associated documentation files (the "Software"), to deal in
|
|
|
|
* the Software without restriction, including without limitation the rights to
|
|
|
|
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
|
|
* the Software, and to permit persons to whom the Software is furnished to do so,
|
|
|
|
* subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
|
|
* copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
|
|
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
|
|
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
|
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package goldsmith
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
|
|
|
"sync"
|
|
|
|
)
|
|
|
|
|
|
|
|
type goldsmith struct {
|
|
|
|
srcDir, dstDir string
|
|
|
|
contexts []*context
|
2016-01-13 04:12:50 +00:00
|
|
|
refs map[string]bool
|
2016-09-04 18:43:04 +00:00
|
|
|
complete bool
|
2016-01-13 03:21:30 +00:00
|
|
|
|
|
|
|
errors []error
|
|
|
|
errorMtx sync.Mutex
|
|
|
|
}
|
|
|
|
|
2016-07-04 03:08:31 +00:00
|
|
|
func (gs *goldsmith) pushContext(plug Plugin, filters []string) *context {
|
2016-01-13 03:52:45 +00:00
|
|
|
ctx := &context{
|
2016-07-04 03:08:31 +00:00
|
|
|
gs: gs,
|
|
|
|
plug: plug,
|
|
|
|
filters: filters,
|
|
|
|
output: make(chan *file),
|
2016-01-13 03:52:45 +00:00
|
|
|
}
|
|
|
|
|
2016-01-13 03:21:30 +00:00
|
|
|
if len(gs.contexts) > 0 {
|
|
|
|
ctx.input = gs.contexts[len(gs.contexts)-1].output
|
|
|
|
}
|
|
|
|
|
|
|
|
gs.contexts = append(gs.contexts, ctx)
|
|
|
|
return ctx
|
|
|
|
}
|
|
|
|
|
|
|
|
func (gs *goldsmith) cleanupFiles() {
|
2016-06-11 20:13:16 +00:00
|
|
|
infos := make(chan fileInfo)
|
|
|
|
go scanDir(gs.dstDir, infos)
|
2016-01-13 03:21:30 +00:00
|
|
|
|
2016-06-11 20:13:16 +00:00
|
|
|
for info := range infos {
|
|
|
|
relPath, _ := filepath.Rel(gs.dstDir, info.path)
|
2016-01-13 03:21:30 +00:00
|
|
|
if contained, _ := gs.refs[relPath]; contained {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2016-06-11 20:13:16 +00:00
|
|
|
os.RemoveAll(info.path)
|
2016-01-13 03:21:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (gs *goldsmith) exportFile(f *file) error {
|
2016-01-13 04:12:50 +00:00
|
|
|
if err := f.export(gs.dstDir); err != nil {
|
2016-01-13 03:21:30 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2016-01-13 04:12:50 +00:00
|
|
|
pathSeg := cleanPath(f.path)
|
2016-01-13 03:21:30 +00:00
|
|
|
for {
|
2016-01-13 04:12:50 +00:00
|
|
|
gs.refs[pathSeg] = true
|
|
|
|
if pathSeg == "." {
|
2016-01-13 03:21:30 +00:00
|
|
|
break
|
|
|
|
}
|
|
|
|
|
2016-01-13 04:12:50 +00:00
|
|
|
pathSeg = filepath.Dir(pathSeg)
|
2016-01-13 03:21:30 +00:00
|
|
|
}
|
2016-01-13 04:12:50 +00:00
|
|
|
|
|
|
|
return nil
|
2016-01-13 03:21:30 +00:00
|
|
|
}
|
|
|
|
|
2016-08-21 19:54:44 +00:00
|
|
|
func (gs *goldsmith) fault(name string, f *file, err error) {
|
2016-01-13 03:21:30 +00:00
|
|
|
gs.errorMtx.Lock()
|
2016-01-13 03:52:45 +00:00
|
|
|
defer gs.errorMtx.Unlock()
|
|
|
|
|
2016-08-21 19:54:44 +00:00
|
|
|
ferr := &Error{Name: name, Err: err}
|
2016-01-13 03:21:30 +00:00
|
|
|
if f != nil {
|
|
|
|
ferr.Path = f.path
|
|
|
|
}
|
2016-01-13 03:52:45 +00:00
|
|
|
|
2016-01-13 03:21:30 +00:00
|
|
|
gs.errors = append(gs.errors, ferr)
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Goldsmith Implementation
|
|
|
|
//
|
|
|
|
|
2016-07-04 03:08:31 +00:00
|
|
|
func (gs *goldsmith) Chain(p Plugin, filters ...string) Goldsmith {
|
2016-09-04 18:43:04 +00:00
|
|
|
if gs.complete {
|
|
|
|
panic("attempted reuse of goldsmith instance")
|
|
|
|
}
|
|
|
|
|
2016-07-04 03:08:31 +00:00
|
|
|
gs.pushContext(p, filters)
|
2016-01-13 03:21:30 +00:00
|
|
|
return gs
|
|
|
|
}
|
|
|
|
|
|
|
|
func (gs *goldsmith) End(dstDir string) []error {
|
2016-09-04 18:43:04 +00:00
|
|
|
if gs.complete {
|
|
|
|
panic("attempted reuse of goldsmith instance")
|
|
|
|
}
|
|
|
|
|
2016-01-13 03:21:30 +00:00
|
|
|
gs.dstDir = dstDir
|
|
|
|
|
|
|
|
for _, ctx := range gs.contexts {
|
|
|
|
go ctx.chain()
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx := gs.contexts[len(gs.contexts)-1]
|
|
|
|
for f := range ctx.output {
|
|
|
|
gs.exportFile(f)
|
|
|
|
}
|
|
|
|
|
|
|
|
gs.cleanupFiles()
|
2016-09-04 18:43:04 +00:00
|
|
|
gs.complete = true
|
|
|
|
|
2016-01-13 03:21:30 +00:00
|
|
|
return gs.errors
|
|
|
|
}
|