sstrings.inc 46 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863
  1. {
  2. This file is part of the Free Pascal run time library.
  3. Copyright (c) 1999-2000 by the Free Pascal development team
  4. See the file COPYING.FPC, included in this distribution,
  5. for details about the copyright.
  6. This program is distributed in the hope that it will be useful,
  7. but WITHOUT ANY WARRANTY; without even the implied warranty of
  8. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  9. **********************************************************************}
  10. {****************************************************************************
  11. subroutines for string handling
  12. ****************************************************************************}
  13. {$ifndef FPC_HAS_SHORTSTR_SETLENGTH}
  14. {$define FPC_HAS_SHORTSTR_SETLENGTH}
  15. procedure fpc_Shortstr_SetLength(var s:shortstring;len:SizeInt);[Public,Alias : 'FPC_SHORTSTR_SETLENGTH']; compilerproc;
  16. begin
  17. if Len>255 then
  18. Len:=255;
  19. s[0]:=chr(len);
  20. end;
  21. {$endif FPC_HAS_SHORTSTR_SETLENGTH}
  22. {$ifndef FPC_HAS_SHORTSTR_COPY}
  23. {$define FPC_HAS_SHORTSTR_COPY}
  24. function fpc_shortstr_copy(const s : shortstring;index : SizeInt;count : SizeInt): shortstring;compilerproc;
  25. begin
  26. if count<0 then
  27. count:=0;
  28. if index>1 then
  29. dec(index)
  30. else
  31. index:=0;
  32. if index>length(s) then
  33. count:=0
  34. else
  35. if count>length(s)-index then
  36. count:=length(s)-index;
  37. fpc_shortstr_Copy[0]:=chr(Count);
  38. fpc_shortstr_shortstr_intern_charmove(s,Index+1,fpc_shortstr_Copy,1,Count);
  39. end;
  40. {$endif FPC_HAS_SHORTSTR_COPY}
  41. {$ifndef FPC_HAS_SHORTSTR_DELETE}
  42. {$define FPC_HAS_SHORTSTR_DELETE}
  43. procedure {$ifdef VER3_0}delete{$else}fpc_shortstr_delete{$endif}(var s : shortstring;index : SizeInt;count : SizeInt);
  44. begin
  45. if index<=0 then
  46. exit;
  47. if (Index<=Length(s)) and (Count>0) then
  48. begin
  49. if Count>length(s)-Index then
  50. Count:=length(s)-Index+1;
  51. s[0]:=Chr(length(s)-Count);
  52. if Index<=Length(s) then
  53. fpc_shortstr_shortstr_intern_charmove(s,Index+Count,s,Index,Length(s)-Index+1);
  54. end;
  55. end;
  56. {$endif FPC_HAS_SHORTSTR_DELETE}
  57. {$ifndef FPC_HAS_SHORTSTR_INSERT}
  58. {$define FPC_HAS_SHORTSTR_INSERT}
  59. procedure {$ifdef ver3_0}insert{$else}fpc_shortstr_insert{$endif}(const source : shortstring;var s : shortstring;index : SizeInt);
  60. var
  61. cut,srclen,indexlen : SizeInt;
  62. begin
  63. if index<1 then
  64. index:=1;
  65. if index>length(s) then
  66. begin
  67. index:=length(s)+1;
  68. if index>high(s) then
  69. exit;
  70. end;
  71. indexlen:=Length(s)-Index+1;
  72. srclen:=length(Source);
  73. if sizeInt(length(source))+sizeint(length(s))>=sizeof(s) then
  74. begin
  75. cut:=sizeInt(length(source))+sizeint(length(s))-sizeof(s)+1;
  76. if cut>indexlen then
  77. begin
  78. dec(srclen,cut-indexlen);
  79. indexlen:=0;
  80. end
  81. else
  82. dec(indexlen,cut);
  83. end;
  84. fpc_shortstr_shortstr_intern_charmove(s,Index,s,Index+srclen,indexlen);
  85. fpc_shortstr_shortstr_intern_charmove(Source,1,s,Index,srclen);
  86. s[0]:=chr(index+srclen+indexlen-1);
  87. end;
  88. {$endif FPC_HAS_SHORTSTR_INSERT}
  89. {$ifndef FPC_HAS_SHORTSTR_INSERT_CHAR}
  90. {$define FPC_HAS_SHORTSTR_INSERT_CHAR}
  91. procedure {$ifdef ver3_0}insert{$else}fpc_shortstr_insert_char{$endif}(source : Char;var s : shortstring;index : SizeInt);
  92. var
  93. indexlen : SizeInt;
  94. begin
  95. if index<1 then
  96. index:=1;
  97. if index>length(s) then
  98. begin
  99. index:=length(s)+1;
  100. if index>high(s) then
  101. exit;
  102. end;
  103. indexlen:=Length(s)-Index+1;
  104. if (sizeint(length(s))+1=sizeof(s)) and (indexlen>0) then
  105. dec(indexlen);
  106. fpc_shortstr_shortstr_intern_charmove(s,Index,s,Index+1,indexlen);
  107. s[Index]:=Source;
  108. s[0]:=chr(index+indexlen);
  109. end;
  110. {$endif FPC_HAS_SHORTSTR_INSERT_CHAR}
  111. {$ifndef FPC_HAS_SHORTSTR_POS_SHORTSTR}
  112. {$define FPC_HAS_SHORTSTR_POS_SHORTSTR}
  113. function pos(const substr : shortstring;const s : shortstring; Offset : Sizeint = 1):SizeInt;
  114. var
  115. i,MaxLen : SizeInt;
  116. pc : pchar;
  117. begin
  118. Pos:=0;
  119. if (Length(SubStr)>0) and (Offset>0) and (Offset<=Length(S)) then
  120. begin
  121. MaxLen:=sizeint(Length(s))-Length(SubStr);
  122. i:=Offset-1;
  123. pc:=@s[Offset];
  124. while (i<=MaxLen) do
  125. begin
  126. inc(i);
  127. if (SubStr[1]=pc^) and
  128. (CompareChar(Substr[1],pc^,Length(SubStr))=0) then
  129. begin
  130. Pos:=i;
  131. exit;
  132. end;
  133. inc(pc);
  134. end;
  135. end;
  136. end;
  137. {$endif FPC_HAS_SHORTSTR_POS_SHORTSTR}
  138. {$ifndef FPC_HAS_SHORTSTR_POS_CHAR}
  139. {$define FPC_HAS_SHORTSTR_POS_CHAR}
  140. {Faster when looking for a single char...}
  141. function pos(c:char;const s:shortstring; Offset : Sizeint = 1 ):SizeInt;
  142. var
  143. i : SizeInt;
  144. pc : pchar;
  145. begin
  146. Pos:=0;
  147. if (Offset<1) or (Offset>Length(S)) then
  148. exit;
  149. pc:=@s[Offset];
  150. for i:=Offset to length(s) do
  151. begin
  152. if pc^=c then
  153. begin
  154. pos:=i;
  155. exit;
  156. end;
  157. inc(pc);
  158. end;
  159. pos:=0;
  160. end;
  161. {$endif FPC_HAS_SHORTSTR_POS_CHAR}
  162. function fpc_char_copy(c:char;index : SizeInt;count : SizeInt): shortstring;compilerproc;
  163. begin
  164. if (index=1) and (Count>0) then
  165. fpc_char_Copy:=c
  166. else
  167. fpc_char_Copy:='';
  168. end;
  169. function pos(const substr : shortstring;c:char; Offset : Sizeint = 1): SizeInt;
  170. begin
  171. if (length(substr)=1) and (substr[1]=c) and (Offset=1) then
  172. Pos:=1
  173. else
  174. Pos:=0;
  175. end;
  176. {$if not defined(FPC_UPCASE_CHAR) or not defined(FPC_LOWERCASE_CHAR)}
  177. {$ifdef IBM_CHAR_SET}
  178. const
  179. UpCaseTbl : shortstring[7]=#154#142#153#144#128#143#165;
  180. LoCaseTbl : shortstring[7]=#129#132#148#130#135#134#164;
  181. {$endif}
  182. {$endif}
  183. {$ifndef FPC_UPCASE_CHAR}
  184. {$define FPC_UPCASE_CHAR}
  185. function upcase(c : char) : char;
  186. {$IFDEF IBM_CHAR_SET}
  187. var
  188. i : ObjpasInt;
  189. {$ENDIF}
  190. begin
  191. if (c in ['a'..'z']) then
  192. upcase:=char(byte(c)-32)
  193. else
  194. {$IFDEF IBM_CHAR_SET}
  195. begin
  196. i:=Pos(c,LoCaseTbl);
  197. if i>0 then
  198. upcase:=UpCaseTbl[i]
  199. else
  200. upcase:=c;
  201. end;
  202. {$ELSE}
  203. upcase:=c;
  204. {$ENDIF}
  205. end;
  206. {$endif FPC_UPCASE_CHAR}
  207. {$ifndef FPC_UPCASE_SHORTSTR}
  208. {$define FPC_UPCASE_SHORTSTR}
  209. function upcase(const s : shortstring) : shortstring;
  210. var
  211. i : ObjpasInt;
  212. begin
  213. upcase[0]:=s[0];
  214. for i := 1 to length (s) do
  215. upcase[i] := upcase (s[i]);
  216. end;
  217. {$endif FPC_UPCASE_SHORTSTR}
  218. {$ifndef FPC_LOWERCASE_CHAR}
  219. {$define FPC_LOWERCASE_CHAR}
  220. function lowercase(c : char) : char;overload;
  221. {$IFDEF IBM_CHAR_SET}
  222. var
  223. i : ObjpasInt;
  224. {$ENDIF}
  225. begin
  226. if (c in ['A'..'Z']) then
  227. lowercase:=char(byte(c)+32)
  228. else
  229. {$IFDEF IBM_CHAR_SET}
  230. begin
  231. i:=Pos(c,UpCaseTbl);
  232. if i>0 then
  233. lowercase:=LoCaseTbl[i]
  234. else
  235. lowercase:=c;
  236. end;
  237. {$ELSE}
  238. lowercase:=c;
  239. {$ENDIF}
  240. end;
  241. {$endif FPC_LOWERCASE_CHAR}
  242. {$ifndef FPC_LOWERCASE_SHORTSTR}
  243. {$define FPC_LOWERCASE_SHORTSTR}
  244. function lowercase(const s : shortstring) : shortstring; overload;
  245. var
  246. i : ObjpasInt;
  247. begin
  248. lowercase [0]:=s[0];
  249. for i:=1 to length(s) do
  250. lowercase[i]:=lowercase (s[i]);
  251. end;
  252. {$endif FPC_LOWERCASE_SHORTSTR}
  253. const
  254. HexTbl : array[0..15] of char='0123456789ABCDEF';
  255. function hexstr(val : longint;cnt : byte) : shortstring;
  256. var
  257. i : ObjpasInt;
  258. begin
  259. hexstr[0]:=char(cnt);
  260. for i:=cnt downto 1 do
  261. begin
  262. hexstr[i]:=hextbl[val and $f];
  263. val:=val shr 4;
  264. end;
  265. end;
  266. function octstr(val : longint;cnt : byte) : shortstring;
  267. var
  268. i : ObjpasInt;
  269. begin
  270. octstr[0]:=char(cnt);
  271. for i:=cnt downto 1 do
  272. begin
  273. octstr[i]:=hextbl[val and 7];
  274. val:=val shr 3;
  275. end;
  276. end;
  277. function binstr(val : longint;cnt : byte) : shortstring;
  278. var
  279. i : ObjpasInt;
  280. begin
  281. binstr[0]:=char(cnt);
  282. for i:=cnt downto 1 do
  283. begin
  284. binstr[i]:=char(48+val and 1);
  285. val:=val shr 1;
  286. end;
  287. end;
  288. function hexstr(val : int64;cnt : byte) : shortstring;
  289. var
  290. i : ObjpasInt;
  291. begin
  292. hexstr[0]:=char(cnt);
  293. for i:=cnt downto 1 do
  294. begin
  295. hexstr[i]:=hextbl[val and $f];
  296. val:=val shr 4;
  297. end;
  298. end;
  299. function octstr(val : int64;cnt : byte) : shortstring;
  300. var
  301. i : ObjpasInt;
  302. begin
  303. octstr[0]:=char(cnt);
  304. for i:=cnt downto 1 do
  305. begin
  306. octstr[i]:=hextbl[val and 7];
  307. val:=val shr 3;
  308. end;
  309. end;
  310. function binstr(val : int64;cnt : byte) : shortstring;
  311. var
  312. i : ObjpasInt;
  313. begin
  314. binstr[0]:=char(cnt);
  315. for i:=cnt downto 1 do
  316. begin
  317. binstr[i]:=char(48+val and 1);
  318. val:=val shr 1;
  319. end;
  320. end;
  321. {$ifndef FPC_HAS_QWORD_HEX_SHORTSTR}
  322. {$define FPC_HAS_QWORD_HEX_SHORTSTR}
  323. Function hexStr(Val:qword;cnt:byte):shortstring;
  324. begin
  325. hexStr:=hexStr(int64(Val),cnt);
  326. end;
  327. {$endif FPC_HAS_QWORD_HEX_SHORTSTR}
  328. {$ifndef FPC_HAS_QWORD_OCT_SHORTSTR}
  329. {$define FPC_HAS_QWORD_OCT_SHORTSTR}
  330. Function OctStr(Val:qword;cnt:byte):shortstring;
  331. begin
  332. OctStr:=OctStr(int64(Val),cnt);
  333. end;
  334. {$endif FPC_HAS_QWORD_OCT_SHORTSTR}
  335. {$ifndef FPC_HAS_QWORD_BIN_SHORTSTR}
  336. {$define FPC_HAS_QWORD_BIN_SHORTSTR}
  337. Function binStr(Val:qword;cnt:byte):shortstring;
  338. begin
  339. binStr:=binStr(int64(Val),cnt);
  340. end;
  341. {$endif FPC_HAS_QWORD_BIN_SHORTSTR}
  342. {$ifndef FPC_HAS_HEXSTR_POINTER_SHORTSTR}
  343. {$define FPC_HAS_HEXSTR_POINTER_SHORTSTR}
  344. function hexstr(val : pointer) : shortstring;
  345. var
  346. i : ObjpasInt;
  347. v : ptruint;
  348. begin
  349. v:=ptruint(val);
  350. hexstr[0]:=chr(sizeof(pointer)*2);
  351. for i:=sizeof(pointer)*2 downto 1 do
  352. begin
  353. hexstr[i]:=hextbl[v and $f];
  354. v:=v shr 4;
  355. end;
  356. end;
  357. {$endif FPC_HAS_HEXSTR_POINTER_SHORTSTR}
  358. {$ifndef FPC_HAS_SPACE_SHORTSTR}
  359. {$define FPC_HAS_SPACE_SHORTSTR}
  360. function space (b : byte): shortstring;
  361. begin
  362. space[0] := chr(b);
  363. FillChar (Space[1],b,' ');
  364. end;
  365. {$endif FPC_HAS_SPACE_SHORTSTR}
  366. {*****************************************************************************
  367. Str() Helpers
  368. *****************************************************************************}
  369. procedure fpc_shortstr_SInt(v : valSInt;len : SizeInt;out s : shortstring);[public,alias:'FPC_SHORTSTR_SINT']; compilerproc;
  370. begin
  371. int_str(v,s);
  372. if length(s)<len then
  373. s:=space(len-length(s))+s;
  374. end;
  375. procedure fpc_shortstr_UInt(v : valUInt;len : SizeInt;out s : shortstring);[public,alias:'FPC_SHORTSTR_UINT']; compilerproc;
  376. begin
  377. int_str_unsigned(v,s);
  378. if length(s)<len then
  379. s:=space(len-length(s))+s;
  380. end;
  381. {$ifndef CPU64}
  382. procedure fpc_shortstr_qword(v : qword;len : SizeInt;out s : shortstring);[public,alias:'FPC_SHORTSTR_QWORD']; compilerproc;
  383. begin
  384. int_str_unsigned(v,s);
  385. if length(s)<len then
  386. s:=space(len-length(s))+s;
  387. end;
  388. procedure fpc_shortstr_int64(v : int64;len : SizeInt;out s : shortstring);[public,alias:'FPC_SHORTSTR_INT64']; compilerproc;
  389. begin
  390. int_str(v,s);
  391. if length(s)<len then
  392. s:=space(len-length(s))+s;
  393. end;
  394. {$endif CPU64}
  395. {$if defined(CPU16) or defined(CPU8)}
  396. procedure fpc_shortstr_longword(v : longword;len : SizeInt;out s : shortstring);[public,alias:'FPC_SHORTSTR_LONGWORD']; compilerproc;
  397. begin
  398. int_str_unsigned(v,s);
  399. if length(s)<len then
  400. s:=space(len-length(s))+s;
  401. end;
  402. procedure fpc_shortstr_longint(v : longint;len : SizeInt;out s : shortstring);[public,alias:'FPC_SHORTSTR_LONGINT']; compilerproc;
  403. begin
  404. int_str(v,s);
  405. if length(s)<len then
  406. s:=space(len-length(s))+s;
  407. end;
  408. procedure fpc_shortstr_word(v : word;len : SizeInt;out s : shortstring);[public,alias:'FPC_SHORTSTR_WORD']; compilerproc;
  409. begin
  410. int_str_unsigned(v,s);
  411. if length(s)<len then
  412. s:=space(len-length(s))+s;
  413. end;
  414. procedure fpc_shortstr_smallint(v : smallint;len : SizeInt;out s : shortstring);[public,alias:'FPC_SHORTSTR_SMALLINT']; compilerproc;
  415. begin
  416. int_str(v,s);
  417. if length(s)<len then
  418. s:=space(len-length(s))+s;
  419. end;
  420. {$endif CPU16 or CPU8}
  421. { fpc_shortstr_sInt must appear before this file is included, because }
  422. { it's used inside real2str.inc and otherwise the searching via the }
  423. { compilerproc name will fail (JM) }
  424. {$ifndef FPUNONE}
  425. {$I flt_conv.inc}
  426. {$endif}
  427. {$ifndef FPUNONE}
  428. procedure fpc_shortstr_float(d : ValReal;len,fr,rt : SizeInt;out s : shortstring);[public,alias:'FPC_SHORTSTR_FLOAT']; compilerproc;
  429. begin
  430. str_real(len,fr,d,treal_type(rt),s);
  431. end;
  432. {$endif}
  433. {$ifndef FPC_STR_ENUM_INTERN}
  434. function fpc_shortstr_enum_intern(ordinal,len:sizeint;typinfo,ord2strindex:pointer;out s:shortstring): longint;
  435. {$ifndef FPC_HAS_FEATURE_RTTI}
  436. begin
  437. int_str(ordinal,s);
  438. if length(s)<len then
  439. s:=space(len-length(s))+s;
  440. end;
  441. {$else with RTTI feature}
  442. { The following contains the TTypeInfo/TTypeData records from typinfo.pp
  443. specialized for the tkEnumeration case (and stripped of unused things). }
  444. type
  445. PPstring=^Pstring;
  446. Penum_typeinfo=^Tenum_typeinfo;
  447. Tenum_typeinfo={$ifndef FPC_REQUIRES_PROPER_ALIGNMENT}packed{$endif}record
  448. kind:TTypeKind; { always tkEnumeration }
  449. num_chars:byte;
  450. chars:array[0..0] of char; { variable length with size of num_chars }
  451. end;
  452. {$push}
  453. {$packrecords c}
  454. Penum_typedata=^Tenum_typedata;
  455. Tenum_typedata={$ifndef FPC_REQUIRES_PROPER_ALIGNMENT}packed{$endif}record
  456. {$if declared(TRttiDataCommon)}
  457. Common: TRttiDataCommon;
  458. {$endif}
  459. case TTypeKind of
  460. {$ifndef VER3_0}
  461. tkInt64,tkQWord,
  462. {$endif VER3_0}
  463. tkInteger,tkChar,tkEnumeration,tkBool,tkWChar: (
  464. OrdType : Byte;
  465. case TTypeKind of
  466. tkInteger,tkChar,tkEnumeration,tkBool,tkWChar: (
  467. MinValue,MaxValue : Longint;
  468. case byte of
  469. tkEnumeration: (
  470. BaseTypeRef : pointer
  471. );
  472. {$ifndef VER3_0}
  473. {tkBool with OrdType=otSQWord }
  474. tkInt64:
  475. (MinInt64Value, MaxInt64Value: Int64);
  476. {tkBool with OrdType=otUQWord }
  477. tkQWord:
  478. (MinQWordValue, MaxQWordValue: QWord);
  479. {$endif VER3_0}
  480. );
  481. );
  482. { more data here, but not needed }
  483. end;
  484. { Pascal data types for the ordinal enum value to string table. It consists of a header
  485. that indicates what type of data the table stores, either a direct lookup table (when
  486. o = lookup) or a set of ordered (ordinal value, string) tuples (when o = search). }
  487. { A single entry in the set of ordered tuples }
  488. Psearch_data=^Tsearch_data;
  489. Tsearch_data={$ifndef FPC_REQUIRES_PROPER_ALIGNMENT}packed{$endif}record
  490. value:longint;
  491. name:Pstring;
  492. end;
  493. Penum_ord_to_string=^Tenum_ord_to_string;
  494. Tenum_ord_to_string={$ifndef FPC_REQUIRES_PROPER_ALIGNMENT}packed{$endif}record
  495. o:(lookup,search);
  496. case integer of
  497. 0: (lookup_data:array[0..0] of Pstring);
  498. 1: (num_entries:longint;
  499. search_data:array[0..0] of Tsearch_data);
  500. end;
  501. {$pop}
  502. var
  503. enum_o2s : Penum_ord_to_string;
  504. header:Penum_typeinfo;
  505. body:Penum_typedata;
  506. res:Pshortstring;
  507. sorted_data:Psearch_data;
  508. spaces,i,m,h,l:longint;
  509. begin
  510. { set default return value }
  511. fpc_shortstr_enum_intern:=107;
  512. enum_o2s:=Penum_ord_to_string(ord2strindex);
  513. { depending on the type of table in ord2strindex retrieve the data }
  514. if (enum_o2s^.o=lookup) then
  515. begin
  516. { direct lookup table }
  517. header:=Penum_typeinfo(typinfo);
  518. { calculate address of enum rtti body: add the actual size of the
  519. enum_rtti_header, and then align. Use an alignment of 1 (which
  520. does nothing) in case FPC_REQUIRES_PROPER_ALIGNMENT is not set
  521. to avoid the need for an if in this situation }
  522. {$ifdef VER3_0}
  523. body:=Penum_typedata(aligntoptr(pointer(header) + 2 * sizeof(byte) { kind, num_chars } + header^.num_chars));
  524. {$else VER3_0}
  525. body:=Penum_typedata(aligntoqword(pointer(header) + 2 * sizeof(byte) { kind, num_chars } + header^.num_chars));
  526. {$endif VER3_0}
  527. with body^ do
  528. begin
  529. { Bounds check for the ordinal value for this enum }
  530. if (ordinal<minvalue) or (ordinal>maxvalue) then
  531. exit;
  532. { make the ordinal index for lookup zero-based }
  533. dec(ordinal,minvalue);
  534. end;
  535. { temporarily disable range checking because of the access to the array[0..0]
  536. member of Tenum_ord_to_string_lookup }
  537. {$push}{$R-}
  538. res:=enum_o2s^.lookup_data[ordinal];
  539. {$pop}
  540. if (not assigned(res)) then
  541. exit;
  542. s:=res^;
  543. end
  544. else
  545. begin
  546. { The compiler did generate a sorted array of (ordvalue,Pstring) tuples }
  547. sorted_data:=@enum_o2s^.search_data;
  548. { Use a binary search to get the string }
  549. l:=0;
  550. { temporarily disable range checking because of the access to the array[0..0]
  551. member of Tenum_ord_to_string_search }
  552. {$push}{$R-}
  553. h:=enum_o2s^.num_entries-1;
  554. repeat
  555. m:=(l+h) div 2;
  556. if ordinal>sorted_data[m].value then
  557. l:=m+1
  558. else if ordinal<sorted_data[m].value then
  559. h:=m-1
  560. else
  561. break;
  562. if l>h then
  563. exit; { Ordinal value not found? Exit }
  564. until false;
  565. {$pop}
  566. s:=sorted_data[m].name^;
  567. end;
  568. { Pad the string with spaces if necessary }
  569. if (len>length(s)) then
  570. begin
  571. spaces:=len-length(s);
  572. for i:=1 to spaces do
  573. s[length(s)+i]:=' ';
  574. inc(byte(s[0]),spaces);
  575. end;
  576. fpc_shortstr_enum_intern:=0;
  577. end;
  578. {$endif with RTTI feature}
  579. procedure fpc_shortstr_enum(ordinal,len:sizeint;typinfo,ord2strindex:pointer;out s:shortstring);[public,alias:'FPC_SHORTSTR_ENUM'];compilerproc;
  580. var
  581. res: longint;
  582. begin
  583. res:=fpc_shortstr_enum_intern(ordinal,len,typinfo,ord2strindex,s);
  584. if (res<>0) then
  585. runerror(107);
  586. end;
  587. { also define alias for internal use in the system unit }
  588. procedure fpc_shortstr_enum(ordinal,len:sizeint;typinfo,ord2strindex:pointer;out s:shortstring);external name 'FPC_SHORTSTR_ENUM';
  589. {$endif FPC_SHORTSTR_ENUM_INTERN}
  590. procedure fpc_shortstr_bool(b : boolean;len:sizeint;out s:shortstring);[public,alias:'FPC_SHORTSTR_BOOL'];compilerproc;
  591. begin
  592. if b then
  593. s:='TRUE'
  594. else
  595. s:='FALSE';
  596. if length(s)<len then
  597. s:=space(len-length(s))+s;
  598. end;
  599. { also define alias for internal use in the system unit }
  600. procedure fpc_shortstr_bool(b : boolean;len:sizeint;out s:shortstring);external {$ifndef cpujvm}name 'FPC_SHORTSTR_BOOL'{$endif};
  601. procedure fpc_shortstr_currency({$ifdef cpujvm}constref{$endif} c : currency; len,f : SizeInt; out s : shortstring);[public,alias:'FPC_SHORTSTR_CURRENCY']; compilerproc;
  602. const
  603. MinLen = 8; { Minimal string length in scientific format }
  604. var
  605. buf : array[1..19] of char;
  606. i,j,k,reslen,tlen,sign,r,point : ObjpasInt;
  607. ic : qword;
  608. begin
  609. fillchar(buf,length(buf),'0');
  610. { default value for length is -32767 }
  611. if len=-32767 then
  612. len:=25;
  613. if PInt64(@c)^ >= 0 then
  614. begin
  615. ic:=QWord(PInt64(@c)^);
  616. sign:=0;
  617. end
  618. else
  619. begin
  620. sign:=1;
  621. ic:=QWord(-PInt64(@c)^);
  622. end;
  623. { converting to integer string }
  624. tlen:=0;
  625. repeat
  626. Inc(tlen);
  627. buf[tlen]:=Chr(ic mod 10 + $30);
  628. ic:=ic div 10;
  629. until ic = 0;
  630. { calculating:
  631. reslen - length of result string,
  632. r - rounding or appending zeroes,
  633. point - place of decimal point }
  634. reslen:=tlen;
  635. if f <> 0 then
  636. Inc(reslen); { adding decimal point length }
  637. if f < 0 then
  638. begin
  639. { scientific format }
  640. Inc(reslen,5); { adding length of sign and exponent }
  641. if len < MinLen then
  642. len:=MinLen;
  643. r:=reslen-len;
  644. if reslen < len then
  645. reslen:=len;
  646. if r > 0 then
  647. begin
  648. reslen:=len;
  649. point:=tlen - r;
  650. end
  651. else
  652. point:=tlen;
  653. end
  654. else
  655. begin
  656. { fixed format }
  657. Inc(reslen, sign);
  658. { prepending fractional part with zeroes }
  659. while tlen < 5 do
  660. begin
  661. Inc(reslen);
  662. Inc(tlen);
  663. buf[tlen]:='0';
  664. end;
  665. { Currency have 4 digits in fractional part }
  666. r:=4 - f;
  667. point:=f;
  668. if point <> 0 then
  669. begin
  670. if point > 4 then
  671. point:=4;
  672. Inc(point);
  673. end;
  674. Dec(reslen,r);
  675. end;
  676. { rounding string if r > 0 }
  677. if r > 0 then
  678. begin
  679. k := 0;
  680. i := r+2;
  681. if i > tlen then
  682. i := tlen+1;
  683. if buf[i-2] >= '5' then
  684. begin
  685. if buf[i-1] < '9' then
  686. buf[i-1] := chr(ord(buf[i-1])+1)
  687. else
  688. begin
  689. buf[i-1] := '0';
  690. k := 1;
  691. end;
  692. end;
  693. If (k=1) and (buf[i-1]='0') then
  694. begin
  695. { 1.9996 rounded to two decimal digits after the decimal separator must result in
  696. 2.00, i.e. the rounding is propagated
  697. }
  698. while buf[i]='9' do
  699. begin
  700. buf[i]:='0';
  701. inc(i);
  702. end;
  703. buf[i]:=chr(Ord(buf[i])+1);
  704. { did we add another digit? This happens when rounding
  705. e.g. 99.9996 to two decimal digits after the decimal separator which should result in
  706. 100.00
  707. }
  708. if i>tlen then
  709. begin
  710. inc(reslen);
  711. inc(tlen);
  712. end;
  713. end;
  714. end;
  715. { preparing result string }
  716. if reslen<len then
  717. reslen:=len;
  718. if reslen>High(s) then
  719. begin
  720. if r < 0 then
  721. Inc(r, reslen - High(s));
  722. reslen:=High(s);
  723. end;
  724. SetLength(s,reslen);
  725. j:=reslen;
  726. if f<0 then
  727. begin
  728. { writing power of 10 part }
  729. if PInt64(@c)^ = 0 then
  730. k:=0
  731. else
  732. k:=tlen-5;
  733. if k >= 0 then
  734. s[j-2]:='+'
  735. else
  736. begin
  737. s[j-2]:='-';
  738. k:=-k;
  739. end;
  740. s[j]:=Chr(k mod 10 + $30);
  741. Dec(j);
  742. s[j]:=Chr(k div 10 + $30);
  743. Dec(j,2);
  744. s[j]:='E';
  745. Dec(j);
  746. end;
  747. { writing extra zeroes if r < 0 }
  748. while r < 0 do
  749. begin
  750. s[j]:='0';
  751. Dec(j);
  752. Inc(r);
  753. end;
  754. { writing digits and decimal point }
  755. for i:=r + 1 to tlen do
  756. begin
  757. Dec(point);
  758. if point = 0 then
  759. begin
  760. s[j]:='.';
  761. Dec(j);
  762. end;
  763. s[j]:=buf[i];
  764. Dec(j);
  765. end;
  766. { writing sign }
  767. if sign = 1 then
  768. begin
  769. s[j]:='-';
  770. Dec(j);
  771. end;
  772. { writing spaces }
  773. while j > 0 do
  774. begin
  775. s[j]:=' ';
  776. Dec(j);
  777. end;
  778. end;
  779. {
  780. Array Of Char Str() helpers
  781. }
  782. procedure fpc_chararray_sint(v : valsint;len : SizeInt;out a:array of char);compilerproc;
  783. var
  784. ss : shortstring;
  785. maxlen : SizeInt;
  786. begin
  787. int_str(v,ss);
  788. if length(ss)<len then
  789. ss:=space(len-length(ss))+ss;
  790. if length(ss)<high(a)+1 then
  791. maxlen:=length(ss)
  792. else
  793. maxlen:=high(a)+1;
  794. fpc_shortstr_chararray_intern_charmove(ss,a,maxlen);
  795. end;
  796. procedure fpc_chararray_uint(v : valuint;len : SizeInt;out a : array of char);compilerproc;
  797. var
  798. ss : shortstring;
  799. maxlen : SizeInt;
  800. begin
  801. int_str_unsigned(v,ss);
  802. if length(ss)<len then
  803. ss:=space(len-length(ss))+ss;
  804. if length(ss)<high(a)+1 then
  805. maxlen:=length(ss)
  806. else
  807. maxlen:=high(a)+1;
  808. fpc_shortstr_chararray_intern_charmove(ss,a,maxlen);
  809. end;
  810. {$ifndef CPU64}
  811. procedure fpc_chararray_qword(v : qword;len : SizeInt;out a : array of char);compilerproc;
  812. {$ifdef EXCLUDE_COMPLEX_PROCS}
  813. begin
  814. runerror(219);
  815. end;
  816. {$else EXCLUDE_COMPLEX_PROCS}
  817. var
  818. ss : shortstring;
  819. maxlen : SizeInt;
  820. begin
  821. int_str_unsigned(v,ss);
  822. if length(ss)<len then
  823. ss:=space(len-length(ss))+ss;
  824. if length(ss)<high(a)+1 then
  825. maxlen:=length(ss)
  826. else
  827. maxlen:=high(a)+1;
  828. fpc_shortstr_chararray_intern_charmove(ss,a,maxlen);
  829. end;
  830. {$endif EXCLUDE_COMPLEX_PROCS}
  831. procedure fpc_chararray_int64(v : int64;len : SizeInt;out a : array of char);compilerproc;
  832. {$ifdef EXCLUDE_COMPLEX_PROCS}
  833. begin
  834. runerror(219);
  835. end;
  836. {$else EXCLUDE_COMPLEX_PROCS}
  837. var
  838. ss : shortstring;
  839. maxlen : SizeInt;
  840. begin
  841. int_str(v,ss);
  842. if length(ss)<len then
  843. ss:=space(len-length(ss))+ss;
  844. if length(ss)<high(a)+1 then
  845. maxlen:=length(ss)
  846. else
  847. maxlen:=high(a)+1;
  848. fpc_shortstr_chararray_intern_charmove(ss,a,maxlen);
  849. end;
  850. {$endif EXCLUDE_COMPLEX_PROCS}
  851. {$endif CPU64}
  852. {$if defined(CPU16) or defined(CPU8)}
  853. procedure fpc_chararray_longword(v : longword;len : SizeInt;out a : array of char);compilerproc;
  854. var
  855. ss : shortstring;
  856. maxlen : SizeInt;
  857. begin
  858. int_str_unsigned(v,ss);
  859. if length(ss)<len then
  860. ss:=space(len-length(ss))+ss;
  861. if length(ss)<high(a)+1 then
  862. maxlen:=length(ss)
  863. else
  864. maxlen:=high(a)+1;
  865. fpc_shortstr_chararray_intern_charmove(ss,a,maxlen);
  866. end;
  867. procedure fpc_chararray_longint(v : longint;len : SizeInt;out a : array of char);compilerproc;
  868. var
  869. ss : shortstring;
  870. maxlen : SizeInt;
  871. begin
  872. int_str(v,ss);
  873. if length(ss)<len then
  874. ss:=space(len-length(ss))+ss;
  875. if length(ss)<high(a)+1 then
  876. maxlen:=length(ss)
  877. else
  878. maxlen:=high(a)+1;
  879. fpc_shortstr_chararray_intern_charmove(ss,a,maxlen);
  880. end;
  881. procedure fpc_chararray_word(v : word;len : SizeInt;out a : array of char);compilerproc;
  882. var
  883. ss : shortstring;
  884. maxlen : SizeInt;
  885. begin
  886. int_str_unsigned(v,ss);
  887. if length(ss)<len then
  888. ss:=space(len-length(ss))+ss;
  889. if length(ss)<high(a)+1 then
  890. maxlen:=length(ss)
  891. else
  892. maxlen:=high(a)+1;
  893. fpc_shortstr_chararray_intern_charmove(ss,a,maxlen);
  894. end;
  895. procedure fpc_chararray_smallint(v : smallint;len : SizeInt;out a : array of char);compilerproc;
  896. var
  897. ss : shortstring;
  898. maxlen : SizeInt;
  899. begin
  900. int_str(v,ss);
  901. if length(ss)<len then
  902. ss:=space(len-length(ss))+ss;
  903. if length(ss)<high(a)+1 then
  904. maxlen:=length(ss)
  905. else
  906. maxlen:=high(a)+1;
  907. fpc_shortstr_chararray_intern_charmove(ss,a,maxlen);
  908. end;
  909. {$endif CPU16 or CPU8}
  910. {$ifndef FPUNONE}
  911. procedure fpc_chararray_Float(d : ValReal;len,fr,rt : SizeInt;out a : array of char);compilerproc;
  912. var
  913. ss : shortstring;
  914. maxlen : SizeInt;
  915. begin
  916. str_real(len,fr,d,treal_type(rt),ss);
  917. if length(ss)<high(a)+1 then
  918. maxlen:=length(ss)
  919. else
  920. maxlen:=high(a)+1;
  921. fpc_shortstr_chararray_intern_charmove(ss,a,maxlen);
  922. end;
  923. {$endif}
  924. {$ifndef FPC_STR_ENUM_INTERN}
  925. { currently, the avr code generator fails on this procedure, so we disable it,
  926. this is not a good solution but fixing compilation of this procedure for
  927. avr is hard, requires significant changes to the register allocator to take
  928. care of different register classes }
  929. procedure fpc_chararray_enum(ordinal,len:sizeint;typinfo,ord2strindex:pointer;out a : array of char);compilerproc;
  930. var
  931. ss : shortstring;
  932. maxlen : SizeInt;
  933. begin
  934. {$ifdef EXCLUDE_COMPLEX_PROCS}
  935. runerror(219);
  936. {$else EXCLUDE_COMPLEX_PROCS}
  937. fpc_shortstr_enum(ordinal,len,typinfo,ord2strindex,ss);
  938. if length(ss)<high(a)+1 then
  939. maxlen:=length(ss)
  940. else
  941. maxlen:=high(a)+1;
  942. fpc_shortstr_chararray_intern_charmove(ss,a,maxlen);
  943. {$endif EXCLUDE_COMPLEX_PROCS}
  944. end;
  945. {$endif not FPC_STR_ENUM_INTERN}
  946. procedure fpc_chararray_bool(b : boolean;len:sizeint;out a : array of char);compilerproc;
  947. var
  948. ss : shortstring;
  949. maxlen : SizeInt;
  950. begin
  951. fpc_shortstr_bool(b,len,ss);
  952. if length(ss)<high(a)+1 then
  953. maxlen:=length(ss)
  954. else
  955. maxlen:=high(a)+1;
  956. fpc_shortstr_chararray_intern_charmove(ss,a,maxlen);
  957. end;
  958. {$ifndef FPC_HAS_CHARARRAY_CURRENCY}
  959. {$define FPC_HAS_CHARARRAY_CURRENCY}
  960. procedure fpc_chararray_Currency(c : Currency;len,fr : SizeInt;out a : array of char);compilerproc;
  961. {$ifdef EXCLUDE_COMPLEX_PROCS}
  962. begin
  963. runerror(217);
  964. end;
  965. {$else EXCLUDE_COMPLEX_PROCS}
  966. var
  967. ss : shortstring;
  968. maxlen : SizeInt;
  969. begin
  970. str(c:len:fr,ss);
  971. if length(ss)<high(a)+1 then
  972. maxlen:=length(ss)
  973. else
  974. maxlen:=high(a)+1;
  975. fpc_shortstr_chararray_intern_charmove(ss,a,maxlen);
  976. end;
  977. {$endif EXCLUDE_COMPLEX_PROCS}
  978. {$endif FPC_HAS_CHARARRAY_CURRENCY}
  979. {*****************************************************************************
  980. Val() Functions
  981. *****************************************************************************}
  982. Function InitVal(const s:shortstring;out negativ:boolean;out base:byte):ValSInt;
  983. var
  984. Code : SizeInt;
  985. begin
  986. code:=1;
  987. negativ:=false;
  988. base:=10;
  989. if length(s)=0 then
  990. begin
  991. InitVal:=code;
  992. Exit;
  993. end;
  994. {Skip Spaces and Tab}
  995. while (code<=length(s)) and (s[code] in [' ',#9]) do
  996. inc(code);
  997. {Sign}
  998. case s[code] of
  999. '-' : begin
  1000. negativ:=true;
  1001. inc(code);
  1002. end;
  1003. '+' : inc(code);
  1004. end;
  1005. {Base}
  1006. if code<=length(s) then
  1007. begin
  1008. case s[code] of
  1009. '$',
  1010. 'X',
  1011. 'x' : begin
  1012. base:=16;
  1013. inc(code);
  1014. end;
  1015. '%' : begin
  1016. base:=2;
  1017. inc(code);
  1018. end;
  1019. '&' : begin
  1020. Base:=8;
  1021. inc(code);
  1022. end;
  1023. '0' : begin
  1024. if (code < length(s)) and (s[code+1] in ['x', 'X']) then
  1025. begin
  1026. inc(code, 2);
  1027. base := 16;
  1028. end;
  1029. end;
  1030. end;
  1031. end;
  1032. { strip leading zeros }
  1033. while ((code < length(s)) and (s[code] = '0')) do begin
  1034. inc(code);
  1035. end;
  1036. InitVal:=code;
  1037. end;
  1038. Function fpc_Val_SInt_ShortStr(DestSize: SizeInt; Const S: ShortString; out Code: ValSInt): ValSInt; [public, alias:'FPC_VAL_SINT_SHORTSTR']; compilerproc;
  1039. var
  1040. temp, prev, maxPrevValue, maxNewValue: ValUInt;
  1041. base,u : byte;
  1042. negative : boolean;
  1043. begin
  1044. fpc_Val_SInt_ShortStr := 0;
  1045. Temp:=0;
  1046. Code:=InitVal(s,negative,base);
  1047. if Code>length(s) then
  1048. exit;
  1049. if (s[Code]=#0) then
  1050. begin
  1051. if (Code>1) and (s[Code-1]='0') then
  1052. Code:=0;
  1053. exit;
  1054. end;
  1055. maxPrevValue := ValUInt(MaxUIntValue) div ValUInt(Base);
  1056. if (base = 10) then
  1057. maxNewValue := MaxSIntValue + ord(negative)
  1058. else
  1059. maxNewValue := MaxUIntValue;
  1060. while Code<=Length(s) do
  1061. begin
  1062. case s[Code] of
  1063. '0'..'9' : u:=Ord(S[Code])-Ord('0');
  1064. 'A'..'F' : u:=Ord(S[Code])-(Ord('A')-10);
  1065. 'a'..'f' : u:=Ord(S[Code])-(Ord('a')-10);
  1066. #0 : break;
  1067. else
  1068. u:=16;
  1069. end;
  1070. Prev := Temp;
  1071. Temp := Temp*ValUInt(base);
  1072. If (u >= base) or
  1073. (ValUInt(maxNewValue-u) < Temp) or
  1074. (prev > maxPrevValue) Then
  1075. Begin
  1076. fpc_Val_SInt_ShortStr := 0;
  1077. Exit
  1078. End;
  1079. Temp:=Temp+u;
  1080. inc(code);
  1081. end;
  1082. code := 0;
  1083. fpc_Val_SInt_ShortStr := ValSInt(Temp);
  1084. If Negative Then
  1085. fpc_Val_SInt_ShortStr := -fpc_Val_SInt_ShortStr;
  1086. If Not(Negative) and (base <> 10) Then
  1087. {sign extend the result to allow proper range checking}
  1088. Case DestSize of
  1089. 1: fpc_Val_SInt_ShortStr := shortint(fpc_Val_SInt_ShortStr);
  1090. 2: fpc_Val_SInt_ShortStr := smallint(fpc_Val_SInt_ShortStr);
  1091. {$ifdef cpu64}
  1092. 4: fpc_Val_SInt_ShortStr := longint(fpc_Val_SInt_ShortStr);
  1093. {$endif cpu64}
  1094. End;
  1095. end;
  1096. {$ifndef FPC_HAS_INT_VAL_SINT_SHORTSTR}
  1097. {$define FPC_HAS_INT_VAL_SINT_SHORTSTR}
  1098. { we need this for fpc_Val_SInt_Ansistr and fpc_Val_SInt_WideStr because }
  1099. { we have to pass the DestSize parameter on (JM) }
  1100. Function int_Val_SInt_ShortStr(DestSize: SizeInt; Const S: ShortString; out Code: ValSInt): ValSInt; [external name 'FPC_VAL_SINT_SHORTSTR'];
  1101. {$endif FPC_HAS_INT_VAL_SINT_SHORTSTR}
  1102. Function fpc_Val_UInt_Shortstr(Const S: ShortString; out Code: ValSInt): ValUInt; [public, alias:'FPC_VAL_UINT_SHORTSTR']; compilerproc;
  1103. var
  1104. base,u : byte;
  1105. negative : boolean;
  1106. begin
  1107. fpc_Val_UInt_Shortstr:=0;
  1108. Code:=InitVal(s,negative,base);
  1109. If Negative or (Code>length(s)) Then
  1110. Exit;
  1111. if (s[Code]=#0) then
  1112. begin
  1113. if (Code>1) and (s[Code-1]='0') then
  1114. Code:=0;
  1115. exit;
  1116. end;
  1117. while Code<=Length(s) do
  1118. begin
  1119. case s[Code] of
  1120. '0'..'9' : u:=Ord(S[Code])-Ord('0');
  1121. 'A'..'F' : u:=Ord(S[Code])-(Ord('A')-10);
  1122. 'a'..'f' : u:=Ord(S[Code])-(Ord('a')-10);
  1123. #0 : break;
  1124. else
  1125. u:=16;
  1126. end;
  1127. If (u>=base) or
  1128. (ValUInt(MaxUIntValue-u) div ValUInt(Base)<fpc_val_uint_shortstr) then
  1129. begin
  1130. fpc_Val_UInt_Shortstr:=0;
  1131. exit;
  1132. end;
  1133. fpc_Val_UInt_Shortstr:=fpc_Val_UInt_Shortstr*ValUInt(base) + u;
  1134. inc(code);
  1135. end;
  1136. code := 0;
  1137. end;
  1138. {$ifndef CPU64}
  1139. Function fpc_val_int64_shortstr(Const S: ShortString; out Code: ValSInt): Int64; [public, alias:'FPC_VAL_INT64_SHORTSTR']; compilerproc;
  1140. var u : sizeuint;
  1141. temp, prev, maxprevvalue, maxnewvalue : qword;
  1142. base : byte;
  1143. negative : boolean;
  1144. const maxint64=qword($7fffffffffffffff);
  1145. maxqword=qword($ffffffffffffffff);
  1146. begin
  1147. {$ifdef EXCLUDE_COMPLEX_PROCS}
  1148. runerror(219);
  1149. {$else EXCLUDE_COMPLEX_PROCS}
  1150. fpc_val_int64_shortstr := 0;
  1151. Temp:=0;
  1152. Code:=InitVal(s,negative,base);
  1153. if Code>length(s) then
  1154. exit;
  1155. if (s[Code]=#0) then
  1156. begin
  1157. if (Code>1) and (s[Code-1]='0') then
  1158. Code:=0;
  1159. exit;
  1160. end;
  1161. maxprevvalue := maxqword div base;
  1162. if (base = 10) then
  1163. maxnewvalue := maxint64 + ord(negative)
  1164. else
  1165. maxnewvalue := maxqword;
  1166. while Code<=Length(s) do
  1167. begin
  1168. case s[Code] of
  1169. '0'..'9' : u:=Ord(S[Code])-Ord('0');
  1170. 'A'..'F' : u:=Ord(S[Code])-(Ord('A')-10);
  1171. 'a'..'f' : u:=Ord(S[Code])-(Ord('a')-10);
  1172. #0 : break;
  1173. else
  1174. u:=16;
  1175. end;
  1176. Prev:=Temp;
  1177. Temp:=Temp*qword(base);
  1178. If (u >= base) or
  1179. (qword(maxnewvalue-u) < temp) or
  1180. (prev > maxprevvalue) Then
  1181. Begin
  1182. fpc_val_int64_shortstr := 0;
  1183. Exit
  1184. End;
  1185. Temp:=Temp+u;
  1186. inc(code);
  1187. end;
  1188. code:=0;
  1189. fpc_val_int64_shortstr:=int64(Temp);
  1190. If Negative Then
  1191. fpc_val_int64_shortstr:=-fpc_val_int64_shortstr;
  1192. {$endif EXCLUDE_COMPLEX_PROCS}
  1193. end;
  1194. Function fpc_val_qword_shortstr(Const S: ShortString; out Code: ValSInt): QWord; [public, alias:'FPC_VAL_QWORD_SHORTSTR']; compilerproc;
  1195. var u : sizeuint;
  1196. base : byte;
  1197. negative : boolean;
  1198. const maxqword=qword($ffffffffffffffff);
  1199. begin
  1200. fpc_val_qword_shortstr:=0;
  1201. Code:=InitVal(s,negative,base);
  1202. If Negative or (Code>length(s)) Then
  1203. Exit;
  1204. if (s[Code]=#0) then
  1205. begin
  1206. if (Code>1) and (s[Code-1]='0') then
  1207. Code:=0;
  1208. exit;
  1209. end;
  1210. while Code<=Length(s) do
  1211. begin
  1212. case s[Code] of
  1213. '0'..'9' : u:=Ord(S[Code])-Ord('0');
  1214. 'A'..'F' : u:=Ord(S[Code])-(Ord('A')-10);
  1215. 'a'..'f' : u:=Ord(S[Code])-(Ord('a')-10);
  1216. #0 : break;
  1217. else
  1218. u:=16;
  1219. end;
  1220. If (u>=base) or
  1221. ((QWord(maxqword-u) div QWord(base))<fpc_val_qword_shortstr) then
  1222. Begin
  1223. fpc_val_qword_shortstr := 0;
  1224. Exit
  1225. End;
  1226. fpc_val_qword_shortstr:=fpc_val_qword_shortstr*QWord(base) + u;
  1227. inc(code);
  1228. end;
  1229. code := 0;
  1230. end;
  1231. {$endif CPU64}
  1232. {$if defined(CPU16) or defined(CPU8)}
  1233. Function fpc_val_longint_shortstr(Const S: ShortString; out Code: ValSInt): LongInt; [public, alias:'FPC_VAL_LONGINT_SHORTSTR']; compilerproc;
  1234. var u, temp, prev, maxprevvalue, maxnewvalue : longword;
  1235. base : byte;
  1236. negative : boolean;
  1237. const maxlongint=longword($7fffffff);
  1238. maxlongword=longword($ffffffff);
  1239. begin
  1240. fpc_val_longint_shortstr := 0;
  1241. Temp:=0;
  1242. Code:=InitVal(s,negative,base);
  1243. if Code>length(s) then
  1244. exit;
  1245. if (s[Code]=#0) then
  1246. begin
  1247. if (Code>1) and (s[Code-1]='0') then
  1248. Code:=0;
  1249. exit;
  1250. end;
  1251. maxprevvalue := maxlongword div base;
  1252. if (base = 10) then
  1253. maxnewvalue := maxlongint + ord(negative)
  1254. else
  1255. maxnewvalue := maxlongword;
  1256. while Code<=Length(s) do
  1257. begin
  1258. case s[Code] of
  1259. '0'..'9' : u:=Ord(S[Code])-Ord('0');
  1260. 'A'..'F' : u:=Ord(S[Code])-(Ord('A')-10);
  1261. 'a'..'f' : u:=Ord(S[Code])-(Ord('a')-10);
  1262. #0 : break;
  1263. else
  1264. u:=16;
  1265. end;
  1266. Prev:=Temp;
  1267. Temp:=Temp*longword(base);
  1268. If (u >= base) or
  1269. (longword(maxnewvalue-u) < temp) or
  1270. (prev > maxprevvalue) Then
  1271. Begin
  1272. fpc_val_longint_shortstr := 0;
  1273. Exit
  1274. End;
  1275. Temp:=Temp+u;
  1276. inc(code);
  1277. end;
  1278. code:=0;
  1279. fpc_val_longint_shortstr:=longint(Temp);
  1280. If Negative Then
  1281. fpc_val_longint_shortstr:=-fpc_val_longint_shortstr;
  1282. end;
  1283. Function fpc_val_longword_shortstr(Const S: ShortString; out Code: ValSInt): LongWord; [public, alias:'FPC_VAL_LONGWORD_SHORTSTR']; compilerproc;
  1284. var u, prev: LongWord;
  1285. base : byte;
  1286. negative : boolean;
  1287. const maxlongword=longword($ffffffff);
  1288. begin
  1289. fpc_val_longword_shortstr:=0;
  1290. Code:=InitVal(s,negative,base);
  1291. If Negative or (Code>length(s)) Then
  1292. Exit;
  1293. if (s[Code]=#0) then
  1294. begin
  1295. if (Code>1) and (s[Code-1]='0') then
  1296. Code:=0;
  1297. exit;
  1298. end;
  1299. while Code<=Length(s) do
  1300. begin
  1301. case s[Code] of
  1302. '0'..'9' : u:=Ord(S[Code])-Ord('0');
  1303. 'A'..'F' : u:=Ord(S[Code])-(Ord('A')-10);
  1304. 'a'..'f' : u:=Ord(S[Code])-(Ord('a')-10);
  1305. #0 : break;
  1306. else
  1307. u:=16;
  1308. end;
  1309. prev := fpc_val_longword_shortstr;
  1310. If (u>=base) or
  1311. ((LongWord(maxlongword-u) div LongWord(base))<prev) then
  1312. Begin
  1313. fpc_val_longword_shortstr := 0;
  1314. Exit
  1315. End;
  1316. fpc_val_longword_shortstr:=fpc_val_longword_shortstr*LongWord(base) + u;
  1317. inc(code);
  1318. end;
  1319. code := 0;
  1320. end;
  1321. Function fpc_val_smallint_shortstr(Const S: ShortString; out Code: ValSInt): SmallInt; [public, alias:'FPC_VAL_SMALLINT_SHORTSTR']; compilerproc;
  1322. var u, temp, prev, maxprevvalue, maxnewvalue : word;
  1323. base : byte;
  1324. negative : boolean;
  1325. const maxlongint=longword($7fffffff);
  1326. maxlongword=longword($ffffffff);
  1327. begin
  1328. fpc_val_smallint_shortstr := 0;
  1329. Temp:=0;
  1330. Code:=InitVal(s,negative,base);
  1331. if Code>length(s) then
  1332. exit;
  1333. if (s[Code]=#0) then
  1334. begin
  1335. if (Code>1) and (s[Code-1]='0') then
  1336. Code:=0;
  1337. exit;
  1338. end;
  1339. maxprevvalue := maxlongword div base;
  1340. if (base = 10) then
  1341. maxnewvalue := maxlongint + ord(negative)
  1342. else
  1343. maxnewvalue := maxlongword;
  1344. while Code<=Length(s) do
  1345. begin
  1346. case s[Code] of
  1347. '0'..'9' : u:=Ord(S[Code])-Ord('0');
  1348. 'A'..'F' : u:=Ord(S[Code])-(Ord('A')-10);
  1349. 'a'..'f' : u:=Ord(S[Code])-(Ord('a')-10);
  1350. #0 : break;
  1351. else
  1352. u:=16;
  1353. end;
  1354. Prev:=Temp;
  1355. Temp:=Temp*longword(base);
  1356. If (u >= base) or
  1357. (longword(maxnewvalue-u) < temp) or
  1358. (prev > maxprevvalue) Then
  1359. Begin
  1360. fpc_val_smallint_shortstr := 0;
  1361. Exit
  1362. End;
  1363. Temp:=Temp+u;
  1364. inc(code);
  1365. end;
  1366. code:=0;
  1367. fpc_val_smallint_shortstr:=longint(Temp);
  1368. If Negative Then
  1369. fpc_val_smallint_shortstr:=-fpc_val_smallint_shortstr;
  1370. end;
  1371. Function fpc_val_word_shortstr(Const S: ShortString; out Code: ValSInt): Word; [public, alias:'FPC_VAL_WORD_SHORTSTR']; compilerproc;
  1372. var u, prev: word;
  1373. base : byte;
  1374. negative : boolean;
  1375. const maxlongword=longword($ffffffff);
  1376. begin
  1377. fpc_val_word_shortstr:=0;
  1378. Code:=InitVal(s,negative,base);
  1379. If Negative or (Code>length(s)) Then
  1380. Exit;
  1381. if (s[Code]=#0) then
  1382. begin
  1383. if (Code>1) and (s[Code-1]='0') then
  1384. Code:=0;
  1385. exit;
  1386. end;
  1387. while Code<=Length(s) do
  1388. begin
  1389. case s[Code] of
  1390. '0'..'9' : u:=Ord(S[Code])-Ord('0');
  1391. 'A'..'F' : u:=Ord(S[Code])-(Ord('A')-10);
  1392. 'a'..'f' : u:=Ord(S[Code])-(Ord('a')-10);
  1393. #0 : break;
  1394. else
  1395. u:=16;
  1396. end;
  1397. prev := fpc_val_word_shortstr;
  1398. If (u>=base) or
  1399. ((LongWord(maxlongword-u) div LongWord(base))<prev) then
  1400. Begin
  1401. fpc_val_word_shortstr := 0;
  1402. Exit
  1403. End;
  1404. fpc_val_word_shortstr:=fpc_val_word_shortstr*LongWord(base) + u;
  1405. inc(code);
  1406. end;
  1407. code := 0;
  1408. end;
  1409. {$endif CPU16 or CPU8}
  1410. {$ifndef FPUNONE}
  1411. Function fpc_Val_Real_ShortStr(const s : shortstring; out Code : ValSInt): ValReal; [public, alias:'FPC_VAL_REAL_SHORTSTR']; compilerproc;
  1412. begin
  1413. fpc_Val_Real_ShortStr := val_real( s, code );
  1414. end;
  1415. {$endif FPUNONE}
  1416. {$ifndef FPC_STR_ENUM_INTERN}
  1417. function fpc_val_enum_shortstr(str2ordindex:pointer;const s:shortstring;out code:valsint):longint; [public, alias:'FPC_VAL_ENUM_SHORTSTR']; compilerproc;
  1418. function string_compare(const s1,s2:shortstring):sizeint;
  1419. {We cannot use the > and < operators to compare a string here, because we if the string is
  1420. not found in the enum, we need to return the position of error in "code". Code equals the
  1421. highest matching character of all string compares, which is only known inside the string
  1422. comparison.}
  1423. var i,l:byte;
  1424. c1,c2:char;
  1425. begin
  1426. l:=length(s1);
  1427. if length(s1)>length(s2) then
  1428. l:=length(s2);
  1429. i:=1;
  1430. while i<=l do
  1431. begin
  1432. c1:=s1[i];
  1433. c2:=s2[i];
  1434. if c1<>c2 then
  1435. break;
  1436. inc(i);
  1437. end;
  1438. if i>code then
  1439. code:=i;
  1440. if i<=l then
  1441. string_compare:=byte(c1)-byte(c2)
  1442. else
  1443. string_compare:=length(s1)-length(s2);
  1444. end;
  1445. type Psorted_array=^Tsorted_array;
  1446. Tsorted_array={$ifndef FPC_REQUIRES_PROPER_ALIGNMENT}packed{$endif}record
  1447. o:longint;
  1448. s:Pstring;
  1449. end;
  1450. Pstring_to_ord=^Tstring_to_ord;
  1451. Tstring_to_ord={$ifndef FPC_REQUIRES_PROPER_ALIGNMENT}packed{$endif}record
  1452. count:longint;
  1453. data:array[0..0] of Tsorted_array;
  1454. end;
  1455. var l,h,m:cardinal;
  1456. c:sizeint;
  1457. sorted_array:^Tsorted_array;
  1458. spaces:byte;
  1459. t:shortstring;
  1460. begin
  1461. {Val for numbers accepts spaces at the start, so lets do the same
  1462. for enums. Skip spaces at the start of the string.}
  1463. spaces:=1;
  1464. code:=1;
  1465. while (spaces<=length(s)) and (s[spaces]=' ') do
  1466. inc(spaces);
  1467. t:=upcase(copy(s,spaces,255));
  1468. sorted_array:=pointer(@Pstring_to_ord(str2ordindex)^.data);
  1469. {Use a binary search to get the string.}
  1470. l:=1;
  1471. h:=Pstring_to_ord(str2ordindex)^.count;
  1472. repeat
  1473. m:=(l+h) div 2;
  1474. c:=string_compare(t,upcase(sorted_array[m-1].s^));
  1475. if c>0 then
  1476. l:=m+1
  1477. else if c<0 then
  1478. h:=m-1
  1479. else
  1480. break;
  1481. if l>h then
  1482. begin
  1483. {Not found...}
  1484. inc(code,spaces-1); {Add skipped spaces again.}
  1485. {The result of val in case of error is undefined, don't assign a function result.}
  1486. exit;
  1487. end;
  1488. until false;
  1489. code:=0;
  1490. fpc_val_enum_shortstr:=sorted_array[m-1].o;
  1491. end;
  1492. {Redeclare fpc_val_enum_shortstr for internal use in the system unit.}
  1493. function fpc_val_enum_shortstr(str2ordindex:pointer;const s:shortstring;out code:valsint):longint;external name 'FPC_VAL_ENUM_SHORTSTR';
  1494. {$endif FPC_STR_ENUM_INTERN}
  1495. function fpc_Val_Currency_ShortStr(const s : shortstring; out Code : ValSInt): currency; [public, alias:'FPC_VAL_CURRENCY_SHORTSTR']; compilerproc;
  1496. {$ifdef EXCLUDE_COMPLEX_PROCS}
  1497. begin
  1498. runerror(217);
  1499. end;
  1500. {$else EXCLUDE_COMPLEX_PROCS}
  1501. const
  1502. MinInt64 : Int64 =-$8000000000000000;
  1503. MinInt64Edge : Int64 = (-$8000000000000000 + 10) div 10;
  1504. var
  1505. { to enable taking the address on the JVM target }
  1506. res : array[0..0] of Int64;
  1507. i,j,power,sign,len : longint;
  1508. FracOverflow : boolean;
  1509. begin
  1510. fpc_Val_Currency_ShortStr:=0;
  1511. res[0]:=0;
  1512. len:=Length(s);
  1513. Code:=1;
  1514. sign:=-1;
  1515. power:=0;
  1516. while True do
  1517. if Code > len then
  1518. exit
  1519. else
  1520. if s[Code] in [' ', #9] then
  1521. Inc(Code)
  1522. else
  1523. break;
  1524. { Read sign }
  1525. case s[Code] of
  1526. '+' : begin
  1527. Inc(Code);
  1528. end;
  1529. '-' : begin
  1530. sign:=+1;
  1531. Inc(Code);
  1532. end;
  1533. end;
  1534. { Read digits }
  1535. FracOverflow:=False;
  1536. i:=0;
  1537. while Code <= len do
  1538. begin
  1539. case s[Code] of
  1540. '0'..'9':
  1541. begin
  1542. j:=Ord(s[code])-Ord('0');
  1543. { check overflow }
  1544. if (res[0] >= MinInt64Edge) or (res[0] >= (MinInt64 + j) div 10) then
  1545. begin
  1546. res[0]:=res[0]*10 - j;
  1547. Inc(i);
  1548. end
  1549. else
  1550. if power = 0 then
  1551. { exit if integer part overflow }
  1552. exit
  1553. else
  1554. begin
  1555. if not FracOverflow and (j >= 5) and (res[0] > MinInt64) then
  1556. { round if first digit of fractional part overflow }
  1557. Dec(res[0]);
  1558. FracOverflow:=True;
  1559. end;
  1560. end;
  1561. '.':
  1562. begin
  1563. if power = 0 then
  1564. begin
  1565. power:=1;
  1566. i:=0;
  1567. end
  1568. else
  1569. exit;
  1570. end;
  1571. else
  1572. break;
  1573. end;
  1574. Inc(Code);
  1575. end;
  1576. if (i = 0) and (power = 0) then
  1577. exit;
  1578. if power <> 0 then
  1579. power:=i;
  1580. power:=4 - power;
  1581. { Exponent? }
  1582. if Code <= len then
  1583. if s[Code] in ['E', 'e'] then
  1584. begin
  1585. Inc(Code);
  1586. if Code > len then
  1587. exit;
  1588. i:=1;
  1589. case s[Code] of
  1590. '+':
  1591. Inc(Code);
  1592. '-':
  1593. begin
  1594. i:=-1;
  1595. Inc(Code);
  1596. end;
  1597. end;
  1598. { read exponent }
  1599. j:=0;
  1600. while Code <= len do
  1601. if s[Code] in ['0'..'9'] then
  1602. begin
  1603. if j > 4951 then
  1604. exit;
  1605. j:=j*10 + (Ord(s[code])-Ord('0'));
  1606. Inc(Code);
  1607. end
  1608. else
  1609. exit;
  1610. power:=power + j*i;
  1611. end
  1612. else
  1613. exit;
  1614. if power > 0 then
  1615. begin
  1616. for i:=1 to power do
  1617. if res[0] >= MinInt64 div 10 then
  1618. res[0]:=res[0]*10
  1619. else
  1620. exit;
  1621. end
  1622. else
  1623. for i:=1 to -power do
  1624. begin
  1625. if res[0] >= MinInt64 + 5 then
  1626. Dec(res[0], 5);
  1627. res[0]:=res[0] div 10;
  1628. end;
  1629. if sign <> 1 then
  1630. if res[0] > MinInt64 then
  1631. res[0]:=res[0]*sign
  1632. else
  1633. exit;
  1634. fpc_Val_Currency_ShortStr:=PCurrency(@res[0])^;
  1635. Code:=0;
  1636. end;
  1637. {$endif EXCLUDE_COMPLEX_PROCS}
  1638. {$ifndef FPC_HAS_SETSTRING_SHORTSTR}
  1639. {$define FPC_HAS_SETSTRING_SHORTSTR}
  1640. Procedure {$ifdef FPC_HAS_CPSTRING}fpc_setstring_shortstr{$else}SetString{$endif}(Out S : Shortstring; Buf : PChar; Len : SizeInt); {$ifdef FPC_HAS_CPSTRING} compilerproc; {$endif FPC_HAS_CPSTRING}
  1641. begin
  1642. If Len > High(S) then
  1643. Len := High(S);
  1644. SetLength(S,Len);
  1645. If Buf<>Nil then
  1646. begin
  1647. Move (Buf[0],S[1],Len);
  1648. end;
  1649. end;
  1650. {$endif FPC_HAS_SETSTRING_SHORTSTR}
  1651. {$ifndef FPC_HAS_COMPARETEXT_SHORTSTR}
  1652. {$define FPC_HAS_COMPARETEXT_SHORTSTR}
  1653. function ShortCompareText(const S1, S2: shortstring): SizeInt;
  1654. var
  1655. c1, c2: Byte;
  1656. i: SizeInt;
  1657. L1, L2, Count: SizeInt;
  1658. P1, P2: PChar;
  1659. begin
  1660. L1 := Length(S1);
  1661. L2 := Length(S2);
  1662. if L1 > L2 then
  1663. Count := L2
  1664. else
  1665. Count := L1;
  1666. i := 0;
  1667. P1 := @S1[1];
  1668. P2 := @S2[1];
  1669. while i < count do
  1670. begin
  1671. c1 := byte(p1^);
  1672. c2 := byte(p2^);
  1673. if c1 <> c2 then
  1674. begin
  1675. if c1 in [97..122] then
  1676. Dec(c1, 32);
  1677. if c2 in [97..122] then
  1678. Dec(c2, 32);
  1679. if c1 <> c2 then
  1680. Break;
  1681. end;
  1682. Inc(P1); Inc(P2); Inc(I);
  1683. end;
  1684. if i < count then
  1685. ShortCompareText := c1 - c2
  1686. else
  1687. ShortCompareText := L1 - L2;
  1688. end;
  1689. {$endif FPC_HAS_COMPARETEXT_SHORTSTR}