summaryrefslogtreecommitdiffstats
blob: 44b0316aa2567da52389437186c86e4469b49dcb (plain)
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
/*
 * Copyright (c) 2011 Remko Tronçon
 * Licensed under the GNU General Public License v3.
 * See Documentation/Licenses/GPLv3.txt for more information.
 */

#pragma once

#include <vector>
#include <string>

#include <Swiften/Base/SafeAllocator.h>

namespace Swift {
	class SafeString {
		public:
			typedef std::vector<char, SafeAllocator<char> > Data;
			typedef Data::iterator Iterator;
			typedef Data::const_iterator ConstIterator;

			SafeString() {
			}

			SafeString(const std::string& s) : data(s.begin(), s.end()) {
			}

			SafeString(const char*);


			std::string toString() const {
				return data.empty() ? std::string() : std::string(&data[0], data.size());
			}

			void resize(size_t n) {
				data.resize(n);
			}

			char& operator[](size_t n) {
				return data[n];
			}

			Iterator begin() {
				return data.begin();
			}

			Iterator end() {
				return data.end();
			}

			ConstIterator begin() const {
				return data.begin();
			}

			ConstIterator end() const {
				return data.end();
			}

			size_t size() const {
				return data.size();
			}

			bool operator==(const SafeString& o) const {
				return data == o.data;
			}

		private:
			std::vector<char, SafeAllocator<char> > data;
	};
};