| 
									
										
										
										
											2017-09-05 11:04:11 +07:00
										 |  |  | /**************************************************************************/ | 
					
						
							|  |  |  | /*  string_buffer.h                                                       */ | 
					
						
							|  |  |  | /**************************************************************************/ | 
					
						
							|  |  |  | /*                         This file is part of:                          */ | 
					
						
							|  |  |  | /*                             GODOT ENGINE                               */ | 
					
						
							|  |  |  | /*                        https://godotengine.org                         */ | 
					
						
							|  |  |  | /**************************************************************************/ | 
					
						
							|  |  |  | /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ | 
					
						
							|  |  |  | /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur.                  */ | 
					
						
							|  |  |  | /*                                                                        */ | 
					
						
							|  |  |  | /* 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.                 */ | 
					
						
							|  |  |  | /**************************************************************************/ | 
					
						
							| 
									
										
										
										
											2018-01-05 00:50:27 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-05 11:04:11 +07:00
										 |  |  | #pragma once
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-09-23 17:47:28 +02:00
										 |  |  | #include "core/string/print_string.h"
 | 
					
						
							| 
									
										
										
										
											2020-11-07 19:33:38 -03:00
										 |  |  | #include "core/string/ustring.h"
 | 
					
						
							| 
									
										
										
										
											2017-09-05 11:04:11 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-20 20:03:17 +01:00
										 |  |  | template <int SHORT_BUFFER_SIZE = 64> | 
					
						
							| 
									
										
										
										
											2017-09-05 11:04:11 +07:00
										 |  |  | class StringBuffer { | 
					
						
							| 
									
										
										
										
											2020-07-27 13:43:20 +03:00
										 |  |  | 	char32_t short_buffer[SHORT_BUFFER_SIZE]; | 
					
						
							| 
									
										
										
										
											2017-09-05 11:04:11 +07:00
										 |  |  | 	String buffer; | 
					
						
							| 
									
										
										
										
											2020-05-12 17:01:17 +02:00
										 |  |  | 	int string_length = 0; | 
					
						
							| 
									
										
										
										
											2017-09-05 11:04:11 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-27 13:43:20 +03:00
										 |  |  | 	_FORCE_INLINE_ char32_t *current_buffer_ptr() { | 
					
						
							| 
									
										
										
										
											2020-12-15 12:04:21 +00:00
										 |  |  | 		return static_cast<String &>(buffer).is_empty() ? short_buffer : buffer.ptrw(); | 
					
						
							| 
									
										
										
										
											2017-09-05 11:04:11 +07:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | public: | 
					
						
							| 
									
										
										
										
											2020-07-27 13:43:20 +03:00
										 |  |  | 	StringBuffer &append(char32_t p_char); | 
					
						
							| 
									
										
										
										
											2017-09-05 11:04:11 +07:00
										 |  |  | 	StringBuffer &append(const String &p_string); | 
					
						
							|  |  |  | 	StringBuffer &append(const char *p_str); | 
					
						
							| 
									
										
										
										
											2020-07-27 13:43:20 +03:00
										 |  |  | 	StringBuffer &append(const char32_t *p_str, int p_clip_to_len = -1); | 
					
						
							| 
									
										
										
										
											2017-09-05 11:04:11 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-27 13:43:20 +03:00
										 |  |  | 	_FORCE_INLINE_ void operator+=(char32_t p_char) { | 
					
						
							| 
									
										
										
										
											2017-09-05 11:04:11 +07:00
										 |  |  | 		append(p_char); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	_FORCE_INLINE_ void operator+=(const String &p_string) { | 
					
						
							|  |  |  | 		append(p_string); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	_FORCE_INLINE_ void operator+=(const char *p_str) { | 
					
						
							|  |  |  | 		append(p_str); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-27 13:43:20 +03:00
										 |  |  | 	_FORCE_INLINE_ void operator+=(const char32_t *p_str) { | 
					
						
							| 
									
										
										
										
											2017-09-05 11:04:11 +07:00
										 |  |  | 		append(p_str); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	StringBuffer &reserve(int p_size); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	int length() const; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	String as_string(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	double as_double(); | 
					
						
							|  |  |  | 	int64_t as_int(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	_FORCE_INLINE_ operator String() { | 
					
						
							|  |  |  | 		return as_string(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-20 20:03:17 +01:00
										 |  |  | template <int SHORT_BUFFER_SIZE> | 
					
						
							| 
									
										
										
										
											2020-07-27 13:43:20 +03:00
										 |  |  | StringBuffer<SHORT_BUFFER_SIZE> &StringBuffer<SHORT_BUFFER_SIZE>::append(char32_t p_char) { | 
					
						
							| 
									
										
										
										
											2018-01-20 20:03:17 +01:00
										 |  |  | 	reserve(string_length + 2); | 
					
						
							|  |  |  | 	current_buffer_ptr()[string_length++] = p_char; | 
					
						
							|  |  |  | 	return *this; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | template <int SHORT_BUFFER_SIZE> | 
					
						
							|  |  |  | StringBuffer<SHORT_BUFFER_SIZE> &StringBuffer<SHORT_BUFFER_SIZE>::append(const String &p_string) { | 
					
						
							| 
									
										
										
										
											2020-07-27 13:43:20 +03:00
										 |  |  | 	return append(p_string.get_data()); | 
					
						
							| 
									
										
										
										
											2018-01-20 20:03:17 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | template <int SHORT_BUFFER_SIZE> | 
					
						
							|  |  |  | StringBuffer<SHORT_BUFFER_SIZE> &StringBuffer<SHORT_BUFFER_SIZE>::append(const char *p_str) { | 
					
						
							|  |  |  | 	int len = strlen(p_str); | 
					
						
							|  |  |  | 	reserve(string_length + len + 1); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-27 13:43:20 +03:00
										 |  |  | 	char32_t *buf = current_buffer_ptr(); | 
					
						
							| 
									
										
										
										
											2018-01-20 20:03:17 +01:00
										 |  |  | 	for (const char *c_ptr = p_str; *c_ptr; ++c_ptr) { | 
					
						
							|  |  |  | 		buf[string_length++] = *c_ptr; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return *this; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | template <int SHORT_BUFFER_SIZE> | 
					
						
							| 
									
										
										
										
											2020-07-27 13:43:20 +03:00
										 |  |  | StringBuffer<SHORT_BUFFER_SIZE> &StringBuffer<SHORT_BUFFER_SIZE>::append(const char32_t *p_str, int p_clip_to_len) { | 
					
						
							| 
									
										
										
										
											2018-01-20 20:03:17 +01:00
										 |  |  | 	int len = 0; | 
					
						
							|  |  |  | 	while ((p_clip_to_len < 0 || len < p_clip_to_len) && p_str[len]) { | 
					
						
							|  |  |  | 		++len; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	reserve(string_length + len + 1); | 
					
						
							| 
									
										
										
										
											2020-07-27 13:43:20 +03:00
										 |  |  | 	memcpy(&(current_buffer_ptr()[string_length]), p_str, len * sizeof(char32_t)); | 
					
						
							| 
									
										
										
										
											2018-01-20 20:03:17 +01:00
										 |  |  | 	string_length += len; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return *this; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | template <int SHORT_BUFFER_SIZE> | 
					
						
							|  |  |  | StringBuffer<SHORT_BUFFER_SIZE> &StringBuffer<SHORT_BUFFER_SIZE>::reserve(int p_size) { | 
					
						
							| 
									
										
										
										
											2025-04-11 14:49:49 +02:00
										 |  |  | 	if (p_size <= SHORT_BUFFER_SIZE || p_size <= buffer.size()) { | 
					
						
							| 
									
										
										
										
											2025-09-23 17:47:28 +02:00
										 |  |  | 		if (p_size < length()) { | 
					
						
							|  |  |  | 			WARN_VERBOSE("reserve() called with a capacity smaller than the current size. This is likely a mistake."); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-01-20 20:03:17 +01:00
										 |  |  | 		return *this; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-01-20 20:03:17 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-15 12:04:21 +00:00
										 |  |  | 	bool need_copy = string_length > 0 && buffer.is_empty(); | 
					
						
							| 
									
										
										
										
											2025-05-28 20:33:21 +02:00
										 |  |  | 	buffer.resize_uninitialized(next_power_of_2((uint32_t)p_size)); | 
					
						
							| 
									
										
										
										
											2018-01-20 20:03:17 +01:00
										 |  |  | 	if (need_copy) { | 
					
						
							| 
									
										
										
										
											2020-07-27 13:43:20 +03:00
										 |  |  | 		memcpy(buffer.ptrw(), short_buffer, string_length * sizeof(char32_t)); | 
					
						
							| 
									
										
										
										
											2018-01-20 20:03:17 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return *this; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | template <int SHORT_BUFFER_SIZE> | 
					
						
							|  |  |  | int StringBuffer<SHORT_BUFFER_SIZE>::length() const { | 
					
						
							|  |  |  | 	return string_length; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | template <int SHORT_BUFFER_SIZE> | 
					
						
							|  |  |  | String StringBuffer<SHORT_BUFFER_SIZE>::as_string() { | 
					
						
							|  |  |  | 	current_buffer_ptr()[string_length] = '\0'; | 
					
						
							| 
									
										
										
										
											2020-12-15 12:04:21 +00:00
										 |  |  | 	if (buffer.is_empty()) { | 
					
						
							| 
									
										
										
										
											2018-01-20 20:03:17 +01:00
										 |  |  | 		return String(short_buffer); | 
					
						
							|  |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2025-05-28 20:33:21 +02:00
										 |  |  | 		buffer.resize_uninitialized(string_length + 1); | 
					
						
							| 
									
										
										
										
											2018-01-20 20:03:17 +01:00
										 |  |  | 		return buffer; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | template <int SHORT_BUFFER_SIZE> | 
					
						
							|  |  |  | double StringBuffer<SHORT_BUFFER_SIZE>::as_double() { | 
					
						
							|  |  |  | 	current_buffer_ptr()[string_length] = '\0'; | 
					
						
							| 
									
										
										
										
											2020-07-24 14:07:57 -04:00
										 |  |  | 	return String::to_float(current_buffer_ptr()); | 
					
						
							| 
									
										
										
										
											2018-01-20 20:03:17 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | template <int SHORT_BUFFER_SIZE> | 
					
						
							|  |  |  | int64_t StringBuffer<SHORT_BUFFER_SIZE>::as_int() { | 
					
						
							|  |  |  | 	current_buffer_ptr()[string_length] = '\0'; | 
					
						
							|  |  |  | 	return String::to_int(current_buffer_ptr()); | 
					
						
							|  |  |  | } |