aboutsummaryrefslogtreecommitdiffstats
path: root/src/Process/Shell.hs
blob: 5b079a9e6305f9e2345d6eb4a70bcc801741c03b (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
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
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
{-# LANGUAGE BlockArguments #-}
{-# LANGUAGE DefaultSignatures #-}
{-# LANGUAGE IncoherentInstances #-}
{-# LANGUAGE QuasiQuotes #-}
{-# LANGUAGE TemplateHaskell #-}
{-# LANGUAGE TypeFamilies #-}
{-# LANGUAGE UndecidableInstances #-}

module Process.Shell
  ( sh,
    Quotable (..),
    Outputable (..),
    Inputable (..),
    ExitCodeException (..),
    DecodeException (..),
  )
where

import Conduit
import Control.Exception (Exception, throw)
import Control.Monad
import Data.Aeson
import Data.ByteString.Char8 qualified as B
import Data.ByteString.Lazy.Char8 qualified as LB
import Data.ByteString.Lazy.UTF8 qualified as LB
import Data.ByteString.UTF8 qualified as B
import Data.Conduit.Process.Typed
import Data.Function
import Data.Maybe
import Data.String
import Data.Text qualified as T
import Data.Text.Encoding qualified as T
import Data.Text.Lazy qualified as LT
import Data.Text.Lazy.Encoding qualified as LT
import Language.Haskell.TH hiding (Type)
import Language.Haskell.TH.Quote
import Text.Megaparsec
import Text.Megaparsec.Char
import Prelude hiding (exp)

data Script = Script (LB.ByteString -> LB.ByteString) String

class Processable m a where
  sh_ :: m Script -> m a

instance (MonadIO m) => Processable m () where
  sh_ = ((\(Script _ s) -> liftIO (runProcess_ (fromString s))) =<<)

instance (MonadIO m, Outputable stdoutAndStderr) => Processable m stdoutAndStderr where
  sh_ = ((\(Script strip s) -> fmap (fromLBS . strip) (liftIO (readProcessInterleaved_ (fromString s)))) =<<)

instance (MonadIO m, Outputable stdout, Outputable stderr) => Processable m (stdout, stderr) where
  sh_ = ((\(Script stripNL s) -> fmap (\(out, err) -> (fromLBS (stripNL out), fromLBS (stripNL err))) (liftIO (readProcess_ (fromString s)))) =<<)

instance (MonadIO m, Outputable stdout) => Processable m (stdout, ()) where
  sh_ = ((\(Script stripNL s) -> fmap (\out -> (fromLBS (stripNL out), ())) (liftIO (readProcessStdout_ (fromString s)))) =<<)

instance (MonadIO m, Outputable stderr) => Processable m ((), stderr) where
  sh_ = ((\(Script stripNL s) -> fmap (\err -> ((), fromLBS (stripNL err))) (liftIO (readProcessStderr_ (fromString s)))) =<<)

instance (MonadIO m) => Processable m ExitCode where
  sh_ = ((\(Script _ s) -> liftIO (runProcess (fromString s))) =<<)

instance (MonadIO m, Outputable stdoutAndStderr) => Processable m (ExitCode, stdoutAndStderr) where
  sh_ = ((\(Script stripNL s) -> fmap (\(exitCode, outErr) -> (exitCode, fromLBS (stripNL outErr))) (liftIO (readProcessInterleaved (fromString s)))) =<<)

instance (MonadIO m, Outputable stdout) => Processable m (ExitCode, stdout, ()) where
  sh_ = ((\(Script stripNL s) -> fmap (\(exitCode, out) -> (exitCode, fromLBS (stripNL out), ())) (liftIO (readProcessStdout (fromString s)))) =<<)

instance (MonadIO m, Outputable stderr) => Processable m (ExitCode, (), stderr) where
  sh_ = ((\(Script stripNL s) -> fmap (\(exitCode, err) -> (exitCode, (), fromLBS (stripNL err))) (liftIO (readProcessStderr (fromString s)))) =<<)

instance (MonadIO m, Outputable stdout, Outputable stderr) => Processable m (ExitCode, stdout, stderr) where
  sh_ = ((\(Script stripNL s) -> fmap (\(exitCode, out, err) -> (exitCode, fromLBS (stripNL out), fromLBS (stripNL err))) (liftIO (readProcess (fromString s)))) =<<)

instance
  (MonadIO m, MonadResource m, Inputable stdin, Outputable stdoutAndStderr, Monoid stdoutAndStderr) =>
  Processable (ConduitT stdin Void m) stdoutAndStderr
  where
  sh_ =
    ( ( \(Script strip s) -> do
          let stripC = awaitForever (\i -> maybe (yield (strip i)) (\_ -> yield i) =<< peekC)
          bracketP
            ( startProcess
                ( fromString s
                    & setStdin createSinkClose
                    & setStdout createSource
                    & setStderr createSource
                )
            )
            stopProcess
            ( \p -> do
                awaitForever (yield . LB.toStrict . toLBS) .| transPipe liftIO (getStdin p)
                outErr <-
                  ( mapOutput fromLBS $
                      mapOutput LB.fromStrict (transPipe liftIO (getStdout p >> getStderr p))
                        .| stripC
                    )
                    .| foldC
                checkExitCode p
                pure outErr
            )
      )
        =<<
    )

instance
  (MonadIO m, MonadResource m, Inputable stdin, Outputable stdout, Outputable stderr, Monoid stdout, Monoid stderr) =>
  Processable (ConduitT stdin Void m) (stdout, stderr)
  where
  sh_ =
    ( ( \(Script strip s) -> do
          let stripC = awaitForever (\i -> maybe (yield (strip i)) (\_ -> yield i) =<< peekC)
          bracketP
            ( startProcess
                ( fromString s
                    & setStdin createSinkClose
                    & setStdout createSource
                    & setStderr createSource
                )
            )
            stopProcess
            ( \p -> do
                awaitForever (yield . LB.toStrict . toLBS) .| transPipe liftIO (getStdin p)
                outErr <-
                  (,)
                    <$> ( ( mapOutput fromLBS $
                              mapOutput LB.fromStrict (transPipe liftIO (getStdout p))
                                .| stripC
                          )
                            .| foldC
                        )
                    <*> ( ( mapOutput fromLBS $
                              mapOutput LB.fromStrict (transPipe liftIO (getStderr p))
                                .| stripC
                          )
                            .| foldC
                        )
                checkExitCode p
                pure outErr
            )
      )
        =<<
    )

instance
  (Monad m, MonadIO m, MonadResource m, Inputable stdin) =>
  Processable (ConduitT stdin Void m) ()
  where
  sh_ =
    ( ( \(Script _ s) -> do
          bracketP
            ( startProcess
                ( fromString s
                    & setStdin createSinkClose
                    & setStdout inherit
                    & setStderr inherit
                )
            )
            stopProcess
            ( \p -> do
                awaitForever (yield . LB.toStrict . toLBS) .| transPipe liftIO (getStdin p)
                checkExitCode p
            )
      )
        =<<
    )

instance
  (MonadIO m, MonadResource m, Inputable stdin, Outputable stdout, Monoid stdout) =>
  Processable (ConduitT stdin Void m) (stdout, ())
  where
  sh_ =
    ( ( \(Script strip s) -> do
          let stripC = awaitForever (\i -> maybe (yield (strip i)) (\_ -> yield i) =<< peekC)
          bracketP
            ( startProcess
                ( fromString s
                    & setStdin createSinkClose
                    & setStdout createSource
                    & setStderr inherit
                )
            )
            stopProcess
            ( \p -> do
                awaitForever (yield . LB.toStrict . toLBS) .| transPipe liftIO (getStdin p)
                out <-
                  ( mapOutput fromLBS $
                      mapOutput LB.fromStrict (transPipe liftIO (getStdout p))
                        .| stripC
                    )
                    .| foldC
                checkExitCode p
                pure (out, ())
            )
      )
        =<<
    )

instance
  (MonadIO m, MonadResource m, Inputable stdin, Outputable stderr, Monoid stderr) =>
  Processable (ConduitT stdin Void m) ((), stderr)
  where
  sh_ =
    ( ( \(Script strip s) -> do
          let stripC = awaitForever (\i -> maybe (yield (strip i)) (\_ -> yield i) =<< peekC)
          bracketP
            ( startProcess
                ( fromString s
                    & setStdin createSinkClose
                    & setStdout inherit
                    & setStderr createSource
                )
            )
            stopProcess
            ( \p -> do
                awaitForever (yield . LB.toStrict . toLBS) .| transPipe liftIO (getStdin p)
                err <-
                  ( mapOutput fromLBS $
                      mapOutput LB.fromStrict (transPipe liftIO (getStderr p))
                        .| stripC
                    )
                    .| foldC
                checkExitCode p
                pure ((), err)
            )
      )
        =<<
    )

instance
  (MonadIO m, MonadResource m, Inputable stdin, Outputable stdoutAndStderr) =>
  Processable (ConduitT stdin stdoutAndStderr m) ()
  where
  sh_ =
    ( ( \(Script strip s) -> do
          let stripC = awaitForever (\i -> maybe (yield (strip i)) (\_ -> yield i) =<< peekC)
          bracketP
            ( startProcess
                ( fromString s
                    & setStdin createSinkClose
                    & setStdout createSource
                    & setStderr createSource
                )
            )
            stopProcess
            ( \p -> do
                awaitForever (yield . LB.toStrict . toLBS) .| transPipe liftIO (getStdin p)
                mapOutput fromLBS $
                  mapOutput LB.fromStrict (transPipe liftIO (getStdout p >> getStderr p))
                    .| stripC
                checkExitCode p
            )
      )
        =<<
    )

instance
  (MonadIO m, MonadResource m, Inputable stdin, Outputable stdout, Outputable stderr) =>
  Processable (ConduitT stdin (Either stderr stdout) m) ()
  where
  sh_ =
    ( ( \(Script strip s) -> do
          let stripC = awaitForever (\i -> maybe (yield (strip i)) (\_ -> yield i) =<< peekC)
          bracketP
            ( startProcess
                ( fromString s
                    & setStdin createSinkClose
                    & setStdout createSource
                    & setStderr createSource
                )
            )
            stopProcess
            ( \p -> do
                awaitForever (yield . LB.toStrict . toLBS) .| transPipe liftIO (getStdin p)
                transPipe liftIO $ do
                  mapOutput Right (mapOutput fromLBS (mapOutput LB.fromStrict (getStdout p) .| stripC))
                  mapOutput Left (mapOutput fromLBS (mapOutput LB.fromStrict (getStderr p) .| stripC))
                checkExitCode p
            )
      )
        =<<
    )

class Outputable a where
  fromLBS :: LB.ByteString -> a

instance Outputable String where
  fromLBS = LB.toString

instance Outputable B.ByteString where
  fromLBS = LB.toStrict

instance Outputable LB.ByteString where
  fromLBS = id

instance Outputable T.Text where
  fromLBS = T.decodeUtf8 . fromLBS

instance Outputable LT.Text where
  fromLBS = LT.decodeUtf8

class Inputable a where
  toLBS :: a -> LB.ByteString

instance Inputable () where
  toLBS _ = LB.pack ""

instance Inputable String where
  toLBS = LB.fromString

instance Inputable B.ByteString where
  toLBS = LB.fromStrict

instance Inputable LB.ByteString where
  toLBS = id

instance Inputable T.Text where
  toLBS = LT.encodeUtf8 . LT.fromStrict

instance Inputable LT.Text where
  toLBS = LT.encodeUtf8

data DecodeException = DecodeException String
  deriving (Show)

instance Exception DecodeException

instance (FromJSON a) => Outputable a where
  fromLBS = either (throw . DecodeException) id . eitherDecode

class Quotable a where
  toString :: a -> String
  default toString :: (Show a) => a -> String
  toString = show

instance Quotable String where
  toString = id

instance Quotable Int

instance Quotable B.ByteString where
  toString = B.toString

instance Quotable LB.ByteString where
  toString = LB.toString

instance Quotable T.Text where
  toString = T.unpack

instance Quotable LT.Text where
  toString = LT.unpack

squote :: String -> String
squote s = "'" <> quote' s <> "'"
  where
    quote' [] = []
    quote' ('\'' : cs) = '\'' : '\\' : '\'' : '\'' : quote' cs
    quote' (c : cs) = c : quote' cs

dquote :: String -> String
dquote s = "\"" <> quote' s <> "\""
  where
    quote' [] = []
    quote' ('\\' : c : cs) = c : quote' cs
    quote' ('"' : cs) = '\\' : '"' : quote' cs
    quote' (c : cs) = c : quote' cs

data Expr a
  = Lit String
  | Var Bool a

sh :: QuasiQuoter
sh = QuasiQuoter quoteExp undefined undefined undefined
  where
    quoteExp :: String -> Q Exp
    quoteExp =
      either (fail . errorBundlePretty) makeExp'
        . parse (parser <* eof) ""

    parser :: ParsecT Void String Identity ([Expr (Q Exp)], Bool)
    parser =
      (,)
        <$> ( many . choice . map try $
                [ do
                    -- TODO Splice arbitrary Haskell expressions
                    Var False . varE . mkName
                      <$> ( string "#{{"
                              *> takeWhile1P Nothing (/= '}')
                              <* string "}}"
                          ),
                  do
                    Var True . varE . mkName
                      <$> ( string "'#{{"
                              *> takeWhile1P Nothing (/= '}')
                              <* string "}}'"
                          ),
                  do
                    Var False . appE [|pure|] . varE . mkName
                      <$> ( string "#{"
                              *> takeWhile1P Nothing (/= '}')
                              <* string "}"
                          ),
                  do
                    Var True . appE [|pure|] . varE . mkName
                      <$> ( string "'#{"
                              *> takeWhile1P Nothing (/= '}')
                              <* string "}'"
                          ),
                  do
                    Lit <$> takeWhile1P Nothing (\c -> all (c /=) ['\'', '#', '\\']),
                  do
                    Lit . (: []) <$> satisfy ((||) <$> (== '\'') <*> (== '#')),
                  do
                    Lit . (: []) <$> satisfy (== '\\') <* lookAhead (satisfy (const True))
                ]
            )
        <*> (isNothing <$> optional (string "\\"))

    makeExp' :: ([Expr (Q Exp)], Bool) -> Q Exp
    makeExp' (exprs, False) = [|sh_ (Script id <$> $(makeExp exprs))|]
    makeExp' (exprs, True) = [|sh_ (Script stripTrailingNLs <$> $(makeExp exprs))|]

    makeExp :: [Expr (Q Exp)] -> Q Exp
    makeExp exprs = do
      exprs' :: [(Expr Name)] <-
        sequence
          [ case expr of
              Lit s -> pure (Lit s)
              Var q _ -> Var q <$> newName "arg"
            | expr <- exprs
          ]
      doE $
        [ BindS <$> (varP nam) <*> [|toString <$> $exp|]
          | (Var _ exp, Var _ nam) <- zip exprs exprs'
        ]
          ++ [ NoBindS <$> [|pure $(foldr (\a b -> [|$a ++ $b|]) [|""|] (map toExp exprs'))|]
             ]

    toExp :: Expr Name -> Q Exp
    toExp (Lit s) = [|s|]
    toExp (Var True nam) = [|squote $(varE nam)|]
    toExp (Var False nam) = [|dquote $(varE nam)|]

stripTrailingNLs :: LB.ByteString -> LB.ByteString
stripTrailingNLs s = maybe s (stripTrailingNLs) (LB.stripSuffix (LB.pack "\n") s)