goldsmith/goldsmith.go

183 lines
4.0 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-11-01 08:06:15 +00:00
"bytes"
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{}),
2015-11-01 08:06:15 +00:00
Buff: new(bytes.Buffer),
2015-11-01 05:09:46 +00:00
}
var f *os.File
if f, file.Err = os.Open(match); file.Err == nil {
_, file.Err = file.Buff.ReadFrom(f)
2015-11-01 07:41:56 +00:00
f.Close()
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 09:27:02 +00:00
func (gs *goldsmith) chainSingle(s stage, cs ChainerSingle, globs []string) {
2015-11-01 07:41:56 +00:00
defer close(s.output)
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 07:41:56 +00:00
defer wg.Done()
2015-11-01 09:27:02 +00:00
matched := true
if len(globs) > 0 {
var err error
if matched, err = globMatch(file.Path, globs); err != nil {
file.Err = err
}
}
if f.Err == nil && matched {
2015-11-01 07:41:56 +00:00
s.output <- cs.ChainSingle(f)
} else {
s.output <- f
}
2015-10-31 05:12:03 +00:00
}(file)
}
2015-11-01 07:41:56 +00:00
wg.Wait()
2015-10-31 05:12:03 +00:00
}
2015-11-01 09:27:02 +00:00
func (gs *goldsmith) chainMultiple(s stage, cm ChainerMultiple, globs []string) {
2015-11-01 07:41:56 +00:00
filtered := make(chan File)
defer close(filtered)
go cm.ChainMultiple(filtered, s.output)
for file := range s.input {
2015-11-01 09:27:02 +00:00
matched := true
if len(globs) > 0 {
var err error
if matched, err = globMatch(file.Path, globs); err != nil {
file.Err = err
}
}
if file.Err == nil && matched {
2015-11-01 07:41:56 +00:00
filtered <- file
} else {
s.output <- file
}
}
2015-10-31 05:12:03 +00:00
}
2015-11-01 08:06:15 +00:00
func (gs *goldsmith) Chain(ctx Context) Goldsmith {
2015-11-01 04:11:45 +00:00
if gs.err != nil {
return gs
}
2015-11-01 08:06:15 +00:00
if gs.err = ctx.Err; gs.err == nil {
2015-11-01 07:41:56 +00:00
switch c := ctx.Chainer.(type) {
2015-11-01 04:11:45 +00:00
case ChainerSingle:
2015-11-01 09:27:02 +00:00
go gs.chainSingle(gs.makeStage(), c, ctx.Globs)
2015-11-01 04:11:45 +00:00
case ChainerMultiple:
2015-11-01 09:27:02 +00:00
go gs.chainMultiple(gs.makeStage(), c, ctx.Globs)
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
2015-11-01 08:06:15 +00:00
if f, file.Err = os.Create(absPath); file.Err == nil {
2015-11-01 05:09:46 +00:00
_, 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 08:06:15 +00:00
file.Buff = nil
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
}