sysstr.inc 78 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060
  1. {
  2. *********************************************************************
  3. Copyright (C) 1997, 1998 Gertjan Schouten
  4. This program is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation; either version 2 of the License, or
  7. (at your option) any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with this program; if not, write to the Free Software
  14. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  15. *********************************************************************
  16. System Utilities For Free Pascal
  17. }
  18. { NewStr creates a new PString and assigns S to it
  19. if length(s) = 0 NewStr returns Nil }
  20. function NewStr(const S: string): PString;
  21. begin
  22. if (S='') then
  23. Result:=nil
  24. else
  25. begin
  26. new(result);
  27. if (Result<>nil) then
  28. Result^:=s;
  29. end;
  30. end;
  31. {$ifdef dummy}
  32. { declaring this breaks delphi compatibility and e.g. tw3721.pp }
  33. FUNCTION NewStr (Const S: ShortString): PShortString;
  34. VAR P: PShortString;
  35. BEGIN
  36. If (S = '') Then
  37. P := Nil
  38. Else
  39. Begin { Return nil }
  40. GetMem(P, Length(S) + 1); { Allocate memory }
  41. If (P<>Nil) Then P^ := S; { Hold string }
  42. End;
  43. NewStr := P; { Return result }
  44. END;
  45. {$endif dummy}
  46. { DisposeStr frees the memory occupied by S }
  47. procedure DisposeStr(S: PString);
  48. begin
  49. if S <> Nil then
  50. begin
  51. dispose(s);
  52. S:=nil;
  53. end;
  54. end;
  55. PROCEDURE DisposeStr (S: PShortString);
  56. BEGIN
  57. If (S <> Nil) Then FreeMem(S, Length(S^) + 1); { Release memory }
  58. END;
  59. { AssignStr assigns S to P^ }
  60. procedure AssignStr(var P: PString; const S: string);
  61. begin
  62. P^ := s;
  63. end ;
  64. { AppendStr appends S to Dest }
  65. procedure AppendStr(var Dest: String; const S: string);
  66. begin
  67. Dest := Dest + S;
  68. end ;
  69. { UpperCase returns a copy of S where all lowercase characters ( from a to z )
  70. have been converted to uppercase }
  71. Function UpperCase(Const S : String) : String;
  72. Var
  73. i : Integer;
  74. P : PChar;
  75. begin
  76. Result := S;
  77. if not assigned(pointer(result)) then exit;
  78. UniqueString(Result);
  79. P:=Pchar(pointer(Result));
  80. for i := 1 to Length(Result) do
  81. begin
  82. if (P^ in ['a'..'z']) then P^ := char(byte(p^) - 32);
  83. Inc(P);
  84. end;
  85. end;
  86. { LowerCase returns a copy of S where all uppercase characters ( from A to Z )
  87. have been converted to lowercase }
  88. Function Lowercase(Const S : String) : String;
  89. Var
  90. i : Integer;
  91. P : PChar;
  92. begin
  93. Result := S;
  94. if not assigned(pointer(result)) then exit;
  95. UniqueString(Result);
  96. P:=Pchar(pointer(Result));
  97. for i := 1 to Length(Result) do
  98. begin
  99. if (P^ in ['A'..'Z']) then P^ := char(byte(p^) + 32);
  100. Inc(P);
  101. end;
  102. end;
  103. function LowerCase(const V: variant): string; overload;{$ifdef SYSUTILSINLINE}inline;{$endif}
  104. begin
  105. result:=LowerCase(ansistring(V));
  106. end;
  107. { CompareStr compares S1 and S2, the result is the based on
  108. substraction of the ascii values of the characters in S1 and S2
  109. case result
  110. S1 < S2 < 0
  111. S1 > S2 > 0
  112. S1 = S2 = 0 }
  113. function CompareStr(const S1, S2: string): Integer;
  114. var count, count1, count2: integer;
  115. begin
  116. result := 0;
  117. Count1 := Length(S1);
  118. Count2 := Length(S2);
  119. if Count1>Count2 then
  120. Count:=Count2
  121. else
  122. Count:=Count1;
  123. result := CompareMemRange(Pointer(S1),Pointer(S2), Count);
  124. if result=0 then
  125. result:=Count1-Count2;
  126. end;
  127. { CompareMemRange returns the result of comparison of Length bytes at P1 and P2
  128. case result
  129. P1 < P2 < 0
  130. P1 > P2 > 0
  131. P1 = P2 = 0 }
  132. function CompareMemRange(P1, P2: Pointer; Length: PtrUInt): integer;{$ifdef SYSUTILSINLINE}inline;{$endif}
  133. begin
  134. Result:=CompareByte(P1^,P2^,Length);
  135. end;
  136. function CompareMem(P1, P2: Pointer; Length: PtrUInt): Boolean;{$ifdef SYSUTILSINLINE}inline;{$endif}
  137. begin
  138. Result:=CompareByte(P1^,P2^,Length)=0;
  139. end;
  140. { CompareText compares S1 and S2, the result is the based on
  141. substraction of the ascii values of characters in S1 and S2
  142. comparison is case-insensitive
  143. case result
  144. S1 < S2 < 0
  145. S1 > S2 > 0
  146. S1 = S2 = 0 }
  147. function CompareText(const S1, S2: string): integer;
  148. var
  149. i, count, count1, count2: integer; Chr1, Chr2: byte;
  150. P1, P2: PChar;
  151. begin
  152. Count1 := Length(S1);
  153. Count2 := Length(S2);
  154. if (Count1>Count2) then
  155. Count := Count2
  156. else
  157. Count := Count1;
  158. i := 0;
  159. if count>0 then
  160. begin
  161. P1 := @S1[1];
  162. P2 := @S2[1];
  163. while i < Count do
  164. begin
  165. Chr1 := byte(p1^);
  166. Chr2 := byte(p2^);
  167. if Chr1 <> Chr2 then
  168. begin
  169. if Chr1 in [97..122] then
  170. dec(Chr1,32);
  171. if Chr2 in [97..122] then
  172. dec(Chr2,32);
  173. if Chr1 <> Chr2 then
  174. Break;
  175. end;
  176. Inc(P1); Inc(P2); Inc(I);
  177. end;
  178. end;
  179. if i < Count then
  180. result := Chr1-Chr2
  181. else
  182. result := count1-count2;
  183. end;
  184. function SameText(const s1,s2:String):Boolean;
  185. begin
  186. Result:=CompareText(S1,S2)=0;
  187. end;
  188. {$ifndef FPC_NOGENERICANSIROUTINES}
  189. {==============================================================================}
  190. { Ansi string functions }
  191. { these functions rely on the character set loaded by the OS }
  192. {==============================================================================}
  193. type
  194. TCaseTranslationTable = array[0..255] of char;
  195. var
  196. { Tables with upper and lowercase forms of character sets.
  197. MUST be initialized with the correct code-pages }
  198. UpperCaseTable: TCaseTranslationTable;
  199. LowerCaseTable: TCaseTranslationTable;
  200. function GenericAnsiUpperCase(const s: string): string;
  201. var
  202. len, i: integer;
  203. begin
  204. len := length(s);
  205. SetLength(result, len);
  206. for i := 1 to len do
  207. result[i] := UpperCaseTable[ord(s[i])];
  208. end;
  209. function GenericAnsiLowerCase(const s: string): string;
  210. var
  211. len, i: integer;
  212. begin
  213. len := length(s);
  214. SetLength(result, len);
  215. for i := 1 to len do
  216. result[i] := LowerCaseTable[ord(s[i])];
  217. end;
  218. function GenericAnsiCompareStr(const S1, S2: string): PtrInt;
  219. Var
  220. I,L1,L2 : SizeInt;
  221. begin
  222. Result:=0;
  223. L1:=Length(S1);
  224. L2:=Length(S2);
  225. I:=1;
  226. While (Result=0) and ((I<=L1) and (I<=L2)) do
  227. begin
  228. Result:=Ord(S1[I])-Ord(S2[I]); //!! Must be replaced by ansi characters !!
  229. Inc(I);
  230. end;
  231. If Result=0 Then
  232. Result:=L1-L2;
  233. end;
  234. function GenericAnsiCompareText(const S1, S2: string): PtrInt;
  235. Var
  236. I,L1,L2 : SizeInt;
  237. begin
  238. Result:=0;
  239. L1:=Length(S1);
  240. L2:=Length(S2);
  241. I:=1;
  242. While (Result=0) and ((I<=L1) and (I<=L2)) do
  243. begin
  244. Result:=Ord(LowerCaseTable[Ord(S1[I])])-Ord(LowerCaseTable[Ord(S2[I])]); //!! Must be replaced by ansi characters !!
  245. Inc(I);
  246. end;
  247. If Result=0 Then
  248. Result:=L1-L2;
  249. end;
  250. function GenericAnsiStrComp(S1, S2: PChar): PtrInt;
  251. begin
  252. Result:=0;
  253. If S1=Nil then
  254. begin
  255. If S2=Nil Then Exit;
  256. result:=-1;
  257. exit;
  258. end;
  259. If S2=Nil then
  260. begin
  261. Result:=1;
  262. exit;
  263. end;
  264. While (Result=0) and (S1^<>#0) and (S2^<>#0) do begin
  265. Result:=Ord(S1^)-Ord(S2^); //!! Must be replaced by ansi characters !!
  266. Inc(S1);
  267. Inc(S2);
  268. end;
  269. if (Result=0) and (S1^<>S2^) then // loop ended because exactly one has #0
  270. if S1^=#0 then // shorter string is smaller
  271. result:=-1
  272. else
  273. result:=1;
  274. end;
  275. function GenericAnsiStrIComp(S1, S2: PChar): PtrInt;
  276. begin
  277. Result:=0;
  278. If S1=Nil then
  279. begin
  280. If S2=Nil Then Exit;
  281. result:=-1;
  282. exit;
  283. end;
  284. If S2=Nil then
  285. begin
  286. Result:=1;
  287. exit;
  288. end;
  289. While (Result=0) and (S1^<>#0) and (S2^<>#0) do begin
  290. Result:=Ord(LowerCaseTable[Ord(S1[0])])-Ord(LowerCaseTable[Ord(S2[0])]); //!! Must be replaced by ansi characters !!
  291. Inc(S1);
  292. Inc(S2);
  293. end;
  294. if (Result=0) and (s1[0]<>s2[0]) then //length(s1)<>length(s2)
  295. if s1[0]=#0 then
  296. Result:=-1 //s1 shorter than s2
  297. else
  298. Result:=1; //s1 longer than s2
  299. end;
  300. function GenericAnsiStrLComp(S1, S2: PChar; MaxLen: PtrUInt): PtrInt;
  301. Var I : cardinal;
  302. begin
  303. Result:=0;
  304. If MaxLen=0 then exit;
  305. If S1=Nil then
  306. begin
  307. If S2=Nil Then Exit;
  308. result:=-1;
  309. exit;
  310. end;
  311. If S2=Nil then
  312. begin
  313. Result:=1;
  314. exit;
  315. end;
  316. I:=0;
  317. Repeat
  318. Result:=Ord(S1[0])-Ord(S2[0]); //!! Must be replaced by ansi characters !!
  319. Inc(S1);
  320. Inc(S2);
  321. Inc(I);
  322. Until (Result<>0) or (I=MaxLen)
  323. end;
  324. function GenericAnsiStrLIComp(S1, S2: PChar; MaxLen: PtrUInt): PtrInt;
  325. Var I : cardinal;
  326. begin
  327. Result:=0;
  328. If MaxLen=0 then exit;
  329. If S1=Nil then
  330. begin
  331. If S2=Nil Then Exit;
  332. result:=-1;
  333. exit;
  334. end;
  335. If S2=Nil then
  336. begin
  337. Result:=1;
  338. exit;
  339. end;
  340. I:=0;
  341. Repeat
  342. Result:=Ord(LowerCaseTable[Ord(S1[0])])-Ord(LowerCaseTable[Ord(S2[0])]); //!! Must be replaced by ansi characters !!
  343. Inc(S1);
  344. Inc(S2);
  345. Inc(I);
  346. Until (Result<>0) or (I=MaxLen)
  347. end;
  348. function GenericAnsiStrLower(Str: PChar): PChar;
  349. begin
  350. result := Str;
  351. if Str <> Nil then begin
  352. while Str^ <> #0 do begin
  353. Str^ := LowerCaseTable[byte(Str^)];
  354. Str := Str + 1;
  355. end;
  356. end;
  357. end;
  358. function GenericAnsiStrUpper(Str: PChar): PChar;
  359. begin
  360. result := Str;
  361. if Str <> Nil then begin
  362. while Str^ <> #0 do begin
  363. Str^ := UpperCaseTable[byte(Str^)];
  364. Str := Str + 1;
  365. end ;
  366. end ;
  367. end ;
  368. {$endif FPC_NOGENERICANSIROUTINES}
  369. function AnsiSameText(const s1,s2:String):Boolean;{$ifdef SYSUTILSINLINE}inline;{$endif}
  370. begin
  371. AnsiSameText:=AnsiCompareText(S1,S2)=0;
  372. end;
  373. function AnsiSameStr(const s1,s2:String):Boolean;{$ifdef SYSUTILSINLINE}inline;{$endif}
  374. begin
  375. AnsiSameStr:=AnsiCompareStr(S1,S2)=0;
  376. end;
  377. function AnsiLastChar(const S: string): PChar;
  378. begin
  379. //!! No multibyte yet, so we return the last one.
  380. result:=StrEnd(Pchar(pointer(S))); // strend checks for nil
  381. Dec(Result);
  382. end ;
  383. function AnsiStrLastChar(Str: PChar): PChar;
  384. begin
  385. //!! No multibyte yet, so we return the last one.
  386. result:=StrEnd(Str);
  387. Dec(Result);
  388. end ;
  389. function AnsiUpperCase(const s: string): string;{$ifdef SYSUTILSINLINE}inline;{$endif}
  390. begin
  391. result:=widestringmanager.UpperAnsiStringProc(s);
  392. end;
  393. function AnsiLowerCase(const s: string): string;{$ifdef SYSUTILSINLINE}inline;{$endif}
  394. begin
  395. result:=widestringmanager.LowerAnsiStringProc(s);
  396. end;
  397. function AnsiCompareStr(const S1, S2: string): integer;{$ifdef SYSUTILSINLINE}inline;{$endif}
  398. begin
  399. result:=widestringmanager.CompareStrAnsiStringProc(s1,s2);
  400. end;
  401. function AnsiCompareText(const S1, S2: string): integer;{$ifdef SYSUTILSINLINE}inline;{$endif}
  402. begin
  403. result:=widestringmanager.CompareTextAnsiStringProc(s1,s2);
  404. end;
  405. function AnsiStrComp(S1, S2: PChar): integer;{$ifdef SYSUTILSINLINE}inline;{$endif}
  406. begin
  407. result:=widestringmanager.StrCompAnsiStringProc(s1,s2);
  408. end;
  409. function AnsiStrIComp(S1, S2: PChar): integer;{$ifdef SYSUTILSINLINE}inline;{$endif}
  410. begin
  411. result:=widestringmanager.StrICompAnsiStringProc(s1,s2);
  412. end;
  413. function AnsiStrLComp(S1, S2: PChar; MaxLen: cardinal): integer;{$ifdef SYSUTILSINLINE}inline;{$endif}
  414. begin
  415. result:=widestringmanager.StrLCompAnsiStringProc(s1,s2,maxlen);
  416. end;
  417. function AnsiStrLIComp(S1, S2: PChar; MaxLen: cardinal): integer;{$ifdef SYSUTILSINLINE}inline;{$endif}
  418. begin
  419. result:=widestringmanager.StrLICompAnsiStringProc(s1,s2,maxlen);
  420. end;
  421. function AnsiStrLower(Str: PChar): PChar;{$ifdef SYSUTILSINLINE}inline;{$endif}
  422. begin
  423. result:=widestringmanager.StrLowerAnsiStringProc(Str);
  424. end;
  425. function AnsiStrUpper(Str: PChar): PChar;{$ifdef SYSUTILSINLINE}inline;{$endif}
  426. begin
  427. result:=widestringmanager.StrUpperAnsiStringProc(Str);
  428. end;
  429. {==============================================================================}
  430. { End of Ansi functions }
  431. {==============================================================================}
  432. { Trim returns a copy of S with blanks characters on the left and right stripped off }
  433. Const WhiteSpace = [#0..' '];
  434. function Trim(const S: string): string;
  435. var Ofs, Len: integer;
  436. begin
  437. len := Length(S);
  438. while (Len>0) and (S[Len] in WhiteSpace) do
  439. dec(Len);
  440. Ofs := 1;
  441. while (Ofs<=Len) and (S[Ofs] in WhiteSpace) do
  442. Inc(Ofs);
  443. result := Copy(S, Ofs, 1 + Len - Ofs);
  444. end ;
  445. { TrimLeft returns a copy of S with all blank characters on the left stripped off }
  446. function TrimLeft(const S: string): string;
  447. var i,l:integer;
  448. begin
  449. l := length(s);
  450. i := 1;
  451. while (i<=l) and (s[i] in whitespace) do
  452. inc(i);
  453. Result := copy(s, i, l);
  454. end ;
  455. { TrimRight returns a copy of S with all blank characters on the right stripped off }
  456. function TrimRight(const S: string): string;
  457. var l:integer;
  458. begin
  459. l := length(s);
  460. while (l>0) and (s[l] in whitespace) do
  461. dec(l);
  462. result := copy(s,1,l);
  463. end ;
  464. { QuotedStr returns S quoted left and right and every single quote in S
  465. replaced by two quotes }
  466. function QuotedStr(const S: string): string;
  467. begin
  468. result := AnsiQuotedStr(s, '''');
  469. end ;
  470. { AnsiQuotedStr returns S quoted left and right by Quote,
  471. and every single occurance of Quote replaced by two }
  472. function AnsiQuotedStr(const S: string; Quote: char): string;
  473. var i, j, count: integer;
  474. begin
  475. result := '' + Quote;
  476. count := length(s);
  477. i := 0;
  478. j := 0;
  479. while i < count do begin
  480. i := i + 1;
  481. if S[i] = Quote then begin
  482. result := result + copy(S, 1 + j, i - j) + Quote;
  483. j := i;
  484. end ;
  485. end ;
  486. if i <> j then
  487. result := result + copy(S, 1 + j, i - j);
  488. result := result + Quote;
  489. end ;
  490. { AnsiExtractQuotedStr returns a copy of Src with quote characters
  491. deleted to the left and right and double occurances
  492. of Quote replaced by a single Quote }
  493. function AnsiExtractQuotedStr(var Src: PChar; Quote: Char): string;
  494. var
  495. P,Q,R: PChar;
  496. begin
  497. P := Src;
  498. Q := StrEnd(P);
  499. result:='';
  500. if P=Q then exit;
  501. if P^<>quote then exit;
  502. inc(p);
  503. setlength(result,(Q-P)+1);
  504. R:=@Result[1];
  505. while P <> Q do
  506. begin
  507. R^:=P^;
  508. inc(R);
  509. if (P^ = Quote) then
  510. begin
  511. P := P + 1;
  512. if (p^ <> Quote) then
  513. begin
  514. dec(R);
  515. break;
  516. end;
  517. end;
  518. P := P + 1;
  519. end ;
  520. src:=p;
  521. SetLength(result, (R-pchar(@Result[1])));
  522. end ;
  523. { AdjustLineBreaks returns S with all CR characters not followed by LF
  524. replaced with CR/LF }
  525. // under Linux all CR characters or CR/LF combinations should be replaced with LF
  526. function AdjustLineBreaks(const S: string): string;
  527. begin
  528. Result:=AdjustLineBreaks(S,DefaultTextLineBreakStyle);
  529. end;
  530. function AdjustLineBreaks(const S: string; Style: TTextLineBreakStyle): string;
  531. var
  532. Source,Dest: PChar;
  533. DestLen: Integer;
  534. I,J,L: Longint;
  535. begin
  536. Source:=Pointer(S);
  537. L:=Length(S);
  538. DestLen:=L;
  539. I:=1;
  540. while (I<=L) do
  541. begin
  542. case S[i] of
  543. #10: if (Style=tlbsCRLF) then
  544. Inc(DestLen);
  545. #13: if (Style=tlbsCRLF) then
  546. if (I<L) and (S[i+1]=#10) then
  547. Inc(I)
  548. else
  549. Inc(DestLen)
  550. else if (I<L) and (S[I+1]=#10) then
  551. Dec(DestLen);
  552. end;
  553. Inc(I);
  554. end;
  555. if (DestLen=L) then
  556. Result:=S
  557. else
  558. begin
  559. SetLength(Result, DestLen);
  560. FillChar(Result[1],DestLen,0);
  561. Dest := Pointer(Result);
  562. J:=0;
  563. I:=0;
  564. While I<L do
  565. case Source[I] of
  566. #10: begin
  567. if Style=tlbsCRLF then
  568. begin
  569. Dest[j]:=#13;
  570. Inc(J);
  571. end;
  572. Dest[J] := #10;
  573. Inc(J);
  574. Inc(I);
  575. end;
  576. #13: begin
  577. if Style=tlbsCRLF then
  578. begin
  579. Dest[j] := #13;
  580. Inc(J);
  581. end;
  582. Dest[j]:=#10;
  583. Inc(J);
  584. Inc(I);
  585. if Source[I]=#10 then
  586. Inc(I);
  587. end;
  588. else
  589. Dest[j]:=Source[i];
  590. Inc(J);
  591. Inc(I);
  592. end;
  593. end;
  594. end;
  595. { IsValidIdent returns true if the first character of Ident is in:
  596. 'A' to 'Z', 'a' to 'z' or '_' and the following characters are
  597. on of: 'A' to 'Z', 'a' to 'z', '0'..'9' or '_' }
  598. function IsValidIdent(const Ident: string): boolean;
  599. var i, len: integer;
  600. begin
  601. result := false;
  602. len := length(Ident);
  603. if len <> 0 then begin
  604. result := Ident[1] in ['A'..'Z', 'a'..'z', '_'];
  605. i := 1;
  606. while (result) and (i < len) do begin
  607. i := i + 1;
  608. result := result and (Ident[i] in ['A'..'Z', 'a'..'z', '0'..'9', '_']);
  609. end ;
  610. end ;
  611. end ;
  612. { IntToStr returns a string representing the value of Value }
  613. function IntToStr(Value: integer): string;
  614. begin
  615. System.Str(Value, result);
  616. end ;
  617. function IntToStr(Value: int64): string;
  618. begin
  619. System.Str(Value, result);
  620. end ;
  621. function IntToStr(Value: QWord): string;
  622. begin
  623. System.Str(Value, result);
  624. end ;
  625. { IntToHex returns a string representing the hexadecimal value of Value }
  626. const
  627. HexDigits: array[0..15] of char = '0123456789ABCDEF';
  628. function IntToHex(Value: integer; Digits: integer): string;
  629. var i: integer;
  630. begin
  631. If Digits=0 then
  632. Digits:=1;
  633. SetLength(result, digits);
  634. for i := 0 to digits - 1 do
  635. begin
  636. result[digits - i] := HexDigits[value and 15];
  637. value := value shr 4;
  638. end ;
  639. while value <> 0 do begin
  640. result := HexDigits[value and 15] + result;
  641. value := value shr 4;
  642. end;
  643. end ;
  644. function IntToHex(Value: int64; Digits: integer): string;
  645. var i: integer;
  646. begin
  647. If Digits=0 then
  648. Digits:=1;
  649. SetLength(result, digits);
  650. for i := 0 to digits - 1 do
  651. begin
  652. result[digits - i] := HexDigits[value and 15];
  653. value := value shr 4;
  654. end ;
  655. while value <> 0 do begin
  656. result := HexDigits[value and 15] + result;
  657. value := value shr 4;
  658. end;
  659. end ;
  660. function IntToHex(Value: QWord; Digits: integer): string;
  661. begin
  662. result:=IntToHex(Int64(Value),Digits);
  663. end;
  664. function TryStrToInt(const s: string; out i : integer) : boolean;
  665. var Error : word;
  666. begin
  667. Val(s, i, Error);
  668. TryStrToInt:=Error=0
  669. end;
  670. { StrToInt converts the string S to an integer value,
  671. if S does not represent a valid integer value EConvertError is raised }
  672. function StrToInt(const S: string): integer;
  673. var Error: word;
  674. begin
  675. Val(S, result, Error);
  676. if Error <> 0 then raise EConvertError.createfmt(SInvalidInteger,[S]);
  677. end ;
  678. function StrToInt64(const S: string): int64;
  679. var Error: word;
  680. begin
  681. Val(S, result, Error);
  682. if Error <> 0 then raise EConvertError.createfmt(SInvalidInteger,[S]);
  683. end;
  684. function TryStrToInt64(const s: string; Out i : int64) : boolean;
  685. var Error : word;
  686. begin
  687. Val(s, i, Error);
  688. TryStrToInt64:=Error=0
  689. end;
  690. function StrToQWord(const s: string): QWord;
  691. var Error: word;
  692. begin
  693. Val(S, result, Error);
  694. if Error <> 0 then raise EConvertError.createfmt(SInvalidInteger,[S]);
  695. end;
  696. function TryStrToQWord(const s: string; Out Q: QWord): boolean;
  697. var Error : word;
  698. begin
  699. Val(s, Q, Error);
  700. TryStrToQWord:=Error=0
  701. end;
  702. { StrToIntDef converts the string S to an integer value,
  703. Default is returned in case S does not represent a valid integer value }
  704. function StrToIntDef(const S: string; Default: integer): integer;
  705. var Error: word;
  706. begin
  707. Val(S, result, Error);
  708. if Error <> 0 then result := Default;
  709. end ;
  710. { StrToInt64Def converts the string S to an int64 value,
  711. Default is returned in case S does not represent a valid int64 value }
  712. function StrToInt64Def(const S: string; Default: int64): int64;
  713. var Error: word;
  714. begin
  715. Val(S, result, Error);
  716. if Error <> 0 then result := Default;
  717. end ;
  718. { StrToQWordDef converts the string S to an QWord value,
  719. Default is returned in case S does not represent a valid QWord value }
  720. function StrToQWordDef(const S: string; Default: QWord): QWord;
  721. var Error: word;
  722. begin
  723. Val(S, result, Error);
  724. if Error <> 0 then result := Default;
  725. end;
  726. { LoadStr returns the string resource Ident. }
  727. function LoadStr(Ident: integer): string;
  728. begin
  729. result:='';
  730. end ;
  731. { FmtLoadStr returns the string resource Ident and formats it accordingly }
  732. function FmtLoadStr(Ident: integer; const Args: array of const): string;
  733. begin
  734. result:='';
  735. end;
  736. Const
  737. feInvalidFormat = 1;
  738. feMissingArgument = 2;
  739. feInvalidArgIndex = 3;
  740. {$ifdef fmtdebug}
  741. Procedure Log (Const S: String);
  742. begin
  743. Writeln (S);
  744. end;
  745. {$endif}
  746. Procedure DoFormatError (ErrCode : Longint;const fmt:ansistring);
  747. Var
  748. S : String;
  749. begin
  750. //!! must be changed to contain format string...
  751. S:=fmt;
  752. Case ErrCode of
  753. feInvalidFormat : raise EConvertError.Createfmt(SInvalidFormat,[s]);
  754. feMissingArgument : raise EConvertError.Createfmt(SArgumentMissing,[s]);
  755. feInvalidArgIndex : raise EConvertError.Createfmt(SInvalidArgIndex,[s]);
  756. end;
  757. end;
  758. { we've no templates, but with includes we can simulate this :) }
  759. {$macro on}
  760. {$define INFORMAT}
  761. {$define TFormatString:=ansistring}
  762. {$define TFormatChar:=char}
  763. Function Format (Const Fmt : AnsiString; const Args : Array of const; const FormatSettings: TFormatSettings) : AnsiString;
  764. {$i sysformt.inc}
  765. {$undef TFormatString}
  766. {$undef TFormatChar}
  767. {$undef INFORMAT}
  768. {$macro off}
  769. Function Format (Const Fmt : AnsiString; const Args : Array of const) : AnsiString;
  770. begin
  771. Result:=Format(Fmt,Args,DefaultFormatSettings);
  772. end;
  773. Function FormatBuf (Var Buffer; BufLen : Cardinal; Const Fmt; fmtLen : Cardinal; Const Args : Array of const; Const FormatSettings: TFormatSettings) : Cardinal;
  774. Var S,F : String;
  775. begin
  776. Setlength(F,fmtlen);
  777. if fmtlen > 0 then
  778. Move(fmt,F[1],fmtlen);
  779. S:=Format (F,Args,FormatSettings);
  780. If Cardinal(Length(S))<Buflen then
  781. Result:=Length(S)
  782. else
  783. Result:=Buflen;
  784. Move(S[1],Buffer,Result);
  785. end;
  786. Function FormatBuf (Var Buffer; BufLen : Cardinal;
  787. Const Fmt; fmtLen : Cardinal;
  788. Const Args : Array of const) : Cardinal;
  789. begin
  790. Result:=FormatBuf(Buffer,BufLen,Fmt,FmtLen,Args,DefaultFormatSettings);
  791. end;
  792. Procedure FmtStr(Var Res: string; const Fmt : string; Const args: Array of const; Const FormatSettings: TFormatSettings);
  793. begin
  794. Res:=Format(fmt,Args,FormatSettings);
  795. end;
  796. Procedure FmtStr(Var Res: String; Const Fmt : String; Const args: Array of const);
  797. begin
  798. FmtStr(Res,Fmt,Args,DefaultFormatSettings);
  799. end;
  800. Function StrFmt(Buffer,Fmt : PChar; Const args: Array of const) : Pchar;
  801. begin
  802. Result:=StrFmt(Buffer,Fmt,Args,DefaultFormatSettings);
  803. end;
  804. Function StrFmt(Buffer,Fmt : PChar; Const Args: Array of const; Const FormatSettings: TFormatSettings): PChar;
  805. begin
  806. Buffer[FormatBuf(Buffer^,Maxint,Fmt^,strlen(fmt),args,FormatSettings)]:=#0;
  807. Result:=Buffer;
  808. end;
  809. Function StrLFmt(Buffer : PCHar; Maxlen : Cardinal;Fmt : PChar; Const args: Array of const) : Pchar;
  810. begin
  811. Result:=StrLFmt(Buffer,MaxLen,Fmt,Args,DefaultFormatSettings);
  812. end;
  813. Function StrLFmt(Buffer : PCHar; Maxlen : Cardinal;Fmt : PChar; Const args: Array of const; Const FormatSettings: TFormatSettings) : Pchar;
  814. begin
  815. Buffer[FormatBuf(Buffer^,MaxLen,Fmt^,strlen(fmt),args,FormatSettings)]:=#0;
  816. Result:=Buffer;
  817. end;
  818. {$ifndef FPUNONE}
  819. Function StrToFloat(Const S: String): Extended;
  820. begin
  821. Result:=StrToFloat(S,DefaultFormatSettings);
  822. end;
  823. Function StrToFloat(Const S : String; Const FormatSettings: TFormatSettings) : Extended;
  824. Begin // texttofloat handles NIL properly
  825. If Not TextToFloat(Pchar(pointer(S)),Result,FormatSettings) then
  826. Raise EConvertError.createfmt(SInValidFLoat,[S]);
  827. End;
  828. function StrToFloatDef(const S: string; const Default: Extended): Extended;
  829. begin
  830. Result:=StrToFloatDef(S,Default,DefaultFormatSettings);
  831. end;
  832. Function StrToFloatDef(Const S: String; Const Default: Extended; Const FormatSettings: TFormatSettings): Extended;
  833. begin
  834. if not TextToFloat(PChar(pointer(S)),Result,fvExtended,FormatSettings) then
  835. Result:=Default;
  836. end;
  837. Function TextToFloat(Buffer: PChar; Out Value: Extended; Const FormatSettings: TFormatSettings): Boolean;
  838. Var
  839. E,P : Integer;
  840. S : String;
  841. Begin
  842. S:=StrPas(Buffer);
  843. //ThousandSeparator not allowed as by Delphi specs
  844. if (FormatSettings.ThousandSeparator <> FormatSettings.DecimalSeparator) and
  845. (Pos(FormatSettings.ThousandSeparator, S) <> 0) then
  846. begin
  847. Result := False;
  848. Exit;
  849. end;
  850. if (FormatSettings.DecimalSeparator <> '.') and
  851. (Pos('.', S) <>0) then
  852. begin
  853. Result := False;
  854. Exit;
  855. end;
  856. P:=Pos(FormatSettings.DecimalSeparator,S);
  857. If (P<>0) Then
  858. S[P] := '.';
  859. Val(trim(S),Value,E);
  860. Result:=(E=0);
  861. End;
  862. Function TextToFloat(Buffer: PChar; Out Value: Extended): Boolean;
  863. begin
  864. Result:=TextToFloat(Buffer,Value,DefaultFormatSettings);
  865. end;
  866. Function TextToFloat(Buffer: PChar; Out Value; ValueType: TFloatValue): Boolean;
  867. begin
  868. Result:=TextToFloat(Buffer,Value,ValueType,DefaultFormatSettings);
  869. end;
  870. Function TextToFloat(Buffer: PChar; Out Value; ValueType: TFloatValue; Const FormatSettings: TFormatSettings): Boolean;
  871. Var
  872. E,P : Integer;
  873. S : String;
  874. {$ifndef FPC_HAS_STR_CURRENCY}
  875. TempValue: extended;
  876. {$endif FPC_HAS_STR_CURRENCY}
  877. Begin
  878. S:=StrPas(Buffer);
  879. //ThousandSeparator not allowed as by Delphi specs
  880. if (FormatSettings.ThousandSeparator <> FormatSettings.DecimalSeparator) and
  881. (Pos(FormatSettings.ThousandSeparator, S) <> 0) then
  882. begin
  883. Result := False;
  884. Exit;
  885. end;
  886. if (FormatSettings.DecimalSeparator <> '.') and
  887. (Pos('.', S) <>0) then
  888. begin
  889. Result := False;
  890. Exit;
  891. end;
  892. P:=Pos(FormatSettings.DecimalSeparator,S);
  893. If (P<>0) Then
  894. S[P] := '.';
  895. case ValueType of
  896. fvCurrency:
  897. {$ifdef FPC_HAS_STR_CURRENCY}
  898. Val(S,Currency(Value),E);
  899. {$else FPC_HAS_STR_CURRENCY}
  900. begin
  901. // needed for platforms where Currency = Int64
  902. Val(S,TempValue,E);
  903. Currency(Value) := TempValue;
  904. end;
  905. {$endif FPC_HAS_STR_CURRENCY}
  906. fvExtended:
  907. Val(S,Extended(Value),E);
  908. fvDouble:
  909. Val(S,Double(Value),E);
  910. fvSingle:
  911. Val(S,Single(Value),E);
  912. fvComp:
  913. Val(S,Comp(Value),E);
  914. fvReal:
  915. Val(S,Real(Value),E);
  916. end;
  917. Result:=(E=0);
  918. End;
  919. Function TryStrToFloat(Const S : String; Out Value: Single): Boolean;
  920. begin
  921. Result:=TryStrToFloat(S,Value,DefaultFormatSettings);
  922. end;
  923. Function TryStrToFloat(Const S : String; Out Value: Single; Const FormatSettings: TFormatSettings): Boolean;
  924. Begin
  925. Result := TextToFloat(PChar(pointer(S)), Value, fvSingle,FormatSettings);
  926. End;
  927. Function TryStrToFloat(Const S : String; Out Value: Double): Boolean;
  928. begin
  929. Result:=TryStrToFloat(S,Value,DefaultFormatSettings);
  930. end;
  931. Function TryStrToFloat(Const S : String; Out Value: Double; Const FormatSettings: TFormatSettings): Boolean;
  932. Begin
  933. Result := TextToFloat(PChar(pointer(S)), Value, fvDouble,FormatSettings);
  934. End;
  935. {$ifdef FPC_HAS_TYPE_EXTENDED}
  936. Function TryStrToFloat(Const S : String; Out Value: Extended): Boolean;
  937. begin
  938. Result:=TryStrToFloat(S,Value,DefaultFormatSettings);
  939. end;
  940. Function TryStrToFloat(Const S : String; Out Value: Extended; Const FormatSettings: TFormatSettings): Boolean;
  941. Begin
  942. Result := TextToFloat(PChar(pointer(S)), Value,FormatSettings);
  943. End;
  944. {$endif FPC_HAS_TYPE_EXTENDED}
  945. const
  946. {$ifdef FPC_HAS_TYPE_EXTENDED}
  947. maxdigits = 17;
  948. {$else}
  949. maxdigits = 15;
  950. {$endif}
  951. Function FloatToStrFIntl(const Value; format: TFloatFormat; Precision, Digits: Integer; ValueType: TFloatValue; Const FormatSettings: TFormatSettings): String;
  952. Var
  953. P, PE, Q, Exponent: Integer;
  954. Negative: Boolean;
  955. DS: Char;
  956. function RemoveLeadingNegativeSign(var AValue: String): Boolean;
  957. // removes negative sign in case when result is zero eg. -0.00
  958. var
  959. i: PtrInt;
  960. TS: Char;
  961. StartPos: PtrInt;
  962. begin
  963. Result := False;
  964. if Format = ffCurrency then
  965. StartPos := 1
  966. else
  967. StartPos := 2;
  968. TS := FormatSettings.ThousandSeparator;
  969. for i := StartPos to length(AValue) do
  970. begin
  971. Result := (AValue[i] in ['0', DS, 'E', '+', TS]);
  972. if not Result then
  973. break;
  974. end;
  975. if (Result) and (Format <> ffCurrency) then
  976. Delete(AValue, 1, 1);
  977. end;
  978. Begin
  979. DS:=FormatSettings.DecimalSeparator;
  980. Case format Of
  981. ffGeneral:
  982. Begin
  983. case ValueType of
  984. fvCurrency:
  985. If (Precision = -1) Or (Precision > 19) Then Precision := 19;
  986. else
  987. If (Precision = -1) Or (Precision > maxdigits) Then Precision := maxdigits;
  988. end;
  989. { First convert to scientific format, with correct precision }
  990. case ValueType of
  991. fvDouble:
  992. Str(Double(Extended(Value)):precision+7, Result);
  993. fvSingle:
  994. Str(Single(Extended(Value)):precision+6, Result);
  995. fvCurrency:
  996. {$ifdef FPC_HAS_STR_CURRENCY}
  997. Str(Currency(Value):precision+6, Result);
  998. {$else}
  999. Str(Extended(Currency(Value)):precision+8, Result);
  1000. {$endif FPC_HAS_STR_CURRENCY}
  1001. else
  1002. Str(Extended(Value):precision+8, Result);
  1003. end;
  1004. { Delete leading spaces }
  1005. while Result[1] = ' ' do
  1006. System.Delete(Result, 1, 1);
  1007. P := Pos('.', Result);
  1008. if P<>0 then
  1009. Result[P] := DS
  1010. else
  1011. Exit; { NAN or other special case }
  1012. { Consider removing exponent }
  1013. PE:=Pos('E',Result);
  1014. if PE > 0 then begin
  1015. { Read exponent }
  1016. Q := PE+2;
  1017. Exponent := 0;
  1018. while (Q <= Length(Result)) do begin
  1019. Exponent := Exponent*10 + Ord(Result[Q])-Ord('0');
  1020. Inc(Q);
  1021. end;
  1022. if Result[PE+1] = '-' then
  1023. Exponent := -Exponent;
  1024. if (P+Exponent < PE) and (Exponent > -6) then begin
  1025. { OK to remove exponent }
  1026. SetLength(Result,PE-1); { Trim exponent }
  1027. if Exponent >= 0 then begin
  1028. { Shift point to right }
  1029. for Q := 0 to Exponent-1 do begin
  1030. Result[P] := Result[P+1];
  1031. Inc(P);
  1032. end;
  1033. Result[P] := DS;
  1034. P := 1;
  1035. if Result[P] = '-' then
  1036. Inc(P);
  1037. while (Result[P] = '0') and (P < Length(Result)) and (Result[P+1] <> DS) do
  1038. { Trim leading zeros; conversion above should not give any, but occasionally does
  1039. because of rounding }
  1040. System.Delete(Result,P,1);
  1041. end else begin
  1042. { Add zeros at start }
  1043. Insert(Copy('00000',1,-Exponent),Result,P-1);
  1044. Result[P-Exponent] := Result[P-Exponent-1]; { Copy leading digit }
  1045. Result[P] := DS;
  1046. if Exponent <> -1 then
  1047. Result[P-Exponent-1] := '0';
  1048. end;
  1049. { Remove trailing zeros }
  1050. Q := Length(Result);
  1051. while (Q > 0) and (Result[Q] = '0') do
  1052. Dec(Q);
  1053. if Result[Q] = DS then
  1054. Dec(Q); { Remove trailing decimal point }
  1055. if (Q = 0) or ((Q=1) and (Result[1] = '-')) then
  1056. Result := '0'
  1057. else
  1058. SetLength(Result,Q);
  1059. end else begin
  1060. { Need exponent, but remove superfluous characters }
  1061. { Delete trailing zeros }
  1062. while Result[PE-1] = '0' do begin
  1063. System.Delete(Result,PE-1,1);
  1064. Dec(PE);
  1065. end;
  1066. { If number ends in decimal point, remove it }
  1067. if Result[PE-1] = DS then begin
  1068. System.Delete(Result,PE-1,1);
  1069. Dec(PE);
  1070. end;
  1071. { delete superfluous + in exponent }
  1072. if Result[PE+1]='+' then
  1073. System.Delete(Result,PE+1,1)
  1074. else
  1075. Inc(PE);
  1076. while Result[PE+1] = '0' do
  1077. { Delete leading zeros in exponent }
  1078. System.Delete(Result,PE+1,1)
  1079. end;
  1080. end;
  1081. End;
  1082. ffExponent:
  1083. Begin
  1084. If (Precision = -1) Or (Precision > maxdigits) Then Precision := maxdigits;
  1085. case ValueType of
  1086. fvDouble:
  1087. Str(Double(Extended(Value)):Precision+7, Result);
  1088. fvSingle:
  1089. Str(Single(Extended(Value)):Precision+6, Result);
  1090. fvCurrency:
  1091. {$ifdef FPC_HAS_STR_CURRENCY}
  1092. Str(Currency(Value):Precision+6, Result);
  1093. {$else}
  1094. Str(Extended(Currency(Value)):Precision+8, Result);
  1095. {$endif FPC_HAS_STR_CURRENCY}
  1096. else
  1097. Str(Extended(Value):Precision+8, Result);
  1098. end;
  1099. { Delete leading spaces }
  1100. while Result[1] = ' ' do
  1101. System.Delete(Result, 1, 1);
  1102. if Result[1] = '-' then
  1103. Result[3] := DS
  1104. else
  1105. Result[2] := DS;
  1106. P:=Pos('E',Result);
  1107. if P <> 0 then
  1108. begin
  1109. Inc(P, 2);
  1110. if Digits > 4 then
  1111. Digits:=4;
  1112. Digits:=Length(Result) - P - Digits + 1;
  1113. if Digits < 0 then
  1114. insert(copy('0000',1,-Digits),Result,P)
  1115. else
  1116. while (Digits > 0) and (Result[P] = '0') do
  1117. begin
  1118. System.Delete(Result, P, 1);
  1119. if P > Length(Result) then
  1120. begin
  1121. System.Delete(Result, P - 2, 2);
  1122. break;
  1123. end;
  1124. Dec(Digits);
  1125. end;
  1126. end;
  1127. End;
  1128. ffFixed:
  1129. Begin
  1130. If Digits = -1 Then Digits := 2
  1131. Else If Digits > 18 Then Digits := 18;
  1132. case ValueType of
  1133. fvDouble:
  1134. Str(Double(Extended(Value)):0:Digits, Result);
  1135. fvSingle:
  1136. Str(Single(Extended(Value)):0:Digits, Result);
  1137. fvCurrency:
  1138. {$ifdef FPC_HAS_STR_CURRENCY}
  1139. Str(Currency(Value):0:Digits, Result);
  1140. {$else}
  1141. Str(Extended(Currency(Value)):0:Digits, Result);
  1142. {$endif FPC_HAS_STR_CURRENCY}
  1143. else
  1144. Str(Extended(Value):0:Digits, Result);
  1145. end;
  1146. If Result[1] = ' ' Then
  1147. System.Delete(Result, 1, 1);
  1148. P := Pos('.', Result);
  1149. If P <> 0 Then Result[P] := DS;
  1150. End;
  1151. ffNumber:
  1152. Begin
  1153. If Digits = -1 Then Digits := 2
  1154. Else If Digits > maxdigits Then Digits := maxdigits;
  1155. case ValueType of
  1156. fvDouble:
  1157. Str(Double(Extended(Value)):0:Digits, Result);
  1158. fvSingle:
  1159. Str(Single(Extended(Value)):0:Digits, Result);
  1160. fvCurrency:
  1161. {$ifdef FPC_HAS_STR_CURRENCY}
  1162. Str(Currency(Value):0:Digits, Result);
  1163. {$else}
  1164. Str(Extended(Currency(Value)):0:Digits, Result);
  1165. {$endif FPC_HAS_STR_CURRENCY}
  1166. else
  1167. Str(Extended(Value):0:Digits, Result);
  1168. end;
  1169. If Result[1] = ' ' Then System.Delete(Result, 1, 1);
  1170. P := Pos('.', Result);
  1171. If P <> 0 Then
  1172. Result[P] := DS
  1173. else
  1174. P := Length(Result)+1;
  1175. Dec(P, 3);
  1176. While (P > 1) Do
  1177. Begin
  1178. If (Result[P - 1] <> '-') And (FormatSettings.ThousandSeparator <> #0) Then
  1179. Insert(FormatSettings.ThousandSeparator, Result, P);
  1180. Dec(P, 3);
  1181. End;
  1182. End;
  1183. ffCurrency:
  1184. Begin
  1185. If Digits = -1 Then Digits := FormatSettings.CurrencyDecimals
  1186. Else If Digits > 18 Then Digits := 18;
  1187. case ValueType of
  1188. fvDouble:
  1189. Str(Double(Extended(Value)):0:Digits, Result);
  1190. fvSingle:
  1191. Str(Single(Extended(Value)):0:Digits, Result);
  1192. fvCurrency:
  1193. {$ifdef FPC_HAS_STR_CURRENCY}
  1194. Str(Currency(Value):0:Digits, Result);
  1195. {$else}
  1196. Str(Extended(Currency(Value)):0:Digits, Result);
  1197. {$endif FPC_HAS_STR_CURRENCY}
  1198. else
  1199. Str(Extended(Value):0:Digits, Result);
  1200. end;
  1201. Negative:=Result[1] = '-';
  1202. if Negative then
  1203. System.Delete(Result, 1, 1);
  1204. P := Pos('.', Result);
  1205. If P <> 0 Then Result[P] := DS;
  1206. Dec(P, 3);
  1207. While (P > 1) Do
  1208. Begin
  1209. If FormatSettings.ThousandSeparator<>#0 Then
  1210. Insert(FormatSettings.ThousandSeparator, Result, P);
  1211. Dec(P, 3);
  1212. End;
  1213. if (length(Result) > 1) and Negative then
  1214. Negative := not RemoveLeadingNegativeSign(Result);
  1215. If Not Negative Then
  1216. Begin
  1217. Case FormatSettings.CurrencyFormat Of
  1218. 0: Result := FormatSettings.CurrencyString + Result;
  1219. 1: Result := Result + FormatSettings.CurrencyString;
  1220. 2: Result := FormatSettings.CurrencyString + ' ' + Result;
  1221. 3: Result := Result + ' ' + FormatSettings.CurrencyString;
  1222. End
  1223. End
  1224. Else
  1225. Begin
  1226. Case FormatSettings.NegCurrFormat Of
  1227. 0: Result := '(' + FormatSettings.CurrencyString + Result + ')';
  1228. 1: Result := '-' + FormatSettings.CurrencyString + Result;
  1229. 2: Result := FormatSettings.CurrencyString + '-' + Result;
  1230. 3: Result := FormatSettings.CurrencyString + Result + '-';
  1231. 4: Result := '(' + Result + FormatSettings.CurrencyString + ')';
  1232. 5: Result := '-' + Result + FormatSettings.CurrencyString;
  1233. 6: Result := Result + '-' + FormatSettings.CurrencyString;
  1234. 7: Result := Result + FormatSettings.CurrencyString + '-';
  1235. 8: Result := '-' + Result + ' ' + FormatSettings.CurrencyString;
  1236. 9: Result := '-' + FormatSettings.CurrencyString + ' ' + Result;
  1237. 10: Result := Result + ' ' + FormatSettings.CurrencyString + '-';
  1238. 11: Result := FormatSettings.CurrencyString + ' ' + Result + '-';
  1239. 12: Result := FormatSettings.CurrencyString + ' ' + '-' + Result;
  1240. 13: Result := Result + '-' + ' ' + FormatSettings.CurrencyString;
  1241. 14: Result := '(' + FormatSettings.CurrencyString + ' ' + Result + ')';
  1242. 15: Result := '(' + Result + ' ' + FormatSettings.CurrencyString + ')';
  1243. End;
  1244. End;
  1245. End;
  1246. End;
  1247. if not (format in [ffCurrency]) and (length(Result) > 1) and (Result[1] = '-') then
  1248. RemoveLeadingNegativeSign(Result);
  1249. End;
  1250. {$ifdef FPC_HAS_TYPE_EXTENDED}
  1251. Function FloatToStr(Value: Extended; Const FormatSettings: TFormatSettings): String;
  1252. Begin
  1253. Result := FloatToStrFIntl(Value, ffGeneral, 15, 0, fvExtended,FormatSettings);
  1254. End;
  1255. Function FloatToStr(Value: Extended): String;
  1256. begin
  1257. Result:=FloatToStr(Value,DefaultFormatSettings);
  1258. end;
  1259. {$endif FPC_HAS_TYPE_EXTENDED}
  1260. Function FloatToStr(Value: Currency; Const FormatSettings: TFormatSettings): String;
  1261. Begin
  1262. Result := FloatToStrFIntl(Value, ffGeneral, 15, 0, fvCurrency,FormatSettings);
  1263. End;
  1264. Function FloatToStr(Value: Currency): String;
  1265. begin
  1266. Result:=FloatToStr(Value,DefaultFormatSettings);
  1267. end;
  1268. Function FloatToStr(Value: Double; Const FormatSettings: TFormatSettings): String;
  1269. var
  1270. e: Extended;
  1271. Begin
  1272. e := Value;
  1273. Result := FloatToStrFIntl(e, ffGeneral, 15, 0, fvDouble,FormatSettings);
  1274. End;
  1275. Function FloatToStr(Value: Double): String;
  1276. begin
  1277. Result:=FloatToStr(Value,DefaultFormatSettings);
  1278. end;
  1279. Function FloatToStr(Value: Single; Const FormatSettings: TFormatSettings): String;
  1280. var
  1281. e: Extended;
  1282. Begin
  1283. e := Value;
  1284. Result := FloatToStrFIntl(e, ffGeneral, 15, 0, fvSingle,FormatSettings);
  1285. End;
  1286. Function FloatToStr(Value: Single): String;
  1287. begin
  1288. Result:=FloatToStr(Value,DefaultFormatSettings);
  1289. end;
  1290. Function FloatToStr(Value: Comp; Const FormatSettings: TFormatSettings): String;
  1291. var
  1292. e: Extended;
  1293. Begin
  1294. e := Value;
  1295. Result := FloatToStrFIntl(e, ffGeneral, 15, 0, fvComp,FormatSettings);
  1296. End;
  1297. Function FloatToStr(Value: Comp): String;
  1298. begin
  1299. Result:=FloatToStr(Value,DefaultFormatSettings);
  1300. end;
  1301. {$ifndef FPC_COMP_IS_INT64}
  1302. Function FloatToStr(Value: Int64): String;
  1303. begin
  1304. Result:=FloatToStr(Value,DefaultFormatSettings);
  1305. end;
  1306. Function FloatToStr(Value: Int64; Const FormatSettings: TFormatSettings): String;
  1307. var
  1308. e: Extended;
  1309. Begin
  1310. e := Comp(Value);
  1311. Result := FloatToStrFIntl(e, ffGeneral, 15, 0, fvComp,FormatSettings);
  1312. End;
  1313. {$endif FPC_COMP_IS_INT64}
  1314. Function FloatToText(Buffer: PChar; Value: Extended; format: TFloatFormat; Precision, Digits: Integer; Const FormatSettings: TFormatSettings): Longint;
  1315. Var
  1316. Tmp: String[40];
  1317. Begin
  1318. Tmp := FloatToStrF(Value, format, Precision, Digits,FormatSettings);
  1319. Result := Length(Tmp);
  1320. Move(Tmp[1], Buffer[0], Result);
  1321. End;
  1322. Function FloatToText(Buffer: PChar; Value: Extended; format: TFloatFormat; Precision, Digits: Integer): Longint;
  1323. begin
  1324. Result:=FloatToText(Buffer,Value,Format,Precision,Digits,DefaultFormatSettings);
  1325. end;
  1326. {$ifdef FPC_HAS_TYPE_EXTENDED}
  1327. Function FloatToStrF(Value: Extended; format: TFloatFormat; Precision, Digits: Integer; Const FormatSettings: TFormatSettings): String;
  1328. begin
  1329. Result := FloatToStrFIntl(value,format,precision,digits,fvExtended,FormatSettings);
  1330. end;
  1331. Function FloatToStrF(Value: Extended; format: TFloatFormat; Precision, Digits: Integer): String;
  1332. begin
  1333. Result:=FloatToStrF(Value,Format,Precision,Digits,DefaultFormatSettings);
  1334. end;
  1335. {$endif}
  1336. Function FloatToStrF(Value: Currency; format: TFloatFormat; Precision, Digits: Integer; Const FormatSettings: TFormatSettings): String;
  1337. begin
  1338. Result := FloatToStrFIntl(value,format,precision,digits,fvCurrency,FormatSettings);
  1339. end;
  1340. Function FloatToStrF(Value: Currency; format: TFloatFormat; Precision, Digits: Integer): String;
  1341. begin
  1342. Result:=FloatToStrF(Value,format,Precision,Digits,DefaultFormatSettings);
  1343. end;
  1344. Function FloatToStrF(Value: Double; format: TFloatFormat; Precision, Digits: Integer; Const FormatSettings: TFormatSettings): String;
  1345. var
  1346. e: Extended;
  1347. begin
  1348. e := Value;
  1349. result := FloatToStrFIntl(e,format,precision,digits,fvDouble,FormatSettings);
  1350. end;
  1351. Function FloatToStrF(Value: Double; format: TFloatFormat; Precision, Digits: Integer): String;
  1352. begin
  1353. Result:= FloatToStrF(Value,Format,Precision,Digits,DefaultFormatSettings);
  1354. end;
  1355. Function FloatToStrF(Value: Single; format: TFloatFormat; Precision, Digits: Integer; Const FormatSettings: TFormatSettings): String;
  1356. var
  1357. e: Extended;
  1358. begin
  1359. e:=Value;
  1360. result := FloatToStrFIntl(e,format,precision,digits,fvSingle,FormatSettings);
  1361. end;
  1362. Function FloatToStrF(Value: Single; format: TFloatFormat; Precision, Digits: Integer): String;
  1363. begin
  1364. Result:= FloatToStrF(Value,Format,Precision,Digits,DefaultFormatSettings);
  1365. end;
  1366. Function FloatToStrF(Value: Comp; format: TFloatFormat; Precision, Digits: Integer; Const FormatSettings: TFormatSettings): String;
  1367. var
  1368. e: Extended;
  1369. begin
  1370. e := Value;
  1371. Result := FloatToStrFIntl(e,format,precision,digits,fvComp,FormatSettings);
  1372. end;
  1373. Function FloatToStrF(Value: Comp; format: TFloatFormat; Precision, Digits: Integer): String;
  1374. begin
  1375. Result:=FloatToStrF(Value,Format,Precision,Digits,DefaultFormatSettings);
  1376. end;
  1377. {$ifndef FPC_COMP_IS_INT64}
  1378. Function FloatToStrF(Value: Int64; format: TFloatFormat; Precision, Digits: Integer; Const FormatSettings: TFormatSettings): String;
  1379. var
  1380. e: Extended;
  1381. begin
  1382. e := Comp(Value);
  1383. result := FloatToStrFIntl(e,format,precision,digits,fvComp,FormatSettings);
  1384. end;
  1385. Function FloatToStrF(Value: Int64; format: TFloatFormat; Precision, Digits: Integer): String;
  1386. begin
  1387. Result:=FloatToStrF(Value,Format,Precision,Digits,DefaultFormatSettings);
  1388. end;
  1389. {$endif FPC_COMP_IS_INT64}
  1390. Function CurrToStrF(Value: Currency; Format: TFloatFormat; Digits: Integer; Const FormatSettings: TFormatSettings): string;
  1391. begin
  1392. result:=FloatToStrF(Value,Format,19,Digits,FormatSettings);
  1393. end;
  1394. Function CurrToStrF(Value: Currency; Format: TFloatFormat; Digits: Integer): string;
  1395. begin
  1396. Result:=CurrToStrF(Value,Format,Digits,DefaultFormatSettings);
  1397. end;
  1398. Function FloatToDateTime (Const Value : Extended) : TDateTime;
  1399. begin
  1400. If (Value<MinDateTime) or (Value>MaxDateTime) then
  1401. Raise EConvertError.CreateFmt (SInvalidDateTime,[Value]);
  1402. Result:=Value;
  1403. end;
  1404. function TryFloatToCurr(const Value: Extended; var AResult: Currency): Boolean;
  1405. begin
  1406. Result:=(Value>=MinCurrency) and (Value<=MaxCurrency);
  1407. if Result then
  1408. AResult := Value;
  1409. end;
  1410. function FloatToCurr(const Value: Extended): Currency;
  1411. begin
  1412. if not TryFloatToCurr(Value, Result) then
  1413. Raise EConvertError.CreateFmt(SInvalidCurrency, [FloatToStr(Value)]);
  1414. end;
  1415. Function CurrToStr(Value: Currency): string;
  1416. begin
  1417. Result:=FloatToStrF(Value,ffGeneral,-1,0);
  1418. end;
  1419. Function CurrToStr(Value: Currency; Const FormatSettings: TFormatSettings): string;
  1420. begin
  1421. Result:=FloatToStrF(Value,ffGeneral,-1,0,FormatSettings);
  1422. end;
  1423. function StrToCurr(const S: string): Currency;
  1424. begin
  1425. if not TextToFloat(PChar(pointer(S)), Result, fvCurrency) then
  1426. Raise EConvertError.createfmt(SInValidFLoat,[S]);
  1427. end;
  1428. function StrToCurr(const S: string; Const FormatSettings: TFormatSettings): Currency;
  1429. begin
  1430. if not TextToFloat(PChar(pointer(S)), Result, fvCurrency,FormatSettings) then
  1431. Raise EConvertError.createfmt(SInValidFLoat,[S]);
  1432. end;
  1433. Function TryStrToCurr(Const S : String; Out Value: Currency): Boolean;
  1434. Begin
  1435. Result := TextToFloat(PChar(pointer(S)), Value, fvCurrency);
  1436. End;
  1437. function TryStrToCurr(const S: string;Out Value : Currency; Const FormatSettings: TFormatSettings): Boolean;
  1438. Begin
  1439. Result := TextToFloat(PChar(pointer(S)), Value, fvCurrency,FormatSettings);
  1440. End;
  1441. function StrToCurrDef(const S: string; Default : Currency): Currency;
  1442. begin
  1443. if not TextToFloat(PChar(pointer(S)), Result, fvCurrency) then
  1444. Result:=Default;
  1445. end;
  1446. function StrToCurrDef(const S: string; Default : Currency; Const FormatSettings: TFormatSettings): Currency;
  1447. begin
  1448. if not TextToFloat(PChar(pointer(S)), Result, fvCurrency,FormatSettings) then
  1449. Result:=Default;
  1450. end;
  1451. {$endif FPUNONE}
  1452. function AnsiDequotedStr(const S: string; AQuote: Char): string;
  1453. var p : pchar;
  1454. begin
  1455. p:=pchar(pointer(s)); // work around CONST. Ansiextract is safe for nil
  1456. result:=AnsiExtractquotedStr(p,AQuote);
  1457. if result='' Then
  1458. result:=s;
  1459. end;
  1460. function StrToBool(const S: string): Boolean;
  1461. begin
  1462. if not(TryStrToBool(S,Result)) then
  1463. Raise EConvertError.CreateFmt(SInvalidBoolean,[S]);
  1464. end;
  1465. procedure CheckBoolStrs;
  1466. begin
  1467. If Length(TrueBoolStrs)=0 then
  1468. begin
  1469. SetLength(TrueBoolStrs,1);
  1470. TrueBoolStrs[0]:='True';
  1471. end;
  1472. If Length(FalseBoolStrs)=0 then
  1473. begin
  1474. SetLength(FalseBoolStrs,1);
  1475. FalseBoolStrs[0]:='False';
  1476. end;
  1477. end;
  1478. function BoolToStr(B: Boolean;UseBoolStrs:Boolean=False): string;
  1479. begin
  1480. if UseBoolStrs Then
  1481. begin
  1482. CheckBoolStrs;
  1483. if B then
  1484. Result:=TrueBoolStrs[0]
  1485. else
  1486. Result:=FalseBoolStrs[0];
  1487. end
  1488. else
  1489. If B then
  1490. Result:='-1'
  1491. else
  1492. Result:='0';
  1493. end;
  1494. // from textmode IDE util funcs.
  1495. function BoolToStr(B: boolean; const TrueS, FalseS: string): string;
  1496. begin
  1497. if B then Result:=TrueS else BoolToStr:=FalseS;
  1498. end;
  1499. function StrToBoolDef(const S: string; Default: Boolean): Boolean;
  1500. begin
  1501. if not(TryStrToBool(S,Result)) then
  1502. Result:=Default;
  1503. end;
  1504. function TryStrToBool(const S: string; out Value: Boolean): Boolean;
  1505. Var
  1506. Temp : String;
  1507. I : Longint;
  1508. {$ifdef FPUNONE}
  1509. D : Longint;
  1510. {$else}
  1511. D : Double;
  1512. {$endif}
  1513. Code: word;
  1514. begin
  1515. Temp:=upcase(S);
  1516. Val(temp,D,code);
  1517. Result:=true;
  1518. If Code=0 then
  1519. {$ifdef FPUNONE}
  1520. Value:=(D<>0)
  1521. {$else}
  1522. Value:=(D<>0.0)
  1523. {$endif}
  1524. else
  1525. begin
  1526. CheckBoolStrs;
  1527. for I:=low(TrueBoolStrs) to High(TrueBoolStrs) do
  1528. if Temp=upcase(TrueBoolStrs[I]) then
  1529. begin
  1530. Value:=true;
  1531. exit;
  1532. end;
  1533. for I:=low(FalseBoolStrs) to High(FalseBoolStrs) do
  1534. if Temp=upcase(FalseBoolStrs[I]) then
  1535. begin
  1536. Value:=false;
  1537. exit;
  1538. end;
  1539. Result:=false;
  1540. end;
  1541. end;
  1542. {$ifndef FPUNONE}
  1543. Function FloatToTextFmt(Buffer: PChar; Value: Extended; format: PChar): Integer;
  1544. begin
  1545. Result:=FloatToTextFmt(Buffer,Value,Format,DefaultFormatSettings);
  1546. end;
  1547. Function FloatToTextFmt(Buffer: PChar; Value: Extended; format: PChar;FormatSettings : TFormatSettings): Integer;
  1548. Var
  1549. Digits: String[40]; { String Of Digits }
  1550. Exponent: String[8]; { Exponent strin }
  1551. FmtStart, FmtStop: PChar; { Start And End Of relevant part }
  1552. { Of format String }
  1553. ExpFmt, ExpSize: Integer; { Type And Length Of }
  1554. { exponential format chosen }
  1555. Placehold: Array[1..4] Of Integer; { Number Of placeholders In All }
  1556. { four Sections }
  1557. thousand: Boolean; { thousand separators? }
  1558. UnexpectedDigits: Integer; { Number Of unexpected Digits that }
  1559. { have To be inserted before the }
  1560. { First placeholder. }
  1561. DigitExponent: Integer; { Exponent Of First digit In }
  1562. { Digits Array. }
  1563. { Find end of format section starting at P. False, if empty }
  1564. Function GetSectionEnd(Var P: PChar): Boolean;
  1565. Var
  1566. C: Char;
  1567. SQ, DQ: Boolean;
  1568. Begin
  1569. Result := False;
  1570. SQ := False;
  1571. DQ := False;
  1572. C := P[0];
  1573. While (C<>#0) And ((C<>';') Or SQ Or DQ) Do
  1574. Begin
  1575. Result := True;
  1576. Case C Of
  1577. #34: If Not SQ Then DQ := Not DQ;
  1578. #39: If Not DQ Then SQ := Not SQ;
  1579. End;
  1580. Inc(P);
  1581. C := P[0];
  1582. End;
  1583. End;
  1584. { Find start and end of format section to apply. If section doesn't exist,
  1585. use section 1. If section 2 is used, the sign of value is ignored. }
  1586. Procedure GetSectionRange(section: Integer);
  1587. Var
  1588. Sec: Array[1..3] Of PChar;
  1589. SecOk: Array[1..3] Of Boolean;
  1590. Begin
  1591. Sec[1] := format;
  1592. SecOk[1] := GetSectionEnd(Sec[1]);
  1593. If section > 1 Then
  1594. Begin
  1595. Sec[2] := Sec[1];
  1596. If Sec[2][0] <> #0 Then
  1597. Inc(Sec[2]);
  1598. SecOk[2] := GetSectionEnd(Sec[2]);
  1599. If section > 2 Then
  1600. Begin
  1601. Sec[3] := Sec[2];
  1602. If Sec[3][0] <> #0 Then
  1603. Inc(Sec[3]);
  1604. SecOk[3] := GetSectionEnd(Sec[3]);
  1605. End;
  1606. End;
  1607. If Not SecOk[1] Then
  1608. FmtStart := Nil
  1609. Else
  1610. Begin
  1611. If Not SecOk[section] Then
  1612. section := 1
  1613. Else If section = 2 Then
  1614. Value := -Value; { Remove sign }
  1615. If section = 1 Then FmtStart := format Else
  1616. Begin
  1617. FmtStart := Sec[section - 1];
  1618. Inc(FmtStart);
  1619. End;
  1620. FmtStop := Sec[section];
  1621. End;
  1622. End;
  1623. { Find format section ranging from FmtStart to FmtStop. }
  1624. Procedure GetFormatOptions;
  1625. Var
  1626. Fmt: PChar;
  1627. SQ, DQ: Boolean;
  1628. area: Integer;
  1629. Begin
  1630. SQ := False;
  1631. DQ := False;
  1632. Fmt := FmtStart;
  1633. ExpFmt := 0;
  1634. area := 1;
  1635. thousand := False;
  1636. Placehold[1] := 0;
  1637. Placehold[2] := 0;
  1638. Placehold[3] := 0;
  1639. Placehold[4] := 0;
  1640. While Fmt < FmtStop Do
  1641. Begin
  1642. Case Fmt[0] Of
  1643. #34:
  1644. Begin
  1645. If Not SQ Then
  1646. DQ := Not DQ;
  1647. Inc(Fmt);
  1648. End;
  1649. #39:
  1650. Begin
  1651. If Not DQ Then
  1652. SQ := Not SQ;
  1653. Inc(Fmt);
  1654. End;
  1655. Else
  1656. { if not in quotes, then interpret}
  1657. If Not (SQ Or DQ) Then
  1658. Begin
  1659. Case Fmt[0] Of
  1660. '0':
  1661. Begin
  1662. Case area Of
  1663. 1:
  1664. area := 2;
  1665. 4:
  1666. Begin
  1667. area := 3;
  1668. Inc(Placehold[3], Placehold[4]);
  1669. Placehold[4] := 0;
  1670. End;
  1671. End;
  1672. Inc(Placehold[area]);
  1673. Inc(Fmt);
  1674. End;
  1675. '#':
  1676. Begin
  1677. If area=3 Then
  1678. area:=4;
  1679. Inc(Placehold[area]);
  1680. Inc(Fmt);
  1681. End;
  1682. '.':
  1683. Begin
  1684. If area<3 Then
  1685. area:=3;
  1686. Inc(Fmt);
  1687. End;
  1688. ',':
  1689. Begin
  1690. thousand := DefaultFormatSettings.ThousandSeparator<>#0;
  1691. Inc(Fmt);
  1692. End;
  1693. 'e', 'E':
  1694. If ExpFmt = 0 Then
  1695. Begin
  1696. If (Fmt[0]='E') Then
  1697. ExpFmt:=1
  1698. Else
  1699. ExpFmt := 3;
  1700. Inc(Fmt);
  1701. If (Fmt<FmtStop) Then
  1702. Begin
  1703. Case Fmt[0] Of
  1704. '+':
  1705. Begin
  1706. End;
  1707. '-':
  1708. Inc(ExpFmt);
  1709. Else
  1710. ExpFmt := 0;
  1711. End;
  1712. If ExpFmt <> 0 Then
  1713. Begin
  1714. Inc(Fmt);
  1715. ExpSize := 0;
  1716. While (Fmt<FmtStop) And
  1717. (ExpSize<4) And
  1718. (Fmt[0] In ['0'..'9']) Do
  1719. Begin
  1720. Inc(ExpSize);
  1721. Inc(Fmt);
  1722. End;
  1723. End;
  1724. End
  1725. Else
  1726. { just e/E without subsequent +/- -> not exponential format,
  1727. but we have to simply print e/E literally }
  1728. ExpFmt:=0;
  1729. End
  1730. Else
  1731. Inc(Fmt);
  1732. Else { Case }
  1733. Inc(Fmt);
  1734. End; { Case }
  1735. End { Begin }
  1736. Else
  1737. Inc(Fmt);
  1738. End; { Case }
  1739. End; { While .. Begin }
  1740. End;
  1741. Procedure FloatToStr;
  1742. Var
  1743. I, J, Exp, Width, Decimals, DecimalPoint, len: Integer;
  1744. Begin
  1745. If ExpFmt = 0 Then
  1746. Begin
  1747. { Fixpoint }
  1748. Decimals:=Placehold[3]+Placehold[4];
  1749. Width:=Placehold[1]+Placehold[2]+Decimals;
  1750. If (Decimals=0) Then
  1751. Str(Value:Width:0,Digits)
  1752. Else if Value>=0 then
  1753. Str(Value:Width+1:Decimals,Digits)
  1754. else
  1755. Str(Value:Width+2:Decimals,Digits);
  1756. len:=Length(Digits);
  1757. { Find the decimal point }
  1758. If (Decimals=0) Then
  1759. DecimalPoint:=len+1
  1760. Else
  1761. DecimalPoint:=len-Decimals;
  1762. { If value is very small, and no decimal places
  1763. are desired, remove the leading 0. }
  1764. If (Abs(Value) < 1) And (Placehold[2] = 0) Then
  1765. Begin
  1766. If (Placehold[1]=0) Then
  1767. Delete(Digits,DecimalPoint-1,1)
  1768. Else
  1769. Digits[DecimalPoint-1]:=' ';
  1770. End;
  1771. { Convert optional zeroes to spaces. }
  1772. I:=len;
  1773. J:=DecimalPoint+Placehold[3];
  1774. While (I>J) And (Digits[I]='0') Do
  1775. Begin
  1776. Digits[I] := ' ';
  1777. Dec(I);
  1778. End;
  1779. { If integer value and no obligatory decimal
  1780. places, remove decimal point. }
  1781. If (DecimalPoint < len) And (Digits[DecimalPoint + 1] = ' ') Then
  1782. Digits[DecimalPoint] := ' ';
  1783. { Convert spaces left from obligatory decimal point to zeroes.
  1784. MVC : If - sign is encountered, replace it too, and put at position 1}
  1785. I:=DecimalPoint-Placehold[2];
  1786. J:=0;
  1787. While (I<DecimalPoint) And (Digits[I] in [' ','-']) Do
  1788. Begin
  1789. If Digits[i]='-' then
  1790. J:=I;
  1791. Digits[I] := '0';
  1792. Inc(I);
  1793. End;
  1794. If (J<>0) then
  1795. Digits[1]:='-';
  1796. Exp := 0;
  1797. End
  1798. Else
  1799. Begin
  1800. { Scientific: exactly <Width> Digits With <Precision> Decimals
  1801. And adjusted Exponent. }
  1802. If Placehold[1]+Placehold[2]=0 Then
  1803. Placehold[1]:=1;
  1804. Decimals := Placehold[3] + Placehold[4];
  1805. Width:=Placehold[1]+Placehold[2]+Decimals;
  1806. { depending on the maximally supported precision, the exponent field }
  1807. { is longer/shorter }
  1808. {$ifdef FPC_HAS_TYPE_EXTENDED}
  1809. Str(Value:Width+8,Digits);
  1810. {$else FPC_HAS_TYPE_EXTENDED}
  1811. {$ifdef FPC_HAS_TYPE_DOUBLE}
  1812. Str(Value:Width+7,Digits);
  1813. {$else FPC_HAS_TYPE_DOUBLE}
  1814. Str(Value:Width+6,Digits);
  1815. {$endif FPC_HAS_TYPE_DOUBLE}
  1816. {$endif FPC_HAS_TYPE_EXTENDED}
  1817. { Find and cut out exponent. Always the
  1818. last 6 characters in the string.
  1819. -> 0000E+0000
  1820. *** No, not always the last 6 characters, this depends on
  1821. the maximally supported precision (JM)}
  1822. I:=Pos('E',Digits);
  1823. Val(Copy(Digits,I+1,255),Exp,J);
  1824. Exp:=Exp+1-(Placehold[1]+Placehold[2]);
  1825. Delete(Digits, I, 255);
  1826. { Str() always returns at least one digit after the decimal point.
  1827. If we don't want it, we have to remove it. }
  1828. If (Decimals=0) And (Placehold[1]+Placehold[2]<= 1) Then
  1829. Begin
  1830. If (Digits[4]>='5') Then
  1831. Begin
  1832. Inc(Digits[2]);
  1833. If (Digits[2]>'9') Then
  1834. Begin
  1835. Digits[2] := '1';
  1836. Inc(Exp);
  1837. End;
  1838. End;
  1839. Delete(Digits, 3, 2);
  1840. DecimalPoint := Length(Digits) + 1;
  1841. End
  1842. Else
  1843. Begin
  1844. { Move decimal point at the desired position }
  1845. Delete(Digits, 3, 1);
  1846. DecimalPoint:=2+Placehold[1]+Placehold[2];
  1847. If (Decimals<>0) Then
  1848. Insert('.',Digits,DecimalPoint);
  1849. End;
  1850. { Convert optional zeroes to spaces. }
  1851. I := Length(Digits);
  1852. J := DecimalPoint + Placehold[3];
  1853. While (I > J) And (Digits[I] = '0') Do
  1854. Begin
  1855. Digits[I] := ' ';
  1856. Dec(I);
  1857. End;
  1858. { If integer number and no obligatory decimal paces, remove decimal point }
  1859. If (DecimalPoint<Length(Digits)) And
  1860. (Digits[DecimalPoint+1]=' ') Then
  1861. Digits[DecimalPoint]:=' ';
  1862. If (Digits[1]=' ') Then
  1863. Begin
  1864. Delete(Digits, 1, 1);
  1865. Dec(DecimalPoint);
  1866. End;
  1867. { Calculate exponent string }
  1868. Str(Abs(Exp), Exponent);
  1869. While Length(Exponent)<ExpSize Do
  1870. Insert('0',Exponent,1);
  1871. If Exp >= 0 Then
  1872. Begin
  1873. If (ExpFmt In [1,3]) Then
  1874. Insert('+', Exponent, 1);
  1875. End
  1876. Else
  1877. Insert('-',Exponent,1);
  1878. If (ExpFmt<3) Then
  1879. Insert('E',Exponent,1)
  1880. Else
  1881. Insert('e',Exponent,1);
  1882. End;
  1883. DigitExponent:=DecimalPoint-2;
  1884. If (Digits[1]='-') Then
  1885. Dec(DigitExponent);
  1886. UnexpectedDigits:=DecimalPoint-1-(Placehold[1]+Placehold[2]);
  1887. End;
  1888. Function PutResult: LongInt;
  1889. Var
  1890. SQ, DQ: Boolean;
  1891. Fmt, Buf: PChar;
  1892. Dig, N: Integer;
  1893. Begin
  1894. SQ := False;
  1895. DQ := False;
  1896. Fmt := FmtStart;
  1897. Buf := Buffer;
  1898. Dig := 1;
  1899. While (Fmt<FmtStop) Do
  1900. Begin
  1901. //Write(Fmt[0]);
  1902. Case Fmt[0] Of
  1903. #34:
  1904. Begin
  1905. If Not SQ Then
  1906. DQ := Not DQ;
  1907. Inc(Fmt);
  1908. End;
  1909. #39:
  1910. Begin
  1911. If Not DQ Then
  1912. SQ := Not SQ;
  1913. Inc(Fmt);
  1914. End;
  1915. Else
  1916. If Not (SQ Or DQ) Then
  1917. Begin
  1918. Case Fmt[0] Of
  1919. '0', '#', '.':
  1920. Begin
  1921. If (Dig=1) And (UnexpectedDigits>0) Then
  1922. Begin
  1923. { Everything unexpected is written before the first digit }
  1924. For N := 1 To UnexpectedDigits Do
  1925. Begin
  1926. if (Digits[N]<>' ') Then
  1927. begin
  1928. Buf[0] := Digits[N];
  1929. Inc(Buf);
  1930. end;
  1931. If thousand And (Digits[N]<>'-') Then
  1932. Begin
  1933. If (DigitExponent Mod 3 = 0) And (DigitExponent>0) Then
  1934. Begin
  1935. Buf[0] := FormatSettings.ThousandSeparator;
  1936. Inc(Buf);
  1937. End;
  1938. Dec(DigitExponent);
  1939. End;
  1940. End;
  1941. Inc(Dig, UnexpectedDigits);
  1942. End;
  1943. If (Digits[Dig]<>' ') Then
  1944. Begin
  1945. If (Digits[Dig]='.') Then
  1946. Buf[0] := FormatSettings.DecimalSeparator
  1947. Else
  1948. Buf[0] := Digits[Dig];
  1949. Inc(Buf);
  1950. If thousand And (DigitExponent Mod 3 = 0) And (DigitExponent > 0) and (Digits[Dig]<>'-') Then
  1951. Begin
  1952. Buf[0] := FormatSettings.ThousandSeparator;
  1953. Inc(Buf);
  1954. End;
  1955. End;
  1956. Inc(Dig);
  1957. Dec(DigitExponent);
  1958. Inc(Fmt);
  1959. End;
  1960. 'e', 'E':
  1961. Begin
  1962. If ExpFmt <> 0 Then
  1963. Begin
  1964. Inc(Fmt);
  1965. If Fmt < FmtStop Then
  1966. Begin
  1967. If Fmt[0] In ['+', '-'] Then
  1968. Begin
  1969. Inc(Fmt, ExpSize);
  1970. For N:=1 To Length(Exponent) Do
  1971. Buf[N-1] := Exponent[N];
  1972. Inc(Buf,Length(Exponent));
  1973. ExpFmt:=0;
  1974. End;
  1975. Inc(Fmt);
  1976. End;
  1977. End
  1978. Else
  1979. Begin
  1980. { No legal exponential format.
  1981. Simply write the 'E' to the result. }
  1982. Buf[0] := Fmt[0];
  1983. Inc(Buf);
  1984. Inc(Fmt);
  1985. End;
  1986. End;
  1987. Else { Case }
  1988. { Usual character }
  1989. If (Fmt[0]<>',') Then
  1990. Begin
  1991. Buf[0] := Fmt[0];
  1992. Inc(Buf);
  1993. End;
  1994. Inc(Fmt);
  1995. End; { Case }
  1996. End
  1997. Else { IF }
  1998. Begin
  1999. { Character inside single or double quotes }
  2000. Buf[0] := Fmt[0];
  2001. Inc(Buf);
  2002. Inc(Fmt);
  2003. End;
  2004. End; { Case }
  2005. End; { While .. Begin }
  2006. Result:=PtrUInt(Buf)-PtrUInt(Buffer);
  2007. End;
  2008. Begin
  2009. If (Value>0) Then
  2010. GetSectionRange(1)
  2011. Else If (Value<0) Then
  2012. GetSectionRange(2)
  2013. Else
  2014. GetSectionRange(3);
  2015. If FmtStart = Nil Then
  2016. Begin
  2017. Result := FloatToText(Buffer, Value, ffGeneral, 15, 4, FormatSettings);
  2018. End
  2019. Else
  2020. Begin
  2021. GetFormatOptions;
  2022. If (ExpFmt = 0) And (Abs(Value) >= 1E18) Then
  2023. Result := FloatToText(Buffer, Value, ffGeneral, 15, 4, FormatSettings)
  2024. Else
  2025. Begin
  2026. FloatToStr;
  2027. Result := PutResult;
  2028. End;
  2029. End;
  2030. End;
  2031. Procedure FloatToDecimal(Out Result: TFloatRec; const Value; ValueType: TFloatValue; Precision, Decimals : integer);
  2032. var
  2033. Buffer: String[254]; //Though str func returns only 25 chars, this might change in the future
  2034. InfNan: string[3];
  2035. Error, N, L, Start, C: Integer;
  2036. GotNonZeroBeforeDot, BeforeDot : boolean;
  2037. begin
  2038. case ValueType of
  2039. fvExtended:
  2040. Str(Extended(Value):25, Buffer);
  2041. fvDouble,
  2042. fvReal:
  2043. Str(Double(Value):23, Buffer);
  2044. fvSingle:
  2045. Str(Single(Value):16, Buffer);
  2046. fvCurrency:
  2047. Str(Currency(Value):25, Buffer);
  2048. fvComp:
  2049. Str(Currency(Value):23, Buffer);
  2050. end;
  2051. N := 1;
  2052. L := Byte(Buffer[0]);
  2053. while Buffer[N]=' ' do
  2054. Inc(N);
  2055. Result.Negative := (Buffer[N] = '-');
  2056. if Result.Negative then
  2057. Inc(N)
  2058. else if (Buffer[N] = '+') then
  2059. inc(N);
  2060. { special cases for Inf and Nan }
  2061. if (L>=N+2) then
  2062. begin
  2063. InfNan:=copy(Buffer,N,3);
  2064. if (InfNan='Inf') then
  2065. begin
  2066. Result.Digits[0]:=#0;
  2067. Result.Exponent:=32767;
  2068. exit
  2069. end;
  2070. if (InfNan='Nan') then
  2071. begin
  2072. Result.Digits[0]:=#0;
  2073. Result.Exponent:=-32768;
  2074. exit
  2075. end;
  2076. end;
  2077. Start := N; //Start of digits
  2078. Result.Exponent := 0; BeforeDot := true;
  2079. GotNonZeroBeforeDot := false;
  2080. while (L>=N) and (Buffer[N]<>'E') do
  2081. begin
  2082. if Buffer[N]='.' then
  2083. BeforeDot := false
  2084. else
  2085. begin
  2086. if BeforeDot then
  2087. begin // Currently this is always 1 char
  2088. Inc(Result.Exponent);
  2089. Result.Digits[N-Start] := Buffer[N];
  2090. if Buffer[N] <> '0' then
  2091. GotNonZeroBeforeDot := true;
  2092. end
  2093. else
  2094. Result.Digits[N-Start-1] := Buffer[N]
  2095. end;
  2096. Inc(N);
  2097. end;
  2098. Inc(N); // Pass through 'E'
  2099. if N<=L then
  2100. begin
  2101. Val(Copy(Buffer, N, L-N+1), C, Error); // Get exponent after 'E'
  2102. Inc(Result.Exponent, C);
  2103. end;
  2104. // Calculate number of digits we have from str
  2105. if BeforeDot then
  2106. N := N - Start - 1
  2107. else
  2108. N := N - Start - 2;
  2109. L := SizeOf(Result.Digits);
  2110. if N<L then
  2111. FillChar(Result.Digits[N], L-N, '0'); //Zero remaining space
  2112. if Decimals + Result.Exponent < Precision Then //After this it is the same as in FloatToDecimal
  2113. N := Decimals + Result.Exponent
  2114. Else
  2115. N := Precision;
  2116. if N >= L Then
  2117. N := L-1;
  2118. if N = 0 Then
  2119. begin
  2120. if Result.Digits[0] >= '5' Then
  2121. begin
  2122. Result.Digits[0] := '1';
  2123. Result.Digits[1] := #0;
  2124. Inc(Result.Exponent);
  2125. end
  2126. Else
  2127. Result.Digits[0] := #0;
  2128. end //N=0
  2129. Else if N > 0 Then
  2130. begin
  2131. if Result.Digits[N] >= '5' Then
  2132. begin
  2133. Repeat
  2134. Result.Digits[N] := #0;
  2135. Dec(N);
  2136. Inc(Result.Digits[N]);
  2137. Until (N = 0) Or (Result.Digits[N] < ':');
  2138. If Result.Digits[0] = ':' Then
  2139. begin
  2140. Result.Digits[0] := '1';
  2141. Inc(Result.Exponent);
  2142. end;
  2143. end
  2144. Else
  2145. begin
  2146. Result.Digits[N] := '0';
  2147. While (N > -1) And (Result.Digits[N] = '0') Do
  2148. begin
  2149. Result.Digits[N] := #0;
  2150. Dec(N);
  2151. end;
  2152. end;
  2153. end //N>0
  2154. Else
  2155. Result.Digits[0] := #0;
  2156. if (Result.Digits[0] = #0) and
  2157. not GotNonZeroBeforeDot then
  2158. begin
  2159. Result.Exponent := 0;
  2160. Result.Negative := False;
  2161. end;
  2162. end;
  2163. Procedure FloatToDecimal(Out Result: TFloatRec; Value: Extended; Precision, Decimals : integer);
  2164. begin
  2165. FloatToDecimal(Result,Value,fvExtended,Precision,Decimals);
  2166. end;
  2167. Function FormatFloat(Const Format : String; Value : Extended; Const FormatSettings: TFormatSettings) : String;
  2168. Var
  2169. buf : Array[0..1024] of char;
  2170. Begin // not changed to pchar(pointer(). Possibly not safe
  2171. Buf[FloatToTextFmt(@Buf[0],Value,Pchar(Format),FormatSettings)]:=#0;
  2172. Result:=StrPas(@Buf[0]);
  2173. End;
  2174. Function FormatFloat(Const format: String; Value: Extended): String;
  2175. begin
  2176. Result:=FormatFloat(Format,Value,DefaultFormatSettings);
  2177. end;
  2178. Function FormatCurr(const Format: string; Value: Currency; Const FormatSettings: TFormatSettings): string;
  2179. begin
  2180. Result := FormatFloat(Format, Value,FormatSettings);
  2181. end;
  2182. function FormatCurr(const Format: string; Value: Currency): string;
  2183. begin
  2184. Result:=FormatCurr(Format,Value,DefaultFormatSettings);
  2185. end;
  2186. {$endif}
  2187. {==============================================================================}
  2188. { extra functions }
  2189. {==============================================================================}
  2190. { LeftStr returns Count left-most characters from S }
  2191. function LeftStr(const S: string; Count: integer): string;
  2192. begin
  2193. result := Copy(S, 1, Count);
  2194. end ;
  2195. { RightStr returns Count right-most characters from S }
  2196. function RightStr(const S: string; Count: integer): string;
  2197. begin
  2198. If Count>Length(S) then
  2199. Count:=Length(S);
  2200. result := Copy(S, 1 + Length(S) - Count, Count);
  2201. end;
  2202. { BCDToInt converts the BCD value Value to an integer }
  2203. function BCDToInt(Value: integer): integer;
  2204. var i, j, digit: integer;
  2205. begin
  2206. result := 0;
  2207. j := 1;
  2208. for i := 0 to SizeOf(Value) shl 1 - 1 do begin
  2209. digit := Value and 15;
  2210. if digit > $9 then
  2211. begin
  2212. if i = 0 then
  2213. begin
  2214. if digit in [$B, $D] then j := -1
  2215. end
  2216. else raise EConvertError.createfmt(SInvalidBCD,[Value]);
  2217. end
  2218. else
  2219. begin
  2220. result := result + j * digit;
  2221. j := j * 10;
  2222. end ;
  2223. Value := Value shr 4;
  2224. end ;
  2225. end ;
  2226. Function LastDelimiter(const Delimiters, S: string): Integer;
  2227. var
  2228. chs: TSysCharSet;
  2229. I: LongInt;
  2230. begin
  2231. chs := [];
  2232. for I := 1 to Length(Delimiters) do
  2233. Include(chs, Delimiters[I]);
  2234. Result:=Length(S);
  2235. While (Result>0) and not (S[Result] in chs) do
  2236. Dec(Result);
  2237. end;
  2238. Function StringReplace(const S, OldPattern, NewPattern: string; Flags: TReplaceFlags): string;
  2239. var
  2240. Srch,OldP,RemS: string; // Srch and Oldp can contain uppercase versions of S,OldPattern
  2241. P : Integer;
  2242. begin
  2243. Srch:=S;
  2244. OldP:=OldPattern;
  2245. if rfIgnoreCase in Flags then
  2246. begin
  2247. Srch:=AnsiUpperCase(Srch);
  2248. OldP:=AnsiUpperCase(OldP);
  2249. end;
  2250. RemS:=S;
  2251. Result:='';
  2252. while (Length(Srch)<>0) do
  2253. begin
  2254. P:=AnsiPos(OldP, Srch);
  2255. if P=0 then
  2256. begin
  2257. Result:=Result+RemS;
  2258. Srch:='';
  2259. end
  2260. else
  2261. begin
  2262. Result:=Result+Copy(RemS,1,P-1)+NewPattern;
  2263. P:=P+Length(OldP);
  2264. RemS:=Copy(RemS,P,Length(RemS)-P+1);
  2265. if not (rfReplaceAll in Flags) then
  2266. begin
  2267. Result:=Result+RemS;
  2268. Srch:='';
  2269. end
  2270. else
  2271. Srch:=Copy(Srch,P,Length(Srch)-P+1);
  2272. end;
  2273. end;
  2274. end;
  2275. Function IsDelimiter(const Delimiters, S: string; Index: Integer): Boolean;
  2276. begin
  2277. Result:=False;
  2278. If (Index>0) and (Index<=Length(S)) then
  2279. Result:=Pos(S[Index],Delimiters)<>0; // Note we don't do MBCS yet
  2280. end;
  2281. Function ByteToCharLen(const S: string; MaxLen: Integer): Integer;
  2282. begin
  2283. Result:=Length(S);
  2284. If Result>MaxLen then
  2285. Result:=MaxLen;
  2286. end;
  2287. Function ByteToCharIndex(const S: string; Index: Integer): Integer;
  2288. begin
  2289. Result:=Index;
  2290. end;
  2291. Function CharToByteLen(const S: string; MaxLen: Integer): Integer;
  2292. begin
  2293. Result:=Length(S);
  2294. If Result>MaxLen then
  2295. Result:=MaxLen;
  2296. end;
  2297. Function CharToByteIndex(const S: string; Index: Integer): Integer;
  2298. begin
  2299. Result:=Index;
  2300. end;
  2301. Function ByteType(const S: string; Index: Integer): TMbcsByteType;
  2302. begin
  2303. Result:=mbSingleByte;
  2304. end;
  2305. Function StrByteType(Str: PChar; Index: Cardinal): TMbcsByteType;
  2306. begin
  2307. Result:=mbSingleByte;
  2308. end;
  2309. Function StrCharLength(const Str: PChar): Integer;
  2310. begin
  2311. result:=widestringmanager.CharLengthPCharProc(Str);
  2312. end;
  2313. function StrNextChar(const Str: PChar): PChar;
  2314. begin
  2315. result:=Str+StrCharLength(Str);
  2316. end;
  2317. Function FindCmdLineSwitch(const Switch: string; const Chars: TSysCharSet;IgnoreCase: Boolean): Boolean;
  2318. Var
  2319. I,L : Integer;
  2320. S,T : String;
  2321. begin
  2322. Result:=False;
  2323. S:=Switch;
  2324. If IgnoreCase then
  2325. S:=UpperCase(S);
  2326. I:=ParamCount;
  2327. While (Not Result) and (I>0) do
  2328. begin
  2329. L:=Length(Paramstr(I));
  2330. If (L>0) and (ParamStr(I)[1] in Chars) then
  2331. begin
  2332. T:=Copy(ParamStr(I),2,L-1);
  2333. If IgnoreCase then
  2334. T:=UpperCase(T);
  2335. Result:=S=T;
  2336. end;
  2337. Dec(i);
  2338. end;
  2339. end;
  2340. Function FindCmdLineSwitch(const Switch: string; IgnoreCase: Boolean): Boolean;
  2341. begin
  2342. Result:=FindCmdLineSwitch(Switch,SwitchChars,IgnoreCase);
  2343. end;
  2344. Function FindCmdLineSwitch(const Switch: string): Boolean;
  2345. begin
  2346. Result:=FindCmdLineSwitch(Switch,SwitchChars,False);
  2347. end;
  2348. function WrapText(const Line, BreakStr: string; const BreakChars: TSysCharSet; MaxCol: Integer): string;
  2349. const
  2350. Quotes = ['''', '"'];
  2351. Var
  2352. L : String;
  2353. C,LQ,BC : Char;
  2354. P,BLen,Len : Integer;
  2355. HB,IBC : Boolean;
  2356. begin
  2357. Result:='';
  2358. L:=Line;
  2359. Blen:=Length(BreakStr);
  2360. If (BLen>0) then
  2361. BC:=BreakStr[1]
  2362. else
  2363. BC:=#0;
  2364. Len:=Length(L);
  2365. While (Len>0) do
  2366. begin
  2367. P:=1;
  2368. LQ:=#0;
  2369. HB:=False;
  2370. IBC:=False;
  2371. While ((P<=Len) and ((P<=MaxCol) or not IBC)) and ((LQ<>#0) or Not HB) do
  2372. begin
  2373. C:=L[P];
  2374. If (C=LQ) then
  2375. LQ:=#0
  2376. else If (C in Quotes) then
  2377. LQ:=C;
  2378. If (LQ<>#0) then
  2379. Inc(P)
  2380. else
  2381. begin
  2382. HB:=((C=BC) and (BreakStr=Copy(L,P,BLen)));
  2383. If HB then
  2384. Inc(P,Blen)
  2385. else
  2386. begin
  2387. If (P>MaxCol) then
  2388. IBC:=C in BreakChars;
  2389. Inc(P);
  2390. end;
  2391. end;
  2392. // Writeln('"',C,'" : IBC : ',IBC,' HB : ',HB,' LQ : ',LQ,' P>MaxCol : ',P>MaxCol);
  2393. end;
  2394. Result:=Result+Copy(L,1,P-1);
  2395. If Not HB then
  2396. Result:=Result+BreakStr;
  2397. Delete(L,1,P-1);
  2398. Len:=Length(L);
  2399. end;
  2400. end;
  2401. function WrapText(const Line: string; MaxCol: Integer): string;
  2402. begin
  2403. Result:=WrapText(Line,sLineBreak, [' ', '-', #9], MaxCol);
  2404. end;
  2405. {$ifndef FPC_NOGENERICANSIROUTINES}
  2406. {
  2407. Case Translation Tables
  2408. Can be used in internationalization support.
  2409. Although these tables can be obtained through system calls
  2410. cd it is better to not use those, since most implementation are not 100%
  2411. WARNING:
  2412. before modifying a translation table make sure that the current codepage
  2413. of the OS corresponds to the one you make changes to
  2414. }
  2415. const
  2416. { upper case translation table for character set 850 }
  2417. CP850UCT: array[128..255] of char =
  2418. (#128,#154,#144,#182,#142,#182,#143,#128,#210,#211,#212,#216,#215,#222,#142,#143,
  2419. #144,#146,#146,#226,#153,#227,#234,#235,'Y',#153,#154,#157,#156,#157,#158,#159,
  2420. #181,#214,#224,#233,#165,#165,#166,#167,#168,#169,#170,#171,#172,#173,#174,#175,
  2421. #176,#177,#178,#179,#180,#181,#182,#183,#184,#185,#186,#187,#188,#189,#190,#191,
  2422. #192,#193,#194,#195,#196,#197,#199,#199,#200,#201,#202,#203,#204,#205,#206,#207,
  2423. #208,#209,#210,#211,#212,#213,#214,#215,#216,#217,#218,#219,#220,#221,#222,#223,
  2424. #224,#225,#226,#227,#229,#229,#230,#237,#232,#233,#234,#235,#237,#237,#238,#239,
  2425. #240,#241,#242,#243,#244,#245,#246,#247,#248,#249,#250,#251,#252,#253,#254,#255);
  2426. { lower case translation table for character set 850 }
  2427. CP850LCT: array[128..255] of char =
  2428. (#135,#129,#130,#131,#132,#133,#134,#135,#136,#137,#138,#139,#140,#141,#132,#134,
  2429. #130,#145,#145,#147,#148,#149,#150,#151,#152,#148,#129,#155,#156,#155,#158,#159,
  2430. #160,#161,#162,#163,#164,#164,#166,#167,#168,#169,#170,#171,#172,#173,#174,#175,
  2431. #176,#177,#178,#179,#180,#160,#131,#133,#184,#185,#186,#187,#188,#189,#190,#191,
  2432. #192,#193,#194,#195,#196,#197,#198,#198,#200,#201,#202,#203,#204,#205,#206,#207,
  2433. #208,#209,#136,#137,#138,#213,#161,#140,#139,#217,#218,#219,#220,#221,#141,#223,
  2434. #162,#225,#147,#149,#228,#228,#230,#237,#232,#163,#150,#151,#236,#236,#238,#239,
  2435. #240,#241,#242,#243,#244,#245,#246,#247,#248,#249,#250,#251,#252,#253,#254,#255);
  2436. { upper case translation table for character set ISO 8859/1 Latin 1 }
  2437. CPISO88591UCT: array[192..255] of char =
  2438. ( #192, #193, #194, #195, #196, #197, #198, #199,
  2439. #200, #201, #202, #203, #204, #205, #206, #207,
  2440. #208, #209, #210, #211, #212, #213, #214, #215,
  2441. #216, #217, #218, #219, #220, #221, #222, #223,
  2442. #192, #193, #194, #195, #196, #197, #198, #199,
  2443. #200, #201, #202, #203, #204, #205, #206, #207,
  2444. #208, #209, #210, #211, #212, #213, #214, #247,
  2445. #216, #217, #218, #219, #220, #221, #222, #89 );
  2446. { lower case translation table for character set ISO 8859/1 Latin 1 }
  2447. CPISO88591LCT: array[192..255] of char =
  2448. ( #224, #225, #226, #227, #228, #229, #230, #231,
  2449. #232, #233, #234, #235, #236, #237, #238, #239,
  2450. #240, #241, #242, #243, #244, #245, #246, #215,
  2451. #248, #249, #250, #251, #252, #253, #254, #223,
  2452. #224, #225, #226, #227, #228, #229, #230, #231,
  2453. #232, #233, #234, #235, #236, #237, #238, #239,
  2454. #240, #241, #242, #243, #244, #245, #246, #247,
  2455. #248, #249, #250, #251, #252, #253, #254, #255 );
  2456. {$endif FPC_NOGENERICANSIROUTINES}
  2457. function sscanf(const s: string; const fmt : string;const Pointers : array of Pointer) : Integer;
  2458. var
  2459. i,j,n,m : SizeInt;
  2460. s1 : string;
  2461. function GetInt(unsigned : boolean=false) : Integer;
  2462. begin
  2463. s1 := '';
  2464. while (Length(s) > n) and (s[n] = ' ') do
  2465. inc(n);
  2466. { read sign }
  2467. if (Length(s)>= n) and (s[n] in ['+', '-']) then
  2468. begin
  2469. { don't accept - when reading unsigned }
  2470. if unsigned and (s[n]='-') then
  2471. begin
  2472. result:=length(s1);
  2473. exit;
  2474. end
  2475. else
  2476. begin
  2477. s1:=s1+s[n];
  2478. inc(n);
  2479. end;
  2480. end;
  2481. { read numbers }
  2482. while (Length(s) >= n) and
  2483. (s[n] in ['0'..'9']) do
  2484. begin
  2485. s1 := s1+s[n];
  2486. inc(n);
  2487. end;
  2488. Result := Length(s1);
  2489. end;
  2490. function GetFloat : Integer;
  2491. begin
  2492. s1 := '';
  2493. while (Length(s) > n) and (s[n] = ' ') do
  2494. inc(n);
  2495. while (Length(s) >= n) and
  2496. (s[n] in ['0'..'9', '+', '-', FormatSettings.DecimalSeparator, 'e', 'E']) do
  2497. begin
  2498. s1 := s1+s[n];
  2499. inc(n);
  2500. end;
  2501. Result := Length(s1);
  2502. end;
  2503. function GetString : Integer;
  2504. begin
  2505. s1 := '';
  2506. while (Length(s) > n) and (s[n] = ' ') do
  2507. inc(n);
  2508. while (Length(s) >= n) and (s[n] <> ' ')do
  2509. begin
  2510. s1 := s1+s[n];
  2511. inc(n);
  2512. end;
  2513. Result := Length(s1);
  2514. end;
  2515. function ScanStr(c : Char) : Boolean;
  2516. begin
  2517. while (Length(s) > n) and (s[n] <> c) do
  2518. inc(n);
  2519. inc(n);
  2520. If (n <= Length(s)) then
  2521. Result := True
  2522. else
  2523. Result := False;
  2524. end;
  2525. function GetFmt : Integer;
  2526. begin
  2527. Result := -1;
  2528. while true do
  2529. begin
  2530. while (Length(fmt) > m) and (fmt[m] = ' ') do
  2531. inc(m);
  2532. if (m >= Length(fmt)) then
  2533. break;
  2534. if (fmt[m] = '%') then
  2535. begin
  2536. inc(m);
  2537. case fmt[m] of
  2538. 'd':
  2539. Result:=vtInteger;
  2540. {$ifndef FPUNONE}
  2541. 'f':
  2542. Result:=vtExtended;
  2543. {$endif}
  2544. 's':
  2545. Result:=vtString;
  2546. 'c':
  2547. Result:=vtChar;
  2548. else
  2549. raise EFormatError.CreateFmt(SInvalidFormat,[fmt]);
  2550. end;
  2551. inc(m);
  2552. break;
  2553. end;
  2554. if not(ScanStr(fmt[m])) then
  2555. break;
  2556. inc(m);
  2557. end;
  2558. end;
  2559. begin
  2560. n := 1;
  2561. m := 1;
  2562. Result := 0;
  2563. for i:=0 to High(Pointers) do
  2564. begin
  2565. j := GetFmt;
  2566. case j of
  2567. vtInteger :
  2568. begin
  2569. if GetInt>0 then
  2570. begin
  2571. pLongint(Pointers[i])^:=StrToInt(s1);
  2572. inc(Result);
  2573. end
  2574. else
  2575. break;
  2576. end;
  2577. vtchar :
  2578. begin
  2579. if Length(s)>n then
  2580. begin
  2581. pchar(Pointers[i])^:=s[n];
  2582. inc(n);
  2583. inc(Result);
  2584. end
  2585. else
  2586. break;
  2587. end;
  2588. {$ifndef FPUNONE}
  2589. vtExtended :
  2590. begin
  2591. if GetFloat>0 then
  2592. begin
  2593. pextended(Pointers[i])^:=StrToFloat(s1);
  2594. inc(Result);
  2595. end
  2596. else
  2597. break;
  2598. end;
  2599. {$endif}
  2600. vtString :
  2601. begin
  2602. if GetString > 0 then
  2603. begin
  2604. pansistring(Pointers[i])^:=s1;
  2605. inc(Result);
  2606. end
  2607. else
  2608. break;
  2609. end;
  2610. else
  2611. break;
  2612. end;
  2613. end;
  2614. end;