forked from lix-project/lix
Merge pull request #7597 from tweag/move-implem-bit-to-implem-file
Move the `getBuildLog` implementation to its own implementation file
This commit is contained in:
commit
fec527bba1
12
src/libstore/log-store.cc
Normal file
12
src/libstore/log-store.cc
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
#include "log-store.hh"
|
||||||
|
|
||||||
|
namespace nix {
|
||||||
|
|
||||||
|
std::optional<std::string> LogStore::getBuildLog(const StorePath & path) {
|
||||||
|
auto maybePath = getBuildDerivationPath(path);
|
||||||
|
if (!maybePath)
|
||||||
|
return std::nullopt;
|
||||||
|
return getBuildLogExact(maybePath.value());
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -11,12 +11,7 @@ struct LogStore : public virtual Store
|
||||||
|
|
||||||
/* Return the build log of the specified store path, if available,
|
/* Return the build log of the specified store path, if available,
|
||||||
or null otherwise. */
|
or null otherwise. */
|
||||||
std::optional<std::string> getBuildLog(const StorePath & path) {
|
std::optional<std::string> getBuildLog(const StorePath & path);
|
||||||
auto maybePath = getBuildDerivationPath(path);
|
|
||||||
if (!maybePath)
|
|
||||||
return std::nullopt;
|
|
||||||
return getBuildLogExact(maybePath.value());
|
|
||||||
}
|
|
||||||
|
|
||||||
virtual std::optional<std::string> getBuildLogExact(const StorePath & path) = 0;
|
virtual std::optional<std::string> getBuildLogExact(const StorePath & path) = 0;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue