Skip to content

Commit

Permalink
Merge pull request opencv#17048 from anton-potapov:ap/variant_get_if
Browse files Browse the repository at this point in the history
  • Loading branch information
alalek committed Apr 14, 2020
2 parents ca9756f + dd2c7c5 commit 8ff0399
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 8 deletions.
40 changes: 32 additions & 8 deletions modules/gapi/include/opencv2/gapi/util/variant.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,9 @@ namespace util
protected:
template<typename T, typename... Us> friend T& get(variant<Us...> &v);
template<typename T, typename... Us> friend const T& get(const variant<Us...> &v);
template<typename T, typename... Us> friend T* get_if(variant<Us...> *v) noexcept;
template<typename T, typename... Us> friend const T* get_if(const variant<Us...> *v) noexcept;

template<typename... Us> friend bool operator==(const variant<Us...> &lhs,
const variant<Us...> &rhs);
Memory memory;
Expand Down Expand Up @@ -201,6 +204,11 @@ namespace util
};

// FIMXE: visit
template<typename T, typename... Types>
T* get_if(util::variant<Types...>* v) noexcept;

template<typename T, typename... Types>
const T* get_if(const util::variant<Types...>* v) noexcept;

template<typename T, typename... Types>
T& get(util::variant<Types...> &v);
Expand Down Expand Up @@ -335,27 +343,43 @@ namespace util
}

template<typename T, typename... Types>
T& get(util::variant<Types...> &v)
T* get_if(util::variant<Types...>* v) noexcept
{
const constexpr std::size_t t_index =
util::type_list_index<T, Types...>::value;

if (v.index() == t_index)
return *(T*)(&v.memory); // workaround for ICC 2019
if (v && v->index() == t_index)
return (T*)(&v->memory); // workaround for ICC 2019
// original code: return reinterpret_cast<T&>(v.memory);
else
throw_error(bad_variant_access());
return nullptr;
}

template<typename T, typename... Types>
const T& get(const util::variant<Types...> &v)
const T* get_if(const util::variant<Types...>* v) noexcept
{
const constexpr std::size_t t_index =
util::type_list_index<T, Types...>::value;

if (v.index() == t_index)
return *(const T*)(&v.memory); // workaround for ICC 2019
if (v && v->index() == t_index)
return (const T*)(&v->memory); // workaround for ICC 2019
// original code: return reinterpret_cast<const T&>(v.memory);
return nullptr;
}

template<typename T, typename... Types>
T& get(util::variant<Types...> &v)
{
if (auto* p = get_if<T>(&v))
return *p;
else
throw_error(bad_variant_access());
}

template<typename T, typename... Types>
const T& get(const util::variant<Types...> &v)
{
if (auto* p = get_if<T>(&v))
return *p;
else
throw_error(bad_variant_access());
}
Expand Down
16 changes: 16 additions & 0 deletions modules/gapi/test/util/variant_tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -289,6 +289,22 @@ TEST(Variant, Swap_DiffIndex)
EXPECT_EQ(3.14f, util::get<float>(tv1));
}

TEST(Variant, GetIf)
{
const TestVar cv(42);

// Test const& get_if()
EXPECT_EQ(nullptr, util::get_if<std::string>(&cv));
ASSERT_NE(nullptr, util::get_if<int>(&cv));
EXPECT_EQ(42, *util::get_if<int>(&cv));

// Test &get_if
TestVar cv2(std::string("42"));
EXPECT_EQ(nullptr, util::get_if<int>(&cv2));
ASSERT_NE(nullptr, util::get_if<std::string>(&cv2));
EXPECT_EQ("42", *util::get_if<std::string>(&cv2));
}

TEST(Variant, Get)
{
const TestVar cv(42);
Expand Down

0 comments on commit 8ff0399

Please sign in to comment.