mirror of
https://github.com/anoma/juvix.git
synced 2024-12-14 17:32:00 +03:00
2f4a3f809b
## Overview This PR makes the compiler pipeline thread-safe so that the test suite can be run in parallel. This is achieved by: * Removing use of `{get, set, with}CurrentDir` functions. * Adding locking around shared file resources like the the global-project and internal build directory. NB: **Locking is disabled for the main compiler target**, as it is single threaded they are not required. ## Run test suite in parallel To run the test suite in parallel you must add `--ta '+RTS -N -RTS'` to your stack test arguments. For example: ``` stack test --fast --ta '+RTS -N -RTS' ``` The `-N` instructs the Haskell runtime to choose the number of threads to use based on how many processors there are on your machine. You can use `-Nn` to see the number of threads to `n`. These flags are already [set in the Makefile](e6dca22cfd/Makefile (L26)
) when you or CI uses `stack test`. ## Locking The Haskell package [filelock](https://hackage.haskell.org/package/filelock) is used for locking. File locks are used instead of MVars because Juvix code does not control when new threads are created, they are created by the test suite. This means that MVars created by Juvix code will have no effect, because they are created independently on each test-suite thread. Additionally the resources we're locking live on the filesystem and so can be conveniently tagged by path. ### FileLock The filelock library is wrapped in a FileLock effect:e6dca22cfd/src/Juvix/Data/Effect/FileLock/Base.hs (L6-L8)
There is an [IO interpreter](e6dca22cfd/src/Juvix/Data/Effect/FileLock/IO.hs (L8)
) that uses filelock and an [no-op interpreter](e6dca22cfd/src/Juvix/Data/Effect/FileLock/Permissive.hs (L7)
) that just runs actions unconditionally. ### TaggedLock To make the file locks simpler to use a TaggedLock effect is introduced:e6dca22cfd/src/Juvix/Data/Effect/TaggedLock/Base.hs (L5-L11)
And convenience function:e6dca22cfd/src/Juvix/Data/Effect/TaggedLock.hs (L28)
This allows an action to be locked, tagged by a directory that may or may not exist. For example in the following code, an action is performed on a directory `root` that may delete the directory before repopulating the files. So the lockfile cannot be stored in the `root` itself.e6dca22cfd/src/Juvix/Extra/Files.hs (L55-L60)
## Pipeline As noted above, we only use locking in the test suite. The main app target pipeline is single threaded and so locking is unnecessary. So the interpretation of locks is parameterised so that locking can be disablede6dca22cfd/src/Juvix/Compiler/Pipeline/Run.hs (L64)
91 lines
2.8 KiB
Haskell
91 lines
2.8 KiB
Haskell
module BackendMarkdown.Positive where
|
|
|
|
import Base
|
|
import Juvix.Compiler.Backend.Markdown.Translation.FromTyped.Source
|
|
import Juvix.Compiler.Concrete qualified as Concrete
|
|
import Juvix.Compiler.Concrete.Translation.FromParsed.Analysis.Scoping qualified as Scoper
|
|
import Juvix.Compiler.Concrete.Translation.FromSource qualified as Parser
|
|
import Juvix.Compiler.Pipeline.Setup
|
|
import Juvix.Data.Effect.TaggedLock
|
|
|
|
data PosTest = PosTest
|
|
{ _name :: String,
|
|
_dir :: Path Abs Dir,
|
|
_file :: Path Abs File,
|
|
_expectedFile :: Path Abs File,
|
|
_UrlPrefix :: Text,
|
|
_IdPrefix :: Text,
|
|
_NoPath :: Bool
|
|
}
|
|
|
|
makeLenses ''PosTest
|
|
|
|
root :: Path Abs Dir
|
|
root = relToProject $(mkRelDir "tests/positive/Markdown")
|
|
|
|
posTest :: String -> Path Rel Dir -> Path Rel File -> Path Rel File -> Text -> Text -> Bool -> PosTest
|
|
posTest _name rdir rfile efile _UrlPrefix _IdPrefix _NoPath =
|
|
let _dir = root <//> rdir
|
|
_file = _dir <//> rfile
|
|
_expectedFile = _dir <//> efile
|
|
in PosTest {..}
|
|
|
|
testDescr :: PosTest -> TestDescr
|
|
testDescr PosTest {..} =
|
|
TestDescr
|
|
{ _testName = _name,
|
|
_testRoot = _dir,
|
|
_testAssertion = Steps $ \step -> do
|
|
entryPoint <- defaultEntryPointIO' LockModeExclusive _dir _file
|
|
step "Parsing"
|
|
p :: Parser.ParserResult <- snd <$> runIOExclusive entryPoint upToParsing
|
|
step "Scoping"
|
|
s :: Scoper.ScoperResult <-
|
|
snd
|
|
<$> runIOExclusive
|
|
entryPoint
|
|
( do
|
|
void (entrySetup defaultDependenciesConfig)
|
|
Concrete.fromParsed p
|
|
)
|
|
let m = head (s ^. Scoper.resultModules)
|
|
let opts =
|
|
ProcessJuvixBlocksArgs
|
|
{ _processJuvixBlocksArgsConcreteOpts = Concrete.defaultOptions,
|
|
_processJuvixBlocksArgsUrlPrefix = _UrlPrefix,
|
|
_processJuvixBlocksArgsIdPrefix = _IdPrefix,
|
|
_processJuvixBlocksArgsNoPath = _NoPath,
|
|
_processJuvixBlocksArgsComments =
|
|
s ^. Scoper.comments,
|
|
_processJuvixBlocksArgsModule = m,
|
|
_processJuvixBlocksArgsOutputDir =
|
|
root <//> $(mkRelDir "markdown")
|
|
}
|
|
|
|
let res = fromJuvixMarkdown' opts
|
|
case res of
|
|
Left err -> assertFailure (show err)
|
|
Right md -> do
|
|
step "Checking against expected output file"
|
|
expFile :: Text <- readFile (toFilePath _expectedFile)
|
|
assertEqDiffText "Compare to expected output" md expFile
|
|
}
|
|
|
|
allTests :: TestTree
|
|
allTests =
|
|
testGroup
|
|
"Markdown positive tests"
|
|
(map (mkTest . testDescr) tests)
|
|
|
|
tests :: [PosTest]
|
|
tests =
|
|
[ posTest
|
|
"Test Markdown"
|
|
$(mkRelDir ".")
|
|
$(mkRelFile "Test.juvix.md")
|
|
$(mkRelFile "markdown/Test.md")
|
|
"X"
|
|
"Y"
|
|
True
|
|
]
|