mirror of
https://github.com/ETLCPP/etl.git
synced 2026-04-30 19:09:10 +08:00
* Added missing files from VS2022 project * Added global data() overloads to complement etl::size() * Added C++03 compatible implementation of etl::is_convertible * Updated etl::span to more closely align with std::span * Fix etl::rotate (#1327) Per the C++ standard, std::rotate returns first + (last - middle): * When first == middle, return last * When middle == last, return first * Fix greater_equal and less_equal (#1331) * Align comparison operators (#1330) In functional.h, the comparison operators for equal_to and not_equal_to mismatch between the actual comparison execution and the type inference for the return type. This change adjusts it by using the same operator==() in the return type inference as used in the comparison execution. Co-authored-by: John Wellbelove <jwellbelove@users.noreply.github.com> * Add missing tests (#1321) * Add missing tests * Typo fixes --------- Co-authored-by: John Wellbelove <jwellbelove@users.noreply.github.com> * Add ETL_FORMAT_NO_FLOATING_POINT control macro for etl::format (#1329) When ETL_FORMAT_NO_FLOATING_POINT is defined, all floating-point formatting support (float, double, long double) is excluded from etl::format. This reduces code size on targets that do not require floating-point formatting. Guarded sections: - #include <cmath> - float/double/long double in supported_format_types variant - float/double/long double constructors in basic_format_arg - format_floating_* functions and format_aligned_floating - formatter<float>, formatter<double>, formatter<long double> - Floating-point test cases in test_format.cpp Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-opencode) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai> Co-authored-by: John Wellbelove <jwellbelove@users.noreply.github.com> # Conflicts: # include/etl/platform.h * Manchester documentation (#1325) * manchester * Added manchester code and test * manchester * Formatting and added missing file * manchester * Some functions can only be constexpr since C++14 * manchester * Manchester decode and some refactoring * manchester * Added some missing typenames * manchester * constexpr void function not allowed in C++11 * manchester * condition on static_assert tests * manchester * revert CMakeLists.txt * Using ETL_STATIC_ASSERT * Some cleanup * manchester * Added static_assert message * manchester * Added compile time tests * manchester * Added invert manchester * Some refactoring * manchester * Disable test for now * Move ETL_NODISCARD before static * manchester * Test for valid_span * manchester * Remove redundant (?) storage specifiers for template specializations. Storage specifier already given in base template * manchester * refactoring to get rid of specialized template functions in template class * manchester * cleanup * manchester * Added documentation comments * Some refactoring * manchester * introducing namespace detail_manchester * manchester * Some refactoring * Update tests * manchester * Some refactoring * Removed possible undefined behavior by refactoring encode_span * constexpr version of encode_span * Static assertion for rare case where code doesn't work because CHAR_BIT is not the same as the number of bits in uint_least8_t * manchester * renamed valid to is_valid * manchester * renamed is_valid_span to is_valid * Using etl exceptions in ETL_ASSERT * manchester * Removed _fast functions * merged encode_in_place with encode and decode_in_place with decode * removed _span to create normal overloads of encode and decode for span * Some renaming and minor refactoring * manchester * Fix build issues * manchester * Conditionally compile manchester_decoded * Update test_manchester.cpp Removed redundant semicolon * #1258 Manchester coding * Formatting * consistency: hex literals with lower case 0x * #1258 Manchester coding * Moved copyright to top of file * Make constexpr encode/decode span functions equal for little and big endian platforms * #1258 Manchester coding * Added missing include * Added missing 8bit/64bit guards * Fixed is_valid for big endian platforms * #1258 Manchester coding * private memcpy alias * #1258 Manchester coding * Review comments * #1258 Manchester coding * Cleanup * Fix build error * #1258 Manchester coding * Add manchester documentation * #1258 Manchester coding * Preparation for GitHub pages * #1324 Manchester documentation * Some small fixes --------- Co-authored-by: Timon Zijnge <timon.zijnge@imec.nl> * Moved and split has_size_and_data in span.h to has_size & has_data in type_traits.h * Removed has_size_and_data traits, and move to type_traits.h Added ETL_ASSERT for for fixed extent constructors from iterator range and begin/size * Added macro ETL_NOEXCEPT_IF that takes a compile time boolean expression * Changed two fixed span constructors to ETL_CONSTEXPR14 due to ETL_ASSERT in the constructor bodies Added ETL_NOEXCEPT_IF for simpler boolean conditions Added tests for construction from mismatched sizes * Added definition for ETL_NOEXCEPT_IF in no C++11 path * Changes to disable construction from rvalue temporaries --------- Co-authored-by: John Wellbelove <john.wellbelove@etlcpp.com> Co-authored-by: Roland Reichwein <Roland.Reichwein@bmw.de> Co-authored-by: Niu Zhihong <zhihong@nzhnb.com> Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai> Co-authored-by: Timon Zijnge <47081647+tzijnge@users.noreply.github.com> Co-authored-by: Timon Zijnge <timon.zijnge@imec.nl>
181 lines
5.2 KiB
C++
181 lines
5.2 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/container.h"
|
|
|
|
#include <list>
|
|
#include <vector>
|
|
|
|
#if ETL_NOT_USING_STL
|
|
|
|
namespace
|
|
{
|
|
SUITE(test_container)
|
|
{
|
|
//*************************************************************************
|
|
TEST(test_stl_style_container)
|
|
{
|
|
const size_t SIZE = 10UL;
|
|
std::list<int> data(SIZE);
|
|
|
|
std::list<int>::iterator iBegin = etl::begin(data);
|
|
CHECK(data.begin() == iBegin);
|
|
|
|
std::list<int>::iterator iEnd = etl::end(data);
|
|
CHECK(data.end() == iEnd);
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_const_stl_style_container)
|
|
{
|
|
const size_t SIZE = 10UL;
|
|
const std::list<int> data(SIZE);
|
|
|
|
std::list<int>::const_iterator iBegin = etl::begin(data);
|
|
CHECK(data.begin() == iBegin);
|
|
|
|
const std::list<int>::const_iterator iEnd = etl::end(data);
|
|
CHECK(data.end() == iEnd);
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_c_array)
|
|
{
|
|
const size_t SIZE = 10UL;
|
|
int data[SIZE];
|
|
|
|
int* iBegin = etl::begin(data);
|
|
CHECK(&data[0] == iBegin);
|
|
|
|
int* iEnd = etl::end(data);
|
|
CHECK((data + SIZE) == iEnd);
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_const_c_array)
|
|
{
|
|
const size_t SIZE = 10UL;
|
|
const int data[SIZE] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
|
|
|
|
const int* const iBegin = etl::begin(data);
|
|
CHECK(&data[0] == iBegin);
|
|
|
|
const int* const iEnd = etl::end(data);
|
|
CHECK((data + SIZE) == iEnd);
|
|
}
|
|
|
|
|
|
//*************************************************************************
|
|
TEST(test_next)
|
|
{
|
|
const int data[] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
|
|
const int* p;
|
|
|
|
p = etl::next(std::begin(data));
|
|
CHECK_EQUAL(data[1], *p);
|
|
|
|
p = etl::next(std::begin(data), 1);
|
|
CHECK_EQUAL(data[1], *p);
|
|
|
|
p = etl::next(std::begin(data), 5);
|
|
CHECK_EQUAL(data[5], *p);
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_prev)
|
|
{
|
|
const int data[] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
|
|
const int* p;
|
|
|
|
p = etl::prev(std::end(data));
|
|
CHECK_EQUAL(data[9], *p);
|
|
|
|
p = etl::prev(std::end(data), 1);
|
|
CHECK_EQUAL(data[9], *p);
|
|
|
|
p = etl::prev(std::end(data), 5);
|
|
CHECK_EQUAL(data[5], *p);
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_stl_style_container_size)
|
|
{
|
|
const size_t SIZE = 10UL;
|
|
std::list<int> data(SIZE);
|
|
|
|
size_t runtime_size = ETL_OR_STD17::size(data);
|
|
CHECK_EQUAL(SIZE, runtime_size);
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_c_array_size)
|
|
{
|
|
const size_t SIZE = 10UL;
|
|
int data[SIZE];
|
|
|
|
size_t runtime_size = ETL_OR_STD17::size(data);
|
|
CHECK_EQUAL(SIZE, runtime_size);
|
|
|
|
size_t compiletime_size = sizeof(etl::array_size(data));
|
|
CHECK_EQUAL(SIZE, compiletime_size);
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_stl_style_container_data)
|
|
{
|
|
const size_t SIZE = 10UL;
|
|
std::vector<int> data(SIZE);
|
|
const std::vector<int> cdata(SIZE);
|
|
|
|
int* pdata = ETL_OR_STD17::data(data);
|
|
const int* pcdata = ETL_OR_STD17::data(cdata);
|
|
|
|
CHECK(data.data() == pdata);
|
|
CHECK(cdata.data() == pcdata);
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_c_array_data)
|
|
{
|
|
const size_t SIZE = 10UL;
|
|
int data[SIZE];
|
|
const int cdata[SIZE] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
|
|
|
|
int* pdata = ETL_OR_STD17::data(data);
|
|
const int* pcdata = ETL_OR_STD17::data(cdata);
|
|
|
|
CHECK(&data[0] == pdata);
|
|
CHECK(&cdata[0] == pcdata);
|
|
}
|
|
}
|
|
}
|
|
|
|
#endif
|