File: String.cpp

package info (click to toggle)
freespace2 24.2.0%2Brepack-3
  • links: PTS, VCS
  • area: non-free
  • in suites: forky, sid
  • size: 43,740 kB
  • sloc: cpp: 595,005; ansic: 21,741; python: 1,174; sh: 457; makefile: 243; xml: 181
file content (273 lines) | stat: -rw-r--r-- 6,234 bytes parent folder | download | duplicates (2)
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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
/*
 * This source file is part of libRocket, the HTML/CSS Interface Middleware
 *
 * For the latest information, see http://www.librocket.com
 *
 * Copyright (c) 2008-2010 CodePoint Ltd, Shift Technology Ltd
 *
 * 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.
 *
 */

#include "precompiled.h"
#include "../../Include/Rocket/Core/String.h"
#include "../../Include/Rocket/Core/StringBase.h"

namespace Rocket {
namespace Core {

int ROCKETCORE_API RocketStringFormatString(StringBase<char>& string, int max_size, const char* format, va_list argument_list)
{
	const int INTERNAL_BUFFER_SIZE = 1024;
	static char buffer[INTERNAL_BUFFER_SIZE];
	char* buffer_ptr = buffer;

	if (max_size + 1 > INTERNAL_BUFFER_SIZE)
		buffer_ptr = new char[max_size + 1];

	int length = vsnprintf(buffer_ptr, max_size, format, argument_list);
	buffer_ptr[length >= 0 ? length : max_size] = '\0';
	#ifdef ROCKET_DEBUG
		if (length == -1)
		{
			Log::Message(Log::LT_WARNING, "String::sprintf: String truncated to %d bytes when processing %s", max_size, format);
		}
	#endif

	string = buffer_ptr;

	if (buffer_ptr != buffer)
		delete[] buffer_ptr;

	return length;
}

template <>
StringBase<char>::StringBase(StringBase<char>::size_type max_size, const char* fmt, ...) : value(local_buffer), buffer_size(LOCAL_BUFFER_SIZE), length(0), hash(0) 
{
	va_list argument_list;
	va_start(argument_list, fmt);

	RocketStringFormatString(*this, (int)max_size, fmt, argument_list);

	va_end(argument_list);
}

template <>
int StringBase<char>::FormatString(StringBase<char>::size_type max_size, const char* fmt, ...)
{
	va_list argument_list;
	va_start(argument_list, fmt);

	int length = RocketStringFormatString(*this, (int)max_size, fmt, argument_list);

	va_end(argument_list);

	return length;
}

String operator+(const char* cstring, const String& string)
{
	return String(cstring) + string;
}

//#define ENABLE_STRING_TESTS
#ifdef ENABLE_STRING_TESTS
#include <string>
#include "Rocket/Core/SystemInterface.h"
ROCKETCORE_API void StringTests()
{
	SystemInterface* sys = Rocket::Core::GetSystemInterface();
	
	std::string ss = "test";
	String es = "test";

	es = "hello";
	es.Resize(100);
	es.Erase(4);
	es.Erase(2,100);
	es += "y";

	String sub1 = es.Replace("lo", "l");
	sub1 = sub1.Replace("h", "!");
	ROCKET_ASSERT(sub1 == "!el");

	Time start;

	{
		// Create a few free buffers
		String tempstring("buffer");
		String tempstring1("buffer1");
		String tempstring2("buffer2");
	}	

	start = sys->GetElapsedTime();
	for (int i = 0; i < 100000; i++)
	{
		std::string str("test");	
	}
	printf( "SS Assign Short: %f\n", sys->GetElapsedTime() - start);
	
	start = sys->GetElapsedTime();	
	for (int i = 0; i < 100000; i++)
	{
		String str("test");
	}
	printf( "ES Assign Short: %f\n", sys->GetElapsedTime() - start);

	start = sys->GetElapsedTime();
	for (int i = 0; i < 100000; i++)
	{
		std::string str("test this really long string that won't fit in a local buffer");	
	}
	printf( "SS Assign Long: %f\n", sys->GetElapsedTime() - start);
	
	start = sys->GetElapsedTime();	
	for (int i = 0; i < 100000; i++)
	{
		String str("test this really long string that won't fit in a local buffer");
	}
	printf( "ES Assign Long: %f\n", sys->GetElapsedTime() - start);

	start = sys->GetElapsedTime();
	for (int i = 0; i < 100000; i++)
	{
		if (ss == "hello")
		{
			int bob = 10;
		}
	}
	printf( "SS Compare: %f (char*)\n", sys->GetElapsedTime() - start);

	ss = "bo1";
	std::string oss = ss;
	std::string nss = "bob";
	start = sys->GetElapsedTime();
	for (int i = 0; i < 100000; i++)
	{
		//if (ss == oss)
		{
			int bob = 10;
		}
		if (ss == nss)
		{
			int bob = 10;
		}
	}
	printf( "SS Compare: %f (std::string)\n", sys->GetElapsedTime() - start);

	start = sys->GetElapsedTime();
	for (int i = 0; i < 100000; i++)
	{
		if (es == "hello")
		{
			int bob = 10;
		}
	}
	printf( "ES Compare: %f (char*)\n", sys->GetElapsedTime() - start);
	
	es = "bo1";
	String oes = es;
	String nes = "bob";
	start = sys->GetElapsedTime();
	for (int i = 0; i < 100000; i++)
	{
		//if (es == oes)
		{
			int bob = 10;
		}
		
		if (nes == oes)
		{
			int bob = 10;
		}
	}
	printf( "ES Compare: %f (String)\n", sys->GetElapsedTime() - start);

	start = sys->GetElapsedTime();
	std::string ss_concat = "hello";
	for (int i = 0; i < 100000; i++)
	{
		ss_concat += "y";
	}
	printf( "SS +=: %f\n", sys->GetElapsedTime() - start);

	String es_concat = "hello";
	start = sys->GetElapsedTime();
	for (int i = 0; i < 100000; i++)
	{
		if (i == 42)
		{
			int bob = 10;
		}
		es_concat += "y";
	}
	printf( "ES +=: %f\n", sys->GetElapsedTime() - start);

	const char* x1 = "bob";
	String s;
	String t;
	String u;
	s = "hello";
	t = "hell";
	u = "hello";
	if (s == t)
	{
		int bob = 10;
	}
	if (s == u)
	{
		int bob = 10;
	}

	t = s + u;
	if (t == "hellohello")
	{
		int bob = 10;
	}
	if (t == "x")
	{
		int bob = 10;
	}

	t += u;


	size_t x = s.Find("e");
	size_t y = s.Find("z");
	
	String sub = t.Replace("lo", "l");
	sub = sub.Replace("h", "!");

	sub.FormatString(128, "%s", "hello");
	int bob = 10;
}
#endif

}
}

/*namespace std {

ROCKETCORE_API size_t hash< String >::operator()(const String& string) const
{
	return StringUtilities::FNVHash(string.CString());
}

}*/