realize/watcher/main.go

125 lines
3.6 KiB
Go
Raw Normal View History

package watcher
2016-09-01 22:17:19 +00:00
import (
"github.com/tockins/realize/settings"
2016-09-01 22:17:19 +00:00
"log"
"sync"
"time"
)
var wg sync.WaitGroup
2016-12-25 17:08:22 +00:00
// Watcher interface used by polling/fsnotify watching
type watcher interface {
Add(path string) error
}
// Polling watcher
type pollWatcher struct {
paths map[string]bool
}
2016-09-18 11:50:15 +00:00
// Log struct
type logWriter struct{}
2016-09-18 11:50:15 +00:00
2016-12-17 10:43:27 +00:00
// Blueprint struct contains a projects list
2016-09-01 22:17:19 +00:00
type Blueprint struct {
*settings.Settings `yaml:"-"`
Projects []Project `yaml:"projects,omitempty" json:"projects,omitempty"`
Sync chan string `yaml:"-"`
2016-09-01 22:17:19 +00:00
}
// Project defines the informations of a single project
type Project struct {
2017-06-16 09:15:56 +00:00
settings.Settings `yaml:"-"`
LastChangedOn time.Time `yaml:"-" json:"-"`
base string
2017-08-07 21:01:02 +00:00
Name string `yaml:"name" json:"name"`
Path string `yaml:"path" json:"path"`
2017-08-07 21:14:59 +00:00
Environment map[string]string `yaml:"environment,omitempty" json:"environment,omitempty"`
2017-08-07 21:01:02 +00:00
Cmds Cmds `yaml:"commands" json:"commands"`
Args []string `yaml:"args,omitempty" json:"args,omitempty"`
Watcher Watcher `yaml:"watcher" json:"watcher"`
Streams Streams `yaml:"streams,omitempty" json:"streams,omitempty"`
Buffer Buffer `yaml:"-" json:"buffer"`
ErrorOutputPattern string `yaml:"errorOutputPattern,omitempty" json:"errorOutputPattern,omitempty"`
2017-06-16 09:15:56 +00:00
parent *Blueprint
path string
tools tools
}
type tools struct {
Fmt, Test, Generate, Vet tool
}
type tool struct {
status *bool
cmd string
options []string
name string
}
type Cmds struct {
Vet bool `yaml:"vet" json:"vet"`
Fmt bool `yaml:"fmt" json:"fmt"`
Test bool `yaml:"test" json:"test"`
Generate bool `yaml:"generate" json:"generate"`
Bin Cmd `yaml:"bin" json:"bin"`
Build Cmd `yaml:"build" json:"build"`
Run bool `yaml:"run" json:"run"`
}
// Buildmode options
type Cmd struct {
Status bool `yaml:"status" json:"status"`
Args []string `yaml:"args,omitempty" json:"args,omitempty"`
2016-09-01 22:17:19 +00:00
}
// Watcher struct defines the livereload's logic
type Watcher struct {
Preview bool `yaml:"preview" json:"preview"`
Paths []string `yaml:"paths" json:"paths"`
Ignore []string `yaml:"ignore_paths" json:"ignore"`
Exts []string `yaml:"exts" json:"exts"`
Scripts []Command `yaml:"scripts,omitempty" json:"scripts,omitempty"`
2016-12-25 17:08:22 +00:00
}
// Command options
type Command struct {
Type string `yaml:"type" json:"type"`
Command string `yaml:"command" json:"command"`
2017-06-19 10:08:51 +00:00
Path string `yaml:"path,omitempty" json:"path,omitempty"`
Changed bool `yaml:"changed,omitempty" json:"changed,omitempty"`
Startup bool `yaml:"startup,omitempty" json:"startup,omitempty"`
2016-11-11 16:23:17 +00:00
}
2017-04-01 18:50:06 +00:00
// Streams is a collection of names and values for the logs functionality
type Streams struct {
FileOut bool `yaml:"file_out" json:"file_out"`
FileLog bool `yaml:"file_log" json:"file_log"`
FileErr bool `yaml:"file_err" json:"file_err"`
2016-09-01 22:17:19 +00:00
}
2016-12-17 10:43:27 +00:00
// Buffer define an array buffer for each log files
type Buffer struct {
2016-11-20 16:58:52 +00:00
StdOut []BufferOut `json:"stdOut"`
StdLog []BufferOut `json:"stdLog"`
StdErr []BufferOut `json:"stdErr"`
2016-10-14 08:47:43 +00:00
}
2016-12-17 10:43:27 +00:00
// BufferOut is used for exchange information between "realize cli" and "web realize"
2016-10-14 08:47:43 +00:00
type BufferOut struct {
2016-11-20 16:58:52 +00:00
Time time.Time `json:"time"`
Text string `json:"text"`
Path string `json:"path"`
Type string `json:"type"`
Stream string `json:"stream"`
Errors []string `json:"errors"`
}
2016-09-01 22:17:19 +00:00
// Initialize the application
func init() {
log.SetFlags(0)
log.SetOutput(new(logWriter))
}