mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 19:47:44 +00:00
AK: Add a Variant<Ts...> implementation
Also adds an AK::Empty struct, because 'empty' variants are useful, but this implementation leaves that to the user (i.e. a variant cannot actually be empty, but it can contain an instance of Empty - i.e. a byte). Note that this is more of a constrained Any type, but they basically do the same things anyway :^)
This commit is contained in:
parent
ab03c6fadf
commit
a51113c58e
3 changed files with 397 additions and 0 deletions
112
AK/Tests/TestVariant.cpp
Normal file
112
AK/Tests/TestVariant.cpp
Normal file
|
@ -0,0 +1,112 @@
|
|||
/*
|
||||
* Copyright (c) 2021, Ali Mohammad Pur <mpfard@serenity.org>
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
#include <LibTest/TestSuite.h>
|
||||
|
||||
#include <AK/Variant.h>
|
||||
|
||||
TEST_CASE(basic)
|
||||
{
|
||||
Variant<int, String> the_value { 42 };
|
||||
EXPECT(the_value.has<int>());
|
||||
EXPECT_EQ(the_value.get<int>(), 42);
|
||||
the_value = String("42");
|
||||
EXPECT(the_value.has<String>());
|
||||
EXPECT_EQ(the_value.get<String>(), "42");
|
||||
}
|
||||
|
||||
TEST_CASE(visit)
|
||||
{
|
||||
bool correct = false;
|
||||
Variant<int, String, float> the_value { 42.0f };
|
||||
the_value.visit(
|
||||
[&](const int&) { correct = false; },
|
||||
[&](const String&) { correct = false; },
|
||||
[&](const float&) { correct = true; });
|
||||
EXPECT(correct);
|
||||
}
|
||||
|
||||
TEST_CASE(destructor)
|
||||
{
|
||||
struct DestructionChecker {
|
||||
explicit DestructionChecker(bool& was_destroyed)
|
||||
: m_was_destroyed(was_destroyed)
|
||||
{
|
||||
}
|
||||
|
||||
~DestructionChecker()
|
||||
{
|
||||
m_was_destroyed = true;
|
||||
}
|
||||
bool& m_was_destroyed;
|
||||
};
|
||||
|
||||
bool was_destroyed = false;
|
||||
{
|
||||
Variant<DestructionChecker> test_variant { DestructionChecker { was_destroyed } };
|
||||
}
|
||||
EXPECT(was_destroyed);
|
||||
}
|
||||
|
||||
TEST_CASE(move_moves)
|
||||
{
|
||||
struct NoCopy {
|
||||
AK_MAKE_NONCOPYABLE(NoCopy);
|
||||
|
||||
public:
|
||||
NoCopy() = default;
|
||||
NoCopy(NoCopy&&) = default;
|
||||
};
|
||||
|
||||
Variant<NoCopy, int> first_variant { 42 };
|
||||
// Should not fail to compile
|
||||
first_variant = NoCopy {};
|
||||
|
||||
Variant<NoCopy, int> second_variant = move(first_variant);
|
||||
EXPECT(second_variant.has<NoCopy>());
|
||||
}
|
||||
|
||||
TEST_CASE(downcast)
|
||||
{
|
||||
Variant<i8, i16, i32, i64> one_integer_to_rule_them_all { static_cast<i32>(42) };
|
||||
auto fake_integer = one_integer_to_rule_them_all.downcast<i8, i32>();
|
||||
EXPECT(fake_integer.has<i32>());
|
||||
EXPECT(one_integer_to_rule_them_all.has<i32>());
|
||||
EXPECT_EQ(fake_integer.get<i32>(), 42);
|
||||
EXPECT_EQ(one_integer_to_rule_them_all.get<i32>(), 42);
|
||||
|
||||
fake_integer = static_cast<i8>(60);
|
||||
one_integer_to_rule_them_all = fake_integer.downcast<i8, i16>().downcast<i8, i32, float>().downcast<i8, i16, i32, i64>();
|
||||
EXPECT(fake_integer.has<i8>());
|
||||
EXPECT(one_integer_to_rule_them_all.has<i8>());
|
||||
EXPECT_EQ(fake_integer.get<i8>(), 60);
|
||||
EXPECT_EQ(one_integer_to_rule_them_all.get<i8>(), 60);
|
||||
}
|
||||
|
||||
TEST_CASE(moved_from_state)
|
||||
{
|
||||
// Note: This test requires that Vector's moved-from state be consistent
|
||||
// it need not be in a specific state (though as it is currently implemented,
|
||||
// a moved-from vector is the same as a newly-created vector)
|
||||
// This test does not make assumptions about the state itself, but rather that
|
||||
// it remains consistent when done on different instances.
|
||||
// Should this assumption be broken, we should probably switch to defining a local
|
||||
// class that has fixed semantics, but I doubt the moved-from state of Vector will
|
||||
// change any time soon :P
|
||||
Vector<i32> bunch_of_values { 1, 2, 3, 4, 5, 6, 7, 8 };
|
||||
Variant<Vector<i32>, Empty> optionally_a_bunch_of_values { Vector<i32> { 1, 2, 3, 4, 5, 6, 7, 8 } };
|
||||
|
||||
{
|
||||
[[maybe_unused]] auto devnull_0 = move(bunch_of_values);
|
||||
[[maybe_unused]] auto devnull_1 = move(optionally_a_bunch_of_values);
|
||||
}
|
||||
|
||||
// The moved-from state should be the same in both cases, and the variant should still contain a moved-from vector.
|
||||
// Note: Use after move is intentional.
|
||||
EXPECT(optionally_a_bunch_of_values.has<Vector<i32>>());
|
||||
auto same_contents = __builtin_memcmp(&bunch_of_values, &optionally_a_bunch_of_values.get<Vector<i32>>(), sizeof(bunch_of_values)) == 0;
|
||||
EXPECT(same_contents);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue