diff options
author | Artemis Tosini <lix@artem.ist> | 2024-05-12 21:09:26 +0000 |
---|---|---|
committer | jade <lix@jade.fyi> | 2024-06-23 03:33:07 +0000 |
commit | 12f5d27363316df8e04af1e2e376c39588e12057 (patch) | |
tree | 2605bc59d499c851f169678701e9827db180e366 /src/libstore/platform.cc | |
parent | da4e46dd1fc04067b5ba4bc16dd68134fa7efad2 (diff) |
libstore: Start creating LocalDerivationGoal subclasses
LocalDerivationGoal includes a large number of low-level sandboxing
primitives for Darwin and Linux, intermingled with ifdefs.
Start creating platform-specific classes to make it easier to add new
platforms and review platform-specific code.
This change only creates support infrastructure and moves two function,
more functions will be moved in future changes.
Change-Id: I9fc29fa2a7345107d4fc96c46fa90b4eabf6bb89
Diffstat (limited to 'src/libstore/platform.cc')
-rw-r--r-- | src/libstore/platform.cc | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/src/libstore/platform.cc b/src/libstore/platform.cc index acdedab99..d10d33f0e 100644 --- a/src/libstore/platform.cc +++ b/src/libstore/platform.cc @@ -1,4 +1,5 @@ #include "local-store.hh" +#include "build/local-derivation-goal.hh" #if __linux__ #include "platform/linux.hh" @@ -19,4 +20,43 @@ std::shared_ptr<LocalStore> LocalStore::makeLocalStore(const Params & params) return std::shared_ptr<LocalStore>(new FallbackLocalStore(params)); #endif } + +std::shared_ptr<LocalDerivationGoal> LocalDerivationGoal::makeLocalDerivationGoal( + const StorePath & drvPath, + const OutputsSpec & wantedOutputs, + Worker & worker, + BuildMode buildMode +) +{ +#if __linux__ + return std::make_shared<LinuxLocalDerivationGoal>(drvPath, wantedOutputs, worker, buildMode); +#elif __APPLE__ + return std::make_shared<DarwinLocalDerivationGoal>(drvPath, wantedOutputs, worker, buildMode); +#else + return std::make_shared<FallbackLocalDerivationGoal>(drvPath, wantedOutputs, worker, buildMode); +#endif +} + +std::shared_ptr<LocalDerivationGoal> LocalDerivationGoal::makeLocalDerivationGoal( + const StorePath & drvPath, + const BasicDerivation & drv, + const OutputsSpec & wantedOutputs, + Worker & worker, + BuildMode buildMode +) +{ +#if __linux__ + return std::make_shared<LinuxLocalDerivationGoal>( + drvPath, drv, wantedOutputs, worker, buildMode + ); +#elif __APPLE__ + return std::make_shared<DarwinLocalDerivationGoal>( + drvPath, drv, wantedOutputs, worker, buildMode + ); +#else + return std::make_shared<FallbackLocalDerivationGoal>( + drvPath, drv, wantedOutputs, worker, buildMode + ); +#endif +} } |