This repository has been archived by the owner on Mar 21, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
xrun.go
424 lines (368 loc) · 7.85 KB
/
xrun.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
package main
import (
"encoding/json"
"fmt"
"os"
"os/exec"
"path"
"path/filepath"
"runtime"
"strings"
"sync"
"github.com/go-xweb/log"
"github.com/howeyc/fsnotify"
)
var (
runName string
appName string
buildLock sync.Mutex
buildProcess *os.Process
exePath string
version = "0.1.0626"
)
func relativePath(p, root string) string {
return p[len(root)+1:]
}
type cache struct {
root string
lock sync.RWMutex
files map[string]os.FileInfo
}
func NewCache(rootDir string) *cache {
return &cache{
root: rootDir,
files: make(map[string]os.FileInfo),
}
}
func (c *cache) get(p string) (os.FileInfo, error) {
c.lock.Lock()
defer c.lock.Unlock()
if d, ok := c.files[relativePath(p, c.root)]; ok {
return d, nil
}
return nil, os.ErrNotExist
}
func (c *cache) add(p string) error {
c.lock.Lock()
defer c.lock.Unlock()
d, err := os.Stat(p)
if err != nil {
return err
}
c.files[relativePath(p, c.root)] = d
return nil
}
func (c *cache) isModified(p string) bool {
c.lock.Lock()
defer c.lock.Unlock()
if t, ok := c.files[relativePath(p, c.root)]; ok {
d, err := os.Stat(p)
if err != nil {
return false
}
return t.ModTime() != d.ModTime() || t.Size() != d.Size()
}
return true
}
func (c *cache) remove(p string) {
c.lock.Lock()
defer c.lock.Unlock()
delete(c.files, relativePath(p, c.root))
}
type conf struct {
Mode int
ExcludeDirs map[string]bool
ExcludeFiles map[string]bool
IncludeFiles map[string]bool
IncludeDirs map[string]bool
}
// a messages queue to put
var (
webPort string = "53126"
messages = make(chan string, 1000)
curPath string
config conf
defaultConf = fmt.Sprintf(`{
"Mode":%v,
"ExcludeDirs": {
".git":true,
".svn":true
},
"ExcludeFiles": {
},
"IncludeFiles": {
},
"IncludeDirs": {
}
}
`, log.Linfo)
)
func loadConfig() error {
f, err := os.Open("xrun.json")
if err != nil {
// Use default.
err = json.Unmarshal([]byte(defaultConf), &config)
if err != nil {
return err
}
return nil
}
defer f.Close()
log.Info("Loaded xrun.json")
return json.NewDecoder(f).Decode(&config)
}
func build() error {
buildLock.Lock()
defer buildLock.Unlock()
if buildProcess != nil {
buildProcess.Kill()
buildProcess.Wait()
}
log.Info("building", appName)
args := []string{"build"}
args = append(args, "-o", runName)
if len(os.Args) > 1 {
args = append(args, os.Args[1:]...)
}
cmd := exec.Command("go", args...)
cmd.Stdout = os.Stdout
cmd.Stdin = os.Stdin
cmd.Stderr = os.Stderr
err := cmd.Run()
if err != nil {
return err
}
attr := &os.ProcAttr{
Dir: curPath,
Env: os.Environ(),
Files: []*os.File{os.Stdin, os.Stdout, os.Stderr},
}
log.Info("running...")
buildProcess, err = os.StartProcess(exePath, []string{runName}, attr)
if err != nil {
return err
}
return nil
}
func scan() {
for {
var b string
_, err := fmt.Scanf("%s\n", &b)
if err != nil {
log.Error(err)
continue
}
//fmt.Println("===command===", string(b))
if strings.ToLower(b) == "q" {
buildLock.Lock()
defer buildLock.Unlock()
if buildProcess != nil {
buildProcess.Kill()
buildProcess.Wait()
}
os.Exit(0)
}
}
}
func main() {
if len(os.Args) == 2 && strings.ToLower(os.Args[1]) == "--version" {
fmt.Println("xrun version", version)
return
}
log.SetPrefix("[xrun] ")
err := loadConfig()
if err != nil {
log.Error("load config error:", err)
return
}
log.SetOutputLevel(config.Mode)
/*if len(config.ExcludeDirs) > 0 {
dirs := config.ExcludeDirs
config.ExcludeDirs = make(map[string]bool)
for dir, v := range dirs {
dirPath, _ := filepath.Abs(dir)
dirPath = strings.Replace(dirPath, "\\", "/", -1)
config.ExcludeDirs[dirPath] = v
}
}
if len(config.ExcludeFiles) > 0 {
dirs := config.ExcludeFiles
config.ExcludeFiles = make(map[string]bool)
for dir, v := range dirs {
dirPath, _ := filepath.Abs(dir)
dirPath = strings.Replace(dirPath, "\\", "/", -1)
config.ExcludeFiles[dirPath] = v
}
}
if len(config.IncludeFiles) > 0 {
dirs := config.IncludeFiles
config.IncludeFiles = make(map[string]bool)
for dir, v := range dirs {
dirPath, _ := filepath.Abs(dir)
dirPath = strings.Replace(dirPath, "\\", "/", -1)
config.IncludeFiles[dirPath] = v
}
}*/
curPath, _ = os.Getwd()
curPath = strings.Replace(curPath, "\\", "/", -1)
appName = path.Base(curPath)
runName = appName
if runtime.GOOS == "windows" {
runName = runName + ".exe"
}
exePath = filepath.Join(curPath, runName)
err = build()
if err != nil {
log.Error(err)
return
}
os.Setenv("XRUN_DEBUG", "1")
os.Setenv("XRUN_WEB_PORT", webPort)
os.Setenv("XRUN_APP_PATH", exePath)
os.Setenv("XRUN_SRC_PATH", curPath)
log.Info("Start web interface")
go web()
//Info("Start accept commands")
//go scan()
log.Info("Start moniter")
moniter(curPath, config.IncludeDirs)
}
// moniter go files
func moniter(rootDir string, otherDirs map[string]bool) error {
cache := NewCache(rootDir)
watcher, err := fsnotify.NewWatcher()
if err != nil {
return err
}
done := make(chan bool)
go func() {
for {
start:
select {
case ev := <-watcher.Event:
if ev == nil {
break
}
rPath := relativePath(ev.Name, rootDir)
log.Debug("relativePath is", rPath, ev)
for p, _ := range config.ExcludeDirs {
log.Debug("cmp", rPath, p)
if strings.HasPrefix(rPath, p) {
goto start
}
}
if rPath == runName {
break
}
if ev.IsDelete() || ev.IsRename() {
d, err := cache.get(ev.Name)
if os.IsNotExist(err) {
err = build()
if err != nil {
log.Errorf("remove %v failed: %v", ev.Name, err)
}
break
}
if err != nil {
log.Error(err)
break
}
if d.IsDir() {
watcher.RemoveWatch(ev.Name)
cache.remove(ev.Name)
} else {
cache.remove(ev.Name)
log.Infof("deleted %v", ev.Name)
err = build()
if err != nil {
log.Errorf("remove %v failed: %v", ev.Name, err)
break
}
}
break
}
var d os.FileInfo
d, err = os.Stat(ev.Name)
if err != nil {
log.Errorf("file stat error:", err)
break
}
if !d.IsDir() {
log.Debug("ext file name is", filepath.Ext(ev.Name))
if filepath.Ext(ev.Name) == ".go" {
if _, ok := config.ExcludeFiles[rPath]; ok {
break
}
} else {
if _, ok := config.IncludeFiles[rPath]; !ok {
break
}
}
}
log.Info("File or Dir is changed:", ev.Name)
if ev.IsCreate() {
if d.IsDir() {
watcher.Watch(ev.Name)
} else {
if !cache.isModified(ev.Name) {
log.Debug("File", ev.Name, "is not modified.")
break
}
log.Infof("loaded %v", ev.Name)
err = build()
if err != nil {
log.Errorf("after %v changed build failed: %v", ev.Name, err)
break
}
}
} else if ev.IsModify() {
if d.IsDir() {
} else {
if !cache.isModified(ev.Name) {
log.Debug("File", ev.Name, "is not modified.")
break
}
err = build()
if err != nil {
log.Errorf("reloaded %v failed: %v", ev.Name, err)
break
}
log.Infof("reloaded %v", ev.Name)
}
} else {
log.Errorf("unknown event: %v", ev)
break
}
case err := <-watcher.Error:
log.Errorf("watch error: %v", err)
}
}
}()
fn := func(f string, info os.FileInfo, err error) error {
if info.IsDir() {
return watcher.Watch(f)
}
return nil
}
err = filepath.Walk(rootDir, fn)
if len(otherDirs) > 0 {
for otherDir, v := range otherDirs {
if !v {
continue
}
absPath, _ := filepath.Abs(otherDir)
absPath = strings.Replace(absPath, "\\", "/", -1)
if strings.HasPrefix(absPath+"/", rootDir+"/") {
continue
}
err = filepath.Walk(absPath, fn)
}
}
if err != nil {
log.Error(err.Error())
return err
}
<-done
watcher.Close()
return nil
}