ustring.cpp 91 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554
  1. /*************************************************************************/
  2. /* ustring.cpp */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2021 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. #ifdef _MSC_VER
  31. #define _CRT_SECURE_NO_WARNINGS // to disable build-time warning which suggested to use strcpy_s instead strcpy
  32. #endif
  33. #include "ustring.h"
  34. #include "core/color.h"
  35. #include "core/crypto/crypto_core.h"
  36. #include "core/math/math_funcs.h"
  37. #include "core/os/memory.h"
  38. #include "core/print_string.h"
  39. #include "core/translation.h"
  40. #include "core/ucaps.h"
  41. #include "core/variant.h"
  42. #include <wchar.h>
  43. #include <cstdint>
  44. #ifndef NO_USE_STDLIB
  45. #include <stdio.h>
  46. #include <stdlib.h>
  47. #endif
  48. #if defined(MINGW_ENABLED) || defined(_MSC_VER)
  49. #define snprintf _snprintf_s
  50. #endif
  51. #define MAX_DIGITS 6
  52. #define UPPERCASE(m_c) (((m_c) >= 'a' && (m_c) <= 'z') ? ((m_c) - ('a' - 'A')) : (m_c))
  53. #define LOWERCASE(m_c) (((m_c) >= 'A' && (m_c) <= 'Z') ? ((m_c) + ('a' - 'A')) : (m_c))
  54. #define IS_DIGIT(m_d) ((m_d) >= '0' && (m_d) <= '9')
  55. #define IS_HEX_DIGIT(m_d) (((m_d) >= '0' && (m_d) <= '9') || ((m_d) >= 'a' && (m_d) <= 'f') || ((m_d) >= 'A' && (m_d) <= 'F'))
  56. const char CharString::_null = 0;
  57. const CharType String::_null = 0;
  58. bool is_symbol(CharType c) {
  59. return c != '_' && ((c >= '!' && c <= '/') || (c >= ':' && c <= '@') || (c >= '[' && c <= '`') || (c >= '{' && c <= '~') || c == '\t' || c == ' ');
  60. }
  61. bool select_word(const String &p_s, int p_col, int &r_beg, int &r_end) {
  62. const String &s = p_s;
  63. int beg = CLAMP(p_col, 0, s.length());
  64. int end = beg;
  65. if (s[beg] > 32 || beg == s.length()) {
  66. bool symbol = beg < s.length() && is_symbol(s[beg]);
  67. while (beg > 0 && s[beg - 1] > 32 && (symbol == is_symbol(s[beg - 1]))) {
  68. beg--;
  69. }
  70. while (end < s.length() && s[end + 1] > 32 && (symbol == is_symbol(s[end + 1]))) {
  71. end++;
  72. }
  73. if (end < s.length())
  74. end += 1;
  75. r_beg = beg;
  76. r_end = end;
  77. return true;
  78. } else {
  79. return false;
  80. }
  81. }
  82. /** STRING **/
  83. bool CharString::operator<(const CharString &p_right) const {
  84. if (length() == 0) {
  85. return p_right.length() != 0;
  86. }
  87. return is_str_less(get_data(), p_right.get_data());
  88. }
  89. CharString &CharString::operator+=(char p_char) {
  90. resize(size() ? size() + 1 : 2);
  91. set(length(), 0);
  92. set(length() - 1, p_char);
  93. return *this;
  94. }
  95. const char *CharString::get_data() const {
  96. if (size())
  97. return &operator[](0);
  98. else
  99. return "";
  100. }
  101. CharString &CharString::operator=(const char *p_cstr) {
  102. copy_from(p_cstr);
  103. return *this;
  104. }
  105. void CharString::copy_from(const char *p_cstr) {
  106. if (!p_cstr) {
  107. resize(0);
  108. return;
  109. }
  110. size_t len = strlen(p_cstr);
  111. if (len == 0) {
  112. resize(0);
  113. return;
  114. }
  115. resize(len + 1); // include terminating null char
  116. strcpy(ptrw(), p_cstr);
  117. }
  118. Error String::parse_url(String &r_scheme, String &r_host, int &r_port, String &r_path) const {
  119. // Splits the URL into scheme, host, port, path. Strip credentials when present.
  120. String base = *this;
  121. r_scheme = "";
  122. r_host = "";
  123. r_port = 0;
  124. r_path = "";
  125. int pos = base.find("://");
  126. // Scheme
  127. if (pos != -1) {
  128. r_scheme = base.substr(0, pos + 3).to_lower();
  129. base = base.substr(pos + 3, base.length() - pos - 3);
  130. }
  131. pos = base.find("/");
  132. // Path
  133. if (pos != -1) {
  134. r_path = base.substr(pos, base.length() - pos);
  135. base = base.substr(0, pos);
  136. }
  137. // Host
  138. pos = base.find("@");
  139. if (pos != -1) {
  140. // Strip credentials
  141. base = base.substr(pos + 1, base.length() - pos - 1);
  142. }
  143. if (base.begins_with("[")) {
  144. // Literal IPv6
  145. pos = base.rfind("]");
  146. if (pos == -1) {
  147. return ERR_INVALID_PARAMETER;
  148. }
  149. r_host = base.substr(1, pos - 1);
  150. base = base.substr(pos + 1, base.length() - pos - 1);
  151. } else {
  152. // Anything else
  153. if (base.get_slice_count(":") > 2) {
  154. return ERR_INVALID_PARAMETER;
  155. }
  156. pos = base.rfind(":");
  157. if (pos == -1) {
  158. r_host = base;
  159. base = "";
  160. } else {
  161. r_host = base.substr(0, pos);
  162. base = base.substr(pos, base.length() - pos);
  163. }
  164. }
  165. if (r_host.empty()) {
  166. return ERR_INVALID_PARAMETER;
  167. }
  168. r_host = r_host.to_lower();
  169. // Port
  170. if (base.begins_with(":")) {
  171. base = base.substr(1, base.length() - 1);
  172. if (!base.is_valid_integer()) {
  173. return ERR_INVALID_PARAMETER;
  174. }
  175. r_port = base.to_int();
  176. if (r_port < 1 || r_port > 65535) {
  177. return ERR_INVALID_PARAMETER;
  178. }
  179. }
  180. return OK;
  181. }
  182. void String::copy_from(const char *p_cstr) {
  183. if (!p_cstr) {
  184. resize(0);
  185. return;
  186. }
  187. int len = 0;
  188. const char *ptr = p_cstr;
  189. while (*(ptr++) != 0)
  190. len++;
  191. if (len == 0) {
  192. resize(0);
  193. return;
  194. }
  195. resize(len + 1); // include 0
  196. CharType *dst = this->ptrw();
  197. for (int i = 0; i < len + 1; i++) {
  198. dst[i] = p_cstr[i];
  199. }
  200. }
  201. void String::copy_from(const CharType *p_cstr, const int p_clip_to) {
  202. if (!p_cstr) {
  203. resize(0);
  204. return;
  205. }
  206. int len = 0;
  207. const CharType *ptr = p_cstr;
  208. while ((p_clip_to < 0 || len < p_clip_to) && *(ptr++) != 0)
  209. len++;
  210. if (len == 0) {
  211. resize(0);
  212. return;
  213. }
  214. copy_from_unchecked(p_cstr, len);
  215. }
  216. // assumes the following have already been validated:
  217. // p_char != NULL
  218. // p_length > 0
  219. // p_length <= p_char strlen
  220. void String::copy_from_unchecked(const CharType *p_char, const int p_length) {
  221. resize(p_length + 1);
  222. set(p_length, 0);
  223. CharType *dst = ptrw();
  224. for (int i = 0; i < p_length; i++) {
  225. dst[i] = p_char[i];
  226. }
  227. }
  228. void String::copy_from(const CharType &p_char) {
  229. resize(2);
  230. set(0, p_char);
  231. set(1, 0);
  232. }
  233. bool String::operator==(const String &p_str) const {
  234. if (length() != p_str.length())
  235. return false;
  236. if (empty())
  237. return true;
  238. int l = length();
  239. const CharType *src = c_str();
  240. const CharType *dst = p_str.c_str();
  241. /* Compare char by char */
  242. for (int i = 0; i < l; i++) {
  243. if (src[i] != dst[i])
  244. return false;
  245. }
  246. return true;
  247. }
  248. bool String::operator!=(const String &p_str) const {
  249. return !(*this == p_str);
  250. }
  251. String String::operator+(const String &p_str) const {
  252. String res = *this;
  253. res += p_str;
  254. return res;
  255. }
  256. /*
  257. String String::operator+(CharType p_chr) const {
  258. String res=*this;
  259. res+=p_chr;
  260. return res;
  261. }
  262. */
  263. String &String::operator+=(const String &p_str) {
  264. if (empty()) {
  265. *this = p_str;
  266. return *this;
  267. }
  268. if (p_str.empty())
  269. return *this;
  270. int from = length();
  271. resize(length() + p_str.size());
  272. const CharType *src = p_str.c_str();
  273. CharType *dst = ptrw();
  274. set(length(), 0);
  275. for (int i = 0; i < p_str.length(); i++)
  276. dst[from + i] = src[i];
  277. return *this;
  278. }
  279. String &String::operator+=(const CharType *p_str) {
  280. *this += String(p_str);
  281. return *this;
  282. }
  283. String &String::operator+=(CharType p_char) {
  284. resize(size() ? size() + 1 : 2);
  285. set(length(), 0);
  286. set(length() - 1, p_char);
  287. return *this;
  288. }
  289. String &String::operator+=(const char *p_str) {
  290. if (!p_str || p_str[0] == 0)
  291. return *this;
  292. int src_len = 0;
  293. const char *ptr = p_str;
  294. while (*(ptr++) != 0)
  295. src_len++;
  296. int from = length();
  297. resize(from + src_len + 1);
  298. CharType *dst = ptrw();
  299. set(length(), 0);
  300. for (int i = 0; i < src_len; i++)
  301. dst[from + i] = p_str[i];
  302. return *this;
  303. }
  304. void String::operator=(const char *p_str) {
  305. copy_from(p_str);
  306. }
  307. void String::operator=(const CharType *p_str) {
  308. copy_from(p_str);
  309. }
  310. bool String::operator==(const StrRange &p_str_range) const {
  311. int len = p_str_range.len;
  312. if (length() != len)
  313. return false;
  314. if (empty())
  315. return true;
  316. const CharType *c_str = p_str_range.c_str;
  317. const CharType *dst = &operator[](0);
  318. /* Compare char by char */
  319. for (int i = 0; i < len; i++) {
  320. if (c_str[i] != dst[i])
  321. return false;
  322. }
  323. return true;
  324. }
  325. bool String::operator==(const char *p_str) const {
  326. int len = 0;
  327. const char *aux = p_str;
  328. while (*(aux++) != 0)
  329. len++;
  330. if (length() != len)
  331. return false;
  332. if (empty())
  333. return true;
  334. int l = length();
  335. const CharType *dst = c_str();
  336. /* Compare char by char */
  337. for (int i = 0; i < l; i++) {
  338. if (p_str[i] != dst[i])
  339. return false;
  340. }
  341. return true;
  342. }
  343. bool String::operator==(const CharType *p_str) const {
  344. int len = 0;
  345. const CharType *aux = p_str;
  346. while (*(aux++) != 0)
  347. len++;
  348. if (length() != len)
  349. return false;
  350. if (empty())
  351. return true;
  352. int l = length();
  353. const CharType *dst = c_str();
  354. /* Compare char by char */
  355. for (int i = 0; i < l; i++) {
  356. if (p_str[i] != dst[i])
  357. return false;
  358. }
  359. return true;
  360. }
  361. bool String::operator!=(const char *p_str) const {
  362. return (!(*this == p_str));
  363. }
  364. bool String::operator!=(const CharType *p_str) const {
  365. return (!(*this == p_str));
  366. }
  367. bool String::operator<(const CharType *p_str) const {
  368. if (empty() && p_str[0] == 0)
  369. return false;
  370. if (empty())
  371. return true;
  372. return is_str_less(c_str(), p_str);
  373. }
  374. bool String::operator<=(const String &p_str) const {
  375. return (*this < p_str) || (*this == p_str);
  376. }
  377. bool String::operator<(const char *p_str) const {
  378. if (empty() && p_str[0] == 0)
  379. return false;
  380. if (empty())
  381. return true;
  382. return is_str_less(c_str(), p_str);
  383. }
  384. bool String::operator<(const String &p_str) const {
  385. return operator<(p_str.c_str());
  386. }
  387. signed char String::nocasecmp_to(const String &p_str) const {
  388. if (empty() && p_str.empty())
  389. return 0;
  390. if (empty())
  391. return -1;
  392. if (p_str.empty())
  393. return 1;
  394. const CharType *that_str = p_str.c_str();
  395. const CharType *this_str = c_str();
  396. while (true) {
  397. if (*that_str == 0 && *this_str == 0)
  398. return 0; //we're equal
  399. else if (*this_str == 0)
  400. return -1; //if this is empty, and the other one is not, then we're less.. I think?
  401. else if (*that_str == 0)
  402. return 1; //otherwise the other one is smaller..
  403. else if (_find_upper(*this_str) < _find_upper(*that_str)) //more than
  404. return -1;
  405. else if (_find_upper(*this_str) > _find_upper(*that_str)) //less than
  406. return 1;
  407. this_str++;
  408. that_str++;
  409. }
  410. }
  411. signed char String::casecmp_to(const String &p_str) const {
  412. if (empty() && p_str.empty())
  413. return 0;
  414. if (empty())
  415. return -1;
  416. if (p_str.empty())
  417. return 1;
  418. const CharType *that_str = p_str.c_str();
  419. const CharType *this_str = c_str();
  420. while (true) {
  421. if (*that_str == 0 && *this_str == 0)
  422. return 0; //we're equal
  423. else if (*this_str == 0)
  424. return -1; //if this is empty, and the other one is not, then we're less.. I think?
  425. else if (*that_str == 0)
  426. return 1; //otherwise the other one is smaller..
  427. else if (*this_str < *that_str) //more than
  428. return -1;
  429. else if (*this_str > *that_str) //less than
  430. return 1;
  431. this_str++;
  432. that_str++;
  433. }
  434. }
  435. signed char String::naturalnocasecmp_to(const String &p_str) const {
  436. const CharType *this_str = c_str();
  437. const CharType *that_str = p_str.c_str();
  438. if (this_str && that_str) {
  439. while (*this_str == '.' || *that_str == '.') {
  440. if (*this_str++ != '.')
  441. return 1;
  442. if (*that_str++ != '.')
  443. return -1;
  444. if (!*that_str)
  445. return 1;
  446. if (!*this_str)
  447. return -1;
  448. }
  449. while (*this_str) {
  450. if (!*that_str) {
  451. return 1;
  452. } else if (IS_DIGIT(*this_str)) {
  453. if (!IS_DIGIT(*that_str)) {
  454. return -1;
  455. }
  456. // Keep ptrs to start of numerical sequences
  457. const CharType *this_substr = this_str;
  458. const CharType *that_substr = that_str;
  459. // Compare lengths of both numerical sequences, ignoring leading zeros
  460. while (IS_DIGIT(*this_str)) {
  461. this_str++;
  462. }
  463. while (IS_DIGIT(*that_str)) {
  464. that_str++;
  465. }
  466. while (*this_substr == '0') {
  467. this_substr++;
  468. }
  469. while (*that_substr == '0') {
  470. that_substr++;
  471. }
  472. int this_len = this_str - this_substr;
  473. int that_len = that_str - that_substr;
  474. if (this_len < that_len) {
  475. return -1;
  476. } else if (this_len > that_len) {
  477. return 1;
  478. }
  479. // If lengths equal, compare lexicographically
  480. while (this_substr != this_str && that_substr != that_str) {
  481. if (*this_substr < *that_substr) {
  482. return -1;
  483. } else if (*this_substr > *that_substr) {
  484. return 1;
  485. }
  486. this_substr++;
  487. that_substr++;
  488. }
  489. } else if (IS_DIGIT(*that_str)) {
  490. return 1;
  491. } else {
  492. if (_find_upper(*this_str) < _find_upper(*that_str)) //more than
  493. return -1;
  494. else if (_find_upper(*this_str) > _find_upper(*that_str)) //less than
  495. return 1;
  496. this_str++;
  497. that_str++;
  498. }
  499. }
  500. if (*that_str)
  501. return -1;
  502. }
  503. return 0;
  504. }
  505. void String::erase(int p_pos, int p_chars) {
  506. *this = left(p_pos) + substr(p_pos + p_chars, length() - ((p_pos + p_chars)));
  507. }
  508. String String::capitalize() const {
  509. String aux = this->camelcase_to_underscore(true).replace("_", " ").strip_edges();
  510. String cap;
  511. for (int i = 0; i < aux.get_slice_count(" "); i++) {
  512. String slice = aux.get_slicec(' ', i);
  513. if (slice.length() > 0) {
  514. slice[0] = _find_upper(slice[0]);
  515. if (i > 0)
  516. cap += " ";
  517. cap += slice;
  518. }
  519. }
  520. return cap;
  521. }
  522. String String::camelcase_to_underscore(bool lowercase) const {
  523. const CharType *cstr = c_str();
  524. String new_string;
  525. const char A = 'A', Z = 'Z';
  526. const char a = 'a', z = 'z';
  527. int start_index = 0;
  528. for (int i = 1; i < this->size(); i++) {
  529. bool is_upper = cstr[i] >= A && cstr[i] <= Z;
  530. bool is_number = cstr[i] >= '0' && cstr[i] <= '9';
  531. bool are_next_2_lower = false;
  532. bool is_next_lower = false;
  533. bool is_next_number = false;
  534. bool was_precedent_upper = cstr[i - 1] >= A && cstr[i - 1] <= Z;
  535. bool was_precedent_number = cstr[i - 1] >= '0' && cstr[i - 1] <= '9';
  536. if (i + 2 < this->size()) {
  537. are_next_2_lower = cstr[i + 1] >= a && cstr[i + 1] <= z && cstr[i + 2] >= a && cstr[i + 2] <= z;
  538. }
  539. if (i + 1 < this->size()) {
  540. is_next_lower = cstr[i + 1] >= a && cstr[i + 1] <= z;
  541. is_next_number = cstr[i + 1] >= '0' && cstr[i + 1] <= '9';
  542. }
  543. const bool cond_a = is_upper && !was_precedent_upper && !was_precedent_number;
  544. const bool cond_b = was_precedent_upper && is_upper && are_next_2_lower;
  545. const bool cond_c = is_number && !was_precedent_number;
  546. const bool can_break_number_letter = is_number && !was_precedent_number && is_next_lower;
  547. const bool can_break_letter_number = !is_number && was_precedent_number && (is_next_lower || is_next_number);
  548. bool should_split = cond_a || cond_b || cond_c || can_break_number_letter || can_break_letter_number;
  549. if (should_split) {
  550. new_string += this->substr(start_index, i - start_index) + "_";
  551. start_index = i;
  552. }
  553. }
  554. new_string += this->substr(start_index, this->size() - start_index);
  555. return lowercase ? new_string.to_lower() : new_string;
  556. }
  557. int String::get_slice_count(String p_splitter) const {
  558. if (empty())
  559. return 0;
  560. if (p_splitter.empty())
  561. return 0;
  562. int pos = 0;
  563. int slices = 1;
  564. while ((pos = find(p_splitter, pos)) >= 0) {
  565. slices++;
  566. pos += p_splitter.length();
  567. }
  568. return slices;
  569. }
  570. String String::get_slice(String p_splitter, int p_slice) const {
  571. if (empty() || p_splitter.empty())
  572. return "";
  573. int pos = 0;
  574. int prev_pos = 0;
  575. //int slices=1;
  576. if (p_slice < 0)
  577. return "";
  578. if (find(p_splitter) == -1)
  579. return *this;
  580. int i = 0;
  581. while (true) {
  582. pos = find(p_splitter, pos);
  583. if (pos == -1)
  584. pos = length(); //reached end
  585. int from = prev_pos;
  586. //int to=pos;
  587. if (p_slice == i) {
  588. return substr(from, pos - from);
  589. }
  590. if (pos == length()) //reached end and no find
  591. break;
  592. pos += p_splitter.length();
  593. prev_pos = pos;
  594. i++;
  595. }
  596. return ""; //no find!
  597. }
  598. String String::get_slicec(CharType p_splitter, int p_slice) const {
  599. if (empty())
  600. return String();
  601. if (p_slice < 0)
  602. return String();
  603. const CharType *c = this->ptr();
  604. int i = 0;
  605. int prev = 0;
  606. int count = 0;
  607. while (true) {
  608. if (c[i] == 0 || c[i] == p_splitter) {
  609. if (p_slice == count) {
  610. return substr(prev, i - prev);
  611. } else if (c[i] == 0) {
  612. return String();
  613. } else {
  614. count++;
  615. prev = i + 1;
  616. }
  617. }
  618. i++;
  619. }
  620. }
  621. Vector<String> String::split_spaces() const {
  622. Vector<String> ret;
  623. int from = 0;
  624. int i = 0;
  625. int len = length();
  626. if (len == 0)
  627. return ret;
  628. bool inside = false;
  629. while (true) {
  630. bool empty = operator[](i) < 33;
  631. if (i == 0)
  632. inside = !empty;
  633. if (!empty && !inside) {
  634. inside = true;
  635. from = i;
  636. }
  637. if (empty && inside) {
  638. ret.push_back(substr(from, i - from));
  639. inside = false;
  640. }
  641. if (i == len)
  642. break;
  643. i++;
  644. }
  645. return ret;
  646. }
  647. Vector<String> String::split(const String &p_splitter, bool p_allow_empty, int p_maxsplit) const {
  648. Vector<String> ret;
  649. int from = 0;
  650. int len = length();
  651. while (true) {
  652. int end = find(p_splitter, from);
  653. if (end < 0)
  654. end = len;
  655. if (p_allow_empty || (end > from)) {
  656. if (p_maxsplit <= 0)
  657. ret.push_back(substr(from, end - from));
  658. else {
  659. // Put rest of the string and leave cycle.
  660. if (p_maxsplit == ret.size()) {
  661. ret.push_back(substr(from, len));
  662. break;
  663. }
  664. // Otherwise, push items until positive limit is reached.
  665. ret.push_back(substr(from, end - from));
  666. }
  667. }
  668. if (end == len)
  669. break;
  670. from = end + p_splitter.length();
  671. }
  672. return ret;
  673. }
  674. Vector<String> String::rsplit(const String &p_splitter, bool p_allow_empty, int p_maxsplit) const {
  675. Vector<String> ret;
  676. const int len = length();
  677. int remaining_len = len;
  678. while (true) {
  679. if (remaining_len < p_splitter.length() || (p_maxsplit > 0 && p_maxsplit == ret.size())) {
  680. // no room for another splitter or hit max splits, push what's left and we're done
  681. if (p_allow_empty || remaining_len > 0) {
  682. ret.push_back(substr(0, remaining_len));
  683. }
  684. break;
  685. }
  686. int left_edge = rfind(p_splitter, remaining_len - p_splitter.length());
  687. if (left_edge < 0) {
  688. // no more splitters, we're done
  689. ret.push_back(substr(0, remaining_len));
  690. break;
  691. }
  692. int substr_start = left_edge + p_splitter.length();
  693. if (p_allow_empty || substr_start < remaining_len) {
  694. ret.push_back(substr(substr_start, remaining_len - substr_start));
  695. }
  696. remaining_len = left_edge;
  697. }
  698. ret.invert();
  699. return ret;
  700. }
  701. Vector<float> String::split_floats(const String &p_splitter, bool p_allow_empty) const {
  702. Vector<float> ret;
  703. int from = 0;
  704. int len = length();
  705. while (true) {
  706. int end = find(p_splitter, from);
  707. if (end < 0)
  708. end = len;
  709. if (p_allow_empty || (end > from))
  710. ret.push_back(String::to_double(&c_str()[from]));
  711. if (end == len)
  712. break;
  713. from = end + p_splitter.length();
  714. }
  715. return ret;
  716. }
  717. Vector<float> String::split_floats_mk(const Vector<String> &p_splitters, bool p_allow_empty) const {
  718. Vector<float> ret;
  719. int from = 0;
  720. int len = length();
  721. while (true) {
  722. int idx;
  723. int end = findmk(p_splitters, from, &idx);
  724. int spl_len = 1;
  725. if (end < 0) {
  726. end = len;
  727. } else {
  728. spl_len = p_splitters[idx].length();
  729. }
  730. if (p_allow_empty || (end > from)) {
  731. ret.push_back(String::to_double(&c_str()[from]));
  732. }
  733. if (end == len)
  734. break;
  735. from = end + spl_len;
  736. }
  737. return ret;
  738. }
  739. Vector<int> String::split_ints(const String &p_splitter, bool p_allow_empty) const {
  740. Vector<int> ret;
  741. int from = 0;
  742. int len = length();
  743. while (true) {
  744. int end = find(p_splitter, from);
  745. if (end < 0)
  746. end = len;
  747. if (p_allow_empty || (end > from))
  748. ret.push_back(String::to_int(&c_str()[from], end - from));
  749. if (end == len)
  750. break;
  751. from = end + p_splitter.length();
  752. }
  753. return ret;
  754. }
  755. Vector<int> String::split_ints_mk(const Vector<String> &p_splitters, bool p_allow_empty) const {
  756. Vector<int> ret;
  757. int from = 0;
  758. int len = length();
  759. while (true) {
  760. int idx;
  761. int end = findmk(p_splitters, from, &idx);
  762. int spl_len = 1;
  763. if (end < 0) {
  764. end = len;
  765. } else {
  766. spl_len = p_splitters[idx].length();
  767. }
  768. if (p_allow_empty || (end > from))
  769. ret.push_back(String::to_int(&c_str()[from], end - from));
  770. if (end == len)
  771. break;
  772. from = end + spl_len;
  773. }
  774. return ret;
  775. }
  776. String String::join(Vector<String> parts) {
  777. String ret;
  778. for (int i = 0; i < parts.size(); ++i) {
  779. if (i > 0) {
  780. ret += *this;
  781. }
  782. ret += parts[i];
  783. }
  784. return ret;
  785. }
  786. CharType String::char_uppercase(CharType p_char) {
  787. return _find_upper(p_char);
  788. }
  789. CharType String::char_lowercase(CharType p_char) {
  790. return _find_lower(p_char);
  791. }
  792. String String::to_upper() const {
  793. String upper = *this;
  794. for (int i = 0; i < upper.size(); i++) {
  795. const CharType s = upper[i];
  796. const CharType t = _find_upper(s);
  797. if (s != t) // avoid copy on write
  798. upper[i] = t;
  799. }
  800. return upper;
  801. }
  802. String String::to_lower() const {
  803. String lower = *this;
  804. for (int i = 0; i < lower.size(); i++) {
  805. const CharType s = lower[i];
  806. const CharType t = _find_lower(s);
  807. if (s != t) // avoid copy on write
  808. lower[i] = t;
  809. }
  810. return lower;
  811. }
  812. const CharType *String::c_str() const {
  813. static const CharType zero = 0;
  814. return size() ? &operator[](0) : &zero;
  815. }
  816. String String::md5(const uint8_t *p_md5) {
  817. return String::hex_encode_buffer(p_md5, 16);
  818. }
  819. String String::hex_encode_buffer(const uint8_t *p_buffer, int p_len) {
  820. static const char hex[16] = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f' };
  821. String ret;
  822. char v[2] = { 0, 0 };
  823. for (int i = 0; i < p_len; i++) {
  824. v[0] = hex[p_buffer[i] >> 4];
  825. ret += v;
  826. v[0] = hex[p_buffer[i] & 0xF];
  827. ret += v;
  828. }
  829. return ret;
  830. }
  831. String String::chr(CharType p_char) {
  832. CharType c[2] = { p_char, 0 };
  833. return String(c);
  834. }
  835. String String::num(double p_num, int p_decimals) {
  836. #ifndef NO_USE_STDLIB
  837. if (p_decimals > 16)
  838. p_decimals = 16;
  839. char fmt[7];
  840. fmt[0] = '%';
  841. fmt[1] = '.';
  842. if (p_decimals < 0) {
  843. fmt[1] = 'l';
  844. fmt[2] = 'f';
  845. fmt[3] = 0;
  846. } else if (p_decimals < 10) {
  847. fmt[2] = '0' + p_decimals;
  848. fmt[3] = 'l';
  849. fmt[4] = 'f';
  850. fmt[5] = 0;
  851. } else {
  852. fmt[2] = '0' + (p_decimals / 10);
  853. fmt[3] = '0' + (p_decimals % 10);
  854. fmt[4] = 'l';
  855. fmt[5] = 'f';
  856. fmt[6] = 0;
  857. }
  858. char buf[256];
  859. #if defined(__GNUC__) || defined(_MSC_VER)
  860. snprintf(buf, 256, fmt, p_num);
  861. #else
  862. sprintf(buf, fmt, p_num);
  863. #endif
  864. buf[255] = 0;
  865. //destroy trailing zeroes
  866. {
  867. bool period = false;
  868. int z = 0;
  869. while (buf[z]) {
  870. if (buf[z] == '.')
  871. period = true;
  872. z++;
  873. }
  874. if (period) {
  875. z--;
  876. while (z > 0) {
  877. if (buf[z] == '0') {
  878. buf[z] = 0;
  879. } else if (buf[z] == '.') {
  880. buf[z] = 0;
  881. break;
  882. } else {
  883. break;
  884. }
  885. z--;
  886. }
  887. }
  888. }
  889. return buf;
  890. #else
  891. String s;
  892. String sd;
  893. /* integer part */
  894. bool neg = p_num < 0;
  895. p_num = ABS(p_num);
  896. int intn = (int)p_num;
  897. /* decimal part */
  898. if (p_decimals > 0 || (p_decimals == -1 && (int)p_num != p_num)) {
  899. double dec = p_num - (float)((int)p_num);
  900. int digit = 0;
  901. if (p_decimals > MAX_DIGITS)
  902. p_decimals = MAX_DIGITS;
  903. int dec_int = 0;
  904. int dec_max = 0;
  905. while (true) {
  906. dec *= 10.0;
  907. dec_int = dec_int * 10 + (int)dec % 10;
  908. dec_max = dec_max * 10 + 9;
  909. digit++;
  910. if (p_decimals == -1) {
  911. if (digit == MAX_DIGITS) //no point in going to infinite
  912. break;
  913. if ((dec - (float)((int)dec)) < 1e-6)
  914. break;
  915. }
  916. if (digit == p_decimals)
  917. break;
  918. }
  919. dec *= 10;
  920. int last = (int)dec % 10;
  921. if (last > 5) {
  922. if (dec_int == dec_max) {
  923. dec_int = 0;
  924. intn++;
  925. } else {
  926. dec_int++;
  927. }
  928. }
  929. String decimal;
  930. for (int i = 0; i < digit; i++) {
  931. char num[2] = { 0, 0 };
  932. num[0] = '0' + dec_int % 10;
  933. decimal = num + decimal;
  934. dec_int /= 10;
  935. }
  936. sd = '.' + decimal;
  937. }
  938. if (intn == 0)
  939. s = "0";
  940. else {
  941. while (intn) {
  942. CharType num = '0' + (intn % 10);
  943. intn /= 10;
  944. s = num + s;
  945. }
  946. }
  947. s = s + sd;
  948. if (neg)
  949. s = "-" + s;
  950. return s;
  951. #endif
  952. }
  953. String String::num_int64(int64_t p_num, int base, bool capitalize_hex) {
  954. bool sign = p_num < 0;
  955. int64_t n = p_num;
  956. int chars = 0;
  957. do {
  958. n /= base;
  959. chars++;
  960. } while (n);
  961. if (sign)
  962. chars++;
  963. String s;
  964. s.resize(chars + 1);
  965. CharType *c = s.ptrw();
  966. c[chars] = 0;
  967. n = p_num;
  968. do {
  969. int mod = ABS(n % base);
  970. if (mod >= 10) {
  971. char a = (capitalize_hex ? 'A' : 'a');
  972. c[--chars] = a + (mod - 10);
  973. } else {
  974. c[--chars] = '0' + mod;
  975. }
  976. n /= base;
  977. } while (n);
  978. if (sign)
  979. c[0] = '-';
  980. return s;
  981. }
  982. String String::num_uint64(uint64_t p_num, int base, bool capitalize_hex) {
  983. uint64_t n = p_num;
  984. int chars = 0;
  985. do {
  986. n /= base;
  987. chars++;
  988. } while (n);
  989. String s;
  990. s.resize(chars + 1);
  991. CharType *c = s.ptrw();
  992. c[chars] = 0;
  993. n = p_num;
  994. do {
  995. int mod = n % base;
  996. if (mod >= 10) {
  997. char a = (capitalize_hex ? 'A' : 'a');
  998. c[--chars] = a + (mod - 10);
  999. } else {
  1000. c[--chars] = '0' + mod;
  1001. }
  1002. n /= base;
  1003. } while (n);
  1004. return s;
  1005. }
  1006. String String::num_real(double p_num) {
  1007. String s;
  1008. String sd;
  1009. /* integer part */
  1010. bool neg = p_num < 0;
  1011. p_num = ABS(p_num);
  1012. int intn = (int)p_num;
  1013. /* decimal part */
  1014. if ((int)p_num != p_num) {
  1015. double dec = p_num - (float)((int)p_num);
  1016. int digit = 0;
  1017. int decimals = MAX_DIGITS;
  1018. int dec_int = 0;
  1019. int dec_max = 0;
  1020. while (true) {
  1021. dec *= 10.0;
  1022. dec_int = dec_int * 10 + (int)dec % 10;
  1023. dec_max = dec_max * 10 + 9;
  1024. digit++;
  1025. if ((dec - (float)((int)dec)) < 1e-6)
  1026. break;
  1027. if (digit == decimals)
  1028. break;
  1029. }
  1030. dec *= 10;
  1031. int last = (int)dec % 10;
  1032. if (last > 5) {
  1033. if (dec_int == dec_max) {
  1034. dec_int = 0;
  1035. intn++;
  1036. } else {
  1037. dec_int++;
  1038. }
  1039. }
  1040. String decimal;
  1041. for (int i = 0; i < digit; i++) {
  1042. char num[2] = { 0, 0 };
  1043. num[0] = '0' + dec_int % 10;
  1044. decimal = num + decimal;
  1045. dec_int /= 10;
  1046. }
  1047. sd = '.' + decimal;
  1048. } else {
  1049. sd = ".0";
  1050. }
  1051. if (intn == 0)
  1052. s = "0";
  1053. else {
  1054. while (intn) {
  1055. CharType num = '0' + (intn % 10);
  1056. intn /= 10;
  1057. s = num + s;
  1058. }
  1059. }
  1060. s = s + sd;
  1061. if (neg)
  1062. s = "-" + s;
  1063. return s;
  1064. }
  1065. String String::num_scientific(double p_num) {
  1066. #ifndef NO_USE_STDLIB
  1067. char buf[256];
  1068. #if defined(__GNUC__) || defined(_MSC_VER)
  1069. #if (defined(__MINGW32__) || (defined(_MSC_VER) && _MSC_VER < 1900)) && defined(_TWO_DIGIT_EXPONENT) && !defined(_UCRT)
  1070. // MinGW and old MSC require _set_output_format() to conform to C99 output for printf
  1071. unsigned int old_exponent_format = _set_output_format(_TWO_DIGIT_EXPONENT);
  1072. #endif
  1073. snprintf(buf, 256, "%lg", p_num);
  1074. #if (defined(__MINGW32__) || (defined(_MSC_VER) && _MSC_VER < 1900)) && defined(_TWO_DIGIT_EXPONENT) && !defined(_UCRT)
  1075. _set_output_format(old_exponent_format);
  1076. #endif
  1077. #else
  1078. sprintf(buf, "%.16lg", p_num);
  1079. #endif
  1080. buf[255] = 0;
  1081. return buf;
  1082. #else
  1083. return String::num(p_num);
  1084. #endif
  1085. }
  1086. CharString String::ascii(bool p_allow_extended) const {
  1087. if (!length())
  1088. return CharString();
  1089. CharString cs;
  1090. cs.resize(size());
  1091. for (int i = 0; i < size(); i++)
  1092. cs[i] = operator[](i);
  1093. return cs;
  1094. }
  1095. String String::utf8(const char *p_utf8, int p_len) {
  1096. String ret;
  1097. ret.parse_utf8(p_utf8, p_len);
  1098. return ret;
  1099. };
  1100. bool String::parse_utf8(const char *p_utf8, int p_len) {
  1101. #define _UNICERROR(m_err) print_line("Unicode error: " + String(m_err));
  1102. if (!p_utf8)
  1103. return true;
  1104. String aux;
  1105. int cstr_size = 0;
  1106. int str_size = 0;
  1107. /* HANDLE BOM (Byte Order Mark) */
  1108. if (p_len < 0 || p_len >= 3) {
  1109. bool has_bom = uint8_t(p_utf8[0]) == 0xEF && uint8_t(p_utf8[1]) == 0xBB && uint8_t(p_utf8[2]) == 0xBF;
  1110. if (has_bom) {
  1111. //just skip it
  1112. if (p_len >= 0)
  1113. p_len -= 3;
  1114. p_utf8 += 3;
  1115. }
  1116. }
  1117. {
  1118. const char *ptrtmp = p_utf8;
  1119. const char *ptrtmp_limit = &p_utf8[p_len];
  1120. int skip = 0;
  1121. while (ptrtmp != ptrtmp_limit && *ptrtmp) {
  1122. if (skip == 0) {
  1123. uint8_t c = *ptrtmp >= 0 ? *ptrtmp : uint8_t(256 + *ptrtmp);
  1124. /* Determine the number of characters in sequence */
  1125. if ((c & 0x80) == 0)
  1126. skip = 0;
  1127. else if ((c & 0xE0) == 0xC0)
  1128. skip = 1;
  1129. else if ((c & 0xF0) == 0xE0)
  1130. skip = 2;
  1131. else if ((c & 0xF8) == 0xF0)
  1132. skip = 3;
  1133. else if ((c & 0xFC) == 0xF8)
  1134. skip = 4;
  1135. else if ((c & 0xFE) == 0xFC)
  1136. skip = 5;
  1137. else {
  1138. _UNICERROR("invalid skip");
  1139. return true; //invalid utf8
  1140. }
  1141. if (skip == 1 && (c & 0x1E) == 0) {
  1142. //printf("overlong rejected\n");
  1143. _UNICERROR("overlong rejected");
  1144. return true; //reject overlong
  1145. }
  1146. str_size++;
  1147. } else {
  1148. --skip;
  1149. }
  1150. cstr_size++;
  1151. ptrtmp++;
  1152. }
  1153. if (skip) {
  1154. _UNICERROR("no space left");
  1155. return true; //not enough spac
  1156. }
  1157. }
  1158. if (str_size == 0) {
  1159. clear();
  1160. return false;
  1161. }
  1162. resize(str_size + 1);
  1163. CharType *dst = ptrw();
  1164. dst[str_size] = 0;
  1165. while (cstr_size) {
  1166. int len = 0;
  1167. /* Determine the number of characters in sequence */
  1168. if ((*p_utf8 & 0x80) == 0)
  1169. len = 1;
  1170. else if ((*p_utf8 & 0xE0) == 0xC0)
  1171. len = 2;
  1172. else if ((*p_utf8 & 0xF0) == 0xE0)
  1173. len = 3;
  1174. else if ((*p_utf8 & 0xF8) == 0xF0)
  1175. len = 4;
  1176. else if ((*p_utf8 & 0xFC) == 0xF8)
  1177. len = 5;
  1178. else if ((*p_utf8 & 0xFE) == 0xFC)
  1179. len = 6;
  1180. else {
  1181. _UNICERROR("invalid len");
  1182. return true; //invalid UTF8
  1183. }
  1184. if (len > cstr_size) {
  1185. _UNICERROR("no space left");
  1186. return true; //not enough space
  1187. }
  1188. if (len == 2 && (*p_utf8 & 0x1E) == 0) {
  1189. //printf("overlong rejected\n");
  1190. _UNICERROR("no space left");
  1191. return true; //reject overlong
  1192. }
  1193. /* Convert the first character */
  1194. uint32_t unichar = 0;
  1195. if (len == 1)
  1196. unichar = *p_utf8;
  1197. else {
  1198. unichar = (0xFF >> (len + 1)) & *p_utf8;
  1199. for (int i = 1; i < len; i++) {
  1200. if ((p_utf8[i] & 0xC0) != 0x80) {
  1201. _UNICERROR("invalid utf8");
  1202. return true; //invalid utf8
  1203. }
  1204. if (unichar == 0 && i == 2 && ((p_utf8[i] & 0x7F) >> (7 - len)) == 0) {
  1205. _UNICERROR("invalid utf8 overlong");
  1206. return true; //no overlong
  1207. }
  1208. unichar = (unichar << 6) | (p_utf8[i] & 0x3F);
  1209. }
  1210. }
  1211. //printf("char %i, len %i\n",unichar,len);
  1212. if (sizeof(wchar_t) == 2 && unichar > 0xFFFF) {
  1213. unichar = ' '; //too long for windows
  1214. }
  1215. *(dst++) = unichar;
  1216. cstr_size -= len;
  1217. p_utf8 += len;
  1218. }
  1219. return false;
  1220. }
  1221. CharString String::utf8() const {
  1222. int l = length();
  1223. if (!l)
  1224. return CharString();
  1225. const CharType *d = &operator[](0);
  1226. int fl = 0;
  1227. for (int i = 0; i < l; i++) {
  1228. uint32_t c = d[i];
  1229. if (c <= 0x7f) // 7 bits.
  1230. fl += 1;
  1231. else if (c <= 0x7ff) { // 11 bits
  1232. fl += 2;
  1233. } else if (c <= 0xffff) { // 16 bits
  1234. fl += 3;
  1235. } else if (c <= 0x001fffff) { // 21 bits
  1236. fl += 4;
  1237. } else if (c <= 0x03ffffff) { // 26 bits
  1238. fl += 5;
  1239. } else if (c <= 0x7fffffff) { // 31 bits
  1240. fl += 6;
  1241. }
  1242. }
  1243. CharString utf8s;
  1244. if (fl == 0) {
  1245. return utf8s;
  1246. }
  1247. utf8s.resize(fl + 1);
  1248. uint8_t *cdst = (uint8_t *)utf8s.get_data();
  1249. #define APPEND_CHAR(m_c) *(cdst++) = m_c
  1250. for (int i = 0; i < l; i++) {
  1251. uint32_t c = d[i];
  1252. if (c <= 0x7f) // 7 bits.
  1253. APPEND_CHAR(c);
  1254. else if (c <= 0x7ff) { // 11 bits
  1255. APPEND_CHAR(uint32_t(0xc0 | ((c >> 6) & 0x1f))); // Top 5 bits.
  1256. APPEND_CHAR(uint32_t(0x80 | (c & 0x3f))); // Bottom 6 bits.
  1257. } else if (c <= 0xffff) { // 16 bits
  1258. APPEND_CHAR(uint32_t(0xe0 | ((c >> 12) & 0x0f))); // Top 4 bits.
  1259. APPEND_CHAR(uint32_t(0x80 | ((c >> 6) & 0x3f))); // Middle 6 bits.
  1260. APPEND_CHAR(uint32_t(0x80 | (c & 0x3f))); // Bottom 6 bits.
  1261. } else if (c <= 0x001fffff) { // 21 bits
  1262. APPEND_CHAR(uint32_t(0xf0 | ((c >> 18) & 0x07))); // Top 3 bits.
  1263. APPEND_CHAR(uint32_t(0x80 | ((c >> 12) & 0x3f))); // Upper middle 6 bits.
  1264. APPEND_CHAR(uint32_t(0x80 | ((c >> 6) & 0x3f))); // Lower middle 6 bits.
  1265. APPEND_CHAR(uint32_t(0x80 | (c & 0x3f))); // Bottom 6 bits.
  1266. } else if (c <= 0x03ffffff) { // 26 bits
  1267. APPEND_CHAR(uint32_t(0xf8 | ((c >> 24) & 0x03))); // Top 2 bits.
  1268. APPEND_CHAR(uint32_t(0x80 | ((c >> 18) & 0x3f))); // Upper middle 6 bits.
  1269. APPEND_CHAR(uint32_t(0x80 | ((c >> 12) & 0x3f))); // middle 6 bits.
  1270. APPEND_CHAR(uint32_t(0x80 | ((c >> 6) & 0x3f))); // Lower middle 6 bits.
  1271. APPEND_CHAR(uint32_t(0x80 | (c & 0x3f))); // Bottom 6 bits.
  1272. } else if (c <= 0x7fffffff) { // 31 bits
  1273. APPEND_CHAR(uint32_t(0xfc | ((c >> 30) & 0x01))); // Top 1 bit.
  1274. APPEND_CHAR(uint32_t(0x80 | ((c >> 24) & 0x3f))); // Upper upper middle 6 bits.
  1275. APPEND_CHAR(uint32_t(0x80 | ((c >> 18) & 0x3f))); // Lower upper middle 6 bits.
  1276. APPEND_CHAR(uint32_t(0x80 | ((c >> 12) & 0x3f))); // Upper lower middle 6 bits.
  1277. APPEND_CHAR(uint32_t(0x80 | ((c >> 6) & 0x3f))); // Lower lower middle 6 bits.
  1278. APPEND_CHAR(uint32_t(0x80 | (c & 0x3f))); // Bottom 6 bits.
  1279. }
  1280. }
  1281. #undef APPEND_CHAR
  1282. *cdst = 0; //trailing zero
  1283. return utf8s;
  1284. }
  1285. /*
  1286. String::String(CharType p_char) {
  1287. shared=NULL;
  1288. copy_from(p_char);
  1289. }
  1290. */
  1291. String::String(const char *p_str) {
  1292. copy_from(p_str);
  1293. }
  1294. String::String(const CharType *p_str, int p_clip_to_len) {
  1295. copy_from(p_str, p_clip_to_len);
  1296. }
  1297. String::String(const StrRange &p_range) {
  1298. if (!p_range.c_str)
  1299. return;
  1300. copy_from(p_range.c_str, p_range.len);
  1301. }
  1302. int String::hex_to_int(bool p_with_prefix) const {
  1303. int len = length();
  1304. if (len == 0 || (p_with_prefix && len < 3)) {
  1305. return 0;
  1306. }
  1307. const CharType *s = ptr();
  1308. int sign = s[0] == '-' ? -1 : 1;
  1309. if (sign < 0) {
  1310. s++;
  1311. }
  1312. if (p_with_prefix) {
  1313. if (s[0] != '0' || s[1] != 'x')
  1314. return 0;
  1315. s += 2;
  1316. }
  1317. int hex = 0;
  1318. while (*s) {
  1319. CharType c = LOWERCASE(*s);
  1320. int n;
  1321. if (c >= '0' && c <= '9') {
  1322. n = c - '0';
  1323. } else if (c >= 'a' && c <= 'f') {
  1324. n = (c - 'a') + 10;
  1325. } else {
  1326. return 0;
  1327. }
  1328. // Check for overflow/underflow, with special case to ensure INT32_MIN does not result in error
  1329. bool overflow = ((hex > INT32_MAX / 16) && (sign == 1 || (sign == -1 && hex != (INT32_MAX >> 4) + 1))) || (sign == -1 && hex == (INT32_MAX >> 4) + 1 && c > '0');
  1330. ERR_FAIL_COND_V_MSG(overflow, sign == 1 ? INT32_MAX : INT32_MIN, "Cannot represent " + *this + " as integer, provided value is " + (sign == 1 ? "too big." : "too small."));
  1331. hex *= 16;
  1332. hex += n;
  1333. s++;
  1334. }
  1335. return hex * sign;
  1336. }
  1337. int64_t String::hex_to_int64(bool p_with_prefix) const {
  1338. if (p_with_prefix && length() < 3)
  1339. return 0;
  1340. const CharType *s = ptr();
  1341. int64_t sign = s[0] == '-' ? -1 : 1;
  1342. if (sign < 0) {
  1343. s++;
  1344. }
  1345. if (p_with_prefix) {
  1346. if (s[0] != '0' || s[1] != 'x')
  1347. return 0;
  1348. s += 2;
  1349. }
  1350. int64_t hex = 0;
  1351. while (*s) {
  1352. CharType c = LOWERCASE(*s);
  1353. int64_t n;
  1354. if (c >= '0' && c <= '9') {
  1355. n = c - '0';
  1356. } else if (c >= 'a' && c <= 'f') {
  1357. n = (c - 'a') + 10;
  1358. } else {
  1359. return 0;
  1360. }
  1361. bool overflow = ((hex > INT64_MAX / 16) && (sign == 1 || (sign == -1 && hex != (INT64_MAX >> 4) + 1))) || (sign == -1 && hex == (INT64_MAX >> 4) + 1 && c > '0');
  1362. ERR_FAIL_COND_V_MSG(overflow, sign == 1 ? INT64_MAX : INT64_MIN, "Cannot represent " + *this + " as 64-bit integer, provided value is " + (sign == 1 ? "too big." : "too small."));
  1363. hex *= 16;
  1364. hex += n;
  1365. s++;
  1366. }
  1367. return hex * sign;
  1368. }
  1369. int64_t String::bin_to_int64(bool p_with_prefix) const {
  1370. int len = length();
  1371. if (len == 0 || (p_with_prefix && len < 3)) {
  1372. return 0;
  1373. }
  1374. const CharType *s = ptr();
  1375. int64_t sign = s[0] == '-' ? -1 : 1;
  1376. if (sign < 0) {
  1377. s++;
  1378. }
  1379. if (p_with_prefix) {
  1380. if (s[0] != '0' || s[1] != 'b')
  1381. return 0;
  1382. s += 2;
  1383. }
  1384. int64_t binary = 0;
  1385. while (*s) {
  1386. CharType c = LOWERCASE(*s);
  1387. int64_t n;
  1388. if (c == '0' || c == '1') {
  1389. n = c - '0';
  1390. } else {
  1391. return 0;
  1392. }
  1393. // Check for overflow/underflow, with special case to ensure INT64_MIN does not result in error
  1394. bool overflow = ((binary > INT64_MAX / 2) && (sign == 1 || (sign == -1 && binary != (INT64_MAX >> 1) + 1))) || (sign == -1 && binary == (INT64_MAX >> 1) + 1 && c > '0');
  1395. ERR_FAIL_COND_V_MSG(overflow, sign == 1 ? INT64_MAX : INT64_MIN, "Cannot represent " + *this + " as 64-bit integer, provided value is " + (sign == 1 ? "too big." : "too small."));
  1396. binary *= 2;
  1397. binary += n;
  1398. s++;
  1399. }
  1400. return binary * sign;
  1401. }
  1402. int String::to_int() const {
  1403. if (length() == 0)
  1404. return 0;
  1405. int to = (find(".") >= 0) ? find(".") : length();
  1406. int integer = 0;
  1407. int sign = 1;
  1408. for (int i = 0; i < to; i++) {
  1409. CharType c = operator[](i);
  1410. if (c >= '0' && c <= '9') {
  1411. bool overflow = (integer > INT32_MAX / 10) || (integer == INT32_MAX / 10 && ((sign == 1 && c > '7') || (sign == -1 && c > '8')));
  1412. ERR_FAIL_COND_V_MSG(overflow, sign == 1 ? INT32_MAX : INT32_MIN, "Cannot represent " + *this + " as integer, provided value is " + (sign == 1 ? "too big." : "too small."));
  1413. integer *= 10;
  1414. integer += c - '0';
  1415. } else if (integer == 0 && c == '-') {
  1416. sign = -sign;
  1417. }
  1418. }
  1419. return integer * sign;
  1420. }
  1421. int64_t String::to_int64() const {
  1422. if (length() == 0)
  1423. return 0;
  1424. int to = (find(".") >= 0) ? find(".") : length();
  1425. int64_t integer = 0;
  1426. int64_t sign = 1;
  1427. for (int i = 0; i < to; i++) {
  1428. CharType c = operator[](i);
  1429. if (c >= '0' && c <= '9') {
  1430. bool overflow = (integer > INT64_MAX / 10) || (integer == INT64_MAX / 10 && ((sign == 1 && c > '7') || (sign == -1 && c > '8')));
  1431. ERR_FAIL_COND_V_MSG(overflow, sign == 1 ? INT64_MAX : INT64_MIN, "Cannot represent " + *this + " as 64-bit integer, provided value is " + (sign == 1 ? "too big." : "too small."));
  1432. integer *= 10;
  1433. integer += c - '0';
  1434. } else if (integer == 0 && c == '-') {
  1435. sign = -sign;
  1436. }
  1437. }
  1438. return integer * sign;
  1439. }
  1440. int String::to_int(const char *p_str, int p_len) {
  1441. int to = 0;
  1442. if (p_len >= 0)
  1443. to = p_len;
  1444. else {
  1445. while (p_str[to] != 0 && p_str[to] != '.')
  1446. to++;
  1447. }
  1448. int integer = 0;
  1449. int sign = 1;
  1450. for (int i = 0; i < to; i++) {
  1451. char c = p_str[i];
  1452. if (c >= '0' && c <= '9') {
  1453. bool overflow = (integer > INT32_MAX / 10) || (integer == INT32_MAX / 10 && ((sign == 1 && c > '7') || (sign == -1 && c > '8')));
  1454. ERR_FAIL_COND_V_MSG(overflow, sign == 1 ? INT32_MAX : INT32_MIN, "Cannot represent " + String(p_str).substr(0, to) + " as integer, provided value is " + (sign == 1 ? "too big." : "too small."));
  1455. integer *= 10;
  1456. integer += c - '0';
  1457. } else if (c == '-' && integer == 0) {
  1458. sign = -sign;
  1459. } else if (c != ' ')
  1460. break;
  1461. }
  1462. return integer * sign;
  1463. }
  1464. bool String::is_numeric() const {
  1465. if (length() == 0) {
  1466. return false;
  1467. };
  1468. int s = 0;
  1469. if (operator[](0) == '-') ++s;
  1470. bool dot = false;
  1471. for (int i = s; i < length(); i++) {
  1472. CharType c = operator[](i);
  1473. if (c == '.') {
  1474. if (dot) {
  1475. return false;
  1476. };
  1477. dot = true;
  1478. }
  1479. if (c < '0' || c > '9') {
  1480. return false;
  1481. };
  1482. };
  1483. return true; // TODO: Use the parser below for this instead
  1484. };
  1485. template <class C>
  1486. static double built_in_strtod(const C *string, /* A decimal ASCII floating-point number,
  1487. * optionally preceded by white space. Must
  1488. * have form "-I.FE-X", where I is the integer
  1489. * part of the mantissa, F is the fractional
  1490. * part of the mantissa, and X is the
  1491. * exponent. Either of the signs may be "+",
  1492. * "-", or omitted. Either I or F may be
  1493. * omitted, or both. The decimal point isn't
  1494. * necessary unless F is present. The "E" may
  1495. * actually be an "e". E and X may both be
  1496. * omitted (but not just one). */
  1497. C **endPtr = NULL) /* If non-NULL, store terminating Cacter's
  1498. * address here. */
  1499. {
  1500. static const int maxExponent = 511; /* Largest possible base 10 exponent. Any
  1501. * exponent larger than this will already
  1502. * produce underflow or overflow, so there's
  1503. * no need to worry about additional digits.
  1504. */
  1505. static const double powersOf10[] = { /* Table giving binary powers of 10. Entry */
  1506. 10., /* is 10^2^i. Used to convert decimal */
  1507. 100., /* exponents into floating-point numbers. */
  1508. 1.0e4,
  1509. 1.0e8,
  1510. 1.0e16,
  1511. 1.0e32,
  1512. 1.0e64,
  1513. 1.0e128,
  1514. 1.0e256
  1515. };
  1516. bool sign, expSign = false;
  1517. double fraction, dblExp;
  1518. const double *d;
  1519. const C *p;
  1520. int c;
  1521. int exp = 0; /* Exponent read from "EX" field. */
  1522. int fracExp = 0; /* Exponent that derives from the fractional
  1523. * part. Under normal circumstances, it is
  1524. * the negative of the number of digits in F.
  1525. * However, if I is very long, the last digits
  1526. * of I get dropped (otherwise a long I with a
  1527. * large negative exponent could cause an
  1528. * unnecessary overflow on I alone). In this
  1529. * case, fracExp is incremented one for each
  1530. * dropped digit. */
  1531. int mantSize; /* Number of digits in mantissa. */
  1532. int decPt; /* Number of mantissa digits BEFORE decimal
  1533. * point. */
  1534. const C *pExp; /* Temporarily holds location of exponent in
  1535. * string. */
  1536. /*
  1537. * Strip off leading blanks and check for a sign.
  1538. */
  1539. p = string;
  1540. while (*p == ' ' || *p == '\t' || *p == '\n') {
  1541. p += 1;
  1542. }
  1543. if (*p == '-') {
  1544. sign = true;
  1545. p += 1;
  1546. } else {
  1547. if (*p == '+') {
  1548. p += 1;
  1549. }
  1550. sign = false;
  1551. }
  1552. /*
  1553. * Count the number of digits in the mantissa (including the decimal
  1554. * point), and also locate the decimal point.
  1555. */
  1556. decPt = -1;
  1557. for (mantSize = 0;; mantSize += 1) {
  1558. c = *p;
  1559. if (!IS_DIGIT(c)) {
  1560. if ((c != '.') || (decPt >= 0)) {
  1561. break;
  1562. }
  1563. decPt = mantSize;
  1564. }
  1565. p += 1;
  1566. }
  1567. /*
  1568. * Now suck up the digits in the mantissa. Use two integers to collect 9
  1569. * digits each (this is faster than using floating-point). If the mantissa
  1570. * has more than 18 digits, ignore the extras, since they can't affect the
  1571. * value anyway.
  1572. */
  1573. pExp = p;
  1574. p -= mantSize;
  1575. if (decPt < 0) {
  1576. decPt = mantSize;
  1577. } else {
  1578. mantSize -= 1; /* One of the digits was the point. */
  1579. }
  1580. if (mantSize > 18) {
  1581. fracExp = decPt - 18;
  1582. mantSize = 18;
  1583. } else {
  1584. fracExp = decPt - mantSize;
  1585. }
  1586. if (mantSize == 0) {
  1587. fraction = 0.0;
  1588. p = string;
  1589. goto done;
  1590. } else {
  1591. int frac1, frac2;
  1592. frac1 = 0;
  1593. for (; mantSize > 9; mantSize -= 1) {
  1594. c = *p;
  1595. p += 1;
  1596. if (c == '.') {
  1597. c = *p;
  1598. p += 1;
  1599. }
  1600. frac1 = 10 * frac1 + (c - '0');
  1601. }
  1602. frac2 = 0;
  1603. for (; mantSize > 0; mantSize -= 1) {
  1604. c = *p;
  1605. p += 1;
  1606. if (c == '.') {
  1607. c = *p;
  1608. p += 1;
  1609. }
  1610. frac2 = 10 * frac2 + (c - '0');
  1611. }
  1612. fraction = (1.0e9 * frac1) + frac2;
  1613. }
  1614. /*
  1615. * Skim off the exponent.
  1616. */
  1617. p = pExp;
  1618. if ((*p == 'E') || (*p == 'e')) {
  1619. p += 1;
  1620. if (*p == '-') {
  1621. expSign = true;
  1622. p += 1;
  1623. } else {
  1624. if (*p == '+') {
  1625. p += 1;
  1626. }
  1627. expSign = false;
  1628. }
  1629. if (!IS_DIGIT(CharType(*p))) {
  1630. p = pExp;
  1631. goto done;
  1632. }
  1633. while (IS_DIGIT(CharType(*p))) {
  1634. exp = exp * 10 + (*p - '0');
  1635. p += 1;
  1636. }
  1637. }
  1638. if (expSign) {
  1639. exp = fracExp - exp;
  1640. } else {
  1641. exp = fracExp + exp;
  1642. }
  1643. /*
  1644. * Generate a floating-point number that represents the exponent. Do this
  1645. * by processing the exponent one bit at a time to combine many powers of
  1646. * 2 of 10. Then combine the exponent with the fraction.
  1647. */
  1648. if (exp < 0) {
  1649. expSign = true;
  1650. exp = -exp;
  1651. } else {
  1652. expSign = false;
  1653. }
  1654. if (exp > maxExponent) {
  1655. exp = maxExponent;
  1656. WARN_PRINT("Exponent too high");
  1657. }
  1658. dblExp = 1.0;
  1659. for (d = powersOf10; exp != 0; exp >>= 1, ++d) {
  1660. if (exp & 01) {
  1661. dblExp *= *d;
  1662. }
  1663. }
  1664. if (expSign) {
  1665. fraction /= dblExp;
  1666. } else {
  1667. fraction *= dblExp;
  1668. }
  1669. done:
  1670. if (endPtr != NULL) {
  1671. *endPtr = (C *)p;
  1672. }
  1673. if (sign) {
  1674. return -fraction;
  1675. }
  1676. return fraction;
  1677. }
  1678. #define READING_SIGN 0
  1679. #define READING_INT 1
  1680. #define READING_DEC 2
  1681. #define READING_EXP 3
  1682. #define READING_DONE 4
  1683. double String::to_double(const char *p_str) {
  1684. #ifndef NO_USE_STDLIB
  1685. return built_in_strtod<char>(p_str);
  1686. //return atof(p_str); DOES NOT WORK ON ANDROID(??)
  1687. #else
  1688. return built_in_strtod<char>(p_str);
  1689. #endif
  1690. }
  1691. float String::to_float() const {
  1692. return to_double();
  1693. }
  1694. double String::to_double(const CharType *p_str, const CharType **r_end) {
  1695. return built_in_strtod<CharType>(p_str, (CharType **)r_end);
  1696. }
  1697. int64_t String::to_int(const CharType *p_str, int p_len) {
  1698. if (p_len == 0 || !p_str[0])
  1699. return 0;
  1700. ///@todo make more exact so saving and loading does not lose precision
  1701. int64_t integer = 0;
  1702. int64_t sign = 1;
  1703. int reading = READING_SIGN;
  1704. const CharType *str = p_str;
  1705. const CharType *limit = &p_str[p_len];
  1706. while (*str && reading != READING_DONE && str != limit) {
  1707. CharType c = *(str++);
  1708. switch (reading) {
  1709. case READING_SIGN: {
  1710. if (c >= '0' && c <= '9') {
  1711. reading = READING_INT;
  1712. // let it fallthrough
  1713. } else if (c == '-') {
  1714. sign = -1;
  1715. reading = READING_INT;
  1716. break;
  1717. } else if (c == '+') {
  1718. sign = 1;
  1719. reading = READING_INT;
  1720. break;
  1721. } else {
  1722. break;
  1723. }
  1724. }
  1725. case READING_INT: {
  1726. if (c >= '0' && c <= '9') {
  1727. if (integer > INT64_MAX / 10) {
  1728. String number("");
  1729. str = p_str;
  1730. while (*str && str != limit) {
  1731. number += *(str++);
  1732. }
  1733. ERR_FAIL_V_MSG(sign == 1 ? INT64_MAX : INT64_MIN, "Cannot represent " + number + " as integer, provided value is " + (sign == 1 ? "too big." : "too small."));
  1734. }
  1735. integer *= 10;
  1736. integer += c - '0';
  1737. } else {
  1738. reading = READING_DONE;
  1739. }
  1740. } break;
  1741. }
  1742. }
  1743. return sign * integer;
  1744. }
  1745. double String::to_double() const {
  1746. if (empty())
  1747. return 0;
  1748. #ifndef NO_USE_STDLIB
  1749. return built_in_strtod<CharType>(c_str());
  1750. //return wcstod(c_str(),NULL); DOES NOT WORK ON ANDROID :(
  1751. #else
  1752. return built_in_strtod<CharType>(c_str());
  1753. #endif
  1754. }
  1755. bool operator==(const char *p_chr, const String &p_str) {
  1756. return p_str == p_chr;
  1757. }
  1758. String operator+(const char *p_chr, const String &p_str) {
  1759. String tmp = p_chr;
  1760. tmp += p_str;
  1761. return tmp;
  1762. }
  1763. String operator+(CharType p_chr, const String &p_str) {
  1764. return (String::chr(p_chr) + p_str);
  1765. }
  1766. uint32_t String::hash(const char *p_cstr) {
  1767. uint32_t hashv = 5381;
  1768. uint32_t c;
  1769. while ((c = *p_cstr++))
  1770. hashv = ((hashv << 5) + hashv) + c; /* hash * 33 + c */
  1771. return hashv;
  1772. }
  1773. uint32_t String::hash(const char *p_cstr, int p_len) {
  1774. uint32_t hashv = 5381;
  1775. for (int i = 0; i < p_len; i++)
  1776. hashv = ((hashv << 5) + hashv) + p_cstr[i]; /* hash * 33 + c */
  1777. return hashv;
  1778. }
  1779. uint32_t String::hash(const CharType *p_cstr, int p_len) {
  1780. uint32_t hashv = 5381;
  1781. for (int i = 0; i < p_len; i++)
  1782. hashv = ((hashv << 5) + hashv) + p_cstr[i]; /* hash * 33 + c */
  1783. return hashv;
  1784. }
  1785. uint32_t String::hash(const CharType *p_cstr) {
  1786. uint32_t hashv = 5381;
  1787. uint32_t c;
  1788. while ((c = *p_cstr++))
  1789. hashv = ((hashv << 5) + hashv) + c; /* hash * 33 + c */
  1790. return hashv;
  1791. }
  1792. uint32_t String::hash() const {
  1793. /* simple djb2 hashing */
  1794. const CharType *chr = c_str();
  1795. uint32_t hashv = 5381;
  1796. uint32_t c;
  1797. while ((c = *chr++))
  1798. hashv = ((hashv << 5) + hashv) + c; /* hash * 33 + c */
  1799. return hashv;
  1800. }
  1801. uint64_t String::hash64() const {
  1802. /* simple djb2 hashing */
  1803. const CharType *chr = c_str();
  1804. uint64_t hashv = 5381;
  1805. uint64_t c;
  1806. while ((c = *chr++))
  1807. hashv = ((hashv << 5) + hashv) + c; /* hash * 33 + c */
  1808. return hashv;
  1809. }
  1810. String String::md5_text() const {
  1811. CharString cs = utf8();
  1812. unsigned char hash[16];
  1813. CryptoCore::md5((unsigned char *)cs.ptr(), cs.length(), hash);
  1814. return String::hex_encode_buffer(hash, 16);
  1815. }
  1816. String String::sha1_text() const {
  1817. CharString cs = utf8();
  1818. unsigned char hash[20];
  1819. CryptoCore::sha1((unsigned char *)cs.ptr(), cs.length(), hash);
  1820. return String::hex_encode_buffer(hash, 20);
  1821. }
  1822. String String::sha256_text() const {
  1823. CharString cs = utf8();
  1824. unsigned char hash[32];
  1825. CryptoCore::sha256((unsigned char *)cs.ptr(), cs.length(), hash);
  1826. return String::hex_encode_buffer(hash, 32);
  1827. }
  1828. Vector<uint8_t> String::md5_buffer() const {
  1829. CharString cs = utf8();
  1830. unsigned char hash[16];
  1831. CryptoCore::md5((unsigned char *)cs.ptr(), cs.length(), hash);
  1832. Vector<uint8_t> ret;
  1833. ret.resize(16);
  1834. for (int i = 0; i < 16; i++) {
  1835. ret.write[i] = hash[i];
  1836. }
  1837. return ret;
  1838. };
  1839. Vector<uint8_t> String::sha1_buffer() const {
  1840. CharString cs = utf8();
  1841. unsigned char hash[20];
  1842. CryptoCore::sha1((unsigned char *)cs.ptr(), cs.length(), hash);
  1843. Vector<uint8_t> ret;
  1844. ret.resize(20);
  1845. for (int i = 0; i < 20; i++) {
  1846. ret.write[i] = hash[i];
  1847. }
  1848. return ret;
  1849. }
  1850. Vector<uint8_t> String::sha256_buffer() const {
  1851. CharString cs = utf8();
  1852. unsigned char hash[32];
  1853. CryptoCore::sha256((unsigned char *)cs.ptr(), cs.length(), hash);
  1854. Vector<uint8_t> ret;
  1855. ret.resize(32);
  1856. for (int i = 0; i < 32; i++) {
  1857. ret.write[i] = hash[i];
  1858. }
  1859. return ret;
  1860. }
  1861. String String::insert(int p_at_pos, const String &p_string) const {
  1862. if (p_at_pos < 0)
  1863. return *this;
  1864. if (p_at_pos > length())
  1865. p_at_pos = length();
  1866. String pre;
  1867. if (p_at_pos > 0)
  1868. pre = substr(0, p_at_pos);
  1869. String post;
  1870. if (p_at_pos < length())
  1871. post = substr(p_at_pos, length() - p_at_pos);
  1872. return pre + p_string + post;
  1873. }
  1874. String String::substr(int p_from, int p_chars) const {
  1875. if (p_chars == -1)
  1876. p_chars = length() - p_from;
  1877. if (empty() || p_from < 0 || p_from >= length() || p_chars <= 0)
  1878. return "";
  1879. if ((p_from + p_chars) > length()) {
  1880. p_chars = length() - p_from;
  1881. }
  1882. if (p_from == 0 && p_chars >= length()) {
  1883. return String(*this);
  1884. }
  1885. String s = String();
  1886. s.copy_from_unchecked(&c_str()[p_from], p_chars);
  1887. return s;
  1888. }
  1889. int String::find_last(const String &p_str) const {
  1890. int pos = -1;
  1891. int findfrom = 0;
  1892. int findres = -1;
  1893. while ((findres = find(p_str, findfrom)) != -1) {
  1894. pos = findres;
  1895. findfrom = pos + 1;
  1896. }
  1897. return pos;
  1898. }
  1899. int String::find(const String &p_str, int p_from) const {
  1900. if (p_from < 0)
  1901. return -1;
  1902. const int src_len = p_str.length();
  1903. const int len = length();
  1904. if (src_len == 0 || len == 0)
  1905. return -1; // won't find anything!
  1906. const CharType *src = c_str();
  1907. const CharType *str = p_str.c_str();
  1908. for (int i = p_from; i <= (len - src_len); i++) {
  1909. bool found = true;
  1910. for (int j = 0; j < src_len; j++) {
  1911. int read_pos = i + j;
  1912. if (read_pos >= len) {
  1913. ERR_PRINT("read_pos>=len");
  1914. return -1;
  1915. };
  1916. if (src[read_pos] != str[j]) {
  1917. found = false;
  1918. break;
  1919. }
  1920. }
  1921. if (found)
  1922. return i;
  1923. }
  1924. return -1;
  1925. }
  1926. int String::find(const char *p_str, int p_from) const {
  1927. if (p_from < 0)
  1928. return -1;
  1929. const int len = length();
  1930. if (len == 0)
  1931. return -1; // won't find anything!
  1932. const CharType *src = c_str();
  1933. int src_len = 0;
  1934. while (p_str[src_len] != '\0')
  1935. src_len++;
  1936. if (src_len == 1) {
  1937. const char needle = p_str[0];
  1938. for (int i = p_from; i < len; i++) {
  1939. if (src[i] == needle) {
  1940. return i;
  1941. }
  1942. }
  1943. } else {
  1944. for (int i = p_from; i <= (len - src_len); i++) {
  1945. bool found = true;
  1946. for (int j = 0; j < src_len; j++) {
  1947. int read_pos = i + j;
  1948. if (read_pos >= len) {
  1949. ERR_PRINT("read_pos>=len");
  1950. return -1;
  1951. };
  1952. if (src[read_pos] != p_str[j]) {
  1953. found = false;
  1954. break;
  1955. }
  1956. }
  1957. if (found)
  1958. return i;
  1959. }
  1960. }
  1961. return -1;
  1962. }
  1963. int String::find_char(const CharType &p_char, int p_from) const {
  1964. return _cowdata.find(p_char, p_from);
  1965. }
  1966. int String::findmk(const Vector<String> &p_keys, int p_from, int *r_key) const {
  1967. if (p_from < 0)
  1968. return -1;
  1969. if (p_keys.size() == 0)
  1970. return -1;
  1971. //int src_len=p_str.length();
  1972. const String *keys = &p_keys[0];
  1973. int key_count = p_keys.size();
  1974. int len = length();
  1975. if (len == 0)
  1976. return -1; // won't find anything!
  1977. const CharType *src = c_str();
  1978. for (int i = p_from; i < len; i++) {
  1979. bool found = true;
  1980. for (int k = 0; k < key_count; k++) {
  1981. found = true;
  1982. if (r_key)
  1983. *r_key = k;
  1984. const CharType *cmp = keys[k].c_str();
  1985. int l = keys[k].length();
  1986. for (int j = 0; j < l; j++) {
  1987. int read_pos = i + j;
  1988. if (read_pos >= len) {
  1989. found = false;
  1990. break;
  1991. };
  1992. if (src[read_pos] != cmp[j]) {
  1993. found = false;
  1994. break;
  1995. }
  1996. }
  1997. if (found)
  1998. break;
  1999. }
  2000. if (found)
  2001. return i;
  2002. }
  2003. return -1;
  2004. }
  2005. int String::findn(const String &p_str, int p_from) const {
  2006. if (p_from < 0)
  2007. return -1;
  2008. int src_len = p_str.length();
  2009. if (src_len == 0 || length() == 0)
  2010. return -1; // won't find anything!
  2011. const CharType *srcd = c_str();
  2012. for (int i = p_from; i <= (length() - src_len); i++) {
  2013. bool found = true;
  2014. for (int j = 0; j < src_len; j++) {
  2015. int read_pos = i + j;
  2016. if (read_pos >= length()) {
  2017. ERR_PRINT("read_pos>=length()");
  2018. return -1;
  2019. };
  2020. CharType src = _find_lower(srcd[read_pos]);
  2021. CharType dst = _find_lower(p_str[j]);
  2022. if (src != dst) {
  2023. found = false;
  2024. break;
  2025. }
  2026. }
  2027. if (found)
  2028. return i;
  2029. }
  2030. return -1;
  2031. }
  2032. int String::rfind(const String &p_str, int p_from) const {
  2033. // establish a limit
  2034. int limit = length() - p_str.length();
  2035. if (limit < 0)
  2036. return -1;
  2037. // establish a starting point
  2038. if (p_from < 0)
  2039. p_from = limit;
  2040. else if (p_from > limit)
  2041. p_from = limit;
  2042. int src_len = p_str.length();
  2043. int len = length();
  2044. if (src_len == 0 || len == 0)
  2045. return -1; // won't find anything!
  2046. const CharType *src = c_str();
  2047. for (int i = p_from; i >= 0; i--) {
  2048. bool found = true;
  2049. for (int j = 0; j < src_len; j++) {
  2050. int read_pos = i + j;
  2051. if (read_pos >= len) {
  2052. ERR_PRINT("read_pos>=len");
  2053. return -1;
  2054. };
  2055. if (src[read_pos] != p_str[j]) {
  2056. found = false;
  2057. break;
  2058. }
  2059. }
  2060. if (found)
  2061. return i;
  2062. }
  2063. return -1;
  2064. }
  2065. int String::rfindn(const String &p_str, int p_from) const {
  2066. // establish a limit
  2067. int limit = length() - p_str.length();
  2068. if (limit < 0)
  2069. return -1;
  2070. // establish a starting point
  2071. if (p_from < 0)
  2072. p_from = limit;
  2073. else if (p_from > limit)
  2074. p_from = limit;
  2075. int src_len = p_str.length();
  2076. int len = length();
  2077. if (src_len == 0 || len == 0)
  2078. return -1; // won't find anything!
  2079. const CharType *src = c_str();
  2080. for (int i = p_from; i >= 0; i--) {
  2081. bool found = true;
  2082. for (int j = 0; j < src_len; j++) {
  2083. int read_pos = i + j;
  2084. if (read_pos >= len) {
  2085. ERR_PRINT("read_pos>=len");
  2086. return -1;
  2087. };
  2088. CharType srcc = _find_lower(src[read_pos]);
  2089. CharType dstc = _find_lower(p_str[j]);
  2090. if (srcc != dstc) {
  2091. found = false;
  2092. break;
  2093. }
  2094. }
  2095. if (found)
  2096. return i;
  2097. }
  2098. return -1;
  2099. }
  2100. bool String::ends_with(const String &p_string) const {
  2101. int l = p_string.length();
  2102. if (l > length()) {
  2103. return false;
  2104. }
  2105. if (l == 0) {
  2106. return true;
  2107. }
  2108. const CharType *p = &p_string[0];
  2109. const CharType *s = &operator[](length() - l);
  2110. for (int i = 0; i < l; i++) {
  2111. if (p[i] != s[i]) {
  2112. return false;
  2113. }
  2114. }
  2115. return true;
  2116. }
  2117. bool String::begins_with(const String &p_string) const {
  2118. int l = p_string.length();
  2119. if (l > length()) {
  2120. return false;
  2121. }
  2122. if (l == 0) {
  2123. return true;
  2124. }
  2125. const CharType *p = &p_string[0];
  2126. const CharType *s = &operator[](0);
  2127. for (int i = 0; i < l; i++) {
  2128. if (p[i] != s[i]) {
  2129. return false;
  2130. }
  2131. }
  2132. return true;
  2133. }
  2134. bool String::begins_with(const char *p_string) const {
  2135. int l = length();
  2136. if (l == 0 || !p_string)
  2137. return false;
  2138. const CharType *str = &operator[](0);
  2139. int i = 0;
  2140. while (*p_string && i < l) {
  2141. if (*p_string != str[i])
  2142. return false;
  2143. i++;
  2144. p_string++;
  2145. }
  2146. return *p_string == 0;
  2147. }
  2148. bool String::is_enclosed_in(const String &p_string) const {
  2149. return begins_with(p_string) && ends_with(p_string);
  2150. }
  2151. bool String::is_subsequence_of(const String &p_string) const {
  2152. return _base_is_subsequence_of(p_string, false);
  2153. }
  2154. bool String::is_subsequence_ofi(const String &p_string) const {
  2155. return _base_is_subsequence_of(p_string, true);
  2156. }
  2157. bool String::is_quoted() const {
  2158. return is_enclosed_in("\"") || is_enclosed_in("'");
  2159. }
  2160. int String::_count(const String &p_string, int p_from, int p_to, bool p_case_insensitive) const {
  2161. if (p_string.empty()) {
  2162. return 0;
  2163. }
  2164. int len = length();
  2165. int slen = p_string.length();
  2166. if (len < slen) {
  2167. return 0;
  2168. }
  2169. String str;
  2170. if (p_from >= 0 && p_to >= 0) {
  2171. if (p_to == 0) {
  2172. p_to = len;
  2173. } else if (p_from >= p_to) {
  2174. return 0;
  2175. }
  2176. if (p_from == 0 && p_to == len) {
  2177. str = String();
  2178. str.copy_from_unchecked(&c_str()[0], len);
  2179. } else {
  2180. str = substr(p_from, p_to - p_from);
  2181. }
  2182. } else {
  2183. return 0;
  2184. }
  2185. int c = 0;
  2186. int idx = -1;
  2187. do {
  2188. idx = p_case_insensitive ? str.findn(p_string) : str.find(p_string);
  2189. if (idx != -1) {
  2190. str = str.substr(idx + slen, str.length() - slen);
  2191. ++c;
  2192. }
  2193. } while (idx != -1);
  2194. return c;
  2195. }
  2196. int String::count(const String &p_string, int p_from, int p_to) const {
  2197. return _count(p_string, p_from, p_to, false);
  2198. }
  2199. int String::countn(const String &p_string, int p_from, int p_to) const {
  2200. return _count(p_string, p_from, p_to, true);
  2201. }
  2202. bool String::_base_is_subsequence_of(const String &p_string, bool case_insensitive) const {
  2203. int len = length();
  2204. if (len == 0) {
  2205. // Technically an empty string is subsequence of any string
  2206. return true;
  2207. }
  2208. if (len > p_string.length()) {
  2209. return false;
  2210. }
  2211. const CharType *src = &operator[](0);
  2212. const CharType *tgt = &p_string[0];
  2213. for (; *src && *tgt; tgt++) {
  2214. bool match = false;
  2215. if (case_insensitive) {
  2216. CharType srcc = _find_lower(*src);
  2217. CharType tgtc = _find_lower(*tgt);
  2218. match = srcc == tgtc;
  2219. } else {
  2220. match = *src == *tgt;
  2221. }
  2222. if (match) {
  2223. src++;
  2224. if (!*src) {
  2225. return true;
  2226. }
  2227. }
  2228. }
  2229. return false;
  2230. }
  2231. Vector<String> String::bigrams() const {
  2232. int n_pairs = length() - 1;
  2233. Vector<String> b;
  2234. if (n_pairs <= 0) {
  2235. return b;
  2236. }
  2237. b.resize(n_pairs);
  2238. for (int i = 0; i < n_pairs; i++) {
  2239. b.write[i] = substr(i, 2);
  2240. }
  2241. return b;
  2242. }
  2243. // Similarity according to Sorensen-Dice coefficient
  2244. float String::similarity(const String &p_string) const {
  2245. if (operator==(p_string)) {
  2246. // Equal strings are totally similar
  2247. return 1.0f;
  2248. }
  2249. if (length() < 2 || p_string.length() < 2) {
  2250. // No way to calculate similarity without a single bigram
  2251. return 0.0f;
  2252. }
  2253. Vector<String> src_bigrams = bigrams();
  2254. Vector<String> tgt_bigrams = p_string.bigrams();
  2255. int src_size = src_bigrams.size();
  2256. int tgt_size = tgt_bigrams.size();
  2257. float sum = src_size + tgt_size;
  2258. float inter = 0;
  2259. for (int i = 0; i < src_size; i++) {
  2260. for (int j = 0; j < tgt_size; j++) {
  2261. if (src_bigrams[i] == tgt_bigrams[j]) {
  2262. inter++;
  2263. break;
  2264. }
  2265. }
  2266. }
  2267. return (2.0f * inter) / sum;
  2268. }
  2269. static bool _wildcard_match(const CharType *p_pattern, const CharType *p_string, bool p_case_sensitive) {
  2270. switch (*p_pattern) {
  2271. case '\0':
  2272. return !*p_string;
  2273. case '*':
  2274. return _wildcard_match(p_pattern + 1, p_string, p_case_sensitive) || (*p_string && _wildcard_match(p_pattern, p_string + 1, p_case_sensitive));
  2275. case '?':
  2276. return *p_string && (*p_string != '.') && _wildcard_match(p_pattern + 1, p_string + 1, p_case_sensitive);
  2277. default:
  2278. return (p_case_sensitive ? (*p_string == *p_pattern) : (_find_upper(*p_string) == _find_upper(*p_pattern))) && _wildcard_match(p_pattern + 1, p_string + 1, p_case_sensitive);
  2279. }
  2280. }
  2281. bool String::match(const String &p_wildcard) const {
  2282. if (!p_wildcard.length() || !length())
  2283. return false;
  2284. return _wildcard_match(p_wildcard.c_str(), c_str(), true);
  2285. }
  2286. bool String::matchn(const String &p_wildcard) const {
  2287. if (!p_wildcard.length() || !length())
  2288. return false;
  2289. return _wildcard_match(p_wildcard.c_str(), c_str(), false);
  2290. }
  2291. String String::format(const Variant &values, String placeholder) const {
  2292. String new_string = String(this->ptr());
  2293. if (values.get_type() == Variant::ARRAY) {
  2294. Array values_arr = values;
  2295. for (int i = 0; i < values_arr.size(); i++) {
  2296. String i_as_str = String::num_int64(i);
  2297. if (values_arr[i].get_type() == Variant::ARRAY) { //Array in Array structure [["name","RobotGuy"],[0,"godot"],["strength",9000.91]]
  2298. Array value_arr = values_arr[i];
  2299. if (value_arr.size() == 2) {
  2300. Variant v_key = value_arr[0];
  2301. String key = v_key;
  2302. if (key.left(1) == "\"" && key.right(key.length() - 1) == "\"") {
  2303. key = key.substr(1, key.length() - 2);
  2304. }
  2305. Variant v_val = value_arr[1];
  2306. String val = v_val;
  2307. if (val.left(1) == "\"" && val.right(val.length() - 1) == "\"") {
  2308. val = val.substr(1, val.length() - 2);
  2309. }
  2310. new_string = new_string.replace(placeholder.replace("_", key), val);
  2311. } else {
  2312. ERR_PRINT(String("STRING.format Inner Array size != 2 ").ascii().get_data());
  2313. }
  2314. } else { //Array structure ["RobotGuy","Logis","rookie"]
  2315. Variant v_val = values_arr[i];
  2316. String val = v_val;
  2317. if (val.left(1) == "\"" && val.right(val.length() - 1) == "\"") {
  2318. val = val.substr(1, val.length() - 2);
  2319. }
  2320. if (placeholder.find("_") > -1) {
  2321. new_string = new_string.replace(placeholder.replace("_", i_as_str), val);
  2322. } else {
  2323. new_string = new_string.replace_first(placeholder, val);
  2324. }
  2325. }
  2326. }
  2327. } else if (values.get_type() == Variant::DICTIONARY) {
  2328. Dictionary d = values;
  2329. List<Variant> keys;
  2330. d.get_key_list(&keys);
  2331. for (List<Variant>::Element *E = keys.front(); E; E = E->next()) {
  2332. String key = E->get();
  2333. String val = d[E->get()];
  2334. if (key.left(1) == "\"" && key.right(key.length() - 1) == "\"") {
  2335. key = key.substr(1, key.length() - 2);
  2336. }
  2337. if (val.left(1) == "\"" && val.right(val.length() - 1) == "\"") {
  2338. val = val.substr(1, val.length() - 2);
  2339. }
  2340. new_string = new_string.replace(placeholder.replace("_", key), val);
  2341. }
  2342. } else {
  2343. ERR_PRINT(String("Invalid type: use Array or Dictionary.").ascii().get_data());
  2344. }
  2345. return new_string;
  2346. }
  2347. String String::replace(const String &p_key, const String &p_with) const {
  2348. String new_string;
  2349. int search_from = 0;
  2350. int result = 0;
  2351. while ((result = find(p_key, search_from)) >= 0) {
  2352. new_string += substr(search_from, result - search_from);
  2353. new_string += p_with;
  2354. search_from = result + p_key.length();
  2355. }
  2356. if (search_from == 0) {
  2357. return *this;
  2358. }
  2359. new_string += substr(search_from, length() - search_from);
  2360. return new_string;
  2361. }
  2362. String String::replace(const char *p_key, const char *p_with) const {
  2363. String new_string;
  2364. int search_from = 0;
  2365. int result = 0;
  2366. while ((result = find(p_key, search_from)) >= 0) {
  2367. new_string += substr(search_from, result - search_from);
  2368. new_string += p_with;
  2369. int k = 0;
  2370. while (p_key[k] != '\0')
  2371. k++;
  2372. search_from = result + k;
  2373. }
  2374. if (search_from == 0) {
  2375. return *this;
  2376. }
  2377. new_string += substr(search_from, length() - search_from);
  2378. return new_string;
  2379. }
  2380. String String::replace_first(const String &p_key, const String &p_with) const {
  2381. int pos = find(p_key);
  2382. if (pos >= 0) {
  2383. return substr(0, pos) + p_with + substr(pos + p_key.length(), length());
  2384. }
  2385. return *this;
  2386. }
  2387. String String::replacen(const String &p_key, const String &p_with) const {
  2388. String new_string;
  2389. int search_from = 0;
  2390. int result = 0;
  2391. while ((result = findn(p_key, search_from)) >= 0) {
  2392. new_string += substr(search_from, result - search_from);
  2393. new_string += p_with;
  2394. search_from = result + p_key.length();
  2395. }
  2396. if (search_from == 0) {
  2397. return *this;
  2398. }
  2399. new_string += substr(search_from, length() - search_from);
  2400. return new_string;
  2401. }
  2402. String String::repeat(int p_count) const {
  2403. ERR_FAIL_COND_V_MSG(p_count < 0, "", "Parameter count should be a positive number.");
  2404. String new_string;
  2405. const CharType *src = this->c_str();
  2406. new_string.resize(length() * p_count + 1);
  2407. new_string[length() * p_count] = 0;
  2408. for (int i = 0; i < p_count; i++)
  2409. for (int j = 0; j < length(); j++)
  2410. new_string[i * length() + j] = src[j];
  2411. return new_string;
  2412. }
  2413. String String::left(int p_pos) const {
  2414. if (p_pos <= 0)
  2415. return "";
  2416. if (p_pos >= length())
  2417. return *this;
  2418. return substr(0, p_pos);
  2419. }
  2420. String String::right(int p_pos) const {
  2421. if (p_pos >= length())
  2422. return "";
  2423. if (p_pos <= 0)
  2424. return *this;
  2425. return substr(p_pos, (length() - p_pos));
  2426. }
  2427. CharType String::ord_at(int p_idx) const {
  2428. ERR_FAIL_INDEX_V(p_idx, length(), 0);
  2429. return operator[](p_idx);
  2430. }
  2431. String String::dedent() const {
  2432. String new_string;
  2433. String indent;
  2434. bool has_indent = false;
  2435. bool has_text = false;
  2436. int line_start = 0;
  2437. int indent_stop = -1;
  2438. for (int i = 0; i < length(); i++) {
  2439. CharType c = operator[](i);
  2440. if (c == '\n') {
  2441. if (has_text)
  2442. new_string += substr(indent_stop, i - indent_stop);
  2443. new_string += "\n";
  2444. has_text = false;
  2445. line_start = i + 1;
  2446. indent_stop = -1;
  2447. } else if (!has_text) {
  2448. if (c > 32) {
  2449. has_text = true;
  2450. if (!has_indent) {
  2451. has_indent = true;
  2452. indent = substr(line_start, i - line_start);
  2453. indent_stop = i;
  2454. }
  2455. }
  2456. if (has_indent && indent_stop < 0) {
  2457. int j = i - line_start;
  2458. if (j >= indent.length() || c != indent[j])
  2459. indent_stop = i;
  2460. }
  2461. }
  2462. }
  2463. if (has_text)
  2464. new_string += substr(indent_stop, length() - indent_stop);
  2465. return new_string;
  2466. }
  2467. String String::strip_edges(bool left, bool right) const {
  2468. int len = length();
  2469. int beg = 0, end = len;
  2470. if (left) {
  2471. for (int i = 0; i < len; i++) {
  2472. if (operator[](i) <= 32)
  2473. beg++;
  2474. else
  2475. break;
  2476. }
  2477. }
  2478. if (right) {
  2479. for (int i = (int)(len - 1); i >= 0; i--) {
  2480. if (operator[](i) <= 32)
  2481. end--;
  2482. else
  2483. break;
  2484. }
  2485. }
  2486. if (beg == 0 && end == len)
  2487. return *this;
  2488. return substr(beg, end - beg);
  2489. }
  2490. String String::strip_escapes() const {
  2491. String new_string;
  2492. for (int i = 0; i < length(); i++) {
  2493. // Escape characters on first page of the ASCII table, before 32 (Space).
  2494. if (operator[](i) < 32)
  2495. continue;
  2496. new_string += operator[](i);
  2497. }
  2498. return new_string;
  2499. }
  2500. String String::lstrip(const String &p_chars) const {
  2501. int len = length();
  2502. int beg;
  2503. for (beg = 0; beg < len; beg++) {
  2504. if (p_chars.find_char(get(beg)) == -1)
  2505. break;
  2506. }
  2507. if (beg == 0)
  2508. return *this;
  2509. return substr(beg, len - beg);
  2510. }
  2511. String String::rstrip(const String &p_chars) const {
  2512. int len = length();
  2513. int end;
  2514. for (end = len - 1; end >= 0; end--) {
  2515. if (p_chars.find_char(get(end)) == -1)
  2516. break;
  2517. }
  2518. if (end == len - 1)
  2519. return *this;
  2520. return substr(0, end + 1);
  2521. }
  2522. String String::simplify_path() const {
  2523. String s = *this;
  2524. String drive;
  2525. if (s.begins_with("local://")) {
  2526. drive = "local://";
  2527. s = s.substr(8, s.length());
  2528. } else if (s.begins_with("res://")) {
  2529. drive = "res://";
  2530. s = s.substr(6, s.length());
  2531. } else if (s.begins_with("user://")) {
  2532. drive = "user://";
  2533. s = s.substr(7, s.length());
  2534. } else if (s.begins_with("/") || s.begins_with("\\")) {
  2535. drive = s.substr(0, 1);
  2536. s = s.substr(1, s.length() - 1);
  2537. } else {
  2538. int p = s.find(":/");
  2539. if (p == -1)
  2540. p = s.find(":\\");
  2541. if (p != -1 && p < s.find("/")) {
  2542. drive = s.substr(0, p + 2);
  2543. s = s.substr(p + 2, s.length());
  2544. }
  2545. }
  2546. s = s.replace("\\", "/");
  2547. while (true) { // in case of using 2 or more slash
  2548. String compare = s.replace("//", "/");
  2549. if (s == compare)
  2550. break;
  2551. else
  2552. s = compare;
  2553. }
  2554. Vector<String> dirs = s.split("/", false);
  2555. for (int i = 0; i < dirs.size(); i++) {
  2556. String d = dirs[i];
  2557. if (d == ".") {
  2558. dirs.remove(i);
  2559. i--;
  2560. } else if (d == "..") {
  2561. if (i == 0) {
  2562. dirs.remove(i);
  2563. i--;
  2564. } else {
  2565. dirs.remove(i);
  2566. dirs.remove(i - 1);
  2567. i -= 2;
  2568. }
  2569. }
  2570. }
  2571. s = "";
  2572. for (int i = 0; i < dirs.size(); i++) {
  2573. if (i > 0)
  2574. s += "/";
  2575. s += dirs[i];
  2576. }
  2577. return drive + s;
  2578. }
  2579. static int _humanize_digits(int p_num) {
  2580. if (p_num < 100)
  2581. return 2;
  2582. else if (p_num < 1024)
  2583. return 1;
  2584. else
  2585. return 0;
  2586. }
  2587. String String::humanize_size(uint64_t p_size) {
  2588. uint64_t _div = 1;
  2589. Vector<String> prefixes;
  2590. prefixes.push_back(RTR("B"));
  2591. prefixes.push_back(RTR("KiB"));
  2592. prefixes.push_back(RTR("MiB"));
  2593. prefixes.push_back(RTR("GiB"));
  2594. prefixes.push_back(RTR("TiB"));
  2595. prefixes.push_back(RTR("PiB"));
  2596. prefixes.push_back(RTR("EiB"));
  2597. int prefix_idx = 0;
  2598. while (prefix_idx < prefixes.size() - 1 && p_size > (_div * 1024)) {
  2599. _div *= 1024;
  2600. prefix_idx++;
  2601. }
  2602. const int digits = prefix_idx > 0 ? _humanize_digits(p_size / _div) : 0;
  2603. const double divisor = prefix_idx > 0 ? _div : 1;
  2604. return String::num(p_size / divisor).pad_decimals(digits) + " " + prefixes[prefix_idx];
  2605. }
  2606. bool String::is_abs_path() const {
  2607. if (length() > 1)
  2608. return (operator[](0) == '/' || operator[](0) == '\\' || find(":/") != -1 || find(":\\") != -1);
  2609. else if ((length()) == 1)
  2610. return (operator[](0) == '/' || operator[](0) == '\\');
  2611. else
  2612. return false;
  2613. }
  2614. bool String::is_valid_identifier() const {
  2615. int len = length();
  2616. if (len == 0)
  2617. return false;
  2618. const wchar_t *str = &operator[](0);
  2619. for (int i = 0; i < len; i++) {
  2620. if (i == 0) {
  2621. if (str[0] >= '0' && str[0] <= '9')
  2622. return false; // no start with number plz
  2623. }
  2624. bool valid_char = (str[i] >= '0' && str[i] <= '9') || (str[i] >= 'a' && str[i] <= 'z') || (str[i] >= 'A' && str[i] <= 'Z') || str[i] == '_';
  2625. if (!valid_char)
  2626. return false;
  2627. }
  2628. return true;
  2629. }
  2630. //kind of poor should be rewritten properly
  2631. String String::word_wrap(int p_chars_per_line) const {
  2632. int from = 0;
  2633. int last_space = 0;
  2634. String ret;
  2635. for (int i = 0; i < length(); i++) {
  2636. if (i - from >= p_chars_per_line) {
  2637. if (last_space == -1) {
  2638. ret += substr(from, i - from + 1) + "\n";
  2639. } else {
  2640. ret += substr(from, last_space - from) + "\n";
  2641. i = last_space; //rewind
  2642. }
  2643. from = i + 1;
  2644. last_space = -1;
  2645. } else if (operator[](i) == ' ' || operator[](i) == '\t') {
  2646. last_space = i;
  2647. } else if (operator[](i) == '\n') {
  2648. ret += substr(from, i - from) + "\n";
  2649. from = i + 1;
  2650. last_space = -1;
  2651. }
  2652. }
  2653. if (from < length()) {
  2654. ret += substr(from, length());
  2655. }
  2656. return ret;
  2657. }
  2658. String String::http_escape() const {
  2659. const CharString temp = utf8();
  2660. String res;
  2661. for (int i = 0; i < temp.length(); ++i) {
  2662. char ord = temp[i];
  2663. if (ord == '.' || ord == '-' || ord == '_' || ord == '~' ||
  2664. (ord >= 'a' && ord <= 'z') ||
  2665. (ord >= 'A' && ord <= 'Z') ||
  2666. (ord >= '0' && ord <= '9')) {
  2667. res += ord;
  2668. } else {
  2669. char h_Val[3];
  2670. #if defined(__GNUC__) || defined(_MSC_VER)
  2671. snprintf(h_Val, 3, "%02hhX", ord);
  2672. #else
  2673. sprintf(h_Val, "%02hhX", ord);
  2674. #endif
  2675. res += "%";
  2676. res += h_Val;
  2677. }
  2678. }
  2679. return res;
  2680. }
  2681. String String::http_unescape() const {
  2682. String res;
  2683. for (int i = 0; i < length(); ++i) {
  2684. if (ord_at(i) == '%' && i + 2 < length()) {
  2685. CharType ord1 = ord_at(i + 1);
  2686. if ((ord1 >= '0' && ord1 <= '9') || (ord1 >= 'A' && ord1 <= 'Z')) {
  2687. CharType ord2 = ord_at(i + 2);
  2688. if ((ord2 >= '0' && ord2 <= '9') || (ord2 >= 'A' && ord2 <= 'Z')) {
  2689. char bytes[3] = { (char)ord1, (char)ord2, 0 };
  2690. res += (char)strtol(bytes, NULL, 16);
  2691. i += 2;
  2692. }
  2693. } else {
  2694. res += ord_at(i);
  2695. }
  2696. } else {
  2697. res += ord_at(i);
  2698. }
  2699. }
  2700. return String::utf8(res.ascii());
  2701. }
  2702. String String::c_unescape() const {
  2703. String escaped = *this;
  2704. escaped = escaped.replace("\\a", "\a");
  2705. escaped = escaped.replace("\\b", "\b");
  2706. escaped = escaped.replace("\\f", "\f");
  2707. escaped = escaped.replace("\\n", "\n");
  2708. escaped = escaped.replace("\\r", "\r");
  2709. escaped = escaped.replace("\\t", "\t");
  2710. escaped = escaped.replace("\\v", "\v");
  2711. escaped = escaped.replace("\\'", "\'");
  2712. escaped = escaped.replace("\\\"", "\"");
  2713. escaped = escaped.replace("\\?", "\?");
  2714. escaped = escaped.replace("\\\\", "\\");
  2715. return escaped;
  2716. }
  2717. String String::c_escape() const {
  2718. String escaped = *this;
  2719. escaped = escaped.replace("\\", "\\\\");
  2720. escaped = escaped.replace("\a", "\\a");
  2721. escaped = escaped.replace("\b", "\\b");
  2722. escaped = escaped.replace("\f", "\\f");
  2723. escaped = escaped.replace("\n", "\\n");
  2724. escaped = escaped.replace("\r", "\\r");
  2725. escaped = escaped.replace("\t", "\\t");
  2726. escaped = escaped.replace("\v", "\\v");
  2727. escaped = escaped.replace("\'", "\\'");
  2728. escaped = escaped.replace("\?", "\\?");
  2729. escaped = escaped.replace("\"", "\\\"");
  2730. return escaped;
  2731. }
  2732. String String::c_escape_multiline() const {
  2733. String escaped = *this;
  2734. escaped = escaped.replace("\\", "\\\\");
  2735. escaped = escaped.replace("\"", "\\\"");
  2736. return escaped;
  2737. }
  2738. String String::json_escape() const {
  2739. String escaped = *this;
  2740. escaped = escaped.replace("\\", "\\\\");
  2741. escaped = escaped.replace("\b", "\\b");
  2742. escaped = escaped.replace("\f", "\\f");
  2743. escaped = escaped.replace("\n", "\\n");
  2744. escaped = escaped.replace("\r", "\\r");
  2745. escaped = escaped.replace("\t", "\\t");
  2746. escaped = escaped.replace("\v", "\\v");
  2747. escaped = escaped.replace("\"", "\\\"");
  2748. return escaped;
  2749. }
  2750. String String::xml_escape(bool p_escape_quotes) const {
  2751. String str = *this;
  2752. str = str.replace("&", "&amp;");
  2753. str = str.replace("<", "&lt;");
  2754. str = str.replace(">", "&gt;");
  2755. if (p_escape_quotes) {
  2756. str = str.replace("'", "&apos;");
  2757. str = str.replace("\"", "&quot;");
  2758. }
  2759. /*
  2760. for (int i=1;i<32;i++) {
  2761. char chr[2]={i,0};
  2762. str=str.replace(chr,"&#"+String::num(i)+";");
  2763. }*/
  2764. return str;
  2765. }
  2766. static _FORCE_INLINE_ int _xml_unescape(const CharType *p_src, int p_src_len, CharType *p_dst) {
  2767. int len = 0;
  2768. while (p_src_len) {
  2769. if (*p_src == '&') {
  2770. int eat = 0;
  2771. if (p_src_len >= 4 && p_src[1] == '#') {
  2772. CharType c = 0;
  2773. for (int i = 2; i < p_src_len; i++) {
  2774. eat = i + 1;
  2775. CharType ct = p_src[i];
  2776. if (ct == ';') {
  2777. break;
  2778. } else if (ct >= '0' && ct <= '9') {
  2779. ct = ct - '0';
  2780. } else if (ct >= 'a' && ct <= 'f') {
  2781. ct = (ct - 'a') + 10;
  2782. } else if (ct >= 'A' && ct <= 'F') {
  2783. ct = (ct - 'A') + 10;
  2784. } else {
  2785. continue;
  2786. }
  2787. c <<= 4;
  2788. c |= ct;
  2789. }
  2790. if (p_dst)
  2791. *p_dst = c;
  2792. } else if (p_src_len >= 4 && p_src[1] == 'g' && p_src[2] == 't' && p_src[3] == ';') {
  2793. if (p_dst)
  2794. *p_dst = '>';
  2795. eat = 4;
  2796. } else if (p_src_len >= 4 && p_src[1] == 'l' && p_src[2] == 't' && p_src[3] == ';') {
  2797. if (p_dst)
  2798. *p_dst = '<';
  2799. eat = 4;
  2800. } else if (p_src_len >= 5 && p_src[1] == 'a' && p_src[2] == 'm' && p_src[3] == 'p' && p_src[4] == ';') {
  2801. if (p_dst)
  2802. *p_dst = '&';
  2803. eat = 5;
  2804. } else if (p_src_len >= 6 && p_src[1] == 'q' && p_src[2] == 'u' && p_src[3] == 'o' && p_src[4] == 't' && p_src[5] == ';') {
  2805. if (p_dst)
  2806. *p_dst = '"';
  2807. eat = 6;
  2808. } else if (p_src_len >= 6 && p_src[1] == 'a' && p_src[2] == 'p' && p_src[3] == 'o' && p_src[4] == 's' && p_src[5] == ';') {
  2809. if (p_dst)
  2810. *p_dst = '\'';
  2811. eat = 6;
  2812. } else {
  2813. if (p_dst)
  2814. *p_dst = *p_src;
  2815. eat = 1;
  2816. }
  2817. if (p_dst)
  2818. p_dst++;
  2819. len++;
  2820. p_src += eat;
  2821. p_src_len -= eat;
  2822. } else {
  2823. if (p_dst) {
  2824. *p_dst = *p_src;
  2825. p_dst++;
  2826. }
  2827. len++;
  2828. p_src++;
  2829. p_src_len--;
  2830. }
  2831. }
  2832. return len;
  2833. }
  2834. String String::xml_unescape() const {
  2835. String str;
  2836. int l = length();
  2837. int len = _xml_unescape(c_str(), l, NULL);
  2838. if (len == 0)
  2839. return String();
  2840. str.resize(len + 1);
  2841. _xml_unescape(c_str(), l, str.ptrw());
  2842. str[len] = 0;
  2843. return str;
  2844. }
  2845. String String::pad_decimals(int p_digits) const {
  2846. String s = *this;
  2847. int c = s.find(".");
  2848. if (c == -1) {
  2849. if (p_digits <= 0) {
  2850. return s;
  2851. }
  2852. s += ".";
  2853. c = s.length() - 1;
  2854. } else {
  2855. if (p_digits <= 0) {
  2856. return s.substr(0, c);
  2857. }
  2858. }
  2859. if (s.length() - (c + 1) > p_digits) {
  2860. s = s.substr(0, c + p_digits + 1);
  2861. } else {
  2862. while (s.length() - (c + 1) < p_digits) {
  2863. s += "0";
  2864. }
  2865. }
  2866. return s;
  2867. }
  2868. String String::pad_zeros(int p_digits) const {
  2869. String s = *this;
  2870. int end = s.find(".");
  2871. if (end == -1) {
  2872. end = s.length();
  2873. }
  2874. if (end == 0)
  2875. return s;
  2876. int begin = 0;
  2877. while (begin < end && (s[begin] < '0' || s[begin] > '9')) {
  2878. begin++;
  2879. }
  2880. if (begin >= end)
  2881. return s;
  2882. while (end - begin < p_digits) {
  2883. s = s.insert(begin, "0");
  2884. end++;
  2885. }
  2886. return s;
  2887. }
  2888. String String::trim_prefix(const String &p_prefix) const {
  2889. String s = *this;
  2890. if (s.begins_with(p_prefix)) {
  2891. return s.substr(p_prefix.length(), s.length() - p_prefix.length());
  2892. }
  2893. return s;
  2894. }
  2895. String String::trim_suffix(const String &p_suffix) const {
  2896. String s = *this;
  2897. if (s.ends_with(p_suffix)) {
  2898. return s.substr(0, s.length() - p_suffix.length());
  2899. }
  2900. return s;
  2901. }
  2902. bool String::is_valid_integer() const {
  2903. int len = length();
  2904. if (len == 0)
  2905. return false;
  2906. int from = 0;
  2907. if (len != 1 && (operator[](0) == '+' || operator[](0) == '-'))
  2908. from++;
  2909. for (int i = from; i < len; i++) {
  2910. if (operator[](i) < '0' || operator[](i) > '9')
  2911. return false; // no start with number plz
  2912. }
  2913. return true;
  2914. }
  2915. bool String::is_valid_hex_number(bool p_with_prefix) const {
  2916. int len = length();
  2917. if (len == 0)
  2918. return false;
  2919. int from = 0;
  2920. if (len != 1 && (operator[](0) == '+' || operator[](0) == '-'))
  2921. from++;
  2922. if (p_with_prefix) {
  2923. if (len < 3)
  2924. return false;
  2925. if (operator[](from) != '0' || operator[](from + 1) != 'x') {
  2926. return false;
  2927. }
  2928. from += 2;
  2929. }
  2930. for (int i = from; i < len; i++) {
  2931. CharType c = operator[](i);
  2932. if ((c >= '0' && c <= '9') || (c >= 'a' && c <= 'f') || (c >= 'A' && c <= 'F'))
  2933. continue;
  2934. return false;
  2935. }
  2936. return true;
  2937. };
  2938. bool String::is_valid_float() const {
  2939. int len = length();
  2940. if (len == 0)
  2941. return false;
  2942. int from = 0;
  2943. if (operator[](0) == '+' || operator[](0) == '-') {
  2944. from++;
  2945. }
  2946. bool exponent_found = false;
  2947. bool period_found = false;
  2948. bool sign_found = false;
  2949. bool exponent_values_found = false;
  2950. bool numbers_found = false;
  2951. for (int i = from; i < len; i++) {
  2952. if (operator[](i) >= '0' && operator[](i) <= '9') {
  2953. if (exponent_found)
  2954. exponent_values_found = true;
  2955. else
  2956. numbers_found = true;
  2957. } else if (numbers_found && !exponent_found && operator[](i) == 'e') {
  2958. exponent_found = true;
  2959. } else if (!period_found && !exponent_found && operator[](i) == '.') {
  2960. period_found = true;
  2961. } else if ((operator[](i) == '-' || operator[](i) == '+') && exponent_found && !exponent_values_found && !sign_found) {
  2962. sign_found = true;
  2963. } else
  2964. return false; // no start with number plz
  2965. }
  2966. return numbers_found;
  2967. }
  2968. String String::path_to_file(const String &p_path) const {
  2969. // Don't get base dir for src, this is expected to be a dir already.
  2970. String src = this->replace("\\", "/");
  2971. String dst = p_path.replace("\\", "/").get_base_dir();
  2972. String rel = src.path_to(dst);
  2973. if (rel == dst) // failed
  2974. return p_path;
  2975. else
  2976. return rel + p_path.get_file();
  2977. }
  2978. String String::path_to(const String &p_path) const {
  2979. String src = this->replace("\\", "/");
  2980. String dst = p_path.replace("\\", "/");
  2981. if (!src.ends_with("/"))
  2982. src += "/";
  2983. if (!dst.ends_with("/"))
  2984. dst += "/";
  2985. String base;
  2986. if (src.begins_with("res://") && dst.begins_with("res://")) {
  2987. base = "res:/";
  2988. src = src.replace("res://", "/");
  2989. dst = dst.replace("res://", "/");
  2990. } else if (src.begins_with("user://") && dst.begins_with("user://")) {
  2991. base = "user:/";
  2992. src = src.replace("user://", "/");
  2993. dst = dst.replace("user://", "/");
  2994. } else if (src.begins_with("/") && dst.begins_with("/")) {
  2995. //nothing
  2996. } else {
  2997. //dos style
  2998. String src_begin = src.get_slicec('/', 0);
  2999. String dst_begin = dst.get_slicec('/', 0);
  3000. if (src_begin != dst_begin)
  3001. return p_path; //impossible to do this
  3002. base = src_begin;
  3003. src = src.substr(src_begin.length(), src.length());
  3004. dst = dst.substr(dst_begin.length(), dst.length());
  3005. }
  3006. //remove leading and trailing slash and split
  3007. Vector<String> src_dirs = src.substr(1, src.length() - 2).split("/");
  3008. Vector<String> dst_dirs = dst.substr(1, dst.length() - 2).split("/");
  3009. //find common parent
  3010. int common_parent = 0;
  3011. while (true) {
  3012. if (src_dirs.size() == common_parent)
  3013. break;
  3014. if (dst_dirs.size() == common_parent)
  3015. break;
  3016. if (src_dirs[common_parent] != dst_dirs[common_parent])
  3017. break;
  3018. common_parent++;
  3019. }
  3020. common_parent--;
  3021. String dir;
  3022. for (int i = src_dirs.size() - 1; i > common_parent; i--) {
  3023. dir += "../";
  3024. }
  3025. for (int i = common_parent + 1; i < dst_dirs.size(); i++) {
  3026. dir += dst_dirs[i] + "/";
  3027. }
  3028. if (dir.length() == 0)
  3029. dir = "./";
  3030. return dir;
  3031. }
  3032. bool String::is_valid_html_color() const {
  3033. return Color::html_is_valid(*this);
  3034. }
  3035. bool String::is_valid_filename() const {
  3036. String stripped = strip_edges();
  3037. if (*this != stripped) {
  3038. return false;
  3039. }
  3040. if (stripped == String()) {
  3041. return false;
  3042. }
  3043. return !(find(":") != -1 || find("/") != -1 || find("\\") != -1 || find("?") != -1 || find("*") != -1 || find("\"") != -1 || find("|") != -1 || find("%") != -1 || find("<") != -1 || find(">") != -1);
  3044. }
  3045. bool String::is_valid_ip_address() const {
  3046. if (find(":") >= 0) {
  3047. Vector<String> ip = split(":");
  3048. for (int i = 0; i < ip.size(); i++) {
  3049. String n = ip[i];
  3050. if (n.empty())
  3051. continue;
  3052. if (n.is_valid_hex_number(false)) {
  3053. int nint = n.hex_to_int(false);
  3054. if (nint < 0 || nint > 0xffff)
  3055. return false;
  3056. continue;
  3057. };
  3058. if (!n.is_valid_ip_address())
  3059. return false;
  3060. };
  3061. } else {
  3062. Vector<String> ip = split(".");
  3063. if (ip.size() != 4)
  3064. return false;
  3065. for (int i = 0; i < ip.size(); i++) {
  3066. String n = ip[i];
  3067. if (!n.is_valid_integer())
  3068. return false;
  3069. int val = n.to_int();
  3070. if (val < 0 || val > 255)
  3071. return false;
  3072. }
  3073. };
  3074. return true;
  3075. }
  3076. bool String::is_resource_file() const {
  3077. return begins_with("res://") && find("::") == -1;
  3078. }
  3079. bool String::is_rel_path() const {
  3080. return !is_abs_path();
  3081. }
  3082. String String::get_base_dir() const {
  3083. int basepos = find(":/");
  3084. if (basepos == -1) {
  3085. basepos = find(":\\");
  3086. }
  3087. String rs;
  3088. String base;
  3089. if (basepos != -1) {
  3090. int end = basepos + 3;
  3091. rs = substr(end, length());
  3092. base = substr(0, end);
  3093. } else {
  3094. if (begins_with("/")) {
  3095. rs = substr(1, length());
  3096. base = "/";
  3097. } else {
  3098. rs = *this;
  3099. }
  3100. }
  3101. int sep = MAX(rs.find_last("/"), rs.find_last("\\"));
  3102. if (sep == -1)
  3103. return base;
  3104. return base + rs.substr(0, sep);
  3105. }
  3106. String String::get_file() const {
  3107. int sep = MAX(find_last("/"), find_last("\\"));
  3108. if (sep == -1)
  3109. return *this;
  3110. return substr(sep + 1, length());
  3111. }
  3112. String String::get_extension() const {
  3113. int pos = find_last(".");
  3114. if (pos < 0 || pos < MAX(find_last("/"), find_last("\\")))
  3115. return "";
  3116. return substr(pos + 1, length());
  3117. }
  3118. String String::plus_file(const String &p_file) const {
  3119. if (empty())
  3120. return p_file;
  3121. if (operator[](length() - 1) == '/' || (p_file.size() > 0 && p_file.operator[](0) == '/'))
  3122. return *this + p_file;
  3123. return *this + "/" + p_file;
  3124. }
  3125. String String::percent_encode() const {
  3126. CharString cs = utf8();
  3127. String encoded;
  3128. for (int i = 0; i < cs.length(); i++) {
  3129. uint8_t c = cs[i];
  3130. if ((c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z') || (c >= '0' && c <= '9') || c == '-' || c == '_' || c == '~' || c == '.') {
  3131. char p[2] = { (char)c, 0 };
  3132. encoded += p;
  3133. } else {
  3134. char p[4] = { '%', 0, 0, 0 };
  3135. static const char hex[16] = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f' };
  3136. p[1] = hex[c >> 4];
  3137. p[2] = hex[c & 0xF];
  3138. encoded += p;
  3139. }
  3140. }
  3141. return encoded;
  3142. }
  3143. String String::percent_decode() const {
  3144. CharString pe;
  3145. CharString cs = utf8();
  3146. for (int i = 0; i < cs.length(); i++) {
  3147. uint8_t c = cs[i];
  3148. if (c == '%' && i < length() - 2) {
  3149. uint8_t a = LOWERCASE(cs[i + 1]);
  3150. uint8_t b = LOWERCASE(cs[i + 2]);
  3151. if (a >= '0' && a <= '9')
  3152. c = (a - '0') << 4;
  3153. else if (a >= 'a' && a <= 'f')
  3154. c = (a - 'a' + 10) << 4;
  3155. else
  3156. continue;
  3157. uint8_t d = 0;
  3158. if (b >= '0' && b <= '9')
  3159. d = (b - '0');
  3160. else if (b >= 'a' && b <= 'f')
  3161. d = (b - 'a' + 10);
  3162. else
  3163. continue;
  3164. c += d;
  3165. i += 2;
  3166. }
  3167. pe += c;
  3168. }
  3169. return String::utf8(pe.ptr());
  3170. }
  3171. String String::property_name_encode() const {
  3172. // Escape and quote strings with extended ASCII or further Unicode characters
  3173. // as well as '"', '=' or ' ' (32)
  3174. const CharType *cstr = c_str();
  3175. for (int i = 0; cstr[i]; i++) {
  3176. if (cstr[i] == '=' || cstr[i] == '"' || cstr[i] < 33 || cstr[i] > 126) {
  3177. return "\"" + c_escape_multiline() + "\"";
  3178. }
  3179. }
  3180. // Keep as is
  3181. return *this;
  3182. }
  3183. // Changes made to the set of invalid characters must also be reflected in the String documentation.
  3184. const String String::invalid_node_name_characters = ". : @ / \"";
  3185. String String::validate_node_name() const {
  3186. Vector<String> chars = String::invalid_node_name_characters.split(" ");
  3187. String name = this->replace(chars[0], "");
  3188. for (int i = 1; i < chars.size(); i++) {
  3189. name = name.replace(chars[i], "");
  3190. }
  3191. return name;
  3192. }
  3193. String String::get_basename() const {
  3194. int pos = find_last(".");
  3195. if (pos < 0 || pos < MAX(find_last("/"), find_last("\\")))
  3196. return *this;
  3197. return substr(0, pos);
  3198. }
  3199. String itos(int64_t p_val) {
  3200. return String::num_int64(p_val);
  3201. }
  3202. String uitos(uint64_t p_val) {
  3203. return String::num_uint64(p_val);
  3204. }
  3205. String rtos(double p_val) {
  3206. return String::num(p_val);
  3207. }
  3208. String rtoss(double p_val) {
  3209. return String::num_scientific(p_val);
  3210. }
  3211. // Right-pad with a character.
  3212. String String::rpad(int min_length, const String &character) const {
  3213. String s = *this;
  3214. int padding = min_length - s.length();
  3215. if (padding > 0) {
  3216. for (int i = 0; i < padding; i++)
  3217. s = s + character;
  3218. }
  3219. return s;
  3220. }
  3221. // Left-pad with a character.
  3222. String String::lpad(int min_length, const String &character) const {
  3223. String s = *this;
  3224. int padding = min_length - s.length();
  3225. if (padding > 0) {
  3226. for (int i = 0; i < padding; i++)
  3227. s = character + s;
  3228. }
  3229. return s;
  3230. }
  3231. // sprintf is implemented in GDScript via:
  3232. // "fish %s pie" % "frog"
  3233. // "fish %s %d pie" % ["frog", 12]
  3234. // In case of an error, the string returned is the error description and "error" is true.
  3235. String String::sprintf(const Array &values, bool *error) const {
  3236. String formatted;
  3237. CharType *self = (CharType *)c_str();
  3238. bool in_format = false;
  3239. int value_index = 0;
  3240. int min_chars = 0;
  3241. int min_decimals = 0;
  3242. bool in_decimals = false;
  3243. bool pad_with_zeroes = false;
  3244. bool left_justified = false;
  3245. bool show_sign = false;
  3246. *error = true;
  3247. for (; *self; self++) {
  3248. const CharType c = *self;
  3249. if (in_format) { // We have % - lets see what else we get.
  3250. switch (c) {
  3251. case '%': { // Replace %% with %
  3252. formatted += chr(c);
  3253. in_format = false;
  3254. break;
  3255. }
  3256. case 'd': // Integer (signed)
  3257. case 'o': // Octal
  3258. case 'x': // Hexadecimal (lowercase)
  3259. case 'X': { // Hexadecimal (uppercase)
  3260. if (value_index >= values.size()) {
  3261. return "not enough arguments for format string";
  3262. }
  3263. if (!values[value_index].is_num()) {
  3264. return "a number is required";
  3265. }
  3266. int64_t value = values[value_index];
  3267. int base = 16;
  3268. bool capitalize = false;
  3269. switch (c) {
  3270. case 'd': base = 10; break;
  3271. case 'o': base = 8; break;
  3272. case 'x': break;
  3273. case 'X':
  3274. base = 16;
  3275. capitalize = true;
  3276. break;
  3277. }
  3278. // Get basic number.
  3279. String str = String::num_int64(ABS(value), base, capitalize);
  3280. int number_len = str.length();
  3281. // Padding.
  3282. int pad_chars_count = (value < 0 || show_sign) ? min_chars - 1 : min_chars;
  3283. String pad_char = pad_with_zeroes ? String("0") : String(" ");
  3284. if (left_justified) {
  3285. str = str.rpad(pad_chars_count, pad_char);
  3286. } else {
  3287. str = str.lpad(pad_chars_count, pad_char);
  3288. }
  3289. // Sign.
  3290. if (show_sign && value >= 0) {
  3291. str = str.insert(pad_with_zeroes ? 0 : str.length() - number_len, "+");
  3292. } else if (value < 0) {
  3293. str = str.insert(pad_with_zeroes ? 0 : str.length() - number_len, "-");
  3294. }
  3295. formatted += str;
  3296. ++value_index;
  3297. in_format = false;
  3298. break;
  3299. }
  3300. case 'f': { // Float
  3301. if (value_index >= values.size()) {
  3302. return "not enough arguments for format string";
  3303. }
  3304. if (!values[value_index].is_num()) {
  3305. return "a number is required";
  3306. }
  3307. double value = values[value_index];
  3308. bool is_negative = (value < 0);
  3309. String str = String::num(ABS(value), min_decimals);
  3310. // Pad decimals out.
  3311. str = str.pad_decimals(min_decimals);
  3312. int initial_len = str.length();
  3313. // Padding. Leave room for sign later if required.
  3314. int pad_chars_count = (is_negative || show_sign) ? min_chars - 1 : min_chars;
  3315. String pad_char = pad_with_zeroes ? String("0") : String(" ");
  3316. if (left_justified) {
  3317. if (pad_with_zeroes) {
  3318. return "left justification cannot be used with zeros as the padding";
  3319. } else {
  3320. str = str.rpad(pad_chars_count, pad_char);
  3321. }
  3322. } else {
  3323. str = str.lpad(pad_chars_count, pad_char);
  3324. }
  3325. // Add sign if needed.
  3326. if (show_sign || is_negative) {
  3327. String sign_char = is_negative ? "-" : "+";
  3328. if (left_justified) {
  3329. str = str.insert(0, sign_char);
  3330. } else {
  3331. str = str.insert(pad_with_zeroes ? 0 : str.length() - initial_len, sign_char);
  3332. }
  3333. }
  3334. formatted += str;
  3335. ++value_index;
  3336. in_format = false;
  3337. break;
  3338. }
  3339. case 's': { // String
  3340. if (value_index >= values.size()) {
  3341. return "not enough arguments for format string";
  3342. }
  3343. String str = values[value_index];
  3344. // Padding.
  3345. if (left_justified) {
  3346. str = str.rpad(min_chars);
  3347. } else {
  3348. str = str.lpad(min_chars);
  3349. }
  3350. formatted += str;
  3351. ++value_index;
  3352. in_format = false;
  3353. break;
  3354. }
  3355. case 'c': {
  3356. if (value_index >= values.size()) {
  3357. return "not enough arguments for format string";
  3358. }
  3359. // Convert to character.
  3360. String str;
  3361. if (values[value_index].is_num()) {
  3362. int value = values[value_index];
  3363. if (value < 0) {
  3364. return "unsigned byte integer is lower than maximum";
  3365. } else if (value > 255) {
  3366. return "unsigned byte integer is greater than maximum";
  3367. }
  3368. str = chr(values[value_index]);
  3369. } else if (values[value_index].get_type() == Variant::STRING) {
  3370. str = values[value_index];
  3371. if (str.length() != 1) {
  3372. return "%c requires number or single-character string";
  3373. }
  3374. } else {
  3375. return "%c requires number or single-character string";
  3376. }
  3377. // Padding.
  3378. if (left_justified) {
  3379. str = str.rpad(min_chars);
  3380. } else {
  3381. str = str.lpad(min_chars);
  3382. }
  3383. formatted += str;
  3384. ++value_index;
  3385. in_format = false;
  3386. break;
  3387. }
  3388. case '-': { // Left justify
  3389. left_justified = true;
  3390. break;
  3391. }
  3392. case '+': { // Show + if positive.
  3393. show_sign = true;
  3394. break;
  3395. }
  3396. case '0':
  3397. case '1':
  3398. case '2':
  3399. case '3':
  3400. case '4':
  3401. case '5':
  3402. case '6':
  3403. case '7':
  3404. case '8':
  3405. case '9': {
  3406. int n = c - '0';
  3407. if (in_decimals) {
  3408. min_decimals *= 10;
  3409. min_decimals += n;
  3410. } else {
  3411. if (c == '0' && min_chars == 0) {
  3412. pad_with_zeroes = true;
  3413. } else {
  3414. min_chars *= 10;
  3415. min_chars += n;
  3416. }
  3417. }
  3418. break;
  3419. }
  3420. case '.': { // Float separator.
  3421. if (in_decimals) {
  3422. return "too many decimal points in format";
  3423. }
  3424. in_decimals = true;
  3425. min_decimals = 0; // We want to add the value manually.
  3426. break;
  3427. }
  3428. case '*': { // Dynamic width, based on value.
  3429. if (value_index >= values.size()) {
  3430. return "not enough arguments for format string";
  3431. }
  3432. if (!values[value_index].is_num()) {
  3433. return "* wants number";
  3434. }
  3435. int size = values[value_index];
  3436. if (in_decimals) {
  3437. min_decimals = size;
  3438. } else {
  3439. min_chars = size;
  3440. }
  3441. ++value_index;
  3442. break;
  3443. }
  3444. default: {
  3445. return "unsupported format character";
  3446. }
  3447. }
  3448. } else { // Not in format string.
  3449. switch (c) {
  3450. case '%':
  3451. in_format = true;
  3452. // Back to defaults:
  3453. min_chars = 0;
  3454. min_decimals = 6;
  3455. pad_with_zeroes = false;
  3456. left_justified = false;
  3457. show_sign = false;
  3458. in_decimals = false;
  3459. break;
  3460. default:
  3461. formatted += chr(c);
  3462. }
  3463. }
  3464. }
  3465. if (in_format) {
  3466. return "incomplete format";
  3467. }
  3468. if (value_index != values.size()) {
  3469. return "not all arguments converted during string formatting";
  3470. }
  3471. *error = false;
  3472. return formatted;
  3473. }
  3474. String String::quote(String quotechar) const {
  3475. return quotechar + *this + quotechar;
  3476. }
  3477. String String::unquote() const {
  3478. if (!is_quoted()) {
  3479. return *this;
  3480. }
  3481. return substr(1, length() - 2);
  3482. }
  3483. #ifdef TOOLS_ENABLED
  3484. String TTR(const String &p_text) {
  3485. if (TranslationServer::get_singleton()) {
  3486. return TranslationServer::get_singleton()->tool_translate(p_text);
  3487. }
  3488. return p_text;
  3489. }
  3490. #endif
  3491. String RTR(const String &p_text) {
  3492. if (TranslationServer::get_singleton()) {
  3493. String rtr = TranslationServer::get_singleton()->tool_translate(p_text);
  3494. if (rtr == String() || rtr == p_text) {
  3495. return TranslationServer::get_singleton()->translate(p_text);
  3496. } else {
  3497. return rtr;
  3498. }
  3499. }
  3500. return p_text;
  3501. }