diff options
author | Ben Sima <ben@bsima.me> | 2019-03-26 12:49:15 -0700 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2019-03-26 12:52:53 -0700 |
commit | 1c51ae337b5a88f17e85ec13be78f6c05802dfc8 (patch) | |
tree | e1122d61e3a308843ee3ad0aa373a804e967e18b | |
parent | f50cecf2cb77cc073cb86a6016468a09d1c49fb0 (diff) |
Add a custom make script
-rwxr-xr-x | chip/make | 121 | ||||
-rw-r--r-- | pack/ibb.nix | 8 |
2 files changed, 124 insertions, 5 deletions
diff --git a/chip/make b/chip/make new file mode 100755 index 0000000..6eabae0 --- /dev/null +++ b/chip/make @@ -0,0 +1,121 @@ +#!/usr/bin/env runhaskell + +{-# LANGUAGE OverloadedStrings #-} +{-# LANGUAGE RecordWildCards #-} +{-# OPTIONS_GHC -Wall #-} + +import Control.Concurrent +import Control.Exception +import Control.Monad +import Data.ByteString.Char8 (pack) +import qualified Data.Char as Char +import Data.List +import System.Directory +import System.Environment +import System.FilePath +import System.INotify +import System.Process + +data Notify = Notify + { notify :: IO () + , wait :: IO () + } + +-- | Skip channel to model concurrency semantics +-- This ensures that we don't execute more than one command +-- at a time. +initNotify :: IO Notify +initNotify = do + mvar <- newMVar () + pure $ Notify + (void $ tryPutMVar mvar ()) + (takeMVar mvar) + +main :: IO () +main = do + (app, act) <- parseArgs <$> getArgs + case act of + Watch -> do + inotify <- initINotify + Notify {..} <- initNotify + dirs <- nub . concat <$> mapM getDirs ["aero", "apex", "lore"] + forM_ dirs $ \arg -> + void $ addWatch inotify [Modify] (pack arg) (const notify) + forever $ wait >> bild app >> say "ok, waiting..." + Make -> bild app >> say "ok" + +bild :: App -> IO () +bild app = do + say $ "make: " ++ name app + apex app `catch` nop + -- aero app `catch` nop + +say :: String -> IO () +say = putStrLn + +nop :: SomeException -> IO () +nop _ = pure () + +data Action = Make | Watch + +parseArgs :: [String] -> (App, Action) +parseArgs [] = errorWithoutStackTrace "usage: chip/make <app> [watch]" +parseArgs (name:act:_) = + ( App (lowercase name) (capitalize name) + , case lowercase act of + "watch" -> Watch + _ -> Make + ) +parseArgs (name:_) = (App (lowercase name) (capitalize name), Make) + +capitalize, lowercase :: String -> String +capitalize (α:ω) = Char.toUpper α : map Char.toLower ω +capitalize [] = [] +lowercase (α:ω) = Char.toLower α : map Char.toLower ω +lowercase [] = [] + +data App = App + { name :: String + , entrypoint :: String + } + +ghcopts :: String +ghcopts = "-odir bild/ -hidir bild/ -Wall" + +apex :: App -> IO () +apex App {..} = callCommand $ intercalate " " + [ "ghc" + , ghcopts + , "-iapex -ilore" + , "-main-is", entrypoint + , "--make", "apex/" ++ entrypoint ++ ".hs" + , "-o bild/" ++ name + ] + +aero :: App -> IO () +aero App {..} = callCommand $ intercalate " " + [ "ghcjs" + , ghcopts + , "-iaero -ilore" + , "-main-is", entrypoint + , "--make", "apex/" ++ entrypoint ++ ".hs" + , "-o bild/" ++ name + ] + +getDirs :: FilePath -> IO [FilePath] +getDirs path = do + isDir <- doesDirectoryExist path + if isDir + then do + dirs <- listDirectory path + if null dirs + then pure [path] + else concat <$> do + mapM getDirs $ (path </>) <$> dirs + else pure [prune path] + +prune :: String -> String +prune = reverse . dropWhile (/= '/') . reverse + +secs :: Int -> Int +secs = (* 1000000) diff --git a/pack/ibb.nix b/pack/ibb.nix index feb99f9..6bf84d8 100644 --- a/pack/ibb.nix +++ b/pack/ibb.nix @@ -5,12 +5,14 @@ let blaze-html blaze-markup bytestring + hinotify MonadRandom random scotty shakespeare text ]); + make = ../chip/make; entrypoint = "Ibb"; in stdenv.mkDerivation rec { @@ -21,11 +23,7 @@ stdenv.mkDerivation rec { ghc ]; strictDeps = true; - buildPhase = '' - ${ghc}/bin/ghc -iapex -ilore \ - -main-is ${entrypoint} --make apex/${entrypoint}.hs \ - -o bild/${name} - ''; + buildPhase = "${ghc}/bin/runhaskell ${make} ibb"; installPhase = '' mkdir -p $out/bin cp bild/${name} $out/bin/${name} |