clangd broke because it can't look through symlinks. compile_commands manipulation does not fix it, clangd configuration does not fix it, a vfs overlay does not fix it, and while a combination of those can fix it with a bind mount in place that's just too cursed to even consider clangd bug: https://github.com/llvm/llvm-project/issues/116877 Change-Id: I8e3e8489548eb3a7aa65ac9d12a5ec8abf814aec
101 lines
2.5 KiB
C++
101 lines
2.5 KiB
C++
#pragma once
|
|
///@file
|
|
#include "lix/libstore/derived-path.hh"
|
|
#include "lix/libstore/realisation.hh"
|
|
|
|
namespace nix {
|
|
|
|
struct SingleBuiltPath;
|
|
|
|
struct SingleBuiltPathBuilt {
|
|
ref<SingleBuiltPath> drvPath;
|
|
std::pair<std::string, StorePath> output;
|
|
|
|
SingleDerivedPathBuilt discardOutputPath() const;
|
|
|
|
std::string to_string(const Store & store) const;
|
|
static SingleBuiltPathBuilt parse(const Store & store, std::string_view, std::string_view);
|
|
nlohmann::json toJSON(const Store & store) const;
|
|
|
|
DECLARE_CMP(SingleBuiltPathBuilt);
|
|
};
|
|
|
|
namespace built_path::detail {
|
|
using SingleBuiltPathRaw = std::variant<
|
|
DerivedPathOpaque,
|
|
SingleBuiltPathBuilt
|
|
>;
|
|
}
|
|
|
|
struct SingleBuiltPath : built_path::detail::SingleBuiltPathRaw {
|
|
using Raw = built_path::detail::SingleBuiltPathRaw;
|
|
using Raw::Raw;
|
|
|
|
using Opaque = DerivedPathOpaque;
|
|
using Built = SingleBuiltPathBuilt;
|
|
|
|
inline const Raw & raw() const {
|
|
return static_cast<const Raw &>(*this);
|
|
}
|
|
|
|
StorePath outPath() const;
|
|
|
|
SingleDerivedPath discardOutputPath() const;
|
|
|
|
static SingleBuiltPath parse(const Store & store, std::string_view);
|
|
nlohmann::json toJSON(const Store & store) const;
|
|
};
|
|
|
|
static inline ref<SingleBuiltPath> staticDrv(StorePath drvPath)
|
|
{
|
|
return make_ref<SingleBuiltPath>(SingleBuiltPath::Opaque { drvPath });
|
|
}
|
|
|
|
/**
|
|
* A built derived path with hints in the form of optional concrete output paths.
|
|
*
|
|
* See 'BuiltPath' for more an explanation.
|
|
*/
|
|
struct BuiltPathBuilt {
|
|
ref<SingleBuiltPath> drvPath;
|
|
std::map<std::string, StorePath> outputs;
|
|
|
|
std::string to_string(const Store & store) const;
|
|
static BuiltPathBuilt parse(const Store & store, std::string_view, std::string_view);
|
|
nlohmann::json toJSON(const Store & store) const;
|
|
|
|
DECLARE_CMP(BuiltPathBuilt);
|
|
};
|
|
|
|
namespace built_path::detail {
|
|
using BuiltPathRaw = std::variant<
|
|
DerivedPath::Opaque,
|
|
BuiltPathBuilt
|
|
>;
|
|
}
|
|
|
|
/**
|
|
* A built path. Similar to a DerivedPath, but enriched with the corresponding
|
|
* output path(s).
|
|
*/
|
|
struct BuiltPath : built_path::detail::BuiltPathRaw {
|
|
using Raw = built_path::detail::BuiltPathRaw;
|
|
using Raw::Raw;
|
|
|
|
using Opaque = DerivedPathOpaque;
|
|
using Built = BuiltPathBuilt;
|
|
|
|
inline const Raw & raw() const {
|
|
return static_cast<const Raw &>(*this);
|
|
}
|
|
|
|
StorePathSet outPaths() const;
|
|
RealisedPath::Set toRealisedPaths(Store & store) const;
|
|
|
|
nlohmann::json toJSON(const Store & store) const;
|
|
};
|
|
|
|
typedef std::vector<BuiltPath> BuiltPaths;
|
|
|
|
}
|