goldsmith/goldsmith.go

309 lines
5.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-11-10 04:00:24 +00:00
"sync"
2015-10-29 14:26:43 +00:00
)
2015-11-07 04:49:35 +00:00
const (
2015-11-08 09:41:38 +00:00
FileFlagStatic = 1 << iota
2015-11-07 04:49:35 +00:00
)
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
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-11 08:32:09 +00:00
gs.scanFs()
2015-10-31 03:47:06 +00:00
return gs
2015-10-29 09:24:47 +00:00
}
2015-11-11 05:21:47 +00:00
func NewFile(path string) *File {
return &File{
Path: cleanPath(path),
Meta: make(map[string]interface{}),
}
}
func NewFileStatic(path string) *File {
file := NewFile(path)
file.Type = FileStatic
return file
}
func NewFileRef(path string) *File {
file := NewFile(path)
file.Type = FileReference
return file
}
2015-11-11 08:32:09 +00:00
func (gs *goldsmith) scanFs() {
files := make(chan string)
go scanDir(gs.srcDir, files, nil)
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-11 08:32:09 +00:00
for path := range files {
relPath, err := filepath.Rel(gs.srcDir, path)
2015-11-03 01:13:04 +00:00
if err != nil {
panic(err)
}
2015-11-01 05:09:46 +00:00
2015-11-11 05:21:47 +00:00
file := NewFile(relPath)
2015-10-29 14:26:43 +00:00
2015-11-03 01:13:04 +00:00
var f *os.File
2015-11-11 08:32:09 +00:00
if f, file.Err = os.Open(path); file.Err == nil {
2015-11-03 01:13:04 +00:00
_, 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-11 08:32:09 +00:00
func (gs *goldsmith) cleanupFiles() {
files := make(chan string)
dirs := make(chan string)
go scanDir(gs.dstDir, files, dirs)
for files != nil || dirs != nil {
var (
path string
ok bool
)
select {
case path, ok = <-files:
if !ok {
files = nil
continue
}
case path, ok = <-dirs:
if !ok {
dirs = nil
continue
}
default:
continue
}
2015-11-07 07:40:13 +00:00
2015-11-11 08:32:09 +00:00
relPath, err := filepath.Rel(gs.dstDir, path)
2015-11-02 09:07:34 +00:00
if err != nil {
2015-11-07 07:40:13 +00:00
panic(err)
2015-11-02 09:07:34 +00:00
}
2015-11-07 07:40:13 +00:00
if contained, _ := gs.refs[relPath]; contained {
continue
}
2015-11-11 08:32:09 +00:00
os.RemoveAll(path)
2015-11-02 09:07:34 +00:00
}
}
2015-11-03 01:13:04 +00:00
func (gs *goldsmith) exportFile(file *File) {
2015-11-02 09:23:13 +00:00
if file.Err != nil {
return
}
2015-11-11 05:21:47 +00:00
if file.Type == FileReference {
gs.refFile(file.Path)
return
}
2015-11-02 09:23:13 +00:00
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 {
2015-11-11 05:21:47 +00:00
gs.refFile(file.Path)
2015-11-02 09:23:13 +00:00
}
}
}
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) {
2015-11-10 04:00:24 +00:00
var (
wg sync.WaitGroup
output = make(chan *File)
input = make(chan *File)
)
wg.Add(1)
go func() {
for file := range output {
2015-11-01 07:41:56 +00:00
s.output <- file
}
2015-11-10 14:05:07 +00:00
wg.Done()
2015-11-10 04:00:24 +00:00
}()
wg.Add(1)
go func() {
2015-11-11 05:21:47 +00:00
a, _ := c.(Accepter)
2015-11-10 04:00:24 +00:00
for file := range s.input {
2015-11-11 05:21:47 +00:00
if file.Type == FileNormal && (a == nil || a.Accept(file)) {
2015-11-10 04:00:24 +00:00
input <- file
2015-11-11 05:21:47 +00:00
} else {
s.output <- file
2015-11-10 04:00:24 +00:00
}
}
2015-11-10 14:05:07 +00:00
close(input)
wg.Done()
2015-11-10 04:00:24 +00:00
}()
2015-11-10 14:05:07 +00:00
go func() {
c.Chain(gs, input, output)
wg.Wait()
close(s.output)
}()
2015-10-31 05:12:03 +00:00
}
2015-11-11 05:21:47 +00:00
func (gs *goldsmith) refFile(path string) {
path = cleanPath(path)
2015-11-09 04:35:24 +00:00
2015-11-07 07:40:13 +00:00
for {
gs.refs[path] = true
if path == "." {
2015-11-09 04:35:24 +00:00
break
2015-11-07 07:40:13 +00:00
}
2015-11-09 04:35:24 +00:00
2015-11-07 07:40:13 +00:00
path = filepath.Dir(path)
}
2015-11-02 09:52:05 +00:00
}
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 {
2015-11-10 14:05:07 +00:00
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-11 09:13:57 +00:00
if gs.err == nil {
gs.exportFile(file)
}
file.Buff.Reset()
2015-10-31 03:30:41 +00:00
files = append(files, file)
}
2015-11-11 09:13:57 +00:00
if gs.err == nil {
gs.cleanupFiles()
}
2015-11-01 03:30:26 +00:00
return files, gs.err
2015-10-29 09:24:47 +00:00
}
2015-11-07 07:52:45 +00:00
2015-11-11 05:21:47 +00:00
func cleanPath(path string) string {
if filepath.IsAbs(path) {
var err error
if path, err = filepath.Rel("/", path); err != nil {
panic(err)
}
}
return filepath.Clean(path)
}
2015-11-11 08:32:09 +00:00
func scanDir(root string, files, dirs chan string) {
defer func() {
if files != nil {
close(files)
}
if dirs != nil {
close(dirs)
}
}()
filepath.Walk(root, func(path string, info os.FileInfo, err error) error {
2015-11-07 07:52:45 +00:00
if err != nil {
return err
}
if info.IsDir() {
2015-11-11 08:32:09 +00:00
if dirs != nil {
dirs <- path
}
2015-11-07 07:52:45 +00:00
} else {
2015-11-11 08:32:09 +00:00
if files != nil {
files <- path
}
2015-11-07 07:52:45 +00:00
}
return nil
})
}