2023-01-10 15:26:54 +01:00
|
|
|
/**************************************************************************/
|
|
|
|
/* string_name.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
|
|
|
|
2019-02-12 13:30:56 +01:00
|
|
|
#ifndef STRING_NAME_H
|
|
|
|
#define STRING_NAME_H
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2018-09-11 18:13:45 +02:00
|
|
|
#include "core/os/mutex.h"
|
|
|
|
#include "core/safe_refcount.h"
|
|
|
|
#include "core/ustring.h"
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2022-04-26 13:37:20 +02:00
|
|
|
#define UNIQUE_NODE_PREFIX "%"
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
struct StaticCString {
|
|
|
|
const char *ptr;
|
|
|
|
static StaticCString create(const char *p_ptr);
|
|
|
|
};
|
|
|
|
|
|
|
|
class StringName {
|
|
|
|
enum {
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
STRING_TABLE_BITS = 12,
|
|
|
|
STRING_TABLE_LEN = 1 << STRING_TABLE_BITS,
|
|
|
|
STRING_TABLE_MASK = STRING_TABLE_LEN - 1
|
2014-02-10 02:10:30 +01:00
|
|
|
};
|
2016-03-09 00:00:52 +01:00
|
|
|
|
|
|
|
struct _Data {
|
2014-02-10 02:10:30 +01:00
|
|
|
SafeRefCount refcount;
|
2017-03-05 16:44:50 +01:00
|
|
|
const char *cname;
|
2014-02-10 02:10:30 +01:00
|
|
|
String name;
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
String get_name() const { return cname ? String(cname) : name; }
|
2014-02-10 02:10:30 +01:00
|
|
|
int idx;
|
|
|
|
uint32_t hash;
|
|
|
|
_Data *prev;
|
|
|
|
_Data *next;
|
2017-03-05 16:44:50 +01:00
|
|
|
_Data() {
|
2021-05-04 16:00:45 +02:00
|
|
|
cname = nullptr;
|
|
|
|
next = prev = nullptr;
|
2018-04-18 22:20:39 +02:00
|
|
|
idx = 0;
|
2017-03-05 16:44:50 +01:00
|
|
|
hash = 0;
|
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
};
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
static _Data *_table[STRING_TABLE_LEN];
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
_Data *_data;
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
union _HashUnion {
|
|
|
|
_Data *ptr;
|
|
|
|
uint32_t hash;
|
|
|
|
};
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
void unref();
|
2017-03-05 16:44:50 +01:00
|
|
|
friend void register_core_types();
|
|
|
|
friend void unregister_core_types();
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2021-01-27 10:43:02 +01:00
|
|
|
static Mutex lock;
|
2014-02-10 02:10:30 +01:00
|
|
|
static void setup();
|
|
|
|
static void cleanup();
|
|
|
|
static bool configured;
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
StringName(_Data *p_data) { _data = p_data; }
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
public:
|
2021-05-04 16:00:45 +02:00
|
|
|
operator const void *() const { return (_data && (_data->cname || !_data->name.empty())) ? (void *)1 : nullptr; }
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
bool operator==(const String &p_name) const;
|
|
|
|
bool operator==(const char *p_name) const;
|
|
|
|
bool operator!=(const String &p_name) const;
|
2022-04-26 13:37:20 +02:00
|
|
|
|
|
|
|
_FORCE_INLINE_ bool is_node_unique_name() const {
|
|
|
|
if (!_data) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (_data->cname != nullptr) {
|
|
|
|
return (char32_t)_data->cname[0] == (char32_t)UNIQUE_NODE_PREFIX[0];
|
|
|
|
} else {
|
|
|
|
return (char32_t)_data->name[0] == (char32_t)UNIQUE_NODE_PREFIX[0];
|
|
|
|
}
|
|
|
|
}
|
2017-03-05 16:44:50 +01:00
|
|
|
_FORCE_INLINE_ bool operator<(const StringName &p_name) const {
|
|
|
|
return _data < p_name._data;
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
2017-03-05 16:44:50 +01:00
|
|
|
_FORCE_INLINE_ bool operator==(const StringName &p_name) const {
|
2016-03-09 00:00:52 +01:00
|
|
|
// the real magic of all this mess happens here.
|
2014-02-10 02:10:30 +01:00
|
|
|
// this is why path comparisons are very fast
|
2017-03-05 16:44:50 +01:00
|
|
|
return _data == p_name._data;
|
2016-03-09 00:00:52 +01:00
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
_FORCE_INLINE_ uint32_t hash() const {
|
2021-05-05 12:44:11 +02:00
|
|
|
if (_data) {
|
2014-02-10 02:10:30 +01:00
|
|
|
return _data->hash;
|
2021-05-05 12:44:11 +02:00
|
|
|
} else {
|
2014-02-10 02:10:30 +01:00
|
|
|
return 0;
|
2021-05-05 12:44:11 +02:00
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
2017-09-05 18:07:13 +02:00
|
|
|
_FORCE_INLINE_ const void *data_unique_pointer() const {
|
|
|
|
return (void *)_data;
|
|
|
|
}
|
2017-03-05 16:44:50 +01:00
|
|
|
bool operator!=(const StringName &p_name) const;
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2015-06-29 05:29:49 +02:00
|
|
|
_FORCE_INLINE_ operator String() const {
|
|
|
|
if (_data) {
|
2021-05-05 12:44:11 +02:00
|
|
|
if (_data->cname) {
|
2015-06-29 05:29:49 +02:00
|
|
|
return String(_data->cname);
|
2021-05-05 12:44:11 +02:00
|
|
|
} else {
|
2015-06-29 05:29:49 +02:00
|
|
|
return _data->name;
|
2021-05-05 12:44:11 +02:00
|
|
|
}
|
2015-06-29 05:29:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return String();
|
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
static StringName search(const char *p_name);
|
|
|
|
static StringName search(const CharType *p_name);
|
|
|
|
static StringName search(const String &p_name);
|
|
|
|
|
|
|
|
struct AlphCompare {
|
2017-03-05 16:44:50 +01:00
|
|
|
_FORCE_INLINE_ bool operator()(const StringName &l, const StringName &r) const {
|
2017-12-16 15:31:30 +01:00
|
|
|
const char *l_cname = l._data ? l._data->cname : "";
|
|
|
|
const char *r_cname = r._data ? r._data->cname : "";
|
|
|
|
|
|
|
|
if (l_cname) {
|
2021-05-05 12:44:11 +02:00
|
|
|
if (r_cname) {
|
2017-12-16 15:31:30 +01:00
|
|
|
return is_str_less(l_cname, r_cname);
|
2021-05-05 12:44:11 +02:00
|
|
|
} else {
|
2017-12-16 15:31:30 +01:00
|
|
|
return is_str_less(l_cname, r._data->name.ptr());
|
2021-05-05 12:44:11 +02:00
|
|
|
}
|
2017-12-16 15:31:30 +01:00
|
|
|
} else {
|
2021-05-05 12:44:11 +02:00
|
|
|
if (r_cname) {
|
2017-12-16 15:31:30 +01:00
|
|
|
return is_str_less(l._data->name.ptr(), r_cname);
|
2021-05-05 12:44:11 +02:00
|
|
|
} else {
|
2017-12-16 15:31:30 +01:00
|
|
|
return is_str_less(l._data->name.ptr(), r._data->name.ptr());
|
2021-05-05 12:44:11 +02:00
|
|
|
}
|
2017-12-16 15:31:30 +01:00
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void operator=(const StringName &p_name);
|
2014-02-10 02:10:30 +01:00
|
|
|
StringName(const char *p_name);
|
2017-03-05 16:44:50 +01:00
|
|
|
StringName(const StringName &p_name);
|
|
|
|
StringName(const String &p_name);
|
|
|
|
StringName(const StaticCString &p_static_string);
|
2014-02-10 02:10:30 +01:00
|
|
|
StringName();
|
|
|
|
~StringName();
|
|
|
|
};
|
|
|
|
|
|
|
|
StringName _scs_create(const char *p_chr);
|
|
|
|
|
2019-02-12 13:30:56 +01:00
|
|
|
#endif // STRING_NAME_H
|