1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230
|
/******************************************************************************
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_REFERENCE_COUNTED_MESSAGE_INCLUDED
#define ETL_REFERENCE_COUNTED_MESSAGE_INCLUDED
#include "platform.h"
#include "message.h"
#include "atomic.h"
#include "reference_counted_object.h"
#include "static_assert.h"
#include "type_traits.h"
#include "ireference_counted_message_pool.h"
#include <stdint.h>
namespace etl
{
//***************************************************************************
// Base class for all reference counted messages.
//***************************************************************************
class ireference_counted_message
{
public:
virtual ~ireference_counted_message() {}
ETL_NODISCARD virtual etl::imessage& get_message() = 0; ///< Get a reference to the message.
ETL_NODISCARD virtual const etl::imessage& get_message() const = 0; ///< Get a const reference to the message.
ETL_NODISCARD virtual etl::ireference_counter& get_reference_counter() = 0; ///< Get a reference to the reference counter.
ETL_NODISCARD virtual const etl::ireference_counter& get_reference_counter() const = 0; ///< Get a const reference to the reference counter.
virtual void release() = 0; ///< Release back to the owner.
};
//***************************************************************************
// Reference counted message with a counter and owner.
//***************************************************************************
template <typename TMessage, typename TCounter>
class reference_counted_message : public etl::ireference_counted_message
{
public:
ETL_STATIC_ASSERT((etl::is_base_of<etl::imessage, TMessage>::value), "Not a message type");
typedef TMessage message_type;
typedef TCounter counter_type;
#if ETL_USING_CPP11
//***************************************************************************
/// Constructor
/// \param owner The message owner.
/// \param args The constructor arguments.
//***************************************************************************
template <typename... TArgs>
reference_counted_message(etl::ireference_counted_message_pool& owner_, TArgs&&... args)
: rc_object(etl::forward<TArgs>(args)...)
, owner(owner_)
{
}
#endif
//***************************************************************************
/// Constructor
/// \param msg The message to count.
/// \param owner The message owner.
//***************************************************************************
reference_counted_message(const TMessage& msg_, etl::ireference_counted_message_pool& owner_)
: rc_object(msg_)
, owner(owner_)
{
}
//***************************************************************************
/// Get a reference to the message.
/// \return A reference to the message.
//***************************************************************************
ETL_NODISCARD virtual TMessage& get_message() ETL_OVERRIDE
{
return rc_object.get_object();
}
//***************************************************************************
/// Get a const reference to the message.
/// \return A const reference to the message.
//***************************************************************************
ETL_NODISCARD virtual const TMessage& get_message() const ETL_OVERRIDE
{
return rc_object.get_object();
}
//***************************************************************************
/// Get a reference to the reference counter.
/// \return A reference to the reference counter.
//***************************************************************************
ETL_NODISCARD virtual etl::ireference_counter& get_reference_counter() ETL_OVERRIDE
{
return rc_object.get_reference_counter();
}
//***************************************************************************
/// Get a const reference to the reference counter.
/// \return A const reference to the reference counter.
//***************************************************************************
ETL_NODISCARD virtual const etl::ireference_counter& get_reference_counter() const ETL_OVERRIDE
{
return rc_object.get_reference_counter();
}
//***************************************************************************
/// Release back to the owner pool.
/// \return A reference to the owner pool.
//***************************************************************************
virtual void release() ETL_OVERRIDE
{
owner.release(*this);
}
private:
etl::reference_counted_object<TMessage, TCounter> rc_object; ///< The reference counted object.
etl::ireference_counted_message_pool& owner; ///< The pool that owns this object.
};
//***************************************************************************
// A persistent message with no counter and owner.
//***************************************************************************
template <typename TMessage>
class persistent_message : public etl::ireference_counted_message
{
public:
ETL_STATIC_ASSERT((etl::is_base_of<etl::imessage, TMessage>::value), "Not a message type");
typedef TMessage message_type;
typedef void counter_type;
//***************************************************************************
/// Constructor
/// \param msg The message to count.
//***************************************************************************
explicit persistent_message(const TMessage& msg_)
: rc_object(msg_)
{
}
//***************************************************************************
/// Get a reference to the message.
/// \return A reference to the message.
//***************************************************************************
ETL_NODISCARD virtual TMessage& get_message() ETL_OVERRIDE
{
return rc_object.get_object();
}
//***************************************************************************
/// Get a const reference to the message.
/// \return A const reference to the message.
//***************************************************************************
ETL_NODISCARD virtual const TMessage& get_message() const ETL_OVERRIDE
{
return rc_object.get_object();
}
//***************************************************************************
/// Get a reference to the reference counter.
/// \return A reference to the reference counter.
//***************************************************************************
ETL_NODISCARD virtual etl::ireference_counter& get_reference_counter() ETL_OVERRIDE
{
return rc_object.get_reference_counter();
}
//***************************************************************************
/// Get a const reference to the reference counter.
/// \return A const reference to the reference counter.
//***************************************************************************
ETL_NODISCARD virtual const etl::ireference_counter& get_reference_counter() const ETL_OVERRIDE
{
return rc_object.get_reference_counter();
}
//***************************************************************************
/// Does nothing for a persistent message
/// \return A reference to the owner pool.
//***************************************************************************
virtual void release() ETL_OVERRIDE
{
// Do nothing.
}
private:
etl::reference_counted_object<TMessage, void> rc_object; ///< The reference counted object.
};
#if ETL_USING_CPP11 && ETL_HAS_ATOMIC
//***************************************************************************
/// Class for creating reference counted objects using an atomic counter.
/// \tparam TObject The type to be reference counted.
//***************************************************************************
template <typename TMessage>
using atomic_counted_message = etl::reference_counted_message<TMessage, etl::atomic_int32_t>;
#endif
}
#endif
|