mirror of
https://github.com/NixOS/nix.git
synced 2025-02-16 17:02:28 +00:00
Add isInitialized to nix::Value
Add a method to check if a value has been initialized. This helps avoid segfaults when calling `type()`. Useful in the context of the new C API. Closes #10524
This commit is contained in:
parent
6fd2f42c2d
commit
5cc4af5231
@ -23,6 +23,7 @@ class BindingsBuilder;
|
|||||||
|
|
||||||
|
|
||||||
typedef enum {
|
typedef enum {
|
||||||
|
tUnset,
|
||||||
tInt = 1,
|
tInt = 1,
|
||||||
tBool,
|
tBool,
|
||||||
tString,
|
tString,
|
||||||
@ -166,7 +167,7 @@ public:
|
|||||||
struct Value
|
struct Value
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
InternalType internalType;
|
InternalType internalType = tUnset;
|
||||||
|
|
||||||
friend std::string showType(const Value & v);
|
friend std::string showType(const Value & v);
|
||||||
|
|
||||||
@ -270,6 +271,7 @@ public:
|
|||||||
inline ValueType type(bool invalidIsThunk = false) const
|
inline ValueType type(bool invalidIsThunk = false) const
|
||||||
{
|
{
|
||||||
switch (internalType) {
|
switch (internalType) {
|
||||||
|
case tUnset: break;
|
||||||
case tInt: return nInt;
|
case tInt: return nInt;
|
||||||
case tBool: return nBool;
|
case tBool: return nBool;
|
||||||
case tString: return nString;
|
case tString: return nString;
|
||||||
@ -294,6 +296,11 @@ public:
|
|||||||
internalType = newType;
|
internalType = newType;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
inline bool isInitialized()
|
||||||
|
{
|
||||||
|
return internalType != tUnset;
|
||||||
|
}
|
||||||
|
|
||||||
inline void mkInt(NixInt n)
|
inline void mkInt(NixInt n)
|
||||||
{
|
{
|
||||||
finishValue(tInt, { .integer = n });
|
finishValue(tInt, { .integer = n });
|
||||||
|
25
tests/unit/libexpr/value/value.cc
Normal file
25
tests/unit/libexpr/value/value.cc
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
#include "value.hh"
|
||||||
|
|
||||||
|
#include "tests/libstore.hh"
|
||||||
|
|
||||||
|
namespace nix {
|
||||||
|
|
||||||
|
class ValueTest : public LibStoreTest
|
||||||
|
{};
|
||||||
|
|
||||||
|
TEST_F(ValueTest, unsetValue)
|
||||||
|
{
|
||||||
|
Value unsetValue;
|
||||||
|
ASSERT_EQ(false, unsetValue.isInitialized());
|
||||||
|
ASSERT_EQ(nThunk, unsetValue.type(true));
|
||||||
|
ASSERT_DEATH(unsetValue.type(), "");
|
||||||
|
}
|
||||||
|
|
||||||
|
TEST_F(ValueTest, vInt)
|
||||||
|
{
|
||||||
|
Value vInt;
|
||||||
|
vInt.mkInt(42);
|
||||||
|
ASSERT_EQ(true, vInt.isInitialized());
|
||||||
|
}
|
||||||
|
|
||||||
|
} // namespace nix
|
Loading…
Reference in New Issue
Block a user