Simplification

This commit is contained in:
Alex Yatskov 2015-12-20 17:38:53 +09:00
parent 7f3789a6d4
commit 2f684bb48d
4 changed files with 47 additions and 104 deletions

10
file.go
View File

@ -87,7 +87,7 @@ func (f *file) cache() error {
return err return err
} }
f.Rewrite(data) f.reader = bytes.NewReader(data)
return nil return nil
} }
@ -99,10 +99,6 @@ func (f *file) Path() string {
return f.path return f.path
} }
func (f *file) Rename(path string) {
f.path = path
}
func (f *file) Meta() map[string]interface{} { func (f *file) Meta() map[string]interface{} {
return f.meta return f.meta
} }
@ -128,7 +124,3 @@ func (f *file) WriteTo(w io.Writer) (int64, error) {
return f.reader.WriteTo(w) return f.reader.WriteTo(w)
} }
func (f *file) Rewrite(data []byte) {
f.reader = bytes.NewReader(data)
}

View File

@ -26,27 +26,20 @@ import (
"os" "os"
"path/filepath" "path/filepath"
"sync" "sync"
"sync/atomic"
"time"
"github.com/fatih/color"
) )
type goldsmith struct { type goldsmith struct {
srcDir, dstDir string srcDir, dstDir string
stages []*stage
stages []*stage
active int64
idle int64
refs map[string]bool refs map[string]bool
refMtx sync.Mutex refMtx sync.Mutex
tainted bool errors []error
faultMtx sync.Mutex errorMtx sync.Mutex
} }
func (gs *goldsmith) queueFiles(target uint) { func (gs *goldsmith) queueFiles() {
files := make(chan string) files := make(chan string)
go scanDir(gs.srcDir, files, nil) go scanDir(gs.srcDir, files, nil)
@ -54,16 +47,7 @@ func (gs *goldsmith) queueFiles(target uint) {
go func() { go func() {
defer close(s.output) defer close(s.output)
for path := range files { for path := range files {
for {
if gs.active-gs.idle >= int64(target) {
time.Sleep(time.Millisecond)
} else {
break
}
}
relPath, err := filepath.Rel(gs.srcDir, path) relPath, err := filepath.Rel(gs.srcDir, path)
if err != nil { if err != nil {
panic(err) panic(err)
@ -115,8 +99,6 @@ func (gs *goldsmith) cleanupFiles() {
} }
func (gs *goldsmith) exportFile(f *file) error { func (gs *goldsmith) exportFile(f *file) error {
defer atomic.AddInt64(&gs.active, -1)
absPath := filepath.Join(gs.dstDir, f.path) absPath := filepath.Join(gs.dstDir, f.path)
if err := f.export(absPath); err != nil { if err := f.export(absPath); err != nil {
return err return err
@ -142,19 +124,10 @@ func (gs *goldsmith) referenceFile(path string) {
} }
} }
func (gs *goldsmith) fault(name string, f *file, err error) { func (gs *goldsmith) fault(f *file, err error) {
gs.faultMtx.Lock() gs.errorMtx.Lock()
defer gs.faultMtx.Unlock() gs.errors = append(gs.errors, &Error{f.path, err})
gs.errorMtx.Unlock()
color.Red("Fault Detected\n")
color.Yellow("\tPlugin:\t%s\n", color.WhiteString(name))
color.Yellow("\tError:\t%s\n\n", color.WhiteString(err.Error()))
if f != nil {
color.Yellow("\tFile:\t%s\n", color.WhiteString(f.path))
}
gs.tainted = true
} }
// //
@ -167,12 +140,12 @@ func (gs *goldsmith) Chain(p Plugin) Goldsmith {
return gs return gs
} }
func (gs *goldsmith) Complete() bool { func (gs *goldsmith) Complete() []error {
s := gs.stages[len(gs.stages)-1] s := gs.stages[len(gs.stages)-1]
for f := range s.output { for f := range s.output {
gs.exportFile(f) gs.exportFile(f)
} }
gs.cleanupFiles() gs.cleanupFiles()
return gs.tainted return gs.errors
} }

View File

@ -23,8 +23,8 @@
package goldsmith package goldsmith
import ( import (
"runtime"
"sync" "sync"
"sync/atomic"
) )
type stage struct { type stage struct {
@ -45,67 +45,42 @@ func newStage(gs *goldsmith) *stage {
func (s *stage) chain(p Plugin) { func (s *stage) chain(p Plugin) {
defer close(s.output) defer close(s.output)
name, flags, err := p.Initialize() init, _ := p.(Initializer)
if err != nil {
s.gs.fault(name, nil, err)
return
}
accept, _ := p.(Accepter) accept, _ := p.(Accepter)
proc, _ := p.(Processor) proc, _ := p.(Processor)
fin, _ := p.(Finalizer) fin, _ := p.(Finalizer)
var ( if init != nil {
wg sync.WaitGroup if err := init.Initialize(); err != nil {
mtx sync.Mutex s.gs.fault(nil, err)
batch []File return
)
dispatch := func(f *file) {
if flags&PLUGIN_FLAG_BATCH == PLUGIN_FLAG_BATCH {
atomic.AddInt64(&s.gs.idle, 1)
mtx.Lock()
batch = append(batch, f)
mtx.Unlock()
} else {
s.output <- f
} }
} }
for f := range s.input { var wg sync.WaitGroup
if accept != nil && !accept.Accept(f) { for i := 0; i < runtime.NumCPU(); i++ {
s.output <- f wg.Add(1)
} else if proc == nil { go func() {
dispatch(f) defer wg.Done()
} else { for f := range s.input {
wg.Add(1) if proc == nil || accept != nil && !accept.Accept(f) {
go func(f *file) { s.output <- f
defer wg.Done()
f.rewind()
keep, err := proc.Process(s, f)
if err != nil {
s.gs.fault(name, f, err)
} else if keep {
dispatch(f)
} else { } else {
atomic.AddInt64(&s.gs.active, -1) f.rewind()
if err := proc.Process(s, f); err != nil {
s.gs.fault(f, err)
}
} }
}(f) }
} }()
} }
wg.Wait() wg.Wait()
if fin != nil { if fin != nil {
if err := fin.Finalize(s); err != nil { if err := fin.Finalize(s); err != nil {
s.gs.fault(name, nil, err) s.gs.fault(nil, err)
} }
} }
for _, f := range batch {
atomic.AddInt64(&s.gs.idle, -1)
s.output <- f.(*file)
}
} }
// //
@ -113,7 +88,6 @@ func (s *stage) chain(p Plugin) {
// //
func (s *stage) DispatchFile(f File) { func (s *stage) DispatchFile(f File) {
atomic.AddInt64(&s.gs.active, 1)
s.output <- f.(*file) s.output <- f.(*file)
} }

View File

@ -25,12 +25,11 @@ package goldsmith
import ( import (
"bytes" "bytes"
"io" "io"
"runtime"
) )
type Goldsmith interface { type Goldsmith interface {
Chain(p Plugin) Goldsmith Chain(p Plugin) Goldsmith
Complete() bool Complete() []error
} }
func New(srcDir, dstDir string) Goldsmith { func New(srcDir, dstDir string) Goldsmith {
@ -40,14 +39,16 @@ func New(srcDir, dstDir string) Goldsmith {
refs: make(map[string]bool), refs: make(map[string]bool),
} }
gs.queueFiles(uint(runtime.NumCPU())) gs.queueFiles()
return gs return gs
} }
type File interface { type File interface {
Path() string Path() string
Meta() map[string]interface{} Meta() map[string]interface{}
Apply(m map[string]interface{}) Apply(m map[string]interface{})
Read(p []byte) (int, error) Read(p []byte) (int, error)
WriteTo(w io.Writer) (int64, error) WriteTo(w io.Writer) (int64, error)
} }
@ -76,12 +77,17 @@ type Context interface {
DstDir() string DstDir() string
} }
const ( type Error struct {
PLUGIN_FLAG_BATCH = 1 << iota path string
) err error
}
func (e *Error) Error() string {
return e.err.Error()
}
type Initializer interface { type Initializer interface {
Initialize() (string, uint, error) Initialize() error
} }
type Accepter interface { type Accepter interface {
@ -93,9 +99,7 @@ type Finalizer interface {
} }
type Processor interface { type Processor interface {
Process(ctx Context, f File) (bool, error) Process(ctx Context, f File) error
} }
type Plugin interface { type Plugin interface{}
Initializer
}