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
|
/* ------------------------------------------------------------------------- */
/*
* Copyright (c) 1999
* GMRS Software GmbH, Innsbrucker Ring 159, 81669 Munich, Germany.
* http://www.gmrs.de
* All rights reserved.
* Author: Arno Unkrig (arno.unkrig@gmrs.de)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by GMRS Software GmbH.
* 4. The name of GMRS Software GmbH may not be used to endorse or promote
* products derived from this software without specific prior written
* permission.
*
* THIS SOFTWARE IS PROVIDED BY GMRS SOFTWARE GMBH ``AS IS'' AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GMRS SOFTWARE GMBH BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*/
/* ------------------------------------------------------------------------- */
#ifndef __vector_base_h_INCLUDED__ /* { */
#define __vector_base_h_INCLUDED__
/* ------------------------------------------------------------------------- */
#ident "$Id: vector_base.h,v 1.1 1999/10/26 10:57:30 arno Exp $"
#include <sys/types.h>
#ifdef BOOL_DEFINITION
BOOL_DEFINITION
#undef BOOL_DEFINITION
#endif
class ostream;
/* ------------------------------------------------------------------------- */
class vector_base {
public:
typedef size_t size_type;
protected:
typedef void (*value_default_constructor)(void *that);
typedef void (*value_copy_constructor)(void *that, void *v);
typedef void (*value_destructor)(void *that);
protected:
// Construct/Copy/Destroy
vector_base() : p(0), size1(0), size2(0) {}
vector_base(size_t element_size, size_type n, value_default_constructor c);
vector_base(
size_t element_size,
size_type n,
value_copy_constructor c,
void *value
);
vector_base(
size_t element_size,
value_copy_constructor c,
char *from,
char *to
);
~vector_base();
void assign(size_t element_size, char *from, char *to);
void assign(size_t element_size, size_type n);
void assign(size_t element_size, size_type n, void *v);
// Capacity
public:
size_type size() const { return size1; }
size_type max_size() const { return (size_type) -1; }
protected:
void resize(size_t element_size, size_type n);
void resize(size_t element_size, size_type n, void *v);
public:
size_type capacity() const { return size2; }
bool empty() const { return size1 == 0; }
protected:
void reserve(size_t element_size, size_type n, char **iter_in_out = 0);
// Modifiers
void push_back(size_t element_size, void *v);
void pop_back(size_t element_size);
void *insert(size_t element_size, char *pos);
void *insert(size_t element_size, char *pos, void *v);
void insert(size_t element_size, char *pos, size_type n, void *v);
void insert(size_t element_size, char *pos, char *from, char *to);
void *erase(size_t element_size, char *pos);
void *erase(size_t element_size, char *from, char *to);
void swap(vector_base &x);
void clear(size_t element_size);
void clear(size_t element_size, value_destructor d);
protected:
virtual void construct_value(void *that) = 0;
virtual void construct_value(void *that, void *v) = 0;
virtual void destruct_value(void *that) = 0;
virtual void assign_value(void *to) = 0;
virtual void assign_value(void *to, void *from) = 0;
virtual void print_value(ostream &os, void *v, void *closure) const = 0;
void init(size_t element_size, size_type n);
typedef bool (*value_comparator)(void *, void *);
bool equals(
size_t element_size,
const vector_base &y,
value_comparator value_equals
) const;
bool less_than(
size_t element_size,
const vector_base &y,
value_comparator value_less_than
) const;
void print(size_t element_size, ostream &os, void *closure) const;
char *p;
size_type size1;
size_type size2;
};
/* ------------------------------------------------------------------------- */
#endif /* } */
/* ------------------------------------------------------------------------- */
|