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
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
|
{-# LANGUAGE DeriveAnyClass #-}
{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE LambdaCase #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE QuasiQuotes #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE TupleSections #-}
{-# LANGUAGE NoImplicitPrelude #-}
-- | A specific-purpose build tool.
--
-- : out bild
--
-- == Design constraints
--
-- * The only input is one or more a namespaces. No subcommands, no packages,
-- no targets.
--
-- * 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 because we only build
-- exes; 'libs' are just source files in the tree.
--
-- * Never concerned with deployment/packaging - leave that to another tool
-- (scp? tar?)
--
-- * Ability to do 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, or special 'bild'
-- args
--
-- * pwd is always considered the the source directory,
-- no `src` vs `doc` etc.
--
-- * Build rules automaticatly detected from 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.
--
-- * (WIP) Nix is used by default to build everything on a remote build
-- machine, but local, non-Nix builds can be accomplished with `--dev`.
--
-- == 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
-- > -- : sys libssl
--
-- The name is used to lookup the package in `nixpkgs.pkgs.<name>`. Only one
-- package can be listed per line. Language-level deps can automatically
-- determined by passing parsed import statements to a package database, eg
-- `ghc-pkg find-module`. If such a package database is not available, we either
-- keep a hand-written index that maps imports to packages, or we just list the
-- name of the package with:
--
-- > -- : dep package
--
-- 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 the 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 Biz.Test ((@=?))
import qualified Biz.Test as Test
import qualified Conduit
import qualified Control.Concurrent.Async as Async
import qualified Data.Aeson as Aeson
import qualified Data.ByteString as ByteString
import qualified Data.ByteString.Char8 as Char8
import qualified Data.ByteString.Internal as BSI
import qualified Data.ByteString.Lazy as ByteString.Lazy
import qualified Data.Char as Char
import Data.Conduit ((.|))
import qualified Data.Conduit.Combinators as Conduit
import qualified Data.Conduit.Process as Conduit
import qualified Data.List as List
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 Network.HostName as HostName
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.Plan help move test_ pure |> Cli.main
where
test_ =
Test.group
"Biz.Bild"
[ test_bildBild,
test_bildExamples
]
test_bildBild :: Test.Tree
test_bildBild =
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 ()
test_bildExamples :: Test.Tree
test_bildExamples =
Test.unit "can bild examples" <| do
Env.getEnv "BIZ_ROOT" +> \root ->
["c", "hs", "lisp", "rs"]
|> map ("Biz/Bild/Example." <>)
|> traverse Dir.makeAbsolute
/> map (Namespace.fromPath root)
/> catMaybes
+> foldM analyze mempty
+> build False False
+> \case
[] -> Test.assertFailure "asdf"
xs -> all (== Exit.ExitSuccess) xs @=? True
move :: Cli.Arguments -> IO ()
move args =
IO.hSetBuffering stdout IO.NoBuffering
>> Env.getEnv "BIZ_ROOT" +> \root ->
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.Lazy.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
| CPython
| Gcc
| Ghc
| Guile
| NixBuild
| Rustc
| Sbcl
deriving (Eq, Show, Generic)
compilerExe :: IsString a => Compiler -> a
compilerExe = \case
Copy -> "cp"
CPython -> "python"
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
-- | Type alias for making sure that the path is qualified, meaning it starts at
-- the root of the repo, and is not an absolute path nor a subpath
type QualifiedPath = FilePath
data Target = Target
{ -- | Output name
out :: Meta.Out,
-- | Output path (into cabdir)
outPath :: FilePath,
-- | Fully qualified namespace partitioned by '.'
namespace :: Namespace,
-- | Path to file, qualified based on the root of the git directory
quapath :: QualifiedPath,
-- | Main module name, formatted as the language expects
mainModule :: String,
-- | Name of the packageset in Bild.nix to pull langdeps from
packageSet :: Text,
-- | Language-specific dependencies, required during compilation
langdeps :: Set Meta.Dep,
-- | Local source files on which this target depends
srcs :: Set FilePath,
-- | 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,
-- | Which nix build expression?
builder :: Text,
-- | Who is building this?
user :: Text,
-- | Where are they buildint it?
host :: Text,
-- | Flags and arguments passed to 'Compiler' when building
compilerFlags :: [Text],
-- | Wrapper script (if necessary)
wrapper :: Maybe Text
}
deriving (Show, Generic, Aeson.ToJSON)
-- | Use this to just get a target to play with at the repl.
dev_getTarget :: IO Target
dev_getTarget = do
root <- Env.getEnv "BIZ_ROOT"
path <- Dir.makeAbsolute "Biz/Bild.hs"
Namespace.fromPath root path
|> \case
Nothing -> panic "Could not get namespace from path"
Just ns ->
analyze mempty ns
/> Map.lookup ns
/> \case
Nothing -> panic "Could not retrieve target from analysis"
Just t -> t
data Builder
= -- | Local <user> <host>
Local Text Text
| -- | Remote <user> <host>
Remote Text Text
deriving (Show, Generic)
instance Aeson.ToJSON Builder where
toJSON (Local u host) = Aeson.String <| u <> "@" <> host
toJSON (Remote u host) = Aeson.String <| u <> "@" <> host
class ToNixFlag a where
toNixFlag :: a -> String
instance ToNixFlag Builder where
toNixFlag = \case
Local _ _ -> mempty
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) -> True
(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
outname :: Meta.Out -> FilePath
outname = \case
Meta.Bin o -> o
Meta.Lib o -> o
Meta.None -> mempty
bindir, intdir, nixdir, vardir :: FilePath
bindir = cab </> "bin"
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
root <- Env.getEnv "BIZ_ROOT"
let abspath = root </> path
let quapath = path
user <- Env.getEnv "USER" /> Text.pack
host <- HostName.getHostName /> Text.pack
Log.info ["bild", "analyze", str path]
contentLines <-
withFile abspath ReadMode <| \h ->
IO.hSetEncoding h IO.utf8_bom
>> Text.IO.hGetContents h
/> Text.lines
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 ->
Meta.detectAll "#" contentLines |> \Meta.Parsed {..} ->
Target
{ builder = "python",
wrapper = Nothing,
compiler = CPython,
compilerFlags =
-- This doesn't really make sense for python, but I'll leave
-- it here for eventual --dev builds
[ "-c",
"\"import py_compile;import os;"
<> "py_compile.compile(file='"
<> str quapath
<> "', cfile=os.getenv('BIZ_ROOT')+'/_/int/"
<> str quapath
<> "', doraise=True)\""
],
sysdeps = psys,
langdeps = pdep,
outPath = outToPath pout,
out = pout,
-- implement detectPythonImports, then I can fill this out
srcs = Set.empty,
packageSet = "python.packages",
mainModule = Namespace.toModule namespace,
..
}
|> Just
|> pure
Namespace.Sh -> pure Nothing
Namespace.C ->
Meta.detectAll "//" contentLines |> \Meta.Parsed {..} -> do
Target
{ langdeps = pdep,
sysdeps = psys,
wrapper = Nothing,
compiler = Gcc,
builder = "c",
out = pout,
packageSet = "c.packages",
mainModule = Namespace.toModule namespace,
compilerFlags = case pout of
Meta.Bin o ->
["-o", o, path] <> Set.toList parg |> map Text.pack
_ -> panic "can only bild C exes, not libs",
outPath = outToPath pout,
-- implement detectCImports, then I can fill this out
srcs = Set.empty,
..
}
|> Just
|> pure
Namespace.Hs ->
contentLines
|> Meta.detectOut (Meta.out "--")
|> \out ->
detectHaskellImports hmap contentLines +> \(langdeps, srcs) ->
Target
{ builder = "haskell",
wrapper = Nothing,
compiler = Ghc,
packageSet = "haskell.packages",
mainModule = Namespace.toModule namespace,
compilerFlags =
[ "-Werror",
"-threaded",
"-i$BIZ_ROOT",
"-odir",
".",
"-hidir",
".",
"--make",
"$BIZ_ROOT" </> quapath
]
++ case out of
Meta.Bin o ->
[ "-main-is",
Namespace.toHaskellModule namespace,
"-o",
o
]
_ -> []
|> 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,
packageSet = "lisp.sbclWith",
mainModule = Namespace.toModule namespace,
compilerFlags =
map
Text.pack
[ "--eval",
"(require :asdf)",
"--load",
quapath,
"--eval",
"(sb-ext:save-lisp-and-die #p\"" <> (root </> outToPath out) <> "\" :toplevel #'main :executable t)"
],
builder = "base",
outPath = outToPath out,
-- add local src imports to detectLispImports, then i can fill this out
srcs = Set.empty,
..
}
Namespace.Nix ->
(host == "lithium") ?: (Local user "lithium", Remote user "dev.simatime.com") |> \builder ->
Target
{ langdeps = Set.empty,
wrapper = Nothing,
sysdeps = Set.empty,
compiler = NixBuild,
compilerFlags =
[ quapath,
"--out-link",
root </> nixdir </> Namespace.toPath namespace,
"--builders",
toNixFlag builder
]
|> map Text.pack,
out = Meta.None,
outPath = outToPath Meta.None,
srcs = Set.empty,
packageSet = "",
mainModule = Namespace.toModule namespace,
builder = "base",
..
}
|> Just
|> pure
Namespace.Scm ->
Meta.detectAll ";;" contentLines |> \Meta.Parsed {..} ->
Target
{ langdeps = pdep,
sysdeps = psys,
compiler = Guile,
packageSet = "scheme.guilePackages",
mainModule = Namespace.toModule namespace,
compilerFlags =
[ "compile",
"--r7rs",
"--load-path=" ++ root,
"--output=" ++ root </> intdir </> replaceExtension quapath ".scm.go",
quapath
]
|> map Text.pack,
builder = "base",
outPath = outToPath pout,
out = pout,
srcs = Set.empty, -- implement detectSchemeImports
-- TODO: wrapper should just be removed, instead rely on
-- upstream nixpkgs builders to make wrappers
wrapper =
(pout == Meta.None)
?: ( Nothing,
[ "#!/usr/bin/env bash",
"guile -C \""
<> root
</> intdir
<> "\" -e main "
<> "-s "
<> Namespace.toPath namespace
<> " \"$@\""
]
|> joinWith "\n"
|> Text.pack
|> Just
),
..
}
|> Just
|> pure
Namespace.Rs ->
Meta.detectAll "//" contentLines |> \Meta.Parsed {..} ->
Target
{ langdeps = pdep,
-- this packageSet doesn't actually exist because everyone in
-- nix just generates nix expressions for rust dependencies with
-- Cargo.lock, so I have to make it in order to use rust deps
packageSet = "rust.packages",
mainModule = Namespace.toModule namespace,
wrapper = Nothing,
sysdeps = psys <> Set.singleton "rustc",
out = pout,
compiler = Rustc,
compilerFlags = case pout of
Meta.Bin o ->
map
Text.pack
[ "$BIZ_ROOT" </> path,
"-o",
o
]
_ -> panic "can't build rust libs",
builder = "base",
outPath = outToPath pout,
-- implement detectRustImports
srcs = Set.empty,
..
}
|> Just
|> pure
detectHaskellImports :: Analysis -> [Text] -> IO (Set Meta.Dep, Set FilePath)
detectHaskellImports hmap contentLines =
Env.getEnv "BIZ_ROOT" +> \root ->
contentLines
/> Text.unpack
/> Regex.match haskellImports
|> catMaybes
|> \imports ->
foldM ghcPkgFindModule Set.empty imports
+> \pkgs ->
filepaths imports
+> \files ->
findDeps root files
+> \deps ->
(pkgs <> deps, map (stripRoot root) files |> Set.fromList)
|> pure
where
stripRoot :: FilePath -> FilePath -> QualifiedPath
stripRoot root f = fromMaybe f (List.stripPrefix (root <> "/") f)
filepaths :: [String] -> IO [FilePath]
filepaths imports =
imports
|> map Namespace.fromHaskellModule
|> map Namespace.toPath
|> traverse Dir.makeAbsolute
+> filterM Dir.doesFileExist
findDeps :: String -> [FilePath] -> IO (Set Meta.Dep)
findDeps root fps =
fps
|> traverse (pure <. Namespace.fromPath root)
/> 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 (onlyHaskell hmap)
/> Map.elems
/> map langdeps
/> mconcat
onlyHaskell :: Analysis -> Analysis
onlyHaskell = Map.filterWithKey (\ns _ -> ext ns == Namespace.Hs)
detectLispImports :: [Text] -> IO (Set Meta.Dep)
detectLispImports contentLines =
contentLines
/> Text.unpack
/> Regex.match lispRequires
|> catMaybes
|> Set.fromList
|> pure
ghcPkgFindModule :: Set String -> String -> IO (Set String)
ghcPkgFindModule acc m =
Env.getEnv "GHC_PACKAGE_PATH" +> \packageDb ->
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, ByteString)
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, mempty)
build :: Bool -> Bool -> Analysis -> IO [Exit.ExitCode]
build andTest loud analysis =
Env.getEnv "BIZ_ROOT" +> \root ->
forM (Map.elems analysis) <| \target@Target {..} ->
fst </ case compiler of
CPython ->
Log.info ["bild", "nix", "python", nschunk namespace]
>> nixBuild loud target
Gcc ->
Log.info ["bild", label, "gcc", nschunk namespace]
>> nixBuild loud target
where
label = case out of
Meta.Bin _ -> "bin"
_ -> "lib"
Ghc -> case out of
Meta.None -> pure (Exit.ExitSuccess, mempty)
Meta.Bin _ -> do
Log.info ["bild", "nix", user <> "@" <> host, nschunk namespace]
result <- nixBuild loud target
if andTest && (isSuccess <| fst result)
then test loud target
else pure result
Meta.Lib _ -> do
Log.info ["bild", "dev", "ghc-lib", nschunk namespace]
proc loud namespace (toNixFlag compiler) compilerFlags
Guile -> do
Log.info ["bild", "dev", "guile", nschunk namespace]
_ <- proc loud namespace (toNixFlag compiler) compilerFlags
case wrapper of
Nothing -> pure (Exit.ExitSuccess, mempty)
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, mempty)
NixBuild -> do
Log.info ["bild", "nix", user <> "@" <> host, nschunk namespace]
proc loud namespace (toNixFlag compiler) compilerFlags
Copy -> do
Log.warn ["bild", "copy", "not implemented yet", nschunk namespace]
pure (Exit.ExitSuccess, mempty)
Rustc ->
Log.info ["bild", "dev", "rust", nschunk namespace]
>> nixBuild loud target
Sbcl -> do
Log.info ["bild", "dev", "lisp", nschunk namespace]
proc loud namespace (toNixFlag 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, ByteString)
run Proc {..} = do
IO.hSetBuffering stdout IO.NoBuffering
loud ?| Log.info ["proc", unwords <| map str <| cmd : args]
Conduit.proc cmd args
|> Conduit.streamingProcess
+> \(Conduit.UseProvidedHandle, stdout_, stderr_, hdl) ->
(,,) </ Async.Concurrently (Conduit.waitForStreamingProcess hdl)
<*> Async.Concurrently (loud ?: (puts stdout_, logs ns stdout_))
<*> Async.Concurrently (loud ?: (puts stderr_, logs ns stderr_))
|> Async.runConcurrently
+> \case
(Exit.ExitFailure n, output, outerr) ->
putStr outerr
>> onFailure
>> pure (Exit.ExitFailure n, output)
(Exit.ExitSuccess, output, _) ->
onSuccess >> pure (Exit.ExitSuccess, output)
-- | Helper for running a standard bild subprocess.
proc ::
Bool ->
Namespace ->
String ->
[Text] ->
IO (Exit.ExitCode, ByteString)
proc loud namespace cmd args =
Proc
{ loud = loud,
ns = namespace,
cmd = cmd,
args = map Text.unpack args,
onFailure = Log.fail ["bild", nschunk namespace] >> Log.br,
onSuccess = Log.good ["bild", nschunk namespace] >> Log.br
}
|> run
-- | Helper for printing during a subprocess
puts ::
Conduit.ConduitT () ByteString (Conduit.ResourceT IO) () ->
IO ByteString
puts src =
Conduit.runConduitRes
<| src
.| Conduit.iterM (liftIO <. putStr)
.| Conduit.foldC
-- | Like 'puts' but logs the output via 'Biz.Log'.
logs ::
Namespace ->
Conduit.ConduitT () ByteString (Conduit.ResourceT IO) () ->
IO ByteString
logs ns src =
Conduit.runConduitRes
<| src
.| Conduit.iterM
( ByteString.filter (/= BSI.c2w '\n')
.> (\t -> Log.fmt ["info", "bild", nschunk ns, decodeUtf8 t])
.> Text.take 79
.> (<> "…\r")
.> putStr
)
.| Conduit.foldC
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` ['\'', ':']
nixBuild :: Bool -> Target -> IO (Exit.ExitCode, ByteString)
nixBuild loud target@(Target {..}) =
Env.getEnv "BIZ_ROOT" +> \root ->
instantiate root |> run +> \case
(_, "") -> panic "instantiate did not produce a drv"
(Exit.ExitSuccess, drv) ->
drv
|> str
|> chomp
|> str
|> realise
|> run
>> run symlink
x -> pure x
where
argstr :: Text -> Text -> [Text]
argstr n v = ["--argstr", n, v]
instantiate root =
Proc
{ loud = loud,
ns = namespace,
cmd = "nix-instantiate",
-- Getting the args quoted correctly is harder than it should be. This
-- is tightly coupled with the code in the nix builder and there's no
-- way around that, methinks.
args =
[ argstr "analysisJSON" <| str <| Aeson.encode <| (Map.singleton namespace target :: Analysis),
[str <| root </> "Biz/Bild/Builder.nix"]
]
|> mconcat
|> map Text.unpack,
onFailure = Log.fail ["bild", "instantiate", nschunk namespace] >> Log.br,
onSuccess = pure ()
}
realise drv =
Proc
{ loud = loud,
ns = namespace,
cmd = "nix-store",
args = ["--realise", drv, "--add-root", nixdir </> outname out],
onFailure = Log.fail ["bild", "realise", nschunk namespace] >> Log.br,
onSuccess = Log.good ["bild", nschunk namespace] >> Log.br
}
symlink =
Proc
{ loud = loud,
ns = namespace,
cmd = "ln",
args =
[ "--relative",
"--force",
"--symbolic",
nixdir </> outname out </> "bin" </> outname out,
bindir </> outname out
],
onFailure = Log.fail ["bild", "symlink", nschunk namespace] >> Log.br,
onSuccess = pure ()
}
|