conf.go 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. // Copyright 2017 The go-vgo Project Developers. See the COPYRIGHT
  2. // file at the top-level directory of this distribution and at
  3. // https://github.com/go-vgo/gt/blob/master/LICENSE
  4. //
  5. // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
  6. // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
  7. // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
  8. // option. This file may not be copied, modified, or distributed
  9. // except according to those terms.
  10. package conf
  11. import (
  12. "log"
  13. "sync"
  14. // "time"
  15. "github.com/fsnotify/fsnotify"
  16. )
  17. var (
  18. // config Config
  19. confLock = new(sync.RWMutex)
  20. )
  21. // NewWatcher new fsnotify watcher
  22. func NewWatcher(paths string, config interface{}) {
  23. Watch(paths, config)
  24. }
  25. // Watch new fsnotify watcher
  26. func Watch(paths string, config interface{}) {
  27. watcher, err := fsnotify.NewWatcher()
  28. if err != nil {
  29. log.Fatal("fsnotify.NewWatcher(): ", err)
  30. }
  31. defer watcher.Close()
  32. done := make(chan bool)
  33. go func() {
  34. for {
  35. select {
  36. case event := <-watcher.Events:
  37. log.Println("watcher events: ", event)
  38. // if event.Op&fsnotify.Chmod == fsnotify.Chmod {
  39. // log.Println("watcher.Events: ignore CHMOD event: ", event)
  40. // continue
  41. // }
  42. if event.Op&fsnotify.Write == fsnotify.Write {
  43. // log.Println("modified file: ", event.Name)
  44. Init(paths, config)
  45. log.Println("watch config: ", config)
  46. }
  47. case err := <-watcher.Errors:
  48. log.Println("watcher.Errors error: ", err)
  49. }
  50. }
  51. }()
  52. err = watcher.Add(paths)
  53. if err != nil {
  54. log.Fatal("watcher.Add: ", err)
  55. }
  56. <-done
  57. }