/usr/include/shogun/lib/v_array.h is in libshogun-dev 1.1.0-4ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | /*
Copyright (c) 2009 Yahoo! Inc. All rights reserved. The copyrights
embodied in the content of this file are licensed under the BSD
(revised) open source license.
Copyright (c) 2011 Berlin Institute of Technology and Max-Planck-Society.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
Shogun adjustments (w) 2011 Shashwat Lal Das
*/
#include <stdlib.h>
#include <shogun/lib/memory.h>
#include <shogun/mathematics/Math.h>
#ifndef VARRAY_H__
#define VARRAY_H__
namespace shogun
{
/** @brief Class v_array is a templated class used to
* store variable length arrays. Memory locations
* are stored as 'extents', i.e., address of the
* first memory location and address after the last member.
*
* `begin', `end' and `end_array' handle the extent of the array.
* `end_array' is the address at the end of the space allocated
* for the array while `end' is the address at the end of the
* space actually filled with elements.
*
* The class should be instantiated on the basis of the
* data type of the contained array, eg. v_array<float32_t> if
* one wants to store a float32_t* array.
*/
template<class T> class v_array
{
public:
/**
* Constructor.
* Sets begin and end pointers to NULL.
*/
v_array()
{
begin = NULL;
end = NULL;
end_array = NULL;
}
/**
* Operator [] overloaded to return the
* i-th element of the stored array.
*
* @param i index of the element, starting at 0
*
* @return element at position i
*/
T& operator[](unsigned int i) { return begin[i]; }
/**
* Return the last element.
*
* @return Last element of array
*/
inline T last() { return *(end-1); }
/**
* Pop from the array.
*
* @return Popped element
*/
inline T pop() { return *(--end); }
/**
* Check if array is empty or not.
*
* @return whether array is empty
*/
inline bool empty() { return begin == end; }
/**
* Decrement the 'end' pointer.
*
*/
inline void decr() { end--; }
/**
* Get number of elements in array.
*
* @return number of array elements
*/
inline unsigned int index() { return end-begin; }
/**
* Empty the array.
*
*/
inline void erase() { end = begin; }
/**
* Push an element into the array.
*
* @param new_elem element to be pushed
*/
void push(const T &new_elem);
/**
* Push multiple elements into the array.
*
* @param new_elem pointer to first element
* @param num number of elements
*/
void push_many(const T* new_elem, size_t num);
/**
* Reserve space for specified number of elements.
* Reallocate, keeping the elements currently in the array.
*
* @param length number of elements to accommodate
*/
void reserve(size_t length);
/**
* Reserve space for specified number of elements.
* No reallocation is done, array is replaced.
*
* @param length
*/
void calloc_reserve(size_t length);
/**
* Pop an array from a list of arrays.
*
* @param stack array of arrays
* @return popped array
*/
v_array<T> pop(v_array< v_array<T> > &stack);
public:
/// Pointer to first element of the array
T* begin;
/// Pointer to last set element in the array
T* end;
/// Pointer to end of array, based on memory reserved
T* end_array;
};
template<class T>
inline void v_array<T>::push(const T &new_elem)
{
if(end == end_array)
{
size_t old_length = end_array - begin;
size_t new_length = 2 * old_length + 3;
//size_t new_length = old_length + 1;
begin = SG_REALLOC(T, begin, new_length);
end = begin + old_length;
end_array = begin + new_length;
}
*(end++) = new_elem;
}
template<class T>
inline void v_array<T>::push_many(const T* new_elem, size_t num)
{
if(end+num >= end_array)
{
size_t length = end - begin;
size_t new_length = CMath::max(2 * (size_t)(end_array - begin) + 3,
end - begin + num);
begin = SG_REALLOC(T, begin, new_length);
end = begin + length;
end_array = begin + new_length;
}
memcpy(end, new_elem, num * sizeof(T));
end += num;
}
template<class T>
inline void v_array<T>::reserve(size_t length)
{
size_t old_length = end_array-begin;
begin = SG_REALLOC(T, begin, length);
if (old_length < length)
bzero(begin + old_length, (length - old_length)*sizeof(T));
end = begin;
end_array = begin + length;
}
template<class T>
inline void v_array<T>::calloc_reserve(size_t length)
{
begin = SG_CALLOC(T, length);
end = begin;
end_array = begin + length;
}
template<class T>
inline v_array<T> v_array<T>::pop(v_array< v_array<T> > &stack)
{
if (stack.end != stack.begin)
return *(--stack.end);
else
return v_array<T>();
}
}
#endif // VARRAY_H__
|