mirror of
https://github.com/ETLCPP/etl.git
synced 2026-04-30 19:09:10 +08:00
* Remove AppVeyor build status badge Removed AppVeyor build status badge from README. * Update README.md * Update CONTRIBUTING.md Updated the instructions for contributing. * Added etl::type_list to etl::observer * Added etl::type_list to etl::nth_type * Added missing 'typename' to type_list nth_type * Fix for issue 1276 "Data corruption in the etl::bip_buffer_spsc_atomic" (#1277) * Reproduce data corruption bug in the `etl::bip_buffer_spsc_atomic`. * Fix data corruption bug in the `etl::bip_buffer_spsc_atomic`. * Added type_list definitions for nth_type and observer * Added etl::type_list to etl::variant * Updated comments * Addedetl::type~_list to message_router, observer, visitor # Conflicts: # include/etl/observer.h # test/vs2022/etl.vcxproj.filters * Added member type_list type to tuple * Work in progress * Copy changes from other source * Removed unused tests * Fix iter_swap namespace * Add type_list functionality to etl::variant using etl::variant_from_type_list * Add type_list functionality to etl::message_packet using etl::message_packet_from_type_list * Add type_list functionality to etl::message_router using etl::message_router_from_type_list * Add type_list functionality to etl::observer using etl::observer_from_type_list * Add type_list functionality to etl::tuple using etl::tuple_from_type_list * Allow etl::make_index_sequence to be created from an etl::type_list * Add type_list functionality to etl::visitor using etl::visitor_from_type_list * Fix iter_swap namespace * Allow creation of a message_packet with no message types * Allow creation of a message_router with no message types * Updated VS2022 project files * Added missing test files CMakeLists.txt * Fix C++03 compatibility Fixed unused aregument warnings * Synced message_packet generator to updated code * Synced message_router generator to updated code * Synced message_router generator to updated code # Conflicts: # include/etl/generators/message_router_generator.h # include/etl/message_router.h * Fixed missing zero message specialisation for <= C++14 * Fixed missing zero message specialisation for <= C++14 * Fix year_month arithmetic and correct chrono API behavior (#1257) * Fix & add more tests for year_month arithmetic * Minor addtions to previous commit * More missing values to be uninitialized * Update the default constructors to = default and correct default constructor tests accordingly * Fix & add more tests for year_month arithmetic * Minor addtions to previous commit * More missing values to be uninitialized * Update the default constructors to = default and correct default constructor tests accordingly * Restore default constructor behavior for chrono calender * Suppress warnings from std in optimized builds (#1259) When testing with ./run-tests.sh 23 3 10, some warnings from std surfaced which resulted in build errors. * Add template deduction guide for span from vector (#1264) * Create span from vector deduction * Use ivector for deduction. Add vector_ext to test * Add vector pointer to test * Finish tests * Initialize pdata_ext and others * Document how to implement platform specifics (#1262) Some interfaces need to be implemented in every project or platform using the ETL: * etl_get_high_resolution_clock * etl_get_system_clock * etl_get_steady_clock * etl_putchar Co-authored-by: John Wellbelove <jwellbelove@users.noreply.github.com> * Fix etl::as_bytes for etl::span<const T> (#1266) A missing 'const' in the etl::as_bytes implementation was causing a compile-time error when etl::as_bytes was called on a span of const values. Co-authored-by: John Wellbelove <jwellbelove@users.noreply.github.com> * Remove some UB in test_vector_non_trivial.cpp (#1268) Some of the tests' UB are detectable by Gcc15 and thus give a compile error due to warnings-as-error flag. Co-authored-by: John Wellbelove <jwellbelove@users.noreply.github.com> * Update C++26 deprecated constructs to ensure future standard compliance (#1267) * Update C++26 deprecated constructs to ensure future standard compliance I replaced std::is_trivial with a combination of std::is_trivially_default_constructible and std::is_trivially_copyable. Additionally, I added the required comma before the ellipsis in variadic functions to match updated language specifications. * Some additional is_trivial related changes not found directly when compiling tests in C++26 --------- Co-authored-by: John Wellbelove <jwellbelove@users.noreply.github.com> * Fix return value of get_token_list (#1271) Co-authored-by: John Wellbelove <jwellbelove@users.noreply.github.com> * Fix etl::tuple template signature error in pair assignment operator (#1265) * Fix etl::tuple template signature error in pair assignment operator * Remove AppVeyor build status badge Removed AppVeyor build status badge from README. * Update README.md * Update etl::tuple to explicitly use etl::pair or std::pair in assignment operator * Added tests for etl::tuple assignment from pair --------- Co-authored-by: Bryton Flecker <bflecker@swe.com> Co-authored-by: John Wellbelove <jwellbelove@users.noreply.github.com> * Remove advance() on static spans (#1281) * Remove AppVeyor build status badge Removed AppVeyor build status badge from README. * Update README.md * Update CONTRIBUTING.md Updated the instructions for contributing. * Fix for issue 1276 "Data corruption in the etl::bip_buffer_spsc_atomic" (#1277) * Reproduce data corruption bug in the `etl::bip_buffer_spsc_atomic`. * Fix data corruption bug in the `etl::bip_buffer_spsc_atomic`. * Remove advance() on static spans Since the size of a static span is constant, we can't reasonably advance() on it. --------- Co-authored-by: John Wellbelove <jwellbelove@users.noreply.github.com> Co-authored-by: Sergei <sergej.shirokov@gmail.com> * Add missing includes (#1286) * Remove AppVeyor build status badge Removed AppVeyor build status badge from README. * Update README.md * Update CONTRIBUTING.md Updated the instructions for contributing. * Fix for issue 1276 "Data corruption in the etl::bip_buffer_spsc_atomic" (#1277) * Reproduce data corruption bug in the `etl::bip_buffer_spsc_atomic`. * Fix data corruption bug in the `etl::bip_buffer_spsc_atomic`. * Add missing includes Before this change, the includes needed to be done explicitly by files using basic_string_stream.h, and be included first. This was error prone, especially if includes are reordered (e.g. via the currently defined clang-format rules). --------- Co-authored-by: John Wellbelove <jwellbelove@users.noreply.github.com> Co-authored-by: Sergei <sergej.shirokov@gmail.com> * Move comparison operators of etl::expected to namespace etl (#1287) * Remove AppVeyor build status badge Removed AppVeyor build status badge from README. * Update README.md * Update CONTRIBUTING.md Updated the instructions for contributing. * Fix for issue 1276 "Data corruption in the etl::bip_buffer_spsc_atomic" (#1277) * Reproduce data corruption bug in the `etl::bip_buffer_spsc_atomic`. * Fix data corruption bug in the `etl::bip_buffer_spsc_atomic`. * Move comparison operators of etl::expected to namespace etl --------- Co-authored-by: John Wellbelove <jwellbelove@users.noreply.github.com> Co-authored-by: Sergei <sergej.shirokov@gmail.com> * Make typed_storage constructor constexpr (#1291) * Remove AppVeyor build status badge Removed AppVeyor build status badge from README. * Update README.md * Update CONTRIBUTING.md Updated the instructions for contributing. * Fix for issue 1276 "Data corruption in the etl::bip_buffer_spsc_atomic" (#1277) * Reproduce data corruption bug in the `etl::bip_buffer_spsc_atomic`. * Fix data corruption bug in the `etl::bip_buffer_spsc_atomic`. * Make typed_storage constructor constexpr --------- Co-authored-by: John Wellbelove <jwellbelove@users.noreply.github.com> Co-authored-by: Sergei <sergej.shirokov@gmail.com> * Add basic_format_arg constructor for ibasic_string (#1288) * Allow string as format arg * Remove AppVeyor build status badge Removed AppVeyor build status badge from README. * Update README.md * Update CONTRIBUTING.md Updated the instructions for contributing. * Fix for issue 1276 "Data corruption in the etl::bip_buffer_spsc_atomic" (#1277) * Reproduce data corruption bug in the `etl::bip_buffer_spsc_atomic`. * Fix data corruption bug in the `etl::bip_buffer_spsc_atomic`. * Added test string escaped * Add temporary string test --------- Co-authored-by: John Wellbelove <jwellbelove@users.noreply.github.com> Co-authored-by: Sergei <sergej.shirokov@gmail.com> * QR Code for Github * Added etl::visitor_from_type_list * accepts(id) for empty router passes on to a sucessor * Fixed incorrect comment from 'tuple' to 'message_router' * PR review changes * PR review changes * Fixed internal constexptr flag in message_packet * Fixed unused variable in unti test --------- Co-authored-by: John Wellbelove <john.wellbelove@etlcpp.co.uk> Co-authored-by: Sergei <sergej.shirokov@gmail.com> Co-authored-by: John Wellbelove <john.wellbelove@etlcpp.com> Co-authored-by: Bo Rydberg <2945606+bolry@users.noreply.github.com> Co-authored-by: Roland Reichwein <Roland.Reichwein@bmw.de> Co-authored-by: Mike Bloom <91038685+mike919192@users.noreply.github.com> Co-authored-by: taltenbach <92919739+taltenbach@users.noreply.github.com> Co-authored-by: Bryton Flecker <fleckerbr@gmail.com> Co-authored-by: Bryton Flecker <bflecker@swe.com>
778 lines
26 KiB
C++
778 lines
26 KiB
C++
/******************************************************************************
|
|
The MIT License(MIT)
|
|
|
|
Embedded Template Library.
|
|
https://github.com/ETLCPP/etl
|
|
https://www.etlcpp.com
|
|
|
|
Copyright(c) 2014 John Wellbelove
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
of this software and associated documentation files(the "Software"), to deal
|
|
in the Software without restriction, including without limitation the rights
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and / or sell
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
furnished to do so, subject to the following conditions :
|
|
|
|
The above copyright notice and this permission notice shall be included in all
|
|
copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.IN NO EVENT SHALL THE
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
SOFTWARE.
|
|
******************************************************************************/
|
|
|
|
#include "unit_test_framework.h"
|
|
|
|
#include "etl/visitor.h"
|
|
|
|
//*****************************************************************************
|
|
// Pre-declare the data types.
|
|
//*****************************************************************************
|
|
class Square;
|
|
class Circle;
|
|
class Triangle;
|
|
|
|
//*****************************************************************************
|
|
// What classes do you want the visitors to handle?
|
|
// Square will be passed by reference.
|
|
// Circle will be passed by reference.
|
|
// Triangle will be passed by const reference.
|
|
//*****************************************************************************
|
|
typedef etl::visitor<Square&, Circle&, const Triangle&> DrawVisitorType;
|
|
|
|
//*****************************************************************************
|
|
// What classes do you want the visitors to handle?
|
|
// Square will be passed by reference.
|
|
// Triangle will be passed by const reference.
|
|
//*****************************************************************************
|
|
typedef etl::visitor<Square&, const Triangle&> LogVisitorType;
|
|
|
|
//*****************************************************************************
|
|
// Base shape.
|
|
//*****************************************************************************
|
|
class ShapeBase : public etl::visitable<DrawVisitorType, LogVisitorType>
|
|
{
|
|
};
|
|
|
|
//*****************************************************************************
|
|
// Square accepts draw & log visitors.
|
|
//*****************************************************************************
|
|
class Square : public ShapeBase
|
|
{
|
|
public:
|
|
|
|
void accept(DrawVisitorType& visitor)
|
|
{
|
|
visitor.visit(*this);
|
|
}
|
|
|
|
void accept(LogVisitorType& visitor)
|
|
{
|
|
visitor.visit(*this);
|
|
}
|
|
};
|
|
|
|
//*****************************************************************************
|
|
// Circle only accepts draw visitors.
|
|
//*****************************************************************************
|
|
class Circle : public ShapeBase
|
|
{
|
|
public:
|
|
|
|
void accept(DrawVisitorType& visitor)
|
|
{
|
|
visitor.visit(*this);
|
|
}
|
|
|
|
void accept(LogVisitorType&)
|
|
{
|
|
}
|
|
};
|
|
|
|
//*****************************************************************************
|
|
// Triangle accepts draw & log visitors.
|
|
//*****************************************************************************
|
|
class Triangle : public ShapeBase
|
|
{
|
|
public:
|
|
|
|
void accept(DrawVisitorType& visitor)
|
|
{
|
|
visitor.visit(*this);
|
|
}
|
|
|
|
void accept(LogVisitorType& visitor)
|
|
{
|
|
visitor.visit(*this);
|
|
}
|
|
};
|
|
|
|
|
|
//*****************************************************************************
|
|
// Generic other shapes.
|
|
//*****************************************************************************
|
|
template <const int ID, typename TVisitor>
|
|
class Shape : public etl::visitable<TVisitor>
|
|
{
|
|
public:
|
|
|
|
void accept(TVisitor& visitor)
|
|
{
|
|
visitor.visit(*this);
|
|
}
|
|
};
|
|
|
|
//*****************************************************************************
|
|
class DrawVisitor : public DrawVisitorType
|
|
{
|
|
public:
|
|
|
|
DrawVisitor()
|
|
: square_called(false),
|
|
circle_called(false),
|
|
triangle_called(false)
|
|
{
|
|
}
|
|
|
|
void visit(Square&)
|
|
{
|
|
square_called = true;
|
|
}
|
|
|
|
void visit(Circle&)
|
|
{
|
|
circle_called = true;
|
|
}
|
|
|
|
void visit(const Triangle&)
|
|
{
|
|
triangle_called = true;
|
|
}
|
|
|
|
bool square_called;
|
|
bool circle_called;
|
|
bool triangle_called;
|
|
};
|
|
|
|
//*****************************************************************************
|
|
class LogVisitor : public LogVisitorType
|
|
{
|
|
public:
|
|
|
|
LogVisitor()
|
|
: square_called(false),
|
|
circle_called(false),
|
|
triangle_called(false)
|
|
{
|
|
}
|
|
|
|
void visit(Square&)
|
|
{
|
|
square_called = true;
|
|
}
|
|
|
|
// SHOULD NEVER BE CALLED.
|
|
void visit(Circle&)
|
|
{
|
|
circle_called = true;
|
|
}
|
|
|
|
void visit(const Triangle&)
|
|
{
|
|
triangle_called = true;
|
|
}
|
|
|
|
bool square_called;
|
|
bool circle_called;
|
|
bool triangle_called;
|
|
};
|
|
|
|
namespace
|
|
{
|
|
SUITE(test_visitor)
|
|
{
|
|
//*************************************************************************
|
|
TEST(test_two_visitors_three_visitables)
|
|
{
|
|
DrawVisitor draw_visitor;
|
|
LogVisitor log_visitor;
|
|
|
|
Square square;
|
|
Circle circle;
|
|
Triangle triangle;
|
|
|
|
ShapeBase* pShapeBase;
|
|
|
|
CHECK_EQUAL(false, draw_visitor.square_called);
|
|
CHECK_EQUAL(false, draw_visitor.circle_called);
|
|
CHECK_EQUAL(false, draw_visitor.triangle_called);
|
|
CHECK_EQUAL(false, log_visitor.square_called);
|
|
CHECK_EQUAL(false, log_visitor.circle_called);
|
|
CHECK_EQUAL(false, log_visitor.triangle_called);
|
|
|
|
square.accept(draw_visitor);
|
|
square.accept(log_visitor);
|
|
|
|
CHECK_EQUAL(true, draw_visitor.square_called);
|
|
CHECK_EQUAL(false, draw_visitor.circle_called);
|
|
CHECK_EQUAL(false, draw_visitor.triangle_called);
|
|
CHECK_EQUAL(true, log_visitor.square_called);
|
|
CHECK_EQUAL(false, log_visitor.circle_called);
|
|
CHECK_EQUAL(false, log_visitor.triangle_called);
|
|
|
|
circle.accept(draw_visitor);
|
|
|
|
CHECK_EQUAL(true, draw_visitor.square_called);
|
|
CHECK_EQUAL(true, draw_visitor.circle_called);
|
|
CHECK_EQUAL(false, draw_visitor.triangle_called);
|
|
CHECK_EQUAL(true, log_visitor.square_called);
|
|
CHECK_EQUAL(false, log_visitor.circle_called);
|
|
CHECK_EQUAL(false, log_visitor.triangle_called);
|
|
|
|
pShapeBase = ▵
|
|
pShapeBase->accept(draw_visitor);
|
|
pShapeBase->accept(log_visitor);
|
|
|
|
CHECK_EQUAL(true, draw_visitor.square_called);
|
|
CHECK_EQUAL(true, draw_visitor.circle_called);
|
|
CHECK_EQUAL(true, draw_visitor.triangle_called);
|
|
CHECK_EQUAL(true, log_visitor.square_called);
|
|
CHECK_EQUAL(false, log_visitor.circle_called);
|
|
CHECK_EQUAL(true, log_visitor.triangle_called);
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_1_visitor)
|
|
{
|
|
class AShape;
|
|
class ShapeVisitor1 : public etl::visitor<AShape&>
|
|
{
|
|
void visit(AShape&) {}
|
|
};
|
|
|
|
class AShape : public etl::visitable<ShapeVisitor1>
|
|
{
|
|
public:
|
|
|
|
void accept(ShapeVisitor1&) {}
|
|
};
|
|
|
|
// This test just needs to compile without errors.
|
|
CHECK(true);
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_2_visitor)
|
|
{
|
|
class AShape;
|
|
class ShapeVisitor1 : public etl::visitor<AShape&>
|
|
{
|
|
void visit(AShape&) {}
|
|
};
|
|
|
|
class ShapeVisitor2 : public etl::visitor<AShape&>
|
|
{
|
|
void visit(AShape&) {}
|
|
};
|
|
|
|
class AShape : public etl::visitable<ShapeVisitor1, ShapeVisitor2>
|
|
{
|
|
public:
|
|
|
|
void accept(ShapeVisitor1&) {}
|
|
void accept(ShapeVisitor2&) {}
|
|
};
|
|
|
|
// This test just needs to compile without errors.
|
|
CHECK(true);
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_3_visitor)
|
|
{
|
|
class AShape;
|
|
class ShapeVisitor1 : public etl::visitor<AShape&>
|
|
{
|
|
void visit(AShape&) {}
|
|
};
|
|
|
|
class ShapeVisitor2 : public etl::visitor<AShape&>
|
|
{
|
|
void visit(AShape&) {}
|
|
};
|
|
|
|
class ShapeVisitor3 : public etl::visitor<AShape&>
|
|
{
|
|
void visit(AShape&) {}
|
|
};
|
|
|
|
class AShape : public etl::visitable<ShapeVisitor1, ShapeVisitor2, ShapeVisitor3>
|
|
{
|
|
public:
|
|
|
|
void accept(ShapeVisitor1&) {}
|
|
void accept(ShapeVisitor2&) {}
|
|
void accept(ShapeVisitor3&) {}
|
|
};
|
|
|
|
// This test just needs to compile without errors.
|
|
CHECK(true);
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_4_visitor)
|
|
{
|
|
class AShape;
|
|
class ShapeVisitor1 : public etl::visitor<AShape&>
|
|
{
|
|
void visit(AShape&) {}
|
|
};
|
|
|
|
class ShapeVisitor2 : public etl::visitor<AShape&>
|
|
{
|
|
void visit(AShape&) {}
|
|
};
|
|
|
|
class ShapeVisitor3 : public etl::visitor<AShape&>
|
|
{
|
|
void visit(AShape&) {}
|
|
};
|
|
|
|
class ShapeVisitor4 : public etl::visitor<AShape&>
|
|
{
|
|
void visit(AShape&) {}
|
|
};
|
|
|
|
class AShape : public etl::visitable<ShapeVisitor1, ShapeVisitor2, ShapeVisitor3, ShapeVisitor4>
|
|
{
|
|
public:
|
|
|
|
void accept(ShapeVisitor1&) {}
|
|
void accept(ShapeVisitor2&) {}
|
|
void accept(ShapeVisitor3&) {}
|
|
void accept(ShapeVisitor4&) {}
|
|
};
|
|
|
|
// This test just needs to compile without errors.
|
|
CHECK(true);
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_1_visitable)
|
|
{
|
|
class ShapeVisitor : public etl::visitor <Shape<1, ShapeVisitor> >
|
|
{
|
|
public:
|
|
|
|
void visit(Shape<1, ShapeVisitor>) {}
|
|
};
|
|
|
|
// This test just needs to compile without errors.
|
|
CHECK(true);
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_2_visitable)
|
|
{
|
|
class ShapeVisitor : public etl::visitor <Shape<1, ShapeVisitor>, Shape<2, ShapeVisitor> >
|
|
{
|
|
public:
|
|
|
|
void visit(Shape<1, ShapeVisitor>) {}
|
|
void visit(Shape<2, ShapeVisitor>) {}
|
|
};
|
|
|
|
// This test just needs to compile without errors.
|
|
CHECK(true);
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_3_visitable)
|
|
{
|
|
class ShapeVisitor : public etl::visitor <Shape<1, ShapeVisitor>, Shape<2, ShapeVisitor>, Shape<3, ShapeVisitor> >
|
|
{
|
|
public:
|
|
|
|
void visit(Shape<1, ShapeVisitor>) {}
|
|
void visit(Shape<2, ShapeVisitor>) {}
|
|
void visit(Shape<3, ShapeVisitor>) {}
|
|
};
|
|
|
|
// This test just needs to compile without errors.
|
|
CHECK(true);
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_4_visitable)
|
|
{
|
|
class ShapeVisitor : public etl::visitor <Shape<1, ShapeVisitor>, Shape<2, ShapeVisitor>, Shape<3, ShapeVisitor>, Shape<4, ShapeVisitor> >
|
|
{
|
|
public:
|
|
|
|
void visit(Shape<1, ShapeVisitor>) {}
|
|
void visit(Shape<2, ShapeVisitor>) {}
|
|
void visit(Shape<3, ShapeVisitor>) {}
|
|
void visit(Shape<4, ShapeVisitor>) {}
|
|
};
|
|
|
|
// This test just needs to compile without errors.
|
|
CHECK(true);
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_5_visitable)
|
|
{
|
|
class ShapeVisitor : public etl::visitor <Shape<1, ShapeVisitor>, Shape<2, ShapeVisitor>, Shape<3, ShapeVisitor>, Shape<4, ShapeVisitor>,
|
|
Shape<5, ShapeVisitor> >
|
|
{
|
|
public:
|
|
|
|
void visit(Shape<1, ShapeVisitor>) {}
|
|
void visit(Shape<2, ShapeVisitor>) {}
|
|
void visit(Shape<3, ShapeVisitor>) {}
|
|
void visit(Shape<4, ShapeVisitor>) {}
|
|
void visit(Shape<5, ShapeVisitor>) {}
|
|
};
|
|
|
|
// This test just needs to compile without errors.
|
|
CHECK(true);
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_6_visitable)
|
|
{
|
|
class ShapeVisitor : public etl::visitor <Shape<1, ShapeVisitor>, Shape<2, ShapeVisitor>, Shape<3, ShapeVisitor>, Shape<4, ShapeVisitor>,
|
|
Shape<5, ShapeVisitor>, Shape<6, ShapeVisitor> >
|
|
{
|
|
public:
|
|
|
|
void visit(Shape<1, ShapeVisitor>) {}
|
|
void visit(Shape<2, ShapeVisitor>) {}
|
|
void visit(Shape<3, ShapeVisitor>) {}
|
|
void visit(Shape<4, ShapeVisitor>) {}
|
|
void visit(Shape<5, ShapeVisitor>) {}
|
|
void visit(Shape<6, ShapeVisitor>) {}
|
|
};
|
|
|
|
// This test just needs to compile without errors.
|
|
CHECK(true);
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_7_visitable)
|
|
{
|
|
class ShapeVisitor : public etl::visitor <Shape<1, ShapeVisitor>, Shape<2, ShapeVisitor>, Shape<3, ShapeVisitor>, Shape<4, ShapeVisitor>,
|
|
Shape<5, ShapeVisitor>, Shape<6, ShapeVisitor>, Shape<7, ShapeVisitor> >
|
|
{
|
|
public:
|
|
|
|
void visit(Shape<1, ShapeVisitor>) {}
|
|
void visit(Shape<2, ShapeVisitor>) {}
|
|
void visit(Shape<3, ShapeVisitor>) {}
|
|
void visit(Shape<4, ShapeVisitor>) {}
|
|
void visit(Shape<5, ShapeVisitor>) {}
|
|
void visit(Shape<6, ShapeVisitor>) {}
|
|
void visit(Shape<7, ShapeVisitor>) {}
|
|
};
|
|
|
|
// This test just needs to compile without errors.
|
|
CHECK(true);
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_8_visitable)
|
|
{
|
|
class ShapeVisitor : public etl::visitor <Shape<1, ShapeVisitor>, Shape<2, ShapeVisitor>, Shape<3, ShapeVisitor>, Shape<4, ShapeVisitor>,
|
|
Shape<5, ShapeVisitor>, Shape<6, ShapeVisitor>, Shape<7, ShapeVisitor>, Shape<8, ShapeVisitor> >
|
|
{
|
|
public:
|
|
|
|
void visit(Shape<1, ShapeVisitor>) {}
|
|
void visit(Shape<2, ShapeVisitor>) {}
|
|
void visit(Shape<3, ShapeVisitor>) {}
|
|
void visit(Shape<4, ShapeVisitor>) {}
|
|
void visit(Shape<5, ShapeVisitor>) {}
|
|
void visit(Shape<6, ShapeVisitor>) {}
|
|
void visit(Shape<7, ShapeVisitor>) {}
|
|
void visit(Shape<8, ShapeVisitor>) {}
|
|
};
|
|
|
|
// This test just needs to compile without errors.
|
|
CHECK(true);
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_9_visitable)
|
|
{
|
|
class ShapeVisitor : public etl::visitor <Shape<1, ShapeVisitor>, Shape<2, ShapeVisitor>, Shape<3, ShapeVisitor>, Shape<4, ShapeVisitor>,
|
|
Shape<5, ShapeVisitor>, Shape<6, ShapeVisitor>, Shape<7, ShapeVisitor>, Shape<8, ShapeVisitor>,
|
|
Shape<9, ShapeVisitor> >
|
|
{
|
|
public:
|
|
|
|
void visit(Shape<1, ShapeVisitor>) {}
|
|
void visit(Shape<2, ShapeVisitor>) {}
|
|
void visit(Shape<3, ShapeVisitor>) {}
|
|
void visit(Shape<4, ShapeVisitor>) {}
|
|
void visit(Shape<5, ShapeVisitor>) {}
|
|
void visit(Shape<6, ShapeVisitor>) {}
|
|
void visit(Shape<7, ShapeVisitor>) {}
|
|
void visit(Shape<8, ShapeVisitor>) {}
|
|
void visit(Shape<9, ShapeVisitor>) {}
|
|
};
|
|
|
|
// This test just needs to compile without errors.
|
|
CHECK(true);
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_10_visitable)
|
|
{
|
|
class ShapeVisitor : public etl::visitor <Shape<1, ShapeVisitor>, Shape<2, ShapeVisitor>, Shape<3, ShapeVisitor>, Shape<4, ShapeVisitor>,
|
|
Shape<5, ShapeVisitor>, Shape<6, ShapeVisitor>, Shape<7, ShapeVisitor>, Shape<8, ShapeVisitor>,
|
|
Shape<9, ShapeVisitor>, Shape<10, ShapeVisitor> >
|
|
{
|
|
public:
|
|
|
|
void visit(Shape<1, ShapeVisitor>) {}
|
|
void visit(Shape<2, ShapeVisitor>) {}
|
|
void visit(Shape<3, ShapeVisitor>) {}
|
|
void visit(Shape<4, ShapeVisitor>) {}
|
|
void visit(Shape<5, ShapeVisitor>) {}
|
|
void visit(Shape<6, ShapeVisitor>) {}
|
|
void visit(Shape<7, ShapeVisitor>) {}
|
|
void visit(Shape<8, ShapeVisitor>) {}
|
|
void visit(Shape<9, ShapeVisitor>) {}
|
|
void visit(Shape<10, ShapeVisitor>) {}
|
|
};
|
|
|
|
// This test just needs to compile without errors.
|
|
CHECK(true);
|
|
}
|
|
|
|
|
|
//*************************************************************************
|
|
TEST(test_11_visitable)
|
|
{
|
|
class ShapeVisitor : public etl::visitor <Shape<1, ShapeVisitor>, Shape<2, ShapeVisitor>, Shape<3, ShapeVisitor>, Shape<4, ShapeVisitor>,
|
|
Shape<5, ShapeVisitor>, Shape<6, ShapeVisitor>, Shape<7, ShapeVisitor>, Shape<8, ShapeVisitor>,
|
|
Shape<9, ShapeVisitor>, Shape<10, ShapeVisitor>, Shape<11, ShapeVisitor> >
|
|
{
|
|
public:
|
|
|
|
void visit(Shape<1, ShapeVisitor>) {}
|
|
void visit(Shape<2, ShapeVisitor>) {}
|
|
void visit(Shape<3, ShapeVisitor>) {}
|
|
void visit(Shape<4, ShapeVisitor>) {}
|
|
void visit(Shape<5, ShapeVisitor>) {}
|
|
void visit(Shape<6, ShapeVisitor>) {}
|
|
void visit(Shape<7, ShapeVisitor>) {}
|
|
void visit(Shape<8, ShapeVisitor>) {}
|
|
void visit(Shape<9, ShapeVisitor>) {}
|
|
void visit(Shape<10, ShapeVisitor>) {}
|
|
void visit(Shape<11, ShapeVisitor>) {}
|
|
};
|
|
|
|
// This test just needs to compile without errors.
|
|
CHECK(true);
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_12_visitable)
|
|
{
|
|
class ShapeVisitor : public etl::visitor <Shape<1, ShapeVisitor>, Shape<2, ShapeVisitor>, Shape<3, ShapeVisitor>, Shape<4, ShapeVisitor>,
|
|
Shape<5, ShapeVisitor>, Shape<6, ShapeVisitor>, Shape<7, ShapeVisitor>, Shape<8, ShapeVisitor>,
|
|
Shape<9, ShapeVisitor>, Shape<10, ShapeVisitor>, Shape<11, ShapeVisitor>, Shape<12, ShapeVisitor> >
|
|
{
|
|
public:
|
|
|
|
void visit(Shape<1, ShapeVisitor>) {}
|
|
void visit(Shape<2, ShapeVisitor>) {}
|
|
void visit(Shape<3, ShapeVisitor>) {}
|
|
void visit(Shape<4, ShapeVisitor>) {}
|
|
void visit(Shape<5, ShapeVisitor>) {}
|
|
void visit(Shape<6, ShapeVisitor>) {}
|
|
void visit(Shape<7, ShapeVisitor>) {}
|
|
void visit(Shape<8, ShapeVisitor>) {}
|
|
void visit(Shape<9, ShapeVisitor>) {}
|
|
void visit(Shape<10, ShapeVisitor>) {}
|
|
void visit(Shape<11, ShapeVisitor>) {}
|
|
void visit(Shape<12, ShapeVisitor>) {}
|
|
};
|
|
|
|
// This test just needs to compile without errors.
|
|
CHECK(true);
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_13_visitable)
|
|
{
|
|
class ShapeVisitor : public etl::visitor <Shape<1, ShapeVisitor>, Shape<2, ShapeVisitor>, Shape<3, ShapeVisitor>, Shape<4, ShapeVisitor>,
|
|
Shape<5, ShapeVisitor>, Shape<6, ShapeVisitor>, Shape<7, ShapeVisitor>, Shape<8, ShapeVisitor>,
|
|
Shape<9, ShapeVisitor>, Shape<10, ShapeVisitor>, Shape<11, ShapeVisitor>, Shape<12, ShapeVisitor>,
|
|
Shape<13, ShapeVisitor> >
|
|
{
|
|
public:
|
|
|
|
void visit(Shape<1, ShapeVisitor>) {}
|
|
void visit(Shape<2, ShapeVisitor>) {}
|
|
void visit(Shape<3, ShapeVisitor>) {}
|
|
void visit(Shape<4, ShapeVisitor>) {}
|
|
void visit(Shape<5, ShapeVisitor>) {}
|
|
void visit(Shape<6, ShapeVisitor>) {}
|
|
void visit(Shape<7, ShapeVisitor>) {}
|
|
void visit(Shape<8, ShapeVisitor>) {}
|
|
void visit(Shape<9, ShapeVisitor>) {}
|
|
void visit(Shape<10, ShapeVisitor>) {}
|
|
void visit(Shape<11, ShapeVisitor>) {}
|
|
void visit(Shape<12, ShapeVisitor>) {}
|
|
void visit(Shape<13, ShapeVisitor>) {}
|
|
};
|
|
|
|
// This test just needs to compile without errors.
|
|
CHECK(true);
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_14_visitable)
|
|
{
|
|
class ShapeVisitor : public etl::visitor <Shape<1, ShapeVisitor>, Shape<2, ShapeVisitor>, Shape<3, ShapeVisitor>, Shape<4, ShapeVisitor>,
|
|
Shape<5, ShapeVisitor>, Shape<6, ShapeVisitor>, Shape<7, ShapeVisitor>, Shape<8, ShapeVisitor>,
|
|
Shape<9, ShapeVisitor>, Shape<10, ShapeVisitor>, Shape<11, ShapeVisitor>, Shape<12, ShapeVisitor>,
|
|
Shape<13, ShapeVisitor>, Shape<14, ShapeVisitor> >
|
|
{
|
|
public:
|
|
|
|
void visit(Shape<1, ShapeVisitor>) {}
|
|
void visit(Shape<2, ShapeVisitor>) {}
|
|
void visit(Shape<3, ShapeVisitor>) {}
|
|
void visit(Shape<4, ShapeVisitor>) {}
|
|
void visit(Shape<5, ShapeVisitor>) {}
|
|
void visit(Shape<6, ShapeVisitor>) {}
|
|
void visit(Shape<7, ShapeVisitor>) {}
|
|
void visit(Shape<8, ShapeVisitor>) {}
|
|
void visit(Shape<9, ShapeVisitor>) {}
|
|
void visit(Shape<10, ShapeVisitor>) {}
|
|
void visit(Shape<11, ShapeVisitor>) {}
|
|
void visit(Shape<12, ShapeVisitor>) {}
|
|
void visit(Shape<13, ShapeVisitor>) {}
|
|
void visit(Shape<14, ShapeVisitor>) {}
|
|
};
|
|
|
|
// This test just needs to compile without errors.
|
|
CHECK(true);
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_15_visitable)
|
|
{
|
|
class ShapeVisitor : public etl::visitor <Shape<1, ShapeVisitor>, Shape<2, ShapeVisitor>, Shape<3, ShapeVisitor>, Shape<4, ShapeVisitor>,
|
|
Shape<5, ShapeVisitor>, Shape<6, ShapeVisitor>, Shape<7, ShapeVisitor>, Shape<8, ShapeVisitor>,
|
|
Shape<9, ShapeVisitor>, Shape<10, ShapeVisitor>, Shape<11, ShapeVisitor>, Shape<12, ShapeVisitor>,
|
|
Shape<13, ShapeVisitor>, Shape<14, ShapeVisitor>, Shape<15, ShapeVisitor> >
|
|
{
|
|
public:
|
|
|
|
void visit(Shape<1, ShapeVisitor>) {}
|
|
void visit(Shape<2, ShapeVisitor>) {}
|
|
void visit(Shape<3, ShapeVisitor>) {}
|
|
void visit(Shape<4, ShapeVisitor>) {}
|
|
void visit(Shape<5, ShapeVisitor>) {}
|
|
void visit(Shape<6, ShapeVisitor>) {}
|
|
void visit(Shape<7, ShapeVisitor>) {}
|
|
void visit(Shape<8, ShapeVisitor>) {}
|
|
void visit(Shape<9, ShapeVisitor>) {}
|
|
void visit(Shape<10, ShapeVisitor>) {}
|
|
void visit(Shape<11, ShapeVisitor>) {}
|
|
void visit(Shape<12, ShapeVisitor>) {}
|
|
void visit(Shape<13, ShapeVisitor>) {}
|
|
void visit(Shape<14, ShapeVisitor>) {}
|
|
void visit(Shape<15, ShapeVisitor>) {}
|
|
};
|
|
|
|
// This test just needs to compile without errors.
|
|
CHECK(true);
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_16_visitable)
|
|
{
|
|
class ShapeVisitor : public etl::visitor <Shape<1, ShapeVisitor>, Shape<2, ShapeVisitor>, Shape<3, ShapeVisitor>, Shape<4, ShapeVisitor>,
|
|
Shape<5, ShapeVisitor>, Shape<6, ShapeVisitor>, Shape<7, ShapeVisitor>, Shape<8, ShapeVisitor>,
|
|
Shape<9, ShapeVisitor>, Shape<10, ShapeVisitor>, Shape<11, ShapeVisitor>, Shape<12, ShapeVisitor>,
|
|
Shape<13, ShapeVisitor>, Shape<14, ShapeVisitor>, Shape<15, ShapeVisitor>, Shape<16, ShapeVisitor> >
|
|
{
|
|
public:
|
|
|
|
void visit(Shape<1, ShapeVisitor>) {}
|
|
void visit(Shape<2, ShapeVisitor>) {}
|
|
void visit(Shape<3, ShapeVisitor>) {}
|
|
void visit(Shape<4, ShapeVisitor>) {}
|
|
void visit(Shape<5, ShapeVisitor>) {}
|
|
void visit(Shape<6, ShapeVisitor>) {}
|
|
void visit(Shape<7, ShapeVisitor>) {}
|
|
void visit(Shape<8, ShapeVisitor>) {}
|
|
void visit(Shape<9, ShapeVisitor>) {}
|
|
void visit(Shape<10, ShapeVisitor>) {}
|
|
void visit(Shape<11, ShapeVisitor>) {}
|
|
void visit(Shape<12, ShapeVisitor>) {}
|
|
void visit(Shape<13, ShapeVisitor>) {}
|
|
void visit(Shape<14, ShapeVisitor>) {}
|
|
void visit(Shape<15, ShapeVisitor>) {}
|
|
void visit(Shape<16, ShapeVisitor>) {}
|
|
};
|
|
|
|
// This test just needs to compile without errors.
|
|
CHECK(true);
|
|
}
|
|
|
|
//*************************************************************************
|
|
struct NotVisitor {};
|
|
|
|
TEST(test_is_visitor)
|
|
{
|
|
#if ETL_USING_CPP17
|
|
CHECK_TRUE(etl::is_visitor_v<DrawVisitor>);
|
|
CHECK_TRUE(etl::is_visitor_v<LogVisitor>);
|
|
CHECK_FALSE(etl::is_visitor_v<NotVisitor>);
|
|
#else
|
|
CHECK_TRUE(etl::is_visitor<DrawVisitor>::value);
|
|
CHECK_TRUE(etl::is_visitor<LogVisitor>::value);
|
|
CHECK_FALSE(etl::is_visitor<NotVisitor>::value);
|
|
#endif
|
|
}
|
|
|
|
#if !defined(ETL_VISITOR_FORCE_CPP03_IMPLEMENTATION)
|
|
//*************************************************************************
|
|
TEST(test_visitor_from_type_list)
|
|
{
|
|
using Visitor1 = etl::visitor<Square&, Circle&, const Triangle&>;
|
|
|
|
using TypeList = etl::type_list<Square&, Circle&, const Triangle&>;
|
|
using Visitor2 = etl::visitor_from_type_list_t<TypeList>;
|
|
|
|
CHECK_TRUE((std::is_same<Visitor1, Visitor2>::value));
|
|
}
|
|
#endif
|
|
|
|
#if !defined(ETL_VISITOR_FORCE_CPP03_IMPLEMENTATION)
|
|
//*************************************************************************
|
|
TEST(test_visitable_from_type_list)
|
|
{
|
|
using Visitable1 = etl::visitable<DrawVisitorType, LogVisitorType>;
|
|
|
|
using TypeList = etl::type_list<DrawVisitorType, LogVisitorType>;
|
|
using Visitable2 = etl::visitable_from_type_list_t<TypeList>;
|
|
|
|
CHECK_TRUE((std::is_same<Visitable1, Visitable2>::value));
|
|
}
|
|
#endif
|
|
}
|
|
}
|
|
|