File: autoarray.h

package info (click to toggle)
exult 1.2-15.2
  • links: PTS, VCS
  • area: contrib
  • in suites: wheezy
  • size: 8,656 kB
  • sloc: cpp: 99,373; sh: 7,324; ansic: 4,659; makefile: 991; yacc: 769; lex: 313; xml: 19
file content (105 lines) | stat: -rw-r--r-- 2,336 bytes parent folder | download | duplicates (8)
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
/*
 *  Copyright (C) 2000-2001  The Exult Team
 *
 *  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 2 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 */

#include <exception>
#include <string>

#include "exult_types.h"

template<class T>
class autoarray
	{
private:
	std::size_t	size_;
	T *data_;
public:
#ifdef HAVE_NO_EXCEPTIONS
	inline static range_error(const std::string& what_arg) {
		std::cerr << "Range Error: " << what_arg << std::endl;
#ifdef DEBUG
		*((int *)(0)) = 0;
#else
		std::exit(-1);
#endif
	}
#else
	class range_error : public std::exception
		{
		std::string	what_;
		public:
		 range_error (const std::string& what_arg): what_ (what_arg) { }
		 const char *what(void) const throw () { return what_.c_str(); }
		 virtual ~range_error() throw () { }
		};
#endif
	autoarray() : size_(0), data_(0) 
		{  }
	autoarray(std::size_t n) : size_(n),data_(n?new T[n]:0)
		{  }
#ifdef HAVE_NO_EXCEPTIONS
	T &operator[](sint32 i)
#else
	T &operator[](sint32 i)	 throw(range_error)
#endif
		{
		if(i>=(sint32)size_ || i < 0)
			throw range_error("out of bounds");
		if(data_)
			return data_[i];
		throw range_error("no data");
		}
	~autoarray()
		{
		if(data_)
			delete [] data_;
		}
	autoarray(const autoarray &a) : size_(0),data_(0)
		{
		if(a.data_)
			{
			data_=new T[a.size_];
			memcpy(data_,a.data_,a.size_);
			size_=a.size_;
			}
		}
	autoarray &operator=(const autoarray &a)
		{
		if(data_)
			{
			delete [] data_;
			size_=0;
			}
		if(a.data_)
			{
			data_=new T[a.size_];
			memcpy(data_,a.data_,a.size_);
			size_=a.size_;
			}
		return *this;
		}
	void set_size(std::size_t new_size)
		{
		if(data_)
			{
			delete [] data_;
			}
		data_=new T[new_size];
		size_=new_size;
		}
	};