regex.cpp 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504
  1. /*************************************************************************/
  2. /* regex.cpp */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
  10. /* */
  11. /* Permission is hereby granted, free of charge, to any person obtaining */
  12. /* a copy of this software and associated documentation files (the */
  13. /* "Software"), to deal in the Software without restriction, including */
  14. /* without limitation the rights to use, copy, modify, merge, publish, */
  15. /* distribute, sublicense, and/or sell copies of the Software, and to */
  16. /* permit persons to whom the Software is furnished to do so, subject to */
  17. /* the following conditions: */
  18. /* */
  19. /* The above copyright notice and this permission notice shall be */
  20. /* included in all copies or substantial portions of the Software. */
  21. /* */
  22. /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
  23. /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
  24. /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
  25. /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
  26. /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
  27. /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
  28. /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
  29. /*************************************************************************/
  30. #include "regex.h"
  31. #include "core/os/memory.h"
  32. extern "C" {
  33. #include <pcre2.h>
  34. }
  35. static void *_regex_malloc(PCRE2_SIZE size, void *user) {
  36. return memalloc(size);
  37. }
  38. static void _regex_free(void *ptr, void *user) {
  39. memfree(ptr);
  40. }
  41. int RegExMatch::_find(const Variant &p_name) const {
  42. if (p_name.is_num()) {
  43. int i = (int)p_name;
  44. if (i >= data.size()) {
  45. return -1;
  46. }
  47. return i;
  48. } else if (p_name.get_type() == Variant::STRING) {
  49. const Map<String, int>::Element *found = names.find((String)p_name);
  50. if (found) {
  51. return found->value();
  52. }
  53. }
  54. return -1;
  55. }
  56. String RegExMatch::get_subject() const {
  57. return subject;
  58. }
  59. int RegExMatch::get_group_count() const {
  60. if (data.size() == 0) {
  61. return 0;
  62. }
  63. return data.size() - 1;
  64. }
  65. Dictionary RegExMatch::get_names() const {
  66. Dictionary result;
  67. for (const Map<String, int>::Element *i = names.front(); i != nullptr; i = i->next()) {
  68. result[i->key()] = i->value();
  69. }
  70. return result;
  71. }
  72. Array RegExMatch::get_strings() const {
  73. Array result;
  74. int size = data.size();
  75. for (int i = 0; i < size; i++) {
  76. int start = data[i].start;
  77. if (start == -1) {
  78. result.append(String());
  79. continue;
  80. }
  81. int length = data[i].end - start;
  82. result.append(subject.substr(start, length));
  83. }
  84. return result;
  85. }
  86. String RegExMatch::get_string(const Variant &p_name) const {
  87. int id = _find(p_name);
  88. if (id < 0) {
  89. return String();
  90. }
  91. int start = data[id].start;
  92. if (start == -1) {
  93. return String();
  94. }
  95. int length = data[id].end - start;
  96. return subject.substr(start, length);
  97. }
  98. int RegExMatch::get_start(const Variant &p_name) const {
  99. int id = _find(p_name);
  100. if (id < 0) {
  101. return -1;
  102. }
  103. return data[id].start;
  104. }
  105. int RegExMatch::get_end(const Variant &p_name) const {
  106. int id = _find(p_name);
  107. if (id < 0) {
  108. return -1;
  109. }
  110. return data[id].end;
  111. }
  112. void RegExMatch::_bind_methods() {
  113. ClassDB::bind_method(D_METHOD("get_subject"), &RegExMatch::get_subject);
  114. ClassDB::bind_method(D_METHOD("get_group_count"), &RegExMatch::get_group_count);
  115. ClassDB::bind_method(D_METHOD("get_names"), &RegExMatch::get_names);
  116. ClassDB::bind_method(D_METHOD("get_strings"), &RegExMatch::get_strings);
  117. ClassDB::bind_method(D_METHOD("get_string", "name"), &RegExMatch::get_string, DEFVAL(0));
  118. ClassDB::bind_method(D_METHOD("get_start", "name"), &RegExMatch::get_start, DEFVAL(0));
  119. ClassDB::bind_method(D_METHOD("get_end", "name"), &RegExMatch::get_end, DEFVAL(0));
  120. ADD_PROPERTY(PropertyInfo(Variant::STRING, "subject"), "", "get_subject");
  121. ADD_PROPERTY(PropertyInfo(Variant::DICTIONARY, "names"), "", "get_names");
  122. ADD_PROPERTY(PropertyInfo(Variant::ARRAY, "strings"), "", "get_strings");
  123. }
  124. void RegEx::_pattern_info(uint32_t what, void *where) const {
  125. if (sizeof(CharType) == 2) {
  126. pcre2_pattern_info_16((pcre2_code_16 *)code, what, where);
  127. } else {
  128. pcre2_pattern_info_32((pcre2_code_32 *)code, what, where);
  129. }
  130. }
  131. void RegEx::clear() {
  132. if (sizeof(CharType) == 2) {
  133. if (code) {
  134. pcre2_code_free_16((pcre2_code_16 *)code);
  135. code = nullptr;
  136. }
  137. } else {
  138. if (code) {
  139. pcre2_code_free_32((pcre2_code_32 *)code);
  140. code = nullptr;
  141. }
  142. }
  143. }
  144. Error RegEx::compile(const String &p_pattern) {
  145. pattern = p_pattern;
  146. clear();
  147. int err;
  148. PCRE2_SIZE offset;
  149. uint32_t flags = PCRE2_DUPNAMES;
  150. if (sizeof(CharType) == 2) {
  151. pcre2_general_context_16 *gctx = (pcre2_general_context_16 *)general_ctx;
  152. pcre2_compile_context_16 *cctx = pcre2_compile_context_create_16(gctx);
  153. PCRE2_SPTR16 p = (PCRE2_SPTR16)pattern.c_str();
  154. code = pcre2_compile_16(p, pattern.length(), flags, &err, &offset, cctx);
  155. pcre2_compile_context_free_16(cctx);
  156. if (!code) {
  157. PCRE2_UCHAR16 buf[256];
  158. pcre2_get_error_message_16(err, buf, 256);
  159. String message = String::num(offset) + ": " + String((const CharType *)buf);
  160. ERR_PRINT(message.utf8());
  161. return FAILED;
  162. }
  163. } else {
  164. pcre2_general_context_32 *gctx = (pcre2_general_context_32 *)general_ctx;
  165. pcre2_compile_context_32 *cctx = pcre2_compile_context_create_32(gctx);
  166. PCRE2_SPTR32 p = (PCRE2_SPTR32)pattern.c_str();
  167. code = pcre2_compile_32(p, pattern.length(), flags, &err, &offset, cctx);
  168. pcre2_compile_context_free_32(cctx);
  169. if (!code) {
  170. PCRE2_UCHAR32 buf[256];
  171. pcre2_get_error_message_32(err, buf, 256);
  172. String message = String::num(offset) + ": " + String((const CharType *)buf);
  173. ERR_PRINT(message.utf8());
  174. return FAILED;
  175. }
  176. }
  177. return OK;
  178. }
  179. Ref<RegExMatch> RegEx::search(const String &p_subject, int p_offset, int p_end) const {
  180. ERR_FAIL_COND_V(!is_valid(), nullptr);
  181. Ref<RegExMatch> result = memnew(RegExMatch);
  182. int length = p_subject.length();
  183. if (p_end >= 0 && p_end < length) {
  184. length = p_end;
  185. }
  186. if (sizeof(CharType) == 2) {
  187. pcre2_code_16 *c = (pcre2_code_16 *)code;
  188. pcre2_general_context_16 *gctx = (pcre2_general_context_16 *)general_ctx;
  189. pcre2_match_context_16 *mctx = pcre2_match_context_create_16(gctx);
  190. PCRE2_SPTR16 s = (PCRE2_SPTR16)p_subject.c_str();
  191. pcre2_match_data_16 *match = pcre2_match_data_create_from_pattern_16(c, gctx);
  192. int res = pcre2_match_16(c, s, length, p_offset, 0, match, mctx);
  193. if (res < 0) {
  194. pcre2_match_data_free_16(match);
  195. pcre2_match_context_free_16(mctx);
  196. return nullptr;
  197. }
  198. uint32_t size = pcre2_get_ovector_count_16(match);
  199. PCRE2_SIZE *ovector = pcre2_get_ovector_pointer_16(match);
  200. result->data.resize(size);
  201. for (uint32_t i = 0; i < size; i++) {
  202. result->data.write[i].start = ovector[i * 2];
  203. result->data.write[i].end = ovector[i * 2 + 1];
  204. }
  205. pcre2_match_data_free_16(match);
  206. pcre2_match_context_free_16(mctx);
  207. } else {
  208. pcre2_code_32 *c = (pcre2_code_32 *)code;
  209. pcre2_general_context_32 *gctx = (pcre2_general_context_32 *)general_ctx;
  210. pcre2_match_context_32 *mctx = pcre2_match_context_create_32(gctx);
  211. PCRE2_SPTR32 s = (PCRE2_SPTR32)p_subject.c_str();
  212. pcre2_match_data_32 *match = pcre2_match_data_create_from_pattern_32(c, gctx);
  213. int res = pcre2_match_32(c, s, length, p_offset, 0, match, mctx);
  214. if (res < 0) {
  215. pcre2_match_data_free_32(match);
  216. pcre2_match_context_free_32(mctx);
  217. return nullptr;
  218. }
  219. uint32_t size = pcre2_get_ovector_count_32(match);
  220. PCRE2_SIZE *ovector = pcre2_get_ovector_pointer_32(match);
  221. result->data.resize(size);
  222. for (uint32_t i = 0; i < size; i++) {
  223. result->data.write[i].start = ovector[i * 2];
  224. result->data.write[i].end = ovector[i * 2 + 1];
  225. }
  226. pcre2_match_data_free_32(match);
  227. pcre2_match_context_free_32(mctx);
  228. }
  229. result->subject = p_subject;
  230. uint32_t count;
  231. const CharType *table;
  232. uint32_t entry_size;
  233. _pattern_info(PCRE2_INFO_NAMECOUNT, &count);
  234. _pattern_info(PCRE2_INFO_NAMETABLE, &table);
  235. _pattern_info(PCRE2_INFO_NAMEENTRYSIZE, &entry_size);
  236. for (uint32_t i = 0; i < count; i++) {
  237. CharType id = table[i * entry_size];
  238. if (result->data[id].start == -1) {
  239. continue;
  240. }
  241. String name = &table[i * entry_size + 1];
  242. if (result->names.has(name)) {
  243. continue;
  244. }
  245. result->names.insert(name, id);
  246. }
  247. return result;
  248. }
  249. Array RegEx::search_all(const String &p_subject, int p_offset, int p_end) const {
  250. int last_end = -1;
  251. Array result;
  252. Ref<RegExMatch> match = search(p_subject, p_offset, p_end);
  253. while (match.is_valid()) {
  254. if (last_end == match->get_end(0)) {
  255. break;
  256. }
  257. result.push_back(match);
  258. last_end = match->get_end(0);
  259. match = search(p_subject, match->get_end(0), p_end);
  260. }
  261. return result;
  262. }
  263. String RegEx::sub(const String &p_subject, const String &p_replacement, bool p_all, int p_offset, int p_end) const {
  264. ERR_FAIL_COND_V(!is_valid(), String());
  265. // safety_zone is the number of chars we allocate in addition to the number of chars expected in order to
  266. // guard against the PCRE API writing one additional \0 at the end. PCRE's API docs are unclear on whether
  267. // PCRE understands outlength in pcre2_substitute() as counting an implicit additional terminating char or
  268. // not. always allocating one char more than telling PCRE has us on the safe side.
  269. const int safety_zone = 1;
  270. PCRE2_SIZE olength = p_subject.length() + 1; // space for output string and one terminating \0 character
  271. Vector<CharType> output;
  272. output.resize(olength + safety_zone);
  273. uint32_t flags = PCRE2_SUBSTITUTE_OVERFLOW_LENGTH;
  274. if (p_all) {
  275. flags |= PCRE2_SUBSTITUTE_GLOBAL;
  276. }
  277. PCRE2_SIZE length = p_subject.length();
  278. if (p_end >= 0 && (uint32_t)p_end < length) {
  279. length = p_end;
  280. }
  281. if (sizeof(CharType) == 2) {
  282. pcre2_code_16 *c = (pcre2_code_16 *)code;
  283. pcre2_general_context_16 *gctx = (pcre2_general_context_16 *)general_ctx;
  284. pcre2_match_context_16 *mctx = pcre2_match_context_create_16(gctx);
  285. PCRE2_SPTR16 s = (PCRE2_SPTR16)p_subject.c_str();
  286. PCRE2_SPTR16 r = (PCRE2_SPTR16)p_replacement.c_str();
  287. PCRE2_UCHAR16 *o = (PCRE2_UCHAR16 *)output.ptrw();
  288. pcre2_match_data_16 *match = pcre2_match_data_create_from_pattern_16(c, gctx);
  289. int res = pcre2_substitute_16(c, s, length, p_offset, flags, match, mctx, r, p_replacement.length(), o, &olength);
  290. if (res == PCRE2_ERROR_NOMEMORY) {
  291. output.resize(olength + safety_zone);
  292. o = (PCRE2_UCHAR16 *)output.ptrw();
  293. res = pcre2_substitute_16(c, s, length, p_offset, flags, match, mctx, r, p_replacement.length(), o, &olength);
  294. }
  295. pcre2_match_data_free_16(match);
  296. pcre2_match_context_free_16(mctx);
  297. if (res < 0) {
  298. return String();
  299. }
  300. } else {
  301. pcre2_code_32 *c = (pcre2_code_32 *)code;
  302. pcre2_general_context_32 *gctx = (pcre2_general_context_32 *)general_ctx;
  303. pcre2_match_context_32 *mctx = pcre2_match_context_create_32(gctx);
  304. PCRE2_SPTR32 s = (PCRE2_SPTR32)p_subject.c_str();
  305. PCRE2_SPTR32 r = (PCRE2_SPTR32)p_replacement.c_str();
  306. PCRE2_UCHAR32 *o = (PCRE2_UCHAR32 *)output.ptrw();
  307. pcre2_match_data_32 *match = pcre2_match_data_create_from_pattern_32(c, gctx);
  308. int res = pcre2_substitute_32(c, s, length, p_offset, flags, match, mctx, r, p_replacement.length(), o, &olength);
  309. if (res == PCRE2_ERROR_NOMEMORY) {
  310. output.resize(olength + safety_zone);
  311. o = (PCRE2_UCHAR32 *)output.ptrw();
  312. res = pcre2_substitute_32(c, s, length, p_offset, flags, match, mctx, r, p_replacement.length(), o, &olength);
  313. }
  314. pcre2_match_data_free_32(match);
  315. pcre2_match_context_free_32(mctx);
  316. if (res < 0) {
  317. return String();
  318. }
  319. }
  320. return String(output.ptr(), olength);
  321. }
  322. bool RegEx::is_valid() const {
  323. return (code != nullptr);
  324. }
  325. String RegEx::get_pattern() const {
  326. return pattern;
  327. }
  328. int RegEx::get_group_count() const {
  329. ERR_FAIL_COND_V(!is_valid(), 0);
  330. uint32_t count;
  331. _pattern_info(PCRE2_INFO_CAPTURECOUNT, &count);
  332. return count;
  333. }
  334. Array RegEx::get_names() const {
  335. Array result;
  336. ERR_FAIL_COND_V(!is_valid(), result);
  337. uint32_t count;
  338. const CharType *table;
  339. uint32_t entry_size;
  340. _pattern_info(PCRE2_INFO_NAMECOUNT, &count);
  341. _pattern_info(PCRE2_INFO_NAMETABLE, &table);
  342. _pattern_info(PCRE2_INFO_NAMEENTRYSIZE, &entry_size);
  343. for (uint32_t i = 0; i < count; i++) {
  344. String name = &table[i * entry_size + 1];
  345. if (result.find(name) < 0) {
  346. result.append(name);
  347. }
  348. }
  349. return result;
  350. }
  351. RegEx::RegEx() {
  352. if (sizeof(CharType) == 2) {
  353. general_ctx = pcre2_general_context_create_16(&_regex_malloc, &_regex_free, nullptr);
  354. } else {
  355. general_ctx = pcre2_general_context_create_32(&_regex_malloc, &_regex_free, nullptr);
  356. }
  357. code = nullptr;
  358. }
  359. RegEx::RegEx(const String &p_pattern) {
  360. if (sizeof(CharType) == 2) {
  361. general_ctx = pcre2_general_context_create_16(&_regex_malloc, &_regex_free, nullptr);
  362. } else {
  363. general_ctx = pcre2_general_context_create_32(&_regex_malloc, &_regex_free, nullptr);
  364. }
  365. code = nullptr;
  366. compile(p_pattern);
  367. }
  368. RegEx::~RegEx() {
  369. if (sizeof(CharType) == 2) {
  370. if (code) {
  371. pcre2_code_free_16((pcre2_code_16 *)code);
  372. }
  373. pcre2_general_context_free_16((pcre2_general_context_16 *)general_ctx);
  374. } else {
  375. if (code) {
  376. pcre2_code_free_32((pcre2_code_32 *)code);
  377. }
  378. pcre2_general_context_free_32((pcre2_general_context_32 *)general_ctx);
  379. }
  380. }
  381. void RegEx::_bind_methods() {
  382. ClassDB::bind_method(D_METHOD("clear"), &RegEx::clear);
  383. ClassDB::bind_method(D_METHOD("compile", "pattern"), &RegEx::compile);
  384. ClassDB::bind_method(D_METHOD("search", "subject", "offset", "end"), &RegEx::search, DEFVAL(0), DEFVAL(-1));
  385. ClassDB::bind_method(D_METHOD("search_all", "subject", "offset", "end"), &RegEx::search_all, DEFVAL(0), DEFVAL(-1));
  386. ClassDB::bind_method(D_METHOD("sub", "subject", "replacement", "all", "offset", "end"), &RegEx::sub, DEFVAL(false), DEFVAL(0), DEFVAL(-1));
  387. ClassDB::bind_method(D_METHOD("is_valid"), &RegEx::is_valid);
  388. ClassDB::bind_method(D_METHOD("get_pattern"), &RegEx::get_pattern);
  389. ClassDB::bind_method(D_METHOD("get_group_count"), &RegEx::get_group_count);
  390. ClassDB::bind_method(D_METHOD("get_names"), &RegEx::get_names);
  391. }