196 lines
6.2 KiB
C++
196 lines
6.2 KiB
C++
///\file
|
|
|
|
/******************************************************************************
|
|
The MIT License(MIT)
|
|
|
|
Embedded Template Library.
|
|
https://github.com/ETLCPP/etl
|
|
https://www.etlcpp.com
|
|
|
|
Copyright(c) 2021 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.
|
|
******************************************************************************/
|
|
|
|
#ifndef ETL_SUCCESSOR_INCLUDED
|
|
#define ETL_SUCCESSOR_INCLUDED
|
|
|
|
#include "platform.h"
|
|
#include "nullptr.h"
|
|
#include "exception.h"
|
|
#include "error_handler.h"
|
|
#include "file_error_numbers.h"
|
|
|
|
namespace etl
|
|
{
|
|
//***************************************************************************
|
|
/// Exception for the successor.
|
|
//***************************************************************************
|
|
class successor_exception : public etl::exception
|
|
{
|
|
public:
|
|
|
|
successor_exception(string_type reason_, string_type file_name_, numeric_type line_number_)
|
|
: exception(reason_, file_name_, line_number_)
|
|
{
|
|
}
|
|
};
|
|
|
|
//***************************************************************************
|
|
/// Invalid exception for successor.
|
|
//***************************************************************************
|
|
class successor_invalid : public etl::successor_exception
|
|
{
|
|
public:
|
|
|
|
successor_invalid(string_type file_name_, numeric_type line_number_)
|
|
: etl::successor_exception(ETL_ERROR_TEXT("successor:invalid", ETL_SUCCESSOR_FILE_ID"A"), file_name_, line_number_)
|
|
{
|
|
}
|
|
};
|
|
|
|
//***************************************************************************
|
|
/// Adds successor traits to a class.
|
|
//***************************************************************************
|
|
template <typename T>
|
|
class successor
|
|
{
|
|
public:
|
|
|
|
typedef T successor_type;
|
|
|
|
//*************************************************************************
|
|
/// Default constructor
|
|
//*************************************************************************
|
|
successor()
|
|
: p_successor(ETL_NULLPTR)
|
|
{
|
|
}
|
|
|
|
//*************************************************************************
|
|
/// Construct from a successor type
|
|
//*************************************************************************
|
|
successor(successor_type& s)
|
|
: p_successor(&s)
|
|
{
|
|
}
|
|
|
|
//*************************************************************************
|
|
/// Set the successor.
|
|
//*************************************************************************
|
|
void set_successor(successor_type& s)
|
|
{
|
|
p_successor = &s;
|
|
}
|
|
|
|
#if ETL_CPP11_SUPPORTED
|
|
//*************************************************************************
|
|
/// Set a list of successors to this.
|
|
//*************************************************************************
|
|
template <typename... TSuccessors>
|
|
void set_successor(successor_type& s, TSuccessors&... rest)
|
|
{
|
|
set_successor(s);
|
|
s.set_successor(rest...);
|
|
}
|
|
#endif
|
|
|
|
//*************************************************************************
|
|
/// Append a successor.
|
|
//*************************************************************************
|
|
template <typename TSuccessor>
|
|
void append_successor(TSuccessor& s)
|
|
{
|
|
if (has_successor())
|
|
{
|
|
get_successor().append_successor(s);
|
|
}
|
|
else
|
|
{
|
|
set_successor(s);
|
|
}
|
|
}
|
|
|
|
#if ETL_CPP11_SUPPORTED
|
|
//*************************************************************************
|
|
/// Append the successor.
|
|
//*************************************************************************
|
|
template <typename TSuccessor, typename... TSuccessors>
|
|
void append_successor(TSuccessor& s, TSuccessors&... rest)
|
|
{
|
|
if (has_successor())
|
|
{
|
|
get_successor().append_successor(s);
|
|
get_successor().append_successor(rest...);
|
|
}
|
|
else
|
|
{
|
|
set_successor(s);
|
|
append_successor(rest...);
|
|
}
|
|
}
|
|
#endif
|
|
|
|
//*************************************************************************
|
|
/// Clear the successor.
|
|
//*************************************************************************
|
|
void clear_successor()
|
|
{
|
|
p_successor = ETL_NULLPTR;
|
|
}
|
|
|
|
//*************************************************************************
|
|
/// Clear the successor chain.
|
|
//*************************************************************************
|
|
void clear_successor_chain()
|
|
{
|
|
if (has_successor())
|
|
{
|
|
get_successor().clear_successor_chain();
|
|
clear_successor();
|
|
}
|
|
}
|
|
|
|
//*************************************************************************
|
|
/// Get the successor.
|
|
/// Emits an etl::successor_invalid if a successor has not been set.
|
|
//*************************************************************************
|
|
successor_type& get_successor() const
|
|
{
|
|
ETL_ASSERT(has_successor(), ETL_ERROR(successor_invalid));
|
|
|
|
return *p_successor;
|
|
}
|
|
|
|
//*************************************************************************
|
|
/// Does this have a successor?
|
|
//*************************************************************************
|
|
bool has_successor() const
|
|
{
|
|
return (p_successor != ETL_NULLPTR);
|
|
}
|
|
|
|
private:
|
|
|
|
successor_type* p_successor;
|
|
};
|
|
}
|
|
|
|
#endif
|