goldsmith/goldsmith.go

153 lines
3.4 KiB
Go
Raw Normal View History

2015-10-29 09:24:47 +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
2015-10-29 14:26:43 +00:00
import (
2015-10-31 04:08:10 +00:00
"os"
"path"
2015-10-29 14:26:43 +00:00
"path/filepath"
2015-10-31 05:12:03 +00:00
"sync"
2015-10-29 13:07:27 +00:00
2015-10-29 14:26:43 +00:00
"github.com/bmatcuk/doublestar"
)
type stage struct {
2015-10-31 03:30:41 +00:00
input, output chan File
2015-10-29 09:24:47 +00:00
}
2015-10-29 14:26:43 +00:00
type goldsmith struct {
2015-10-30 13:05:45 +00:00
stages []stage
files chan File
2015-11-01 03:30:26 +00:00
err error
2015-10-29 14:26:43 +00:00
}
2015-10-29 13:07:27 +00:00
2015-10-31 08:48:53 +00:00
func New(src string) Goldsmith {
2015-10-30 13:05:45 +00:00
gs := new(goldsmith)
2015-10-31 04:08:10 +00:00
gs.scan(src)
2015-10-31 03:47:06 +00:00
return gs
2015-10-29 09:24:47 +00:00
}
2015-11-01 03:30:26 +00:00
func (gs *goldsmith) scan(srcDir string) {
2015-10-31 04:08:10 +00:00
matches, err := doublestar.Glob(filepath.Join(srcDir, "**"))
2015-10-29 14:26:43 +00:00
if err != nil {
2015-11-01 03:30:26 +00:00
gs.err = err
return
2015-10-30 13:05:45 +00:00
}
2015-10-29 14:26:43 +00:00
2015-11-01 03:30:26 +00:00
s := stage{nil, make(chan File, len(matches))}
2015-11-01 05:09:46 +00:00
defer close(s.output)
2015-10-29 14:26:43 +00:00
for _, match := range matches {
2015-10-31 04:08:10 +00:00
relPath, err := filepath.Rel(srcDir, match)
2015-10-29 14:26:43 +00:00
if err != nil {
2015-11-01 05:09:46 +00:00
panic(err)
}
file := File{
Path: relPath,
Meta: make(map[string]interface{}),
}
var f *os.File
if f, file.Err = os.Open(match); file.Err == nil {
defer f.Close()
_, file.Err = file.Buff.ReadFrom(f)
2015-10-29 14:26:43 +00:00
}
2015-11-01 05:09:46 +00:00
s.output <- file
2015-10-29 14:26:43 +00:00
}
2015-10-30 13:05:45 +00:00
gs.stages = append(gs.stages, s)
2015-10-29 14:26:43 +00:00
}
2015-10-31 04:40:16 +00:00
func (gs *goldsmith) makeStage() stage {
2015-11-01 03:30:26 +00:00
s := stage{gs.stages[len(gs.stages)-1].output, make(chan File)}
2015-10-29 14:26:43 +00:00
gs.stages = append(gs.stages, s)
return s
}
2015-11-01 04:11:45 +00:00
func (gs *goldsmith) chainSingle(ts ChainerSingle) {
2015-10-31 04:40:16 +00:00
s := gs.makeStage()
2015-10-31 05:12:03 +00:00
var wg sync.WaitGroup
for file := range s.input {
wg.Add(1)
go func(f File) {
2015-11-01 05:09:46 +00:00
s.output <- ts.ChainSingle(f)
2015-10-31 05:12:03 +00:00
wg.Done()
}(file)
}
go func() {
wg.Wait()
close(s.output)
}()
}
2015-11-01 04:11:45 +00:00
func (gs *goldsmith) chainMultiple(tm ChainerMultiple) {
2015-10-31 05:12:03 +00:00
s := gs.makeStage()
2015-11-01 05:09:46 +00:00
tm.ChainMultiple(s.input, s.output)
2015-10-31 05:12:03 +00:00
}
2015-11-01 04:11:45 +00:00
func (gs *goldsmith) Chain(chain interface{}, err error) Goldsmith {
if gs.err != nil {
return gs
}
if gs.err = err; gs.err != nil {
switch t := chain.(type) {
case ChainerSingle:
gs.chainSingle(t)
case ChainerMultiple:
gs.chainMultiple(t)
2015-11-01 03:30:26 +00:00
}
2015-10-31 05:12:03 +00:00
}
2015-10-29 14:26:43 +00:00
return gs
2015-10-29 09:24:47 +00:00
}
2015-11-01 03:30:26 +00:00
func (gs *goldsmith) Complete(dstDir string) ([]File, error) {
2015-10-31 03:30:41 +00:00
s := gs.stages[len(gs.stages)-1]
var files []File
for file := range s.output {
2015-11-01 05:09:46 +00:00
if file.Err == nil {
absPath := filepath.Join(dstDir, file.Path)
if file.Err = os.MkdirAll(path.Dir(absPath), 0755); file.Err != nil {
2015-11-01 04:11:45 +00:00
continue
}
2015-11-01 05:09:46 +00:00
var f *os.File
if f, file.Err = os.Create(absPath); f == nil {
_, file.Err = f.Write(file.Buff.Bytes())
f.Close()
2015-11-01 04:11:45 +00:00
}
2015-10-31 03:30:41 +00:00
}
2015-11-01 05:09:46 +00:00
file.Buff.Reset()
2015-10-31 03:30:41 +00:00
files = append(files, file)
}
2015-11-01 03:30:26 +00:00
return files, gs.err
2015-10-29 09:24:47 +00:00
}