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
|
///\file
/******************************************************************************
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.
******************************************************************************/
#if !defined(ETL_IN_VECTOR_H) && !defined(ETL_IN_PVOIDVECTOR)
#error This header is a private element of etl::vector & etl::pvoidvector
#endif
#ifndef ETL_VECTOR_BASE_INCLUDED
#define ETL_VECTOR_BASE_INCLUDED
#include "../platform.h"
#include "../exception.h"
#include "../error_handler.h"
#include "../debug_count.h"
#include <stddef.h>
namespace etl
{
//***************************************************************************
///\ingroup vector
/// Exception base for vectors
//***************************************************************************
class vector_exception : public exception
{
public:
vector_exception(string_type reason_, string_type file_name_, numeric_type line_number_)
: exception(reason_, file_name_, line_number_)
{
}
};
//***************************************************************************
///\ingroup vector
/// Vector full exception.
//***************************************************************************
class vector_full : public vector_exception
{
public:
vector_full(string_type file_name_, numeric_type line_number_)
: vector_exception(ETL_ERROR_TEXT("vector:full", ETL_VECTOR_FILE_ID"A"), file_name_, line_number_)
{
}
};
//***************************************************************************
///\ingroup vector
/// Vector empty exception.
//***************************************************************************
class vector_empty : public vector_exception
{
public:
vector_empty(string_type file_name_, numeric_type line_number_)
: vector_exception(ETL_ERROR_TEXT("vector:empty", ETL_VECTOR_FILE_ID"B"), file_name_, line_number_)
{
}
};
//***************************************************************************
///\ingroup vector
/// Vector out of bounds exception.
//***************************************************************************
class vector_out_of_bounds : public vector_exception
{
public:
vector_out_of_bounds(string_type file_name_, numeric_type line_number_)
: vector_exception(ETL_ERROR_TEXT("vector:bounds", ETL_VECTOR_FILE_ID"C"), file_name_, line_number_)
{
}
};
//***************************************************************************
///\ingroup vector
/// Vector incompatible type exception.
//***************************************************************************
class vector_incompatible_type : public vector_exception
{
public:
vector_incompatible_type(string_type file_name_, numeric_type line_number_)
: vector_exception(ETL_ERROR_TEXT("vector:type", ETL_VECTOR_FILE_ID"D"), file_name_, line_number_)
{
}
};
//***************************************************************************
///\ingroup vector
/// The base class for all templated vector types.
//***************************************************************************
class vector_base
{
public:
typedef size_t size_type;
//*************************************************************************
/// Returns the capacity of the vector.
///\return The capacity of the vector.
//*************************************************************************
size_type capacity() const
{
return CAPACITY;
}
//*************************************************************************
/// Returns the maximum possible size of the vector.
///\return The maximum size of the vector.
//*************************************************************************
size_type max_size() const
{
return CAPACITY;
}
protected:
//*************************************************************************
/// Constructor.
//*************************************************************************
vector_base(size_t max_size_)
: CAPACITY(max_size_)
{
}
//*************************************************************************
/// Destructor.
//*************************************************************************
#if defined(ETL_POLYMORPHIC_VECTOR) || defined(ETL_POLYMORPHIC_CONTAINERS) || defined(ETL_IVECTOR_REPAIR_ENABLE)
public:
virtual ~vector_base()
{
}
#else
protected:
~vector_base()
{
}
#endif
const size_type CAPACITY; ///<The maximum number of elements in the vector.
ETL_DECLARE_DEBUG_COUNT; ///< Internal debugging.
};
}
#endif
|