goldsmith/goldsmith.go

229 lines
4.6 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-11-02 09:52:05 +00:00
"fmt"
2015-10-31 04:08:10 +00:00
"os"
"path"
2015-10-29 14:26:43 +00:00
"path/filepath"
)
2015-11-07 04:49:35 +00:00
const (
FILE_FLAG_STATIC = 1 << iota
)
2015-10-29 14:26:43 +00:00
type stage struct {
2015-11-02 08:11:11 +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-11-02 08:11:11 +00:00
srcDir, dstDir string
stages []stage
files chan *File
2015-11-02 09:07:34 +00:00
refs map[string]bool
2015-11-02 08:11:11 +00:00
err error
2015-10-29 14:26:43 +00:00
}
2015-10-29 13:07:27 +00:00
2015-11-02 08:11:11 +00:00
func New(srcDir, dstDir string) Goldsmith {
2015-11-02 09:07:34 +00:00
gs := &goldsmith{
srcDir: srcDir,
dstDir: dstDir,
refs: make(map[string]bool),
}
2015-11-03 01:13:04 +00:00
gs.scanFs()
2015-10-31 03:47:06 +00:00
return gs
2015-10-29 09:24:47 +00:00
}
2015-11-03 01:13:04 +00:00
func (gs *goldsmith) scanFs() {
2015-11-02 09:07:34 +00:00
fileMatches, _, err := scanDir(gs.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-03 01:13:04 +00:00
s := gs.makeStage()
2015-11-01 05:09:46 +00:00
2015-11-03 01:13:04 +00:00
go func() {
defer close(s.output)
2015-11-01 05:09:46 +00:00
2015-11-03 01:13:04 +00:00
for _, match := range fileMatches {
relPath, err := filepath.Rel(gs.srcDir, match)
if err != nil {
panic(err)
}
2015-11-01 05:09:46 +00:00
2015-11-03 01:13:04 +00:00
file, _ := gs.NewFile(relPath)
2015-10-29 14:26:43 +00:00
2015-11-03 01:13:04 +00:00
var f *os.File
if f, file.Err = os.Open(match); file.Err == nil {
_, file.Err = file.Buff.ReadFrom(f)
f.Close()
}
2015-10-29 14:26:43 +00:00
2015-11-03 01:13:04 +00:00
s.output <- file
}
}()
2015-10-29 14:26:43 +00:00
}
2015-11-03 01:13:04 +00:00
func (gs *goldsmith) cleanupFiles() {
2015-11-02 09:07:34 +00:00
fileMatches, _, err := scanDir(gs.dstDir)
if err != nil {
gs.err = err
return
}
for _, path := range fileMatches {
relPath, err := filepath.Rel(gs.dstDir, path)
if err != nil {
gs.err = err
return
}
if contained, _ := gs.refs[relPath]; !contained {
if err := os.Remove(path); err != nil {
gs.err = err
return
}
}
}
}
2015-11-03 01:13:04 +00:00
func (gs *goldsmith) exportFile(file *File) {
2015-11-02 09:23:13 +00:00
defer func() {
file.Buff = nil
}()
if file.Err != nil {
return
}
absPath := filepath.Join(gs.dstDir, file.Path)
if file.Err = os.MkdirAll(path.Dir(absPath), 0755); file.Err != nil {
return
}
var f *os.File
if f, file.Err = os.Create(absPath); file.Err == nil {
2015-11-07 04:36:20 +00:00
defer f.Close()
2015-11-02 09:23:13 +00:00
if _, file.Err = f.Write(file.Buff.Bytes()); file.Err == nil {
gs.refs[file.Path] = true
}
}
}
2015-10-31 04:40:16 +00:00
func (gs *goldsmith) makeStage() stage {
2015-11-03 01:13:04 +00:00
s := stage{output: make(chan *File)}
if len(gs.stages) > 0 {
s.input = gs.stages[len(gs.stages)-1].output
2015-11-02 08:11:11 +00:00
}
2015-10-29 14:26:43 +00:00
gs.stages = append(gs.stages, s)
return s
}
2015-11-07 04:36:20 +00:00
func (gs *goldsmith) chain(s stage, c Chainer) {
f, _ := c.(Filterer)
2015-10-31 05:12:03 +00:00
2015-11-07 04:36:20 +00:00
allowed := make(chan *File)
defer close(allowed)
2015-10-31 05:12:03 +00:00
2015-11-07 04:36:20 +00:00
go c.Chain(gs, allowed, s.output)
2015-11-01 07:41:56 +00:00
for file := range s.input {
2015-11-07 04:49:35 +00:00
if file.flags&FILE_FLAG_STATIC != 0 || f.Filter(file.Path) {
2015-11-01 07:41:56 +00:00
s.output <- file
2015-11-01 13:25:26 +00:00
} else {
2015-11-07 04:36:20 +00:00
allowed <- file
2015-11-01 07:41:56 +00:00
}
}
2015-10-31 05:12:03 +00:00
}
2015-11-02 09:52:05 +00:00
func (gs *goldsmith) NewFile(path string) (*File, error) {
if filepath.IsAbs(path) {
return nil, fmt.Errorf("absolute paths are not supported: %s", path)
}
file := &File{
Path: path,
Meta: make(map[string]interface{}),
Buff: new(bytes.Buffer),
}
return file, nil
}
2015-11-07 04:49:35 +00:00
func (gs *goldsmith) NewFileStatic(path string) (*File, error) {
file, err := gs.NewFile(path)
if err != nil {
return nil, err
}
file.flags |= FILE_FLAG_STATIC
return file, nil
}
2015-11-02 09:52:05 +00:00
func (gs *goldsmith) RefFile(path string) error {
if filepath.IsAbs(path) {
return fmt.Errorf("absolute paths are not supported: %s", path)
}
gs.refs[path] = true
return nil
}
2015-11-02 08:11:11 +00:00
func (gs *goldsmith) SrcDir() string {
return gs.srcDir
}
func (gs *goldsmith) DstDir() string {
return gs.dstDir
}
2015-11-07 04:36:20 +00:00
func (gs *goldsmith) Chain(c Chainer, err error) Goldsmith {
2015-11-01 04:11:45 +00:00
if gs.err != nil {
return gs
}
2015-11-07 04:36:20 +00:00
if gs.err = err; gs.err == nil {
go gs.chain(gs.makeStage(), c)
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-02 08:11:11 +00:00
func (gs *goldsmith) Complete() ([]*File, error) {
2015-10-31 03:30:41 +00:00
s := gs.stages[len(gs.stages)-1]
2015-11-02 08:11:11 +00:00
var files []*File
2015-10-31 03:30:41 +00:00
for file := range s.output {
2015-11-03 01:13:04 +00:00
gs.exportFile(file)
2015-10-31 03:30:41 +00:00
files = append(files, file)
}
2015-11-03 01:13:04 +00:00
gs.cleanupFiles()
2015-11-01 03:30:26 +00:00
return files, gs.err
2015-10-29 09:24:47 +00:00
}