aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/program/aedifex/command/auto.lux
blob: aa230daba866bff5a29410dfa7bc4f4a2c5f8d66 (plain)
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
(.module:
  [lux #*
   ["." host (#+ import:)]
   [abstract
    ["." monad (#+ do)]]
   [control
    ["." try (#+ Try)]
    ["." io (#+ IO)]
    [concurrency
     ["." promise (#+ Promise)]]]
   [data
    [collection
     ["." array]
     ["." list]
     ["." set]]]
   [world
    [environment (#+ Environment)]
    ["." file (#+ Path)]
    ["." shell (#+ Shell)]]]
  ["." // #_
   ["/#" // #_
    ["#" profile]
    ["#." action (#+ Action)]
    ["#." command (#+ Command)]
    [dependency
     [resolution (#+ Resolution)]]]])

(import: java/nio/file/WatchKey
  ["#::."
   (reset [] #io boolean)])

(import: java/util/concurrent/TimeUnit
  ["#::."
   (#enum SECONDS)])

(import: java/nio/file/WatchService
  ["#::."
   (poll [long java/util/concurrent/TimeUnit] #io #try #? java/nio/file/WatchKey)
   (poll #as fetch [] #io #try #? java/nio/file/WatchKey)])

(import: java/nio/file/FileSystem
  ["#::."
   (newWatchService [] #io #try java/nio/file/WatchService)])

(import: java/nio/file/FileSystems
  ["#::."
   (#static getDefault [] java/nio/file/FileSystem)])

(import: java/lang/Object)

(import: java/lang/String)

(import: (java/nio/file/WatchEvent$Kind a))

(import: java/nio/file/StandardWatchEventKinds
  ["#::."
   (#static ENTRY_CREATE (java/nio/file/WatchEvent$Kind java/nio/file/Path))
   (#static ENTRY_MODIFY (java/nio/file/WatchEvent$Kind java/nio/file/Path))
   (#static ENTRY_DELETE (java/nio/file/WatchEvent$Kind java/nio/file/Path))])

(import: java/nio/file/Path
  ["#::."
   (register [java/nio/file/WatchService [(java/nio/file/WatchEvent$Kind ?)]] #io #try java/nio/file/WatchKey)])

(import: java/io/File
  ["#::."
   (new [java/lang/String])
   (exists [] #io #try boolean)
   (isDirectory [] #io #try boolean)
   (listFiles [] #io #try [java/io/File])
   (getAbsolutePath [] #io #try java/lang/String)
   (toPath [] java/nio/file/Path)])

(def: (targets path)
  (-> Path (Action (List Path)))
  (promise.future
   (loop [path path]
     (let [file (java/io/File::new path)]
       (do {! (try.with io.monad)}
         [exists? (java/io/File::exists file)
          directory? (java/io/File::isDirectory file)]
         (if (and exists?
                  directory?)
           (do !
             [children (java/io/File::listFiles file)
              children (|> children
                           array.to-list
                           (monad.map ! (|>> java/io/File::getAbsolutePath)))
              descendants (monad.map ! recur children)]
             (wrap (#.Cons path (list.concat descendants))))
           (wrap (list))))))))

(type: Watch-Event
  (java/nio/file/WatchEvent$Kind java/lang/Object))

(def: watch-events
  (List Watch-Event)
  (list (:coerce Watch-Event (java/nio/file/StandardWatchEventKinds::ENTRY_CREATE))
        (:coerce Watch-Event (java/nio/file/StandardWatchEventKinds::ENTRY_MODIFY))
        (:coerce Watch-Event (java/nio/file/StandardWatchEventKinds::ENTRY_DELETE))))

(def: (watch! watcher path)
  (-> java/nio/file/WatchService Path (Action Any))
  (promise.future
   (do (try.with io.monad)
     [_ (java/nio/file/Path::register watcher
                                      (array.from-list ..watch-events)
                                      (|> path java/io/File::new java/io/File::toPath))]
     (wrap []))))

(def: (poll! watcher)
  (-> java/nio/file/WatchService (Action (Maybe java/nio/file/WatchKey)))
  (promise.future
   (java/nio/file/WatchService::poll 1 java/util/concurrent/TimeUnit::SECONDS watcher)))

(def: (drain! watcher)
  (-> java/nio/file/WatchService (IO (Try Any)))
  (do (try.with io.monad)
    [?key (java/nio/file/WatchService::fetch watcher)]
    (case ?key
      (#.Some key)
      (do io.monad
        [valid? (java/nio/file/WatchKey::reset key)]
        (if valid?
          (drain! watcher)
          (wrap (:: try.monad wrap []))))
      
      #.None
      (wrap []))))

(def: #export (do! command)
  (All [a]
    (-> (-> Environment (file.System Promise) (Shell Promise) Resolution (Command a))
        (-> Environment (file.System Promise) (Shell Promise) Resolution (Command Any))))
  (function (_ environment fs shell resolution)
    (function (_ profile)
      (with-expansions [<call> ((command environment fs shell resolution) profile)]
        (do {! ///action.monad}
          [watcher (promise.future
                    (java/nio/file/FileSystem::newWatchService
                     (java/nio/file/FileSystems::getDefault)))
           targets (|> profile
                       (get@ #///.sources)
                       set.to-list
                       (monad.map ! ..targets)
                       (:: ! map list.concat))
           _ (monad.map ! (..watch! watcher) targets)
           _ <call>]
          (loop [_ []]
            (do !
              [?key (..poll! watcher)
               _ (case ?key
                   (#.Some key)
                   (do !
                     [_ (promise.future (..drain! watcher))
                      _ <call>]
                     (wrap []))

                   #.None
                   (wrap []))]
              (recur []))))))))