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
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
|
{-# LANGUAGE DeriveAnyClass #-}
{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE LambdaCase #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE QuasiQuotes #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE TupleSections #-}
{-# LANGUAGE NoImplicitPrelude #-}
-- | A general purpose build tool.
--
-- : out bild
--
-- == Design constraints
--
-- * only input is one or more a namespaces. no subcommands, no packages
--
-- * no need to write specific build rules, one rule for hs, one for rs, one
-- for scm, and so on
--
-- * no need to distinguish between exe and lib, just have a single output,
-- or figure it out automatically
--
-- * never concerned with deployment/packaging - leave that to another tool
-- (scp? tar?)
--
-- * local dev builds should be preserved, while remote nix builds are used
-- for the final package
--
-- == Features
--
-- * namespace maps to filesystem
--
-- * no need for `bild -l` for listing available targets.
-- Use `ls` or `tree`
--
-- * you build namespaces, not files/modules/packages/etc
--
-- * namespace maps to language modules
--
-- * build settings can be set in the file comments
--
-- * pwd is always considered the the source directory,
-- no `src` vs `doc` etc.
--
-- * build methods automaticatly detected with file extensions
--
-- * flags modify the way to interact with the build, some ideas:
--
-- * -p = turn on profiling
--
-- * -o = optimize level
--
-- * the build is planned out with an analysis, which can be viewed
-- beforehand with `--json`. The analysis includes compiler flags, which
-- can be used in `repl` for testing compilation locally.
--
-- == Example Commands
--
-- > bild [opts] <target..>
--
-- The general scheme is to build the things described by the targets. A target
-- is a namespace. You can list as many as you want, but you must list at least
-- one. It could just be `:!bild %` in vim to build whatever you're working on,
-- or `bild **/*` to build everything, or `fd .hs -X bild` to build all Haskell
-- files.
--
-- Build outputs will go into the `_` directory in the root of the project.
--
-- > bild A/B.hs
--
-- This will build the file at ./A/B.hs, which translates to something like
-- `ghc --make A.B`.
--
-- == Build Metadata
--
-- Metadata is set in the comments with a special syntax. For system-level deps,
-- we list the deps in comments in the target file, like:
--
-- > -- : sys cmark
--
-- The name is used to lookup the package in `nixpkgs.pkgs.<name>`.
-- Language-level deps can automatically determined by passing parsed import
-- statements to a package database, eg `ghc-pkg find-module`.
--
-- The output executable is named with:
--
-- > -- : out my-program
--
-- or
--
-- > -- : out my-app.js
--
-- When multiple compilers are possible we use the @out@ extension to determine
-- target platform. If @out@ does not have an extension, each build type falls
-- back to a default, namely an executable binary.
--
-- This method of setting metadata in the module comments works pretty well,
-- and really only needs to be done in the entrypoint module anyway.
--
-- Local module deps are included by just giving the repo root to the underlying
-- compiler for the target, and the compiler does work of walking the source
-- tree.
module Biz.Bild where
import Alpha hiding (sym, (<.>))
import qualified Biz.Bild.Meta as Meta
import qualified Biz.Cli as Cli
import qualified Biz.Log as Log
import Biz.Namespace (Namespace (..))
import qualified Biz.Namespace as Namespace
import qualified Biz.Test as Test
import qualified Control.Concurrent.Async as Async
import qualified Data.Aeson as Aeson
import qualified Data.ByteString as BS
import qualified Data.ByteString.Char8 as Char8
import qualified Data.ByteString.Internal as BSI
import qualified Data.ByteString.Lazy as ByteString
import qualified Data.Char as Char
import Data.Conduit ((.|))
import qualified Data.Conduit as Conduit
import qualified Data.Conduit.List as Conduit
import qualified Data.Conduit.Process as Conduit
import qualified Data.Map as Map
import qualified Data.Set as Set
import qualified Data.String as String
import qualified Data.Text as Text
import qualified Data.Text.IO as Text.IO
import qualified System.Directory as Dir
import qualified System.Environment as Env
import qualified System.Exit as Exit
import System.FilePath (replaceExtension, (</>))
import qualified System.IO as IO
import System.IO.Unsafe (unsafePerformIO)
import qualified System.Process as Process
import qualified Text.Regex.Applicative as Regex
main :: IO ()
main = Cli.main <| Cli.Plan help move test_ pure
where
test_ =
Test.group
"Biz.Bild"
[ Test.unit "can bild bild" <| do
root <- Env.getEnv "BIZ_ROOT"
path <- Dir.makeAbsolute "Biz/Bild.hs"
case Namespace.fromPath root path of
Nothing -> Test.assertFailure "can't find ns for bild"
Just ns ->
analyze mempty ns
+> build False False
+> \case
[Exit.ExitFailure _] ->
Test.assertFailure "can't bild bild"
_ ->
pure ()
]
move :: Cli.Arguments -> IO ()
move args = do
root <- Env.getEnv "BIZ_ROOT"
IO.hSetBuffering stdout IO.NoBuffering
>> pure (Cli.getAllArgs args (Cli.argument "target"))
/> filter (not <. Namespace.isCab)
+> filterM Dir.doesFileExist
+> traverse Dir.makeAbsolute
/> map (Namespace.fromPath root)
/> catMaybes
+> foldM analyze mempty
/> Map.filter (namespace .> isBuildableNs)
+> printOrBuild
+> exitSummary
where
printOrBuild :: Analysis -> IO [ExitCode]
printOrBuild targets
| args `Cli.has` Cli.longOption "json" =
Log.wipe >> putJSON targets >> pure [Exit.ExitSuccess]
| otherwise = do
root <- Env.getEnv "BIZ_ROOT"
createHier root
build isTest isLoud targets
isTest = args `Cli.has` Cli.longOption "test"
isLoud = args `Cli.has` Cli.longOption "loud"
putJSON = Aeson.encode .> ByteString.toStrict .> Char8.putStrLn
nixStore :: String
nixStore = "/nix/store/00000000000000000000000000000000-"
help :: Cli.Docopt
help =
[Cli.docopt|
bild
Usage:
bild test
bild [options] <target>...
Options:
--test Run tests on a target after building
--loud Show all output from compiler
--json Print the build plan as JSON, don't build
-h, --help Print this info
|]
exitSummary :: [Exit.ExitCode] -> IO ()
exitSummary exits =
if failures > 0
then Exit.die <| show failures
else Exit.exitSuccess
where
failures = length <| filter isFailure exits
data Compiler
= Copy
| Gcc
| Ghc
| Guile
| NixBuild
| Rustc
| Sbcl
deriving (Eq, Show, Generic)
compilerExe :: IsString a => Compiler -> a
compilerExe = \case
Copy -> "cp"
Gcc -> "gcc"
Ghc -> "ghc"
Guile -> "guild"
NixBuild -> "nix-build"
Rustc -> "rustc"
Sbcl -> "sbcl"
instance Aeson.ToJSON Compiler where
toJSON = Aeson.String <. compilerExe
instance ToNixFlag Compiler where
toNixFlag = compilerExe
data Target = Target
{ -- | Output name
out :: Meta.Out,
-- | Output path (into cabdir)
outPath :: FilePath,
-- | Fully qualified namespace partitioned by '.'
namespace :: Namespace,
-- | Absolute path to file
path :: FilePath,
-- | Language-specific dependencies, required during compilation
langdeps :: Set Meta.Dep,
-- | System-level dependencies, required during runtime either via PATH or
-- linking, depending on the language
sysdeps :: Set Meta.Dep,
-- | Which compiler should we use?
compiler :: Compiler,
-- | Where is this machine being built?
builder :: Builder,
-- | Flags and arguments passed to 'Compiler' when building
compilerFlags :: [Text],
-- | Wrapper script (if necessary)
wrapper :: Maybe Text
}
deriving (Show, Generic, Aeson.ToJSON)
data Builder
= -- | Local <user>
Local Text
| -- | Remote <user> <host>
Remote Text Text
deriving (Show, Generic)
instance Aeson.ToJSON Builder where
toJSON (Local u) = Aeson.String u
toJSON (Remote u host) = Aeson.String <| u <> "@" <> host
class ToNixFlag a where
toNixFlag :: a -> String
instance ToNixFlag Builder where
toNixFlag = \case
Local _ -> ""
Remote u h -> Text.unpack <| Text.concat ["ssh://", u, "@", h, "?ssh-key=/home/", u, "/.ssh/id_rsa"]
-- | We can't build everything yet...
isBuildableNs :: Namespace -> Bool
isBuildableNs = \case
(Namespace _ Namespace.C) -> True
(Namespace _ Namespace.Css) -> False
(Namespace _ Namespace.Hs) -> True
(Namespace _ Namespace.Json) -> False
(Namespace _ Namespace.Keys) -> False
(Namespace _ Namespace.Lisp) -> True
(Namespace _ Namespace.Md) -> False
(Namespace _ Namespace.None) -> False
(Namespace _ Namespace.Py) -> False
(Namespace _ Namespace.Sh) -> False
(Namespace _ Namespace.Scm) -> True
(Namespace _ Namespace.Rs) -> True
(Namespace path Namespace.Nix)
| path `elem` nixTargets -> True
| otherwise -> False
where
nixTargets =
[ ["Biz", "Pie"],
["Biz", "Que"],
["Biz", "Cloud"],
["Biz", "Dev"],
["Biz", "Dragons", "Analysis"]
]
-- | The default output directory. This is not IO because I don't want to
-- refactor all of my code right now, but it probably should be.
cab :: FilePath
cab =
Env.lookupEnv "CABDIR"
/> fromMaybe "_"
|> unsafePerformIO
outToPath :: Meta.Out -> FilePath
outToPath = \case
Meta.Bin o -> cab </> "bin" </> o
Meta.Lib o -> cab </> "lib" </> o
Meta.None -> mempty
intdir, nixdir, vardir :: FilePath
intdir = cab </> "int"
nixdir = cab </> "nix"
vardir = cab </> "var"
-- | Emulate the *nix hierarchy in the cabdir.
createHier :: String -> IO ()
createHier root =
traverse_
(Dir.createDirectoryIfMissing True)
[ root </> (outToPath <| Meta.Bin ""),
root </> (outToPath <| Meta.Lib ""),
root </> intdir,
root </> nixdir,
root </> vardir
]
-- >>> removeVersion "array-0.5.4.0-DFLKGIjfsadi"
-- "array"
removeVersion :: String -> String
removeVersion = takeWhile (/= '.') .> butlast2
where
butlast2 s = take (length s - 2) s
type Analysis = Map Namespace Target
analyze :: Analysis -> Namespace -> IO Analysis
analyze hmap ns = case Map.lookup ns hmap of
Nothing -> do
mTarget <- analyzeOne ns
pure <| maybe hmap (\t -> Map.insert ns t hmap) mTarget
Just _ -> pure hmap
where
analyzeOne :: Namespace -> IO (Maybe Target)
analyzeOne namespace@(Namespace _ ext) = do
let path = Namespace.toPath namespace
contentLines <-
withFile path ReadMode <| \h ->
IO.hSetEncoding h IO.utf8_bom
>> Text.IO.hGetContents h
/> Text.lines
root <- Env.getEnv "BIZ_ROOT"
absPath <- Dir.makeAbsolute path
user <- Env.getEnv "USER" /> Text.pack
host <- Env.lookupEnv "HOSTNAME" /> fromMaybe "interactive" /> Text.pack
Log.info ["bild", "analyze", str path]
let runw cmd args = Process.readProcess cmd args "" /> Text.pack /> Text.words
case ext of
-- basically we don't support building these
Namespace.Css -> pure Nothing
Namespace.Json -> pure Nothing
Namespace.Keys -> pure Nothing
Namespace.Md -> pure Nothing
Namespace.None -> pure Nothing
Namespace.Py -> pure Nothing
Namespace.Sh -> pure Nothing
Namespace.C ->
Meta.detectAll "//" contentLines |> \Meta.Parsed {..} -> do
langdepFlags <-
null pdep
?. ( runw "pkg-config" ("--cflags" : Set.toList pdep),
pure []
)
sysdepFlags <-
null psys
?. ( runw "pkg-config" ("--libs" : Set.toList psys),
pure []
)
Target
{ langdeps = pdep,
sysdeps = psys,
wrapper = Nothing,
compiler = Gcc,
builder = Local user,
out = pout,
compilerFlags =
concat
[ [o, dir, Text.pack absPath]
++ langdepFlags
++ sysdepFlags
++ (map Text.pack <| Set.toList parg)
| let outable = pout /= Meta.None,
o <- outable ?: (["-o"], []),
dir <- outable ?: ([Text.pack <| root </> outToPath pout], [])
],
outPath = outToPath pout,
..
}
|> Just
|> pure
Namespace.Hs ->
Meta.detectOut (Meta.out "--") contentLines |> \out -> do
langdeps <- detectHaskellImports contentLines
Target
{ builder = Local user,
wrapper = Nothing,
compiler = Ghc,
compilerFlags =
[ "-Werror",
"-i" <> root,
"-odir",
root </> intdir,
"-hidir",
root </> intdir,
"--make",
absPath
]
++ (out /= Meta.None)
?: ( [ "-main-is",
Namespace.toHaskellModule namespace,
"-o",
root </> outToPath out
],
[]
)
|> map Text.pack,
sysdeps = Meta.detect (Meta.sys "--") contentLines,
outPath = outToPath out,
..
}
|> Just
|> pure
Namespace.Lisp ->
Meta.detectOut (Meta.out ";;") contentLines |> \out -> do
langdeps <- detectLispImports contentLines
Just
</ pure
Target
{ sysdeps = Set.empty,
wrapper = Nothing,
compiler = Sbcl,
compilerFlags =
map
Text.pack
[ "--eval",
"(require :asdf)",
"--load",
absPath,
"--eval",
"(sb-ext:save-lisp-and-die #p\"" <> (root </> outToPath out) <> "\" :toplevel #'main :executable t)"
],
builder = Local <| user,
outPath = outToPath out,
..
}
Namespace.Nix ->
(host == "lithium") ?: (Local user, Remote user "dev.simatime.com") |> \builder ->
Target
{ langdeps = Set.empty,
wrapper = Nothing,
sysdeps = Set.empty,
compiler = NixBuild,
compilerFlags =
[ absPath,
"--out-link",
root </> nixdir </> Namespace.toPath namespace,
"--builders",
toNixFlag builder
]
|> map Text.pack,
out = Meta.None,
outPath = outToPath Meta.None,
..
}
|> Just
|> pure
Namespace.Scm ->
Meta.detectOut (Meta.out ";;") contentLines |> \out ->
Target
{ langdeps = Set.empty,
sysdeps = Set.empty,
compiler = Guile,
compilerFlags =
[ "compile",
"--r7rs",
"--load-path=" ++ root,
"--output=" ++ root </> intdir </> replaceExtension path ".scm.go",
absPath
]
|> map Text.pack,
builder = Local user,
outPath = outToPath out,
wrapper =
[ "#!/usr/bin/env bash",
"guile -C \""
<> root </> intdir
<> "\" -e main "
<> "-s "
<> Namespace.toPath namespace
<> " \"$@\""
]
|> joinWith "\n"
|> Text.pack
|> Just,
..
}
|> Just
|> pure
Namespace.Rs ->
Meta.detectOut (Meta.out "//") contentLines |> \out ->
Target
{ langdeps = Set.empty,
wrapper = Nothing,
sysdeps = Set.empty,
compiler = Rustc,
compilerFlags = map Text.pack [absPath, "-o", root </> outToPath out],
builder = Local user,
outPath = outToPath out,
..
}
|> Just
|> pure
fromPath :: String -> IO (Maybe Namespace) --String ->IO (Maybe Namespace)
fromPath x =
Env.getEnv "BIZ_ROOT" +> \root ->
pure <| Namespace.fromPath root x
detectHaskellImports :: [Text] -> IO (Set Meta.Dep)
detectHaskellImports contentLines =
contentLines
/> Text.unpack
/> Regex.match haskellImports
|> catMaybes
|> \imports ->
foldM ghcPkgFindModule Set.empty imports
+> \pkgs ->
imports
|> map Namespace.fromHaskellModule
|> map Namespace.toPath
|> traverse Dir.makeAbsolute
+> filterM Dir.doesFileExist
+> traverse fromPath
/> catMaybes
-- this is still an inefficiency, because this recurses before the
-- hmap is updated by the fold, transitive imports will be
-- re-visited. you can see this with `TERM=dumb bild`. to fix this i
-- need shared state instead of a fold, or figure out how to do a
-- breadth-first search instead of depth-first.
+> foldM analyze hmap
/> Map.elems
/> map langdeps
/> mconcat
/> (<> pkgs)
detectLispImports :: [Text] -> IO (Set Meta.Dep)
detectLispImports contentLines = do
let requires = contentLines /> Text.unpack /> Regex.match lispRequires |> catMaybes
pure <| Set.fromList requires
ghcPkgFindModule :: Set String -> String -> IO (Set String)
ghcPkgFindModule acc m = do
packageDb <- Env.getEnv "GHC_PACKAGE_PATH"
Process.readProcess
"ghc-pkg"
["--package-db", packageDb, "--names-only", "--simple-output", "find-module", m]
""
/> String.lines
/> Set.fromList
/> Set.union acc
isFailure :: Exit.ExitCode -> Bool
isFailure (Exit.ExitFailure _) = True
isFailure Exit.ExitSuccess = False
isSuccess :: Exit.ExitCode -> Bool
isSuccess Exit.ExitSuccess = True
isSuccess _ = False
test :: Bool -> Target -> IO Exit.ExitCode
test loud Target {..} = case compiler of
Ghc -> do
root <- Env.getEnv "BIZ_ROOT"
run
<| Proc
{ loud = loud,
cmd = root </> outToPath out,
args = ["test"],
ns = namespace,
onFailure = Log.fail ["test", nschunk namespace] >> Log.br,
onSuccess = Log.pass ["test", nschunk namespace] >> Log.br
}
_ ->
Log.warn ["test", nschunk namespace, "unavailable"]
>> Log.br
>> pure (Exit.ExitFailure 1)
build :: Bool -> Bool -> Analysis -> IO [Exit.ExitCode]
build andTest loud analysis = do
root <- Env.getEnv "BIZ_ROOT"
forM (Map.elems analysis) <| \target@Target {..} -> do
case compiler of
Gcc ->
Log.info ["bild", label, "gcc", nschunk namespace]
>> proc loud namespace compiler compilerFlags
where
label = case out of
Meta.Bin _ -> "bin"
_ -> "lib"
Ghc -> case out of
Meta.None -> pure Exit.ExitSuccess
Meta.Bin _ -> do
Log.info ["bild", "dev", "ghc-exe", nschunk namespace]
exitcode <- proc loud namespace compiler compilerFlags
if andTest && isSuccess exitcode
then test loud target
else pure exitcode
Meta.Lib _ -> do
Log.info ["bild", "dev", "ghc-lib", nschunk namespace]
proc loud namespace compiler compilerFlags
Guile -> do
Log.info ["bild", "dev", "guile", nschunk namespace]
_ <- proc loud namespace compiler compilerFlags
case wrapper of
Nothing -> pure Exit.ExitSuccess
Just content -> do
writeFile (root </> outToPath out) content
p <- Dir.getPermissions <| root </> outToPath out
Dir.setPermissions (root </> outToPath out) (Dir.setOwnerExecutable True p)
pure Exit.ExitSuccess
NixBuild -> do
Log.info ["bild", "nix", toLog builder, nschunk namespace]
proc loud namespace compiler compilerFlags
where
toLog (Local u) = u
toLog (Remote u h) = u <> "@" <> h
Copy -> do
Log.warn ["bild", "copy", "not implemented yet", nschunk namespace]
pure Exit.ExitSuccess
Rustc -> do
Log.info ["bild", "dev", "rust", nschunk namespace]
proc loud namespace compiler compilerFlags
Sbcl -> do
Log.info ["bild", "dev", "lisp", nschunk namespace]
proc loud namespace compiler compilerFlags
data Proc = Proc
{ loud :: Bool,
cmd :: String,
args :: [String],
ns :: Namespace,
onFailure :: IO (),
onSuccess :: IO ()
}
-- | Run a subprocess, streaming output if --loud is set.
run :: Proc -> IO Exit.ExitCode
run Proc {..} =
Conduit.proc cmd args |> Conduit.streamingProcess
+> \(Conduit.UseProvidedHandle, stdin_, stderr_, hdl) ->
loud ?: (verboseLog stdin_ stderr_ hdl, shortLog stdin_ stderr_ hdl)
+> \case
Exit.ExitFailure n -> puts stderr_ >> onFailure >> pure (Exit.ExitFailure n)
Exit.ExitSuccess -> onSuccess >> pure Exit.ExitSuccess
where
verboseLog stdin_ stderr_ hdl =
Async.runConcurrently
<| Async.Concurrently (puts stdin_)
*> Async.Concurrently (puts stderr_)
*> Async.Concurrently (Conduit.waitForStreamingProcess hdl)
shortLog stdin_ stderr_ hdl =
Async.runConcurrently
<| Async.Concurrently (logs ns stdin_)
*> Async.Concurrently (logs ns stderr_)
*> Async.Concurrently (Conduit.waitForStreamingProcess hdl)
-- | Helper for running a standard bild subprocess.
proc :: ToNixFlag a => Bool -> Namespace -> a -> [Text] -> IO Exit.ExitCode
proc loud namespace cmd args =
run
<| Proc
{ loud = loud,
ns = namespace,
cmd = toNixFlag cmd,
args = map Text.unpack args,
onFailure = Log.fail ["bild", nschunk namespace] >> Log.br,
onSuccess = Log.good ["bild", nschunk namespace] >> Log.br
}
-- | Helper for printing during a subprocess
puts :: Conduit.ConduitM () ByteString IO () -> IO ()
puts src = Conduit.runConduit <| src .| Conduit.mapM_ putStr
-- | Like 'puts' but logs the output via 'Biz.Log'.
logs :: Namespace -> Conduit.ConduitM () ByteString IO () -> IO ()
logs ns src =
Conduit.runConduit
<| src
.| Conduit.mapM_
( BS.filter (/= BSI.c2w '\n')
.> (\t -> Log.fmt ["info", "bild", nschunk ns, decodeUtf8 t])
.> Text.take 77
.> (<> "...\r")
.> putStr
)
nschunk :: Namespace -> Text
nschunk = Namespace.toPath .> Text.pack
haskellImports :: Regex.RE Char String
haskellImports =
Regex.string "import"
*> Regex.some (Regex.psym Char.isSpace)
*> Regex.many (Regex.psym Char.isLower)
*> Regex.many (Regex.psym Char.isSpace)
*> Regex.some (Regex.psym isModuleChar)
<* Regex.many Regex.anySym
isModuleChar :: Char -> Bool
isModuleChar c =
elem c <| concat [['A' .. 'Z'], ['a' .. 'z'], ['.', '_'], ['0' .. '9']]
-- Matches on `(require :package)` forms and returns `package`. The `require`
-- function is technically deprecated in Common Lisp, but no new spec has been
-- published with a replacement, and I don't wanna use asdf, so this is what we
-- use for Lisp imports.
lispRequires :: Regex.RE Char String
lispRequires =
Regex.string "(require"
*> Regex.some (Regex.psym Char.isSpace)
*> Regex.many (Regex.psym isQuote)
*> Regex.many (Regex.psym isModuleChar)
<* Regex.many (Regex.psym (== ')'))
where
isQuote :: Char -> Bool
isQuote c = c `elem` ['\'', ':']
|