sysstr.inc 76 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988
  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. SetLength(result, digits);
  632. for i := 0 to digits - 1 do
  633. begin
  634. result[digits - i] := HexDigits[value and 15];
  635. value := value shr 4;
  636. end ;
  637. while value <> 0 do begin
  638. result := HexDigits[value and 15] + result;
  639. value := value shr 4;
  640. end;
  641. end ;
  642. function IntToHex(Value: int64; Digits: integer): string;
  643. var i: integer;
  644. begin
  645. SetLength(result, digits);
  646. for i := 0 to digits - 1 do
  647. begin
  648. result[digits - i] := HexDigits[value and 15];
  649. value := value shr 4;
  650. end ;
  651. while value <> 0 do begin
  652. result := HexDigits[value and 15] + result;
  653. value := value shr 4;
  654. end;
  655. end ;
  656. function IntToHex(Value: QWord; Digits: integer): string;
  657. begin
  658. result:=IntToHex(Int64(Value),Digits);
  659. end;
  660. function TryStrToInt(const s: string; out i : integer) : boolean;
  661. var Error : word;
  662. begin
  663. Val(s, i, Error);
  664. TryStrToInt:=Error=0
  665. end;
  666. { StrToInt converts the string S to an integer value,
  667. if S does not represent a valid integer value EConvertError is raised }
  668. function StrToInt(const S: string): integer;
  669. var Error: word;
  670. begin
  671. Val(S, result, Error);
  672. if Error <> 0 then raise EConvertError.createfmt(SInvalidInteger,[S]);
  673. end ;
  674. function StrToInt64(const S: string): int64;
  675. var Error: word;
  676. begin
  677. Val(S, result, Error);
  678. if Error <> 0 then raise EConvertError.createfmt(SInvalidInteger,[S]);
  679. end;
  680. function TryStrToInt64(const s: string; Out i : int64) : boolean;
  681. var Error : word;
  682. begin
  683. Val(s, i, Error);
  684. TryStrToInt64:=Error=0
  685. end;
  686. function StrToQWord(const s: string): QWord;
  687. var Error: word;
  688. begin
  689. Val(S, result, Error);
  690. if Error <> 0 then raise EConvertError.createfmt(SInvalidInteger,[S]);
  691. end;
  692. function TryStrToQWord(const s: string; Out Q: QWord): boolean;
  693. var Error : word;
  694. begin
  695. Val(s, Q, Error);
  696. TryStrToQWord:=Error=0
  697. end;
  698. { StrToIntDef converts the string S to an integer value,
  699. Default is returned in case S does not represent a valid integer value }
  700. function StrToIntDef(const S: string; Default: integer): integer;
  701. var Error: word;
  702. begin
  703. Val(S, result, Error);
  704. if Error <> 0 then result := Default;
  705. end ;
  706. { StrToInt64Def converts the string S to an int64 value,
  707. Default is returned in case S does not represent a valid int64 value }
  708. function StrToInt64Def(const S: string; Default: int64): int64;
  709. var Error: word;
  710. begin
  711. Val(S, result, Error);
  712. if Error <> 0 then result := Default;
  713. end ;
  714. { StrToQWordDef converts the string S to an QWord value,
  715. Default is returned in case S does not represent a valid QWord value }
  716. function StrToQWordDef(const S: string; Default: QWord): QWord;
  717. var Error: word;
  718. begin
  719. Val(S, result, Error);
  720. if Error <> 0 then result := Default;
  721. end;
  722. { LoadStr returns the string resource Ident. }
  723. function LoadStr(Ident: integer): string;
  724. begin
  725. result:='';
  726. end ;
  727. { FmtLoadStr returns the string resource Ident and formats it accordingly }
  728. function FmtLoadStr(Ident: integer; const Args: array of const): string;
  729. begin
  730. result:='';
  731. end;
  732. Const
  733. feInvalidFormat = 1;
  734. feMissingArgument = 2;
  735. feInvalidArgIndex = 3;
  736. {$ifdef fmtdebug}
  737. Procedure Log (Const S: String);
  738. begin
  739. Writeln (S);
  740. end;
  741. {$endif}
  742. Procedure DoFormatError (ErrCode : Longint);
  743. Var
  744. S : String;
  745. begin
  746. //!! must be changed to contain format string...
  747. S:='';
  748. Case ErrCode of
  749. feInvalidFormat : raise EConvertError.Createfmt(SInvalidFormat,[s]);
  750. feMissingArgument : raise EConvertError.Createfmt(SArgumentMissing,[s]);
  751. feInvalidArgIndex : raise EConvertError.Createfmt(SInvalidArgIndex,[s]);
  752. end;
  753. end;
  754. { we've no templates, but with includes we can simulate this :) }
  755. {$macro on}
  756. {$define INFORMAT}
  757. {$define TFormatString:=ansistring}
  758. {$define TFormatChar:=char}
  759. Function Format (Const Fmt : AnsiString; const Args : Array of const; const FormatSettings: TFormatSettings) : AnsiString;
  760. {$i sysformt.inc}
  761. {$undef TFormatString}
  762. {$undef TFormatChar}
  763. {$undef INFORMAT}
  764. {$macro off}
  765. Function Format (Const Fmt : AnsiString; const Args : Array of const) : AnsiString;
  766. begin
  767. Result:=Format(Fmt,Args,DefaultFormatSettings);
  768. end;
  769. Function FormatBuf (Var Buffer; BufLen : Cardinal; Const Fmt; fmtLen : Cardinal; Const Args : Array of const; Const FormatSettings: TFormatSettings) : Cardinal;
  770. Var S,F : String;
  771. begin
  772. Setlength(F,fmtlen);
  773. if fmtlen > 0 then
  774. Move(fmt,F[1],fmtlen);
  775. S:=Format (F,Args,FormatSettings);
  776. If Cardinal(Length(S))<Buflen then
  777. Result:=Length(S)
  778. else
  779. Result:=Buflen;
  780. Move(S[1],Buffer,Result);
  781. end;
  782. Function FormatBuf (Var Buffer; BufLen : Cardinal;
  783. Const Fmt; fmtLen : Cardinal;
  784. Const Args : Array of const) : Cardinal;
  785. begin
  786. Result:=FormatBuf(Buffer,BufLen,Fmt,FmtLen,Args,DefaultFormatSettings);
  787. end;
  788. Procedure FmtStr(Var Res: string; const Fmt : string; Const args: Array of const; Const FormatSettings: TFormatSettings);
  789. begin
  790. Res:=Format(fmt,Args,FormatSettings);
  791. end;
  792. Procedure FmtStr(Var Res: String; Const Fmt : String; Const args: Array of const);
  793. begin
  794. FmtStr(Res,Fmt,Args,DefaultFormatSettings);
  795. end;
  796. Function StrFmt(Buffer,Fmt : PChar; Const args: Array of const) : Pchar;
  797. begin
  798. Result:=StrFmt(Buffer,Fmt,Args,DefaultFormatSettings);
  799. end;
  800. Function StrFmt(Buffer,Fmt : PChar; Const Args: Array of const; Const FormatSettings: TFormatSettings): PChar;
  801. begin
  802. Buffer[FormatBuf(Buffer^,Maxint,Fmt^,strlen(fmt),args,FormatSettings)]:=#0;
  803. Result:=Buffer;
  804. end;
  805. Function StrLFmt(Buffer : PCHar; Maxlen : Cardinal;Fmt : PChar; Const args: Array of const) : Pchar;
  806. begin
  807. Result:=StrLFmt(Buffer,MaxLen,Fmt,Args,DefaultFormatSettings);
  808. end;
  809. Function StrLFmt(Buffer : PCHar; Maxlen : Cardinal;Fmt : PChar; Const args: Array of const; Const FormatSettings: TFormatSettings) : Pchar;
  810. begin
  811. Buffer[FormatBuf(Buffer^,MaxLen,Fmt^,strlen(fmt),args,FormatSettings)]:=#0;
  812. Result:=Buffer;
  813. end;
  814. {$ifndef FPUNONE}
  815. Function StrToFloat(Const S: String): Extended;
  816. begin
  817. Result:=StrToFloat(S,DefaultFormatSettings);
  818. end;
  819. Function StrToFloat(Const S : String; Const FormatSettings: TFormatSettings) : Extended;
  820. Begin // texttofloat handles NIL properly
  821. If Not TextToFloat(Pchar(pointer(S)),Result,FormatSettings) then
  822. Raise EConvertError.createfmt(SInValidFLoat,[S]);
  823. End;
  824. function StrToFloatDef(const S: string; const Default: Extended): Extended;
  825. begin
  826. Result:=StrToFloatDef(S,Default,DefaultFormatSettings);
  827. end;
  828. Function StrToFloatDef(Const S: String; Const Default: Extended; Const FormatSettings: TFormatSettings): Extended;
  829. begin
  830. if not TextToFloat(PChar(pointer(S)),Result,fvExtended,FormatSettings) then
  831. Result:=Default;
  832. end;
  833. Function TextToFloat(Buffer: PChar; Out Value: Extended; Const FormatSettings: TFormatSettings): Boolean;
  834. Var
  835. E,P : Integer;
  836. S : String;
  837. Begin
  838. S:=StrPas(Buffer);
  839. //ThousandSeparator not allowed as by Delphi specs
  840. if (FormatSettings.ThousandSeparator <> FormatSettings.DecimalSeparator) and
  841. (Pos(FormatSettings.ThousandSeparator, S) <> 0) then
  842. begin
  843. Result := False;
  844. Exit;
  845. end;
  846. if (FormatSettings.DecimalSeparator <> '.') and
  847. (Pos('.', S) <>0) then
  848. begin
  849. Result := False;
  850. Exit;
  851. end;
  852. P:=Pos(FormatSettings.DecimalSeparator,S);
  853. If (P<>0) Then
  854. S[P] := '.';
  855. Val(trim(S),Value,E);
  856. Result:=(E=0);
  857. End;
  858. Function TextToFloat(Buffer: PChar; Out Value: Extended): Boolean;
  859. begin
  860. Result:=TextToFloat(Buffer,Value,DefaultFormatSettings);
  861. end;
  862. Function TextToFloat(Buffer: PChar; Out Value; ValueType: TFloatValue): Boolean;
  863. begin
  864. Result:=TextToFloat(Buffer,Value,ValueType,DefaultFormatSettings);
  865. end;
  866. Function TextToFloat(Buffer: PChar; Out Value; ValueType: TFloatValue; Const FormatSettings: TFormatSettings): Boolean;
  867. Var
  868. E,P : Integer;
  869. S : String;
  870. {$ifndef FPC_HAS_STR_CURRENCY}
  871. TempValue: extended;
  872. {$endif FPC_HAS_STR_CURRENCY}
  873. Begin
  874. S:=StrPas(Buffer);
  875. //ThousandSeparator not allowed as by Delphi specs
  876. if (FormatSettings.ThousandSeparator <> FormatSettings.DecimalSeparator) and
  877. (Pos(FormatSettings.ThousandSeparator, S) <> 0) then
  878. begin
  879. Result := False;
  880. Exit;
  881. end;
  882. if (FormatSettings.DecimalSeparator <> '.') and
  883. (Pos('.', S) <>0) then
  884. begin
  885. Result := False;
  886. Exit;
  887. end;
  888. P:=Pos(FormatSettings.DecimalSeparator,S);
  889. If (P<>0) Then
  890. S[P] := '.';
  891. case ValueType of
  892. fvCurrency:
  893. {$ifdef FPC_HAS_STR_CURRENCY}
  894. Val(S,Currency(Value),E);
  895. {$else FPC_HAS_STR_CURRENCY}
  896. begin
  897. // needed for platforms where Currency = Int64
  898. Val(S,TempValue,E);
  899. Currency(Value) := TempValue;
  900. end;
  901. {$endif FPC_HAS_STR_CURRENCY}
  902. fvExtended:
  903. Val(S,Extended(Value),E);
  904. fvDouble:
  905. Val(S,Double(Value),E);
  906. fvSingle:
  907. Val(S,Single(Value),E);
  908. fvComp:
  909. Val(S,Comp(Value),E);
  910. fvReal:
  911. Val(S,Real(Value),E);
  912. end;
  913. Result:=(E=0);
  914. End;
  915. Function TryStrToFloat(Const S : String; Out Value: Single): Boolean;
  916. begin
  917. Result:=TryStrToFloat(S,Value,DefaultFormatSettings);
  918. end;
  919. Function TryStrToFloat(Const S : String; Out Value: Single; Const FormatSettings: TFormatSettings): Boolean;
  920. Begin
  921. Result := TextToFloat(PChar(pointer(S)), Value, fvSingle,FormatSettings);
  922. End;
  923. Function TryStrToFloat(Const S : String; Out Value: Double): Boolean;
  924. begin
  925. Result:=TryStrToFloat(S,Value,DefaultFormatSettings);
  926. end;
  927. Function TryStrToFloat(Const S : String; Out Value: Double; Const FormatSettings: TFormatSettings): Boolean;
  928. Begin
  929. Result := TextToFloat(PChar(pointer(S)), Value, fvDouble,FormatSettings);
  930. End;
  931. {$ifdef FPC_HAS_TYPE_EXTENDED}
  932. Function TryStrToFloat(Const S : String; Out Value: Extended): Boolean;
  933. begin
  934. Result:=TryStrToFloat(S,Value,DefaultFormatSettings);
  935. end;
  936. Function TryStrToFloat(Const S : String; Out Value: Extended; Const FormatSettings: TFormatSettings): Boolean;
  937. Begin
  938. Result := TextToFloat(PChar(pointer(S)), Value,FormatSettings);
  939. End;
  940. {$endif FPC_HAS_TYPE_EXTENDED}
  941. const
  942. {$ifdef FPC_HAS_TYPE_EXTENDED}
  943. maxdigits = 17;
  944. {$else}
  945. maxdigits = 15;
  946. {$endif}
  947. Function FloatToStrFIntl(const Value; format: TFloatFormat; Precision, Digits: Integer; ValueType: TFloatValue; Const FormatSettings: TFormatSettings): String;
  948. Var
  949. P: Integer;
  950. Negative, TooSmall, TooLarge: Boolean;
  951. DS: Char;
  952. Begin
  953. DS:=FormatSettings.DecimalSeparator;
  954. Case format Of
  955. ffGeneral:
  956. Begin
  957. case ValueType of
  958. fvCurrency:
  959. begin
  960. If (Precision = -1) Or (Precision > 19) Then Precision := 19;
  961. TooSmall:=False;
  962. end;
  963. else
  964. begin
  965. If (Precision = -1) Or (Precision > maxdigits) Then Precision := maxdigits;
  966. TooSmall := (Abs(Extended(Value)) < 0.00001) and (Extended(Value)<>0.0);
  967. end;
  968. end;
  969. If Not TooSmall Then
  970. Begin
  971. case ValueType of
  972. fvDouble:
  973. Str(Double(Extended(Value)):0:precision, Result);
  974. fvSingle:
  975. Str(Single(Extended(Value)):0:precision, Result);
  976. fvCurrency:
  977. {$ifdef FPC_HAS_STR_CURRENCY}
  978. Str(Currency(Value):0:precision, Result);
  979. {$else}
  980. Str(Extended(Currency(Value)):0:precision, Result);
  981. {$endif FPC_HAS_STR_CURRENCY}
  982. else
  983. Str(Extended(Value):0:precision, Result);
  984. end;
  985. Negative := Result[1] = '-';
  986. P := Pos('.', Result);
  987. if P<>0 then
  988. Result[P] := DS;
  989. TooLarge :=(P > Precision + ord(Negative) + 1) or (Pos('E', Result)<>0);
  990. End;
  991. If TooSmall Or TooLarge Then
  992. begin
  993. Result := FloatToStrFIntl(Value, ffExponent, Precision, Digits, ValueType,FormatSettings);
  994. // Strip unneeded zeroes.
  995. P:=Pos('E',result)-1;
  996. If P<>-1 then
  997. begin
  998. { delete superfluous +? }
  999. if result[p+2]='+' then
  1000. system.Delete(Result,P+2,1);
  1001. While (P>1) and (Result[P]='0') do
  1002. begin
  1003. system.Delete(Result,P,1);
  1004. Dec(P);
  1005. end;
  1006. If (P>0) and (Result[P]=DS) Then
  1007. begin
  1008. system.Delete(Result,P,1);
  1009. Dec(P);
  1010. end;
  1011. end;
  1012. end
  1013. else if (P<>0) then // we have a decimalseparator
  1014. begin
  1015. { it seems that in this unit "precision" must mean "number of }
  1016. { significant digits" rather than "number of digits after the }
  1017. { decimal point" (as it does in the system unit) -> adjust }
  1018. { (precision+1 to count the decimal point character) }
  1019. { don't just cut off the string, as rounding must be taken }
  1020. { into account based on the final digit }
  1021. if (Length(Result) > Precision + ord(Negative) + 1) and
  1022. (Precision + ord(Negative) + 1 >= P) then
  1023. Result := FloatToStrFIntl(Value, ffFixed,
  1024. 0, Precision - (P - Ord(Negative) - 1),
  1025. ValueType, FormatSettings);
  1026. P := Length(Result);
  1027. While (P>0) and (Result[P] = '0') Do
  1028. Dec(P);
  1029. If (P>0) and (Result[P]=DS) Then
  1030. Dec(P);
  1031. SetLength(Result, P);
  1032. end;
  1033. End;
  1034. ffExponent:
  1035. Begin
  1036. If (Precision = -1) Or (Precision > maxdigits) Then Precision := maxdigits;
  1037. case ValueType of
  1038. fvDouble:
  1039. Str(Double(Extended(Value)):Precision+7, Result);
  1040. fvSingle:
  1041. Str(Single(Extended(Value)):Precision+6, Result);
  1042. fvCurrency:
  1043. {$ifdef FPC_HAS_STR_CURRENCY}
  1044. Str(Currency(Value):Precision+6, Result);
  1045. {$else}
  1046. Str(Extended(Currency(Value)):Precision+8, Result);
  1047. {$endif FPC_HAS_STR_CURRENCY}
  1048. else
  1049. Str(Extended(Value):Precision+8, Result);
  1050. end;
  1051. { Delete leading spaces }
  1052. while Result[1] = ' ' do
  1053. System.Delete(Result, 1, 1);
  1054. if Result[1] = '-' then
  1055. Result[3] := DS
  1056. else
  1057. Result[2] := DS;
  1058. P:=Pos('E',Result);
  1059. if P <> 0 then
  1060. begin
  1061. Inc(P, 2);
  1062. if Digits > 4 then
  1063. Digits:=4;
  1064. Digits:=Length(Result) - P - Digits + 1;
  1065. if Digits < 0 then
  1066. insert(copy('0000',1,-Digits),Result,P)
  1067. else
  1068. while (Digits > 0) and (Result[P] = '0') do
  1069. begin
  1070. System.Delete(Result, P, 1);
  1071. if P > Length(Result) then
  1072. begin
  1073. System.Delete(Result, P - 2, 2);
  1074. break;
  1075. end;
  1076. Dec(Digits);
  1077. end;
  1078. end;
  1079. End;
  1080. ffFixed:
  1081. Begin
  1082. If Digits = -1 Then Digits := 2
  1083. Else If Digits > 18 Then Digits := 18;
  1084. case ValueType of
  1085. fvDouble:
  1086. Str(Double(Extended(Value)):0:Digits, Result);
  1087. fvSingle:
  1088. Str(Single(Extended(Value)):0:Digits, Result);
  1089. fvCurrency:
  1090. {$ifdef FPC_HAS_STR_CURRENCY}
  1091. Str(Currency(Value):0:Digits, Result);
  1092. {$else}
  1093. Str(Extended(Currency(Value)):0:Digits, Result);
  1094. {$endif FPC_HAS_STR_CURRENCY}
  1095. else
  1096. Str(Extended(Value):0:Digits, Result);
  1097. end;
  1098. If Result[1] = ' ' Then
  1099. System.Delete(Result, 1, 1);
  1100. P := Pos('.', Result);
  1101. If P <> 0 Then Result[P] := DS;
  1102. End;
  1103. ffNumber:
  1104. Begin
  1105. If Digits = -1 Then Digits := 2
  1106. Else If Digits > maxdigits Then Digits := maxdigits;
  1107. case ValueType of
  1108. fvDouble:
  1109. Str(Double(Extended(Value)):0:Digits, Result);
  1110. fvSingle:
  1111. Str(Single(Extended(Value)):0:Digits, Result);
  1112. fvCurrency:
  1113. {$ifdef FPC_HAS_STR_CURRENCY}
  1114. Str(Currency(Value):0:Digits, Result);
  1115. {$else}
  1116. Str(Extended(Currency(Value)):0:Digits, Result);
  1117. {$endif FPC_HAS_STR_CURRENCY}
  1118. else
  1119. Str(Extended(Value):0:Digits, Result);
  1120. end;
  1121. If Result[1] = ' ' Then System.Delete(Result, 1, 1);
  1122. P := Pos('.', Result);
  1123. If P <> 0 Then
  1124. Result[P] := DS
  1125. else
  1126. P := Length(Result)+1;
  1127. Dec(P, 3);
  1128. While (P > 1) Do
  1129. Begin
  1130. If (Result[P - 1] <> '-') And (FormatSettings.ThousandSeparator <> #0) Then
  1131. Insert(FormatSettings.ThousandSeparator, Result, P);
  1132. Dec(P, 3);
  1133. End;
  1134. End;
  1135. ffCurrency:
  1136. Begin
  1137. If Digits = -1 Then Digits := FormatSettings.CurrencyDecimals
  1138. Else If Digits > 18 Then Digits := 18;
  1139. case ValueType of
  1140. fvDouble:
  1141. Str(Double(Extended(Value)):0:Digits, Result);
  1142. fvSingle:
  1143. Str(Single(Extended(Value)):0:Digits, Result);
  1144. fvCurrency:
  1145. {$ifdef FPC_HAS_STR_CURRENCY}
  1146. Str(Currency(Value):0:Digits, Result);
  1147. {$else}
  1148. Str(Extended(Currency(Value)):0:Digits, Result);
  1149. {$endif FPC_HAS_STR_CURRENCY}
  1150. else
  1151. Str(Extended(Value):0:Digits, Result);
  1152. end;
  1153. Negative:=Result[1] = '-';
  1154. if Negative then
  1155. System.Delete(Result, 1, 1);
  1156. P := Pos('.', Result);
  1157. If P <> 0 Then Result[P] := DS;
  1158. Dec(P, 3);
  1159. While (P > 1) Do
  1160. Begin
  1161. If FormatSettings.ThousandSeparator<>#0 Then
  1162. Insert(FormatSettings.ThousandSeparator, Result, P);
  1163. Dec(P, 3);
  1164. End;
  1165. If Not Negative Then
  1166. Begin
  1167. Case FormatSettings.CurrencyFormat Of
  1168. 0: Result := FormatSettings.CurrencyString + Result;
  1169. 1: Result := Result + FormatSettings.CurrencyString;
  1170. 2: Result := FormatSettings.CurrencyString + ' ' + Result;
  1171. 3: Result := Result + ' ' + FormatSettings.CurrencyString;
  1172. End
  1173. End
  1174. Else
  1175. Begin
  1176. Case NegCurrFormat Of
  1177. 0: Result := '(' + FormatSettings.CurrencyString + Result + ')';
  1178. 1: Result := '-' + FormatSettings.CurrencyString + Result;
  1179. 2: Result := FormatSettings.CurrencyString + '-' + Result;
  1180. 3: Result := FormatSettings.CurrencyString + Result + '-';
  1181. 4: Result := '(' + Result + FormatSettings.CurrencyString + ')';
  1182. 5: Result := '-' + Result + FormatSettings.CurrencyString;
  1183. 6: Result := Result + '-' + FormatSettings.CurrencyString;
  1184. 7: Result := Result + FormatSettings.CurrencyString + '-';
  1185. 8: Result := '-' + Result + ' ' + FormatSettings.CurrencyString;
  1186. 9: Result := '-' + FormatSettings.CurrencyString + ' ' + Result;
  1187. 10: Result := FormatSettings.CurrencyString + ' ' + Result + '-';
  1188. End;
  1189. End;
  1190. End;
  1191. End;
  1192. End;
  1193. {$ifdef FPC_HAS_TYPE_EXTENDED}
  1194. Function FloatToStr(Value: Extended; Const FormatSettings: TFormatSettings): String;
  1195. Begin
  1196. Result := FloatToStrFIntl(Value, ffGeneral, 15, 0, fvExtended,FormatSettings);
  1197. End;
  1198. Function FloatToStr(Value: Extended): String;
  1199. begin
  1200. Result:=FloatToStr(Value,DefaultFormatSettings);
  1201. end;
  1202. {$endif FPC_HAS_TYPE_EXTENDED}
  1203. Function FloatToStr(Value: Currency; Const FormatSettings: TFormatSettings): String;
  1204. Begin
  1205. Result := FloatToStrFIntl(Value, ffGeneral, 15, 0, fvCurrency,FormatSettings);
  1206. End;
  1207. Function FloatToStr(Value: Currency): String;
  1208. begin
  1209. Result:=FloatToStr(Value,DefaultFormatSettings);
  1210. end;
  1211. Function FloatToStr(Value: Double; Const FormatSettings: TFormatSettings): String;
  1212. var
  1213. e: Extended;
  1214. Begin
  1215. e := Value;
  1216. Result := FloatToStrFIntl(e, ffGeneral, 15, 0, fvDouble,FormatSettings);
  1217. End;
  1218. Function FloatToStr(Value: Double): String;
  1219. begin
  1220. Result:=FloatToStr(Value,DefaultFormatSettings);
  1221. end;
  1222. Function FloatToStr(Value: Single; Const FormatSettings: TFormatSettings): String;
  1223. var
  1224. e: Extended;
  1225. Begin
  1226. e := Value;
  1227. Result := FloatToStrFIntl(e, ffGeneral, 15, 0, fvSingle,FormatSettings);
  1228. End;
  1229. Function FloatToStr(Value: Single): String;
  1230. begin
  1231. Result:=FloatToStr(Value,DefaultFormatSettings);
  1232. end;
  1233. Function FloatToStr(Value: Comp; Const FormatSettings: TFormatSettings): String;
  1234. var
  1235. e: Extended;
  1236. Begin
  1237. e := Value;
  1238. Result := FloatToStrFIntl(e, ffGeneral, 15, 0, fvComp,FormatSettings);
  1239. End;
  1240. Function FloatToStr(Value: Comp): String;
  1241. begin
  1242. Result:=FloatToStr(Value,DefaultFormatSettings);
  1243. end;
  1244. {$ifndef FPC_COMP_IS_INT64}
  1245. Function FloatToStr(Value: Int64): String;
  1246. begin
  1247. Result:=FloatToStr(Value,DefaultFormatSettings);
  1248. end;
  1249. Function FloatToStr(Value: Int64; Const FormatSettings: TFormatSettings): String;
  1250. var
  1251. e: Extended;
  1252. Begin
  1253. e := Comp(Value);
  1254. Result := FloatToStrFIntl(e, ffGeneral, 15, 0, fvComp,FormatSettings);
  1255. End;
  1256. {$endif FPC_COMP_IS_INT64}
  1257. Function FloatToText(Buffer: PChar; Value: Extended; format: TFloatFormat; Precision, Digits: Integer; Const FormatSettings: TFormatSettings): Longint;
  1258. Var
  1259. Tmp: String[40];
  1260. Begin
  1261. Tmp := FloatToStrF(Value, format, Precision, Digits,FormatSettings);
  1262. Result := Length(Tmp);
  1263. Move(Tmp[1], Buffer[0], Result);
  1264. End;
  1265. Function FloatToText(Buffer: PChar; Value: Extended; format: TFloatFormat; Precision, Digits: Integer): Longint;
  1266. begin
  1267. Result:=FloatToText(Buffer,Value,Format,Precision,Digits,DefaultFormatSettings);
  1268. end;
  1269. {$ifdef FPC_HAS_TYPE_EXTENDED}
  1270. Function FloatToStrF(Value: Extended; format: TFloatFormat; Precision, Digits: Integer; Const FormatSettings: TFormatSettings): String;
  1271. begin
  1272. Result := FloatToStrFIntl(value,format,precision,digits,fvExtended,FormatSettings);
  1273. end;
  1274. Function FloatToStrF(Value: Extended; format: TFloatFormat; Precision, Digits: Integer): String;
  1275. begin
  1276. Result:=FloatToStrF(Value,Format,Precision,Digits,DefaultFormatSettings);
  1277. end;
  1278. {$endif}
  1279. Function FloatToStrF(Value: Currency; format: TFloatFormat; Precision, Digits: Integer; Const FormatSettings: TFormatSettings): String;
  1280. begin
  1281. Result := FloatToStrFIntl(value,format,precision,digits,fvCurrency,FormatSettings);
  1282. end;
  1283. Function FloatToStrF(Value: Currency; format: TFloatFormat; Precision, Digits: Integer): String;
  1284. begin
  1285. Result:=FloatToStrF(Value,format,Precision,Digits,DefaultFormatSettings);
  1286. end;
  1287. Function FloatToStrF(Value: Double; format: TFloatFormat; Precision, Digits: Integer; Const FormatSettings: TFormatSettings): String;
  1288. var
  1289. e: Extended;
  1290. begin
  1291. e := Value;
  1292. result := FloatToStrFIntl(e,format,precision,digits,fvDouble,FormatSettings);
  1293. end;
  1294. Function FloatToStrF(Value: Double; format: TFloatFormat; Precision, Digits: Integer): String;
  1295. begin
  1296. Result:= FloatToStrF(Value,Format,Precision,Digits,DefaultFormatSettings);
  1297. end;
  1298. Function FloatToStrF(Value: Single; format: TFloatFormat; Precision, Digits: Integer; Const FormatSettings: TFormatSettings): String;
  1299. var
  1300. e: Extended;
  1301. begin
  1302. e:=Value;
  1303. result := FloatToStrFIntl(e,format,precision,digits,fvSingle,FormatSettings);
  1304. end;
  1305. Function FloatToStrF(Value: Single; format: TFloatFormat; Precision, Digits: Integer): String;
  1306. begin
  1307. Result:= FloatToStrF(Value,Format,Precision,Digits,DefaultFormatSettings);
  1308. end;
  1309. Function FloatToStrF(Value: Comp; format: TFloatFormat; Precision, Digits: Integer; Const FormatSettings: TFormatSettings): String;
  1310. var
  1311. e: Extended;
  1312. begin
  1313. e := Value;
  1314. Result := FloatToStrFIntl(e,format,precision,digits,fvComp,FormatSettings);
  1315. end;
  1316. Function FloatToStrF(Value: Comp; format: TFloatFormat; Precision, Digits: Integer): String;
  1317. begin
  1318. Result:=FloatToStrF(Value,Format,Precision,Digits,DefaultFormatSettings);
  1319. end;
  1320. {$ifndef FPC_COMP_IS_INT64}
  1321. Function FloatToStrF(Value: Int64; format: TFloatFormat; Precision, Digits: Integer; Const FormatSettings: TFormatSettings): String;
  1322. var
  1323. e: Extended;
  1324. begin
  1325. e := Comp(Value);
  1326. result := FloatToStrFIntl(e,format,precision,digits,fvComp,FormatSettings);
  1327. end;
  1328. Function FloatToStrF(Value: Int64; format: TFloatFormat; Precision, Digits: Integer): String;
  1329. begin
  1330. Result:=FloatToStrF(Value,Format,Precision,Digits,DefaultFormatSettings);
  1331. end;
  1332. {$endif FPC_COMP_IS_INT64}
  1333. Function CurrToStrF(Value: Currency; Format: TFloatFormat; Digits: Integer; Const FormatSettings: TFormatSettings): string;
  1334. begin
  1335. result:=FloatToStrF(Value,Format,19,Digits,FormatSettings);
  1336. end;
  1337. Function CurrToStrF(Value: Currency; Format: TFloatFormat; Digits: Integer): string;
  1338. begin
  1339. Result:=CurrToStrF(Value,Format,Digits,DefaultFormatSettings);
  1340. end;
  1341. Function FloatToDateTime (Const Value : Extended) : TDateTime;
  1342. begin
  1343. If (Value<MinDateTime) or (Value>MaxDateTime) then
  1344. Raise EConvertError.CreateFmt (SInvalidDateTime,[Value]);
  1345. Result:=Value;
  1346. end;
  1347. function TryFloatToCurr(const Value: Extended; var AResult: Currency): Boolean;
  1348. begin
  1349. Result:=(Value>=MinCurrency) and (Value<=MaxCurrency);
  1350. if Result then
  1351. AResult := Value;
  1352. end;
  1353. function FloatToCurr(const Value: Extended): Currency;
  1354. begin
  1355. if not TryFloatToCurr(Value, Result) then
  1356. Raise EConvertError.CreateFmt(SInvalidCurrency, [FloatToStr(Value)]);
  1357. end;
  1358. Function CurrToStr(Value: Currency): string;
  1359. begin
  1360. Result:=FloatToStrF(Value,ffGeneral,-1,0);
  1361. end;
  1362. Function CurrToStr(Value: Currency; Const FormatSettings: TFormatSettings): string;
  1363. begin
  1364. Result:=FloatToStrF(Value,ffGeneral,-1,0,FormatSettings);
  1365. end;
  1366. function StrToCurr(const S: string): Currency;
  1367. begin
  1368. if not TextToFloat(PChar(pointer(S)), Result, fvCurrency) then
  1369. Raise EConvertError.createfmt(SInValidFLoat,[S]);
  1370. end;
  1371. function StrToCurr(const S: string; Const FormatSettings: TFormatSettings): Currency;
  1372. begin
  1373. if not TextToFloat(PChar(pointer(S)), Result, fvCurrency,FormatSettings) then
  1374. Raise EConvertError.createfmt(SInValidFLoat,[S]);
  1375. end;
  1376. Function TryStrToCurr(Const S : String; Out Value: Currency): Boolean;
  1377. Begin
  1378. Result := TextToFloat(PChar(pointer(S)), Value, fvCurrency);
  1379. End;
  1380. function TryStrToCurr(const S: string;Out Value : Currency; Const FormatSettings: TFormatSettings): Boolean;
  1381. Begin
  1382. Result := TextToFloat(PChar(pointer(S)), Value, fvCurrency,FormatSettings);
  1383. End;
  1384. function StrToCurrDef(const S: string; Default : Currency): Currency;
  1385. begin
  1386. if not TextToFloat(PChar(pointer(S)), Result, fvCurrency) then
  1387. Result:=Default;
  1388. end;
  1389. function StrToCurrDef(const S: string; Default : Currency; Const FormatSettings: TFormatSettings): Currency;
  1390. begin
  1391. if not TextToFloat(PChar(pointer(S)), Result, fvCurrency,FormatSettings) then
  1392. Result:=Default;
  1393. end;
  1394. {$endif FPUNONE}
  1395. function AnsiDequotedStr(const S: string; AQuote: Char): string;
  1396. var p : pchar;
  1397. begin
  1398. p:=pchar(pointer(s)); // work around CONST. Ansiextract is safe for nil
  1399. result:=AnsiExtractquotedStr(p,AQuote);
  1400. if result='' Then
  1401. result:=s;
  1402. end;
  1403. function StrToBool(const S: string): Boolean;
  1404. begin
  1405. if not(TryStrToBool(S,Result)) then
  1406. Raise EConvertError.CreateFmt(SInvalidBoolean,[S]);
  1407. end;
  1408. function BoolToStr(B: Boolean;UseBoolStrs:Boolean=False): string;
  1409. procedure CheckStrs;
  1410. begin
  1411. If Length(TrueBoolStrs)=0 then
  1412. begin
  1413. SetLength(TrueBoolStrs,1);
  1414. TrueBoolStrs[0]:='True';
  1415. end;
  1416. If Length(FalseBoolStrs)=0 then
  1417. begin
  1418. SetLength(FalseBoolStrs,1);
  1419. FalseBoolStrs[0]:='False';
  1420. end;
  1421. end;
  1422. begin
  1423. if UseBoolStrs Then
  1424. begin
  1425. CheckStrs;
  1426. if B then
  1427. Result:=TrueBoolStrs[0]
  1428. else
  1429. Result:=FalseBoolStrs[0];
  1430. end
  1431. else
  1432. If B then
  1433. Result:='-1'
  1434. else
  1435. Result:='0';
  1436. end;
  1437. // from textmode IDE util funcs.
  1438. function BoolToStr(B: boolean; const TrueS, FalseS: string): string;
  1439. begin
  1440. if B then Result:=TrueS else BoolToStr:=FalseS;
  1441. end;
  1442. function StrToBoolDef(const S: string; Default: Boolean): Boolean;
  1443. begin
  1444. if not(TryStrToBool(S,Result)) then
  1445. Result:=Default;
  1446. end;
  1447. function TryStrToBool(const S: string; out Value: Boolean): Boolean;
  1448. Var
  1449. Temp : String;
  1450. {$ifdef FPUNONE}
  1451. D : Longint;
  1452. {$else}
  1453. D : Double;
  1454. {$endif}
  1455. Code: word;
  1456. begin
  1457. Temp:=upcase(S);
  1458. Val(temp,D,code);
  1459. Result:=true;
  1460. If Code=0 then
  1461. {$ifdef FPUNONE}
  1462. Value:=(D<>0)
  1463. {$else}
  1464. Value:=(D<>0.0)
  1465. {$endif}
  1466. else If Temp='TRUE' then
  1467. Value:=true
  1468. else if Temp='FALSE' then
  1469. Value:=false
  1470. else
  1471. Result:=false;
  1472. end;
  1473. {$ifndef FPUNONE}
  1474. Function FloatToTextFmt(Buffer: PChar; Value: Extended; format: PChar): Integer;
  1475. begin
  1476. Result:=FloatToTextFmt(Buffer,Value,Format,DefaultFormatSettings);
  1477. end;
  1478. Function FloatToTextFmt(Buffer: PChar; Value: Extended; format: PChar;FormatSettings : TFormatSettings): Integer;
  1479. Var
  1480. Digits: String[40]; { String Of Digits }
  1481. Exponent: String[8]; { Exponent strin }
  1482. FmtStart, FmtStop: PChar; { Start And End Of relevant part }
  1483. { Of format String }
  1484. ExpFmt, ExpSize: Integer; { Type And Length Of }
  1485. { exponential format chosen }
  1486. Placehold: Array[1..4] Of Integer; { Number Of placeholders In All }
  1487. { four Sections }
  1488. thousand: Boolean; { thousand separators? }
  1489. UnexpectedDigits: Integer; { Number Of unexpected Digits that }
  1490. { have To be inserted before the }
  1491. { First placeholder. }
  1492. DigitExponent: Integer; { Exponent Of First digit In }
  1493. { Digits Array. }
  1494. { Find end of format section starting at P. False, if empty }
  1495. Function GetSectionEnd(Var P: PChar): Boolean;
  1496. Var
  1497. C: Char;
  1498. SQ, DQ: Boolean;
  1499. Begin
  1500. Result := False;
  1501. SQ := False;
  1502. DQ := False;
  1503. C := P[0];
  1504. While (C<>#0) And ((C<>';') Or SQ Or DQ) Do
  1505. Begin
  1506. Result := True;
  1507. Case C Of
  1508. #34: If Not SQ Then DQ := Not DQ;
  1509. #39: If Not DQ Then SQ := Not SQ;
  1510. End;
  1511. Inc(P);
  1512. C := P[0];
  1513. End;
  1514. End;
  1515. { Find start and end of format section to apply. If section doesn't exist,
  1516. use section 1. If section 2 is used, the sign of value is ignored. }
  1517. Procedure GetSectionRange(section: Integer);
  1518. Var
  1519. Sec: Array[1..3] Of PChar;
  1520. SecOk: Array[1..3] Of Boolean;
  1521. Begin
  1522. Sec[1] := format;
  1523. SecOk[1] := GetSectionEnd(Sec[1]);
  1524. If section > 1 Then
  1525. Begin
  1526. Sec[2] := Sec[1];
  1527. If Sec[2][0] <> #0 Then
  1528. Inc(Sec[2]);
  1529. SecOk[2] := GetSectionEnd(Sec[2]);
  1530. If section > 2 Then
  1531. Begin
  1532. Sec[3] := Sec[2];
  1533. If Sec[3][0] <> #0 Then
  1534. Inc(Sec[3]);
  1535. SecOk[3] := GetSectionEnd(Sec[3]);
  1536. End;
  1537. End;
  1538. If Not SecOk[1] Then
  1539. FmtStart := Nil
  1540. Else
  1541. Begin
  1542. If Not SecOk[section] Then
  1543. section := 1
  1544. Else If section = 2 Then
  1545. Value := -Value; { Remove sign }
  1546. If section = 1 Then FmtStart := format Else
  1547. Begin
  1548. FmtStart := Sec[section - 1];
  1549. Inc(FmtStart);
  1550. End;
  1551. FmtStop := Sec[section];
  1552. End;
  1553. End;
  1554. { Find format section ranging from FmtStart to FmtStop. }
  1555. Procedure GetFormatOptions;
  1556. Var
  1557. Fmt: PChar;
  1558. SQ, DQ: Boolean;
  1559. area: Integer;
  1560. Begin
  1561. SQ := False;
  1562. DQ := False;
  1563. Fmt := FmtStart;
  1564. ExpFmt := 0;
  1565. area := 1;
  1566. thousand := False;
  1567. Placehold[1] := 0;
  1568. Placehold[2] := 0;
  1569. Placehold[3] := 0;
  1570. Placehold[4] := 0;
  1571. While Fmt < FmtStop Do
  1572. Begin
  1573. Case Fmt[0] Of
  1574. #34:
  1575. Begin
  1576. If Not SQ Then
  1577. DQ := Not DQ;
  1578. Inc(Fmt);
  1579. End;
  1580. #39:
  1581. Begin
  1582. If Not DQ Then
  1583. SQ := Not SQ;
  1584. Inc(Fmt);
  1585. End;
  1586. Else
  1587. { if not in quotes, then interpret}
  1588. If Not (SQ Or DQ) Then
  1589. Begin
  1590. Case Fmt[0] Of
  1591. '0':
  1592. Begin
  1593. Case area Of
  1594. 1:
  1595. area := 2;
  1596. 4:
  1597. Begin
  1598. area := 3;
  1599. Inc(Placehold[3], Placehold[4]);
  1600. Placehold[4] := 0;
  1601. End;
  1602. End;
  1603. Inc(Placehold[area]);
  1604. Inc(Fmt);
  1605. End;
  1606. '#':
  1607. Begin
  1608. If area=3 Then
  1609. area:=4;
  1610. Inc(Placehold[area]);
  1611. Inc(Fmt);
  1612. End;
  1613. '.':
  1614. Begin
  1615. If area<3 Then
  1616. area:=3;
  1617. Inc(Fmt);
  1618. End;
  1619. ',':
  1620. Begin
  1621. thousand := DefaultFormatSettings.ThousandSeparator<>#0;
  1622. Inc(Fmt);
  1623. End;
  1624. 'e', 'E':
  1625. If ExpFmt = 0 Then
  1626. Begin
  1627. If (Fmt[0]='E') Then
  1628. ExpFmt:=1
  1629. Else
  1630. ExpFmt := 3;
  1631. Inc(Fmt);
  1632. If (Fmt<FmtStop) Then
  1633. Begin
  1634. Case Fmt[0] Of
  1635. '+':
  1636. Begin
  1637. End;
  1638. '-':
  1639. Inc(ExpFmt);
  1640. Else
  1641. ExpFmt := 0;
  1642. End;
  1643. If ExpFmt <> 0 Then
  1644. Begin
  1645. Inc(Fmt);
  1646. ExpSize := 0;
  1647. While (Fmt<FmtStop) And
  1648. (ExpSize<4) And
  1649. (Fmt[0] In ['0'..'9']) Do
  1650. Begin
  1651. Inc(ExpSize);
  1652. Inc(Fmt);
  1653. End;
  1654. End;
  1655. End;
  1656. End
  1657. Else
  1658. Inc(Fmt);
  1659. Else { Case }
  1660. Inc(Fmt);
  1661. End; { Case }
  1662. End { Begin }
  1663. Else
  1664. Inc(Fmt);
  1665. End; { Case }
  1666. End; { While .. Begin }
  1667. End;
  1668. Procedure FloatToStr;
  1669. Var
  1670. I, J, Exp, Width, Decimals, DecimalPoint, len: Integer;
  1671. Begin
  1672. If ExpFmt = 0 Then
  1673. Begin
  1674. { Fixpoint }
  1675. Decimals:=Placehold[3]+Placehold[4];
  1676. Width:=Placehold[1]+Placehold[2]+Decimals;
  1677. If (Decimals=0) Then
  1678. Str(Value:Width:0,Digits)
  1679. Else if Value>=0 then
  1680. Str(Value:Width+1:Decimals,Digits)
  1681. else
  1682. Str(Value:Width+2:Decimals,Digits);
  1683. len:=Length(Digits);
  1684. { Find the decimal point }
  1685. If (Decimals=0) Then
  1686. DecimalPoint:=len+1
  1687. Else
  1688. DecimalPoint:=len-Decimals;
  1689. { If value is very small, and no decimal places
  1690. are desired, remove the leading 0. }
  1691. If (Abs(Value) < 1) And (Placehold[2] = 0) Then
  1692. Begin
  1693. If (Placehold[1]=0) Then
  1694. Delete(Digits,DecimalPoint-1,1)
  1695. Else
  1696. Digits[DecimalPoint-1]:=' ';
  1697. End;
  1698. { Convert optional zeroes to spaces. }
  1699. I:=len;
  1700. J:=DecimalPoint+Placehold[3];
  1701. While (I>J) And (Digits[I]='0') Do
  1702. Begin
  1703. Digits[I] := ' ';
  1704. Dec(I);
  1705. End;
  1706. { If integer value and no obligatory decimal
  1707. places, remove decimal point. }
  1708. If (DecimalPoint < len) And (Digits[DecimalPoint + 1] = ' ') Then
  1709. Digits[DecimalPoint] := ' ';
  1710. { Convert spaces left from obligatory decimal point to zeroes.
  1711. MVC : If - sign is encountered, replace it too, and put at position 1}
  1712. I:=DecimalPoint-Placehold[2];
  1713. J:=0;
  1714. While (I<DecimalPoint) And (Digits[I] in [' ','-']) Do
  1715. Begin
  1716. If Digits[i]='-' then
  1717. J:=I;
  1718. Digits[I] := '0';
  1719. Inc(I);
  1720. End;
  1721. If (J<>0) then
  1722. Digits[1]:='-';
  1723. Exp := 0;
  1724. End
  1725. Else
  1726. Begin
  1727. { Scientific: exactly <Width> Digits With <Precision> Decimals
  1728. And adjusted Exponent. }
  1729. If Placehold[1]+Placehold[2]=0 Then
  1730. Placehold[1]:=1;
  1731. Decimals := Placehold[3] + Placehold[4];
  1732. Width:=Placehold[1]+Placehold[2]+Decimals;
  1733. { depending on the maximally supported precision, the exponent field }
  1734. { is longer/shorter }
  1735. {$ifdef FPC_HAS_TYPE_EXTENDED}
  1736. Str(Value:Width+8,Digits);
  1737. {$else FPC_HAS_TYPE_EXTENDED}
  1738. {$ifdef FPC_HAS_TYPE_DOUBLE}
  1739. Str(Value:Width+7,Digits);
  1740. {$else FPC_HAS_TYPE_DOUBLE}
  1741. Str(Value:Width+6,Digits);
  1742. {$endif FPC_HAS_TYPE_DOUBLE}
  1743. {$endif FPC_HAS_TYPE_EXTENDED}
  1744. { Find and cut out exponent. Always the
  1745. last 6 characters in the string.
  1746. -> 0000E+0000
  1747. *** No, not always the last 6 characters, this depends on
  1748. the maximally supported precision (JM)}
  1749. I:=Pos('E',Digits);
  1750. Val(Copy(Digits,I+1,255),Exp,J);
  1751. Exp:=Exp+1-(Placehold[1]+Placehold[2]);
  1752. Delete(Digits, I, 255);
  1753. { Str() always returns at least one digit after the decimal point.
  1754. If we don't want it, we have to remove it. }
  1755. If (Decimals=0) And (Placehold[1]+Placehold[2]<= 1) Then
  1756. Begin
  1757. If (Digits[4]>='5') Then
  1758. Begin
  1759. Inc(Digits[2]);
  1760. If (Digits[2]>'9') Then
  1761. Begin
  1762. Digits[2] := '1';
  1763. Inc(Exp);
  1764. End;
  1765. End;
  1766. Delete(Digits, 3, 2);
  1767. DecimalPoint := Length(Digits) + 1;
  1768. End
  1769. Else
  1770. Begin
  1771. { Move decimal point at the desired position }
  1772. Delete(Digits, 3, 1);
  1773. DecimalPoint:=2+Placehold[1]+Placehold[2];
  1774. If (Decimals<>0) Then
  1775. Insert('.',Digits,DecimalPoint);
  1776. End;
  1777. { Convert optional zeroes to spaces. }
  1778. I := Length(Digits);
  1779. J := DecimalPoint + Placehold[3];
  1780. While (I > J) And (Digits[I] = '0') Do
  1781. Begin
  1782. Digits[I] := ' ';
  1783. Dec(I);
  1784. End;
  1785. { If integer number and no obligatory decimal paces, remove decimal point }
  1786. If (DecimalPoint<Length(Digits)) And
  1787. (Digits[DecimalPoint+1]=' ') Then
  1788. Digits[DecimalPoint]:=' ';
  1789. If (Digits[1]=' ') Then
  1790. Begin
  1791. Delete(Digits, 1, 1);
  1792. Dec(DecimalPoint);
  1793. End;
  1794. { Calculate exponent string }
  1795. Str(Abs(Exp), Exponent);
  1796. While Length(Exponent)<ExpSize Do
  1797. Insert('0',Exponent,1);
  1798. If Exp >= 0 Then
  1799. Begin
  1800. If (ExpFmt In [1,3]) Then
  1801. Insert('+', Exponent, 1);
  1802. End
  1803. Else
  1804. Insert('-',Exponent,1);
  1805. If (ExpFmt<3) Then
  1806. Insert('E',Exponent,1)
  1807. Else
  1808. Insert('e',Exponent,1);
  1809. End;
  1810. DigitExponent:=DecimalPoint-2;
  1811. If (Digits[1]='-') Then
  1812. Dec(DigitExponent);
  1813. UnexpectedDigits:=DecimalPoint-1-(Placehold[1]+Placehold[2]);
  1814. End;
  1815. Function PutResult: LongInt;
  1816. Var
  1817. SQ, DQ: Boolean;
  1818. Fmt, Buf: PChar;
  1819. Dig, N: Integer;
  1820. Begin
  1821. SQ := False;
  1822. DQ := False;
  1823. Fmt := FmtStart;
  1824. Buf := Buffer;
  1825. Dig := 1;
  1826. While (Fmt<FmtStop) Do
  1827. Begin
  1828. //Write(Fmt[0]);
  1829. Case Fmt[0] Of
  1830. #34:
  1831. Begin
  1832. If Not SQ Then
  1833. DQ := Not DQ;
  1834. Inc(Fmt);
  1835. End;
  1836. #39:
  1837. Begin
  1838. If Not DQ Then
  1839. SQ := Not SQ;
  1840. Inc(Fmt);
  1841. End;
  1842. Else
  1843. If Not (SQ Or DQ) Then
  1844. Begin
  1845. Case Fmt[0] Of
  1846. '0', '#', '.':
  1847. Begin
  1848. If (Dig=1) And (UnexpectedDigits>0) Then
  1849. Begin
  1850. { Everything unexpected is written before the first digit }
  1851. For N := 1 To UnexpectedDigits Do
  1852. Begin
  1853. if (Digits[N]<>' ') Then
  1854. begin
  1855. Buf[0] := Digits[N];
  1856. Inc(Buf);
  1857. end;
  1858. If thousand And (Digits[N]<>'-') Then
  1859. Begin
  1860. If (DigitExponent Mod 3 = 0) And (DigitExponent>0) Then
  1861. Begin
  1862. Buf[0] := FormatSettings.ThousandSeparator;
  1863. Inc(Buf);
  1864. End;
  1865. Dec(DigitExponent);
  1866. End;
  1867. End;
  1868. Inc(Dig, UnexpectedDigits);
  1869. End;
  1870. If (Digits[Dig]<>' ') Then
  1871. Begin
  1872. If (Digits[Dig]='.') Then
  1873. Buf[0] := FormatSettings.DecimalSeparator
  1874. Else
  1875. Buf[0] := Digits[Dig];
  1876. Inc(Buf);
  1877. If thousand And (DigitExponent Mod 3 = 0) And (DigitExponent > 0) and (Digits[Dig]<>'-') Then
  1878. Begin
  1879. Buf[0] := FormatSettings.ThousandSeparator;
  1880. Inc(Buf);
  1881. End;
  1882. End;
  1883. Inc(Dig);
  1884. Dec(DigitExponent);
  1885. Inc(Fmt);
  1886. End;
  1887. 'e', 'E':
  1888. Begin
  1889. If ExpFmt <> 0 Then
  1890. Begin
  1891. Inc(Fmt);
  1892. If Fmt < FmtStop Then
  1893. Begin
  1894. If Fmt[0] In ['+', '-'] Then
  1895. Begin
  1896. Inc(Fmt, ExpSize);
  1897. For N:=1 To Length(Exponent) Do
  1898. Buf[N-1] := Exponent[N];
  1899. Inc(Buf,Length(Exponent));
  1900. ExpFmt:=0;
  1901. End;
  1902. Inc(Fmt);
  1903. End;
  1904. End
  1905. Else
  1906. Begin
  1907. { No legal exponential format.
  1908. Simply write the 'E' to the result. }
  1909. Buf[0] := Fmt[0];
  1910. Inc(Buf);
  1911. Inc(Fmt);
  1912. End;
  1913. End;
  1914. Else { Case }
  1915. { Usual character }
  1916. If (Fmt[0]<>',') Then
  1917. Begin
  1918. Buf[0] := Fmt[0];
  1919. Inc(Buf);
  1920. End;
  1921. Inc(Fmt);
  1922. End; { Case }
  1923. End
  1924. Else { IF }
  1925. Begin
  1926. { Character inside single or double quotes }
  1927. Buf[0] := Fmt[0];
  1928. Inc(Buf);
  1929. Inc(Fmt);
  1930. End;
  1931. End; { Case }
  1932. End; { While .. Begin }
  1933. Result:=PtrUInt(Buf)-PtrUInt(Buffer);
  1934. End;
  1935. Begin
  1936. If (Value>0) Then
  1937. GetSectionRange(1)
  1938. Else If (Value<0) Then
  1939. GetSectionRange(2)
  1940. Else
  1941. GetSectionRange(3);
  1942. If FmtStart = Nil Then
  1943. Begin
  1944. Result := FloatToText(Buffer, Value, ffGeneral, 15, 4, FormatSettings);
  1945. End
  1946. Else
  1947. Begin
  1948. GetFormatOptions;
  1949. If (ExpFmt = 0) And (Abs(Value) >= 1E18) Then
  1950. Result := FloatToText(Buffer, Value, ffGeneral, 15, 4, FormatSettings)
  1951. Else
  1952. Begin
  1953. FloatToStr;
  1954. Result := PutResult;
  1955. End;
  1956. End;
  1957. End;
  1958. Procedure FloatToDecimal(Out Result: TFloatRec; const Value; ValueType: TFloatValue; Precision, Decimals : integer);
  1959. var
  1960. Buffer: String[254]; //Though str func returns only 25 chars, this might change in the future
  1961. InfNan: string[3];
  1962. Error, N, L, Start, C: Integer;
  1963. GotNonZeroBeforeDot, BeforeDot : boolean;
  1964. begin
  1965. case ValueType of
  1966. fvExtended:
  1967. Str(Extended(Value):25, Buffer);
  1968. fvDouble,
  1969. fvReal:
  1970. Str(Double(Value):23, Buffer);
  1971. fvSingle:
  1972. Str(Single(Value):16, Buffer);
  1973. fvCurrency:
  1974. Str(Currency(Value):25, Buffer);
  1975. fvComp:
  1976. Str(Currency(Value):23, Buffer);
  1977. end;
  1978. N := 1;
  1979. L := Byte(Buffer[0]);
  1980. while Buffer[N]=' ' do
  1981. Inc(N);
  1982. Result.Negative := (Buffer[N] = '-');
  1983. if Result.Negative then
  1984. Inc(N)
  1985. else if (Buffer[N] = '+') then
  1986. inc(N);
  1987. { special cases for Inf and Nan }
  1988. if (L>=N+2) then
  1989. begin
  1990. InfNan:=copy(Buffer,N,3);
  1991. if (InfNan='Inf') then
  1992. begin
  1993. Result.Digits[0]:=#0;
  1994. Result.Exponent:=32767;
  1995. exit
  1996. end;
  1997. if (InfNan='Nan') then
  1998. begin
  1999. Result.Digits[0]:=#0;
  2000. Result.Exponent:=-32768;
  2001. exit
  2002. end;
  2003. end;
  2004. Start := N; //Start of digits
  2005. Result.Exponent := 0; BeforeDot := true;
  2006. GotNonZeroBeforeDot := false;
  2007. while (L>=N) and (Buffer[N]<>'E') do
  2008. begin
  2009. if Buffer[N]='.' then
  2010. BeforeDot := false
  2011. else
  2012. begin
  2013. if BeforeDot then
  2014. begin // Currently this is always 1 char
  2015. Inc(Result.Exponent);
  2016. Result.Digits[N-Start] := Buffer[N];
  2017. if Buffer[N] <> '0' then
  2018. GotNonZeroBeforeDot := true;
  2019. end
  2020. else
  2021. Result.Digits[N-Start-1] := Buffer[N]
  2022. end;
  2023. Inc(N);
  2024. end;
  2025. Inc(N); // Pass through 'E'
  2026. if N<=L then
  2027. begin
  2028. Val(Copy(Buffer, N, L-N+1), C, Error); // Get exponent after 'E'
  2029. Inc(Result.Exponent, C);
  2030. end;
  2031. // Calculate number of digits we have from str
  2032. if BeforeDot then
  2033. N := N - Start - 1
  2034. else
  2035. N := N - Start - 2;
  2036. L := SizeOf(Result.Digits);
  2037. if N<L then
  2038. FillChar(Result.Digits[N], L-N, '0'); //Zero remaining space
  2039. if Decimals + Result.Exponent < Precision Then //After this it is the same as in FloatToDecimal
  2040. N := Decimals + Result.Exponent
  2041. Else
  2042. N := Precision;
  2043. if N >= L Then
  2044. N := L-1;
  2045. if N = 0 Then
  2046. begin
  2047. if Result.Digits[0] >= '5' Then
  2048. begin
  2049. Result.Digits[0] := '1';
  2050. Result.Digits[1] := #0;
  2051. Inc(Result.Exponent);
  2052. end
  2053. Else
  2054. Result.Digits[0] := #0;
  2055. end //N=0
  2056. Else if N > 0 Then
  2057. begin
  2058. if Result.Digits[N] >= '5' Then
  2059. begin
  2060. Repeat
  2061. Result.Digits[N] := #0;
  2062. Dec(N);
  2063. Inc(Result.Digits[N]);
  2064. Until (N = 0) Or (Result.Digits[N] < ':');
  2065. If Result.Digits[0] = ':' Then
  2066. begin
  2067. Result.Digits[0] := '1';
  2068. Inc(Result.Exponent);
  2069. end;
  2070. end
  2071. Else
  2072. begin
  2073. Result.Digits[N] := '0';
  2074. While (N > -1) And (Result.Digits[N] = '0') Do
  2075. begin
  2076. Result.Digits[N] := #0;
  2077. Dec(N);
  2078. end;
  2079. end;
  2080. end //N>0
  2081. Else
  2082. Result.Digits[0] := #0;
  2083. if (Result.Digits[0] = #0) and
  2084. not GotNonZeroBeforeDot then
  2085. begin
  2086. Result.Exponent := 0;
  2087. Result.Negative := False;
  2088. end;
  2089. end;
  2090. Procedure FloatToDecimal(Out Result: TFloatRec; Value: Extended; Precision, Decimals : integer);
  2091. begin
  2092. FloatToDecimal(Result,Value,fvExtended,Precision,Decimals);
  2093. end;
  2094. Function FormatFloat(Const Format : String; Value : Extended; Const FormatSettings: TFormatSettings) : String;
  2095. Var
  2096. buf : Array[0..1024] of char;
  2097. Begin // not changed to pchar(pointer(). Possibly not safe
  2098. Buf[FloatToTextFmt(@Buf[0],Value,Pchar(Format),FormatSettings)]:=#0;
  2099. Result:=StrPas(@Buf[0]);
  2100. End;
  2101. Function FormatFloat(Const format: String; Value: Extended): String;
  2102. begin
  2103. Result:=FormatFloat(Format,Value,DefaultFormatSettings);
  2104. end;
  2105. Function FormatCurr(const Format: string; Value: Currency; Const FormatSettings: TFormatSettings): string;
  2106. begin
  2107. Result := FormatFloat(Format, Value,FormatSettings);
  2108. end;
  2109. function FormatCurr(const Format: string; Value: Currency): string;
  2110. begin
  2111. Result:=FormatCurr(Format,Value,DefaultFormatSettings);
  2112. end;
  2113. {$endif}
  2114. {==============================================================================}
  2115. { extra functions }
  2116. {==============================================================================}
  2117. { LeftStr returns Count left-most characters from S }
  2118. function LeftStr(const S: string; Count: integer): string;
  2119. begin
  2120. result := Copy(S, 1, Count);
  2121. end ;
  2122. { RightStr returns Count right-most characters from S }
  2123. function RightStr(const S: string; Count: integer): string;
  2124. begin
  2125. If Count>Length(S) then
  2126. Count:=Length(S);
  2127. result := Copy(S, 1 + Length(S) - Count, Count);
  2128. end;
  2129. { BCDToInt converts the BCD value Value to an integer }
  2130. function BCDToInt(Value: integer): integer;
  2131. var i, j, digit: integer;
  2132. begin
  2133. result := 0;
  2134. j := 1;
  2135. for i := 0 to SizeOf(Value) shl 1 - 1 do begin
  2136. digit := Value and 15;
  2137. if digit > $9 then
  2138. begin
  2139. if i = 0 then
  2140. begin
  2141. if digit in [$B, $D] then j := -1
  2142. end
  2143. else raise EConvertError.createfmt(SInvalidBCD,[Value]);
  2144. end
  2145. else
  2146. begin
  2147. result := result + j * digit;
  2148. j := j * 10;
  2149. end ;
  2150. Value := Value shr 4;
  2151. end ;
  2152. end ;
  2153. Function LastDelimiter(const Delimiters, S: string): Integer;
  2154. var
  2155. chs: TSysCharSet;
  2156. I: LongInt;
  2157. begin
  2158. chs := [];
  2159. for I := 1 to Length(Delimiters) do
  2160. Include(chs, Delimiters[I]);
  2161. Result:=Length(S);
  2162. While (Result>0) and not (S[Result] in chs) do
  2163. Dec(Result);
  2164. end;
  2165. Function StringReplace(const S, OldPattern, NewPattern: string; Flags: TReplaceFlags): string;
  2166. var
  2167. Srch,OldP,RemS: string; // Srch and Oldp can contain uppercase versions of S,OldPattern
  2168. P : Integer;
  2169. begin
  2170. Srch:=S;
  2171. OldP:=OldPattern;
  2172. if rfIgnoreCase in Flags then
  2173. begin
  2174. Srch:=AnsiUpperCase(Srch);
  2175. OldP:=AnsiUpperCase(OldP);
  2176. end;
  2177. RemS:=S;
  2178. Result:='';
  2179. while (Length(Srch)<>0) do
  2180. begin
  2181. P:=AnsiPos(OldP, Srch);
  2182. if P=0 then
  2183. begin
  2184. Result:=Result+RemS;
  2185. Srch:='';
  2186. end
  2187. else
  2188. begin
  2189. Result:=Result+Copy(RemS,1,P-1)+NewPattern;
  2190. P:=P+Length(OldP);
  2191. RemS:=Copy(RemS,P,Length(RemS)-P+1);
  2192. if not (rfReplaceAll in Flags) then
  2193. begin
  2194. Result:=Result+RemS;
  2195. Srch:='';
  2196. end
  2197. else
  2198. Srch:=Copy(Srch,P,Length(Srch)-P+1);
  2199. end;
  2200. end;
  2201. end;
  2202. Function IsDelimiter(const Delimiters, S: string; Index: Integer): Boolean;
  2203. begin
  2204. Result:=False;
  2205. If (Index>0) and (Index<=Length(S)) then
  2206. Result:=Pos(S[Index],Delimiters)<>0; // Note we don't do MBCS yet
  2207. end;
  2208. Function ByteToCharLen(const S: string; MaxLen: Integer): Integer;
  2209. begin
  2210. Result:=Length(S);
  2211. If Result>MaxLen then
  2212. Result:=MaxLen;
  2213. end;
  2214. Function ByteToCharIndex(const S: string; Index: Integer): Integer;
  2215. begin
  2216. Result:=Index;
  2217. end;
  2218. Function CharToByteLen(const S: string; MaxLen: Integer): Integer;
  2219. begin
  2220. Result:=Length(S);
  2221. If Result>MaxLen then
  2222. Result:=MaxLen;
  2223. end;
  2224. Function CharToByteIndex(const S: string; Index: Integer): Integer;
  2225. begin
  2226. Result:=Index;
  2227. end;
  2228. Function ByteType(const S: string; Index: Integer): TMbcsByteType;
  2229. begin
  2230. Result:=mbSingleByte;
  2231. end;
  2232. Function StrByteType(Str: PChar; Index: Cardinal): TMbcsByteType;
  2233. begin
  2234. Result:=mbSingleByte;
  2235. end;
  2236. Function StrCharLength(const Str: PChar): Integer;
  2237. begin
  2238. result:=widestringmanager.CharLengthPCharProc(Str);
  2239. end;
  2240. function StrNextChar(const Str: PChar): PChar;
  2241. begin
  2242. result:=Str+StrCharLength(Str);
  2243. end;
  2244. Function FindCmdLineSwitch(const Switch: string; const Chars: TSysCharSet;IgnoreCase: Boolean): Boolean;
  2245. Var
  2246. I,L : Integer;
  2247. S,T : String;
  2248. begin
  2249. Result:=False;
  2250. S:=Switch;
  2251. If IgnoreCase then
  2252. S:=UpperCase(S);
  2253. I:=ParamCount;
  2254. While (Not Result) and (I>0) do
  2255. begin
  2256. L:=Length(Paramstr(I));
  2257. If (L>0) and (ParamStr(I)[1] in Chars) then
  2258. begin
  2259. T:=Copy(ParamStr(I),2,L-1);
  2260. If IgnoreCase then
  2261. T:=UpperCase(T);
  2262. Result:=S=T;
  2263. end;
  2264. Dec(i);
  2265. end;
  2266. end;
  2267. Function FindCmdLineSwitch(const Switch: string; IgnoreCase: Boolean): Boolean;
  2268. begin
  2269. Result:=FindCmdLineSwitch(Switch,SwitchChars,IgnoreCase);
  2270. end;
  2271. Function FindCmdLineSwitch(const Switch: string): Boolean;
  2272. begin
  2273. Result:=FindCmdLineSwitch(Switch,SwitchChars,False);
  2274. end;
  2275. function WrapText(const Line, BreakStr: string; const BreakChars: TSysCharSet; MaxCol: Integer): string;
  2276. const
  2277. Quotes = ['''', '"'];
  2278. Var
  2279. L : String;
  2280. C,LQ,BC : Char;
  2281. P,BLen,Len : Integer;
  2282. HB,IBC : Boolean;
  2283. begin
  2284. Result:='';
  2285. L:=Line;
  2286. Blen:=Length(BreakStr);
  2287. If (BLen>0) then
  2288. BC:=BreakStr[1]
  2289. else
  2290. BC:=#0;
  2291. Len:=Length(L);
  2292. While (Len>0) do
  2293. begin
  2294. P:=1;
  2295. LQ:=#0;
  2296. HB:=False;
  2297. IBC:=False;
  2298. While ((P<=Len) and ((P<=MaxCol) or not IBC)) and ((LQ<>#0) or Not HB) do
  2299. begin
  2300. C:=L[P];
  2301. If (C=LQ) then
  2302. LQ:=#0
  2303. else If (C in Quotes) then
  2304. LQ:=C;
  2305. If (LQ<>#0) then
  2306. Inc(P)
  2307. else
  2308. begin
  2309. HB:=((C=BC) and (BreakStr=Copy(L,P,BLen)));
  2310. If HB then
  2311. Inc(P,Blen)
  2312. else
  2313. begin
  2314. If (P>MaxCol) then
  2315. IBC:=C in BreakChars;
  2316. Inc(P);
  2317. end;
  2318. end;
  2319. // Writeln('"',C,'" : IBC : ',IBC,' HB : ',HB,' LQ : ',LQ,' P>MaxCol : ',P>MaxCol);
  2320. end;
  2321. Result:=Result+Copy(L,1,P-1);
  2322. If Not HB then
  2323. Result:=Result+BreakStr;
  2324. Delete(L,1,P-1);
  2325. Len:=Length(L);
  2326. end;
  2327. end;
  2328. function WrapText(const Line: string; MaxCol: Integer): string;
  2329. begin
  2330. Result:=WrapText(Line,sLineBreak, [' ', '-', #9], MaxCol);
  2331. end;
  2332. {$ifndef FPC_NOGENERICANSIROUTINES}
  2333. {
  2334. Case Translation Tables
  2335. Can be used in internationalization support.
  2336. Although these tables can be obtained through system calls
  2337. cd it is better to not use those, since most implementation are not 100%
  2338. WARNING:
  2339. before modifying a translation table make sure that the current codepage
  2340. of the OS corresponds to the one you make changes to
  2341. }
  2342. const
  2343. { upper case translation table for character set 850 }
  2344. CP850UCT: array[128..255] of char =
  2345. (#128,#154,#144,#182,#142,#182,#143,#128,#210,#211,#212,#216,#215,#222,#142,#143,
  2346. #144,#146,#146,#226,#153,#227,#234,#235,'Y',#153,#154,#157,#156,#157,#158,#159,
  2347. #181,#214,#224,#233,#165,#165,#166,#167,#168,#169,#170,#171,#172,#173,#174,#175,
  2348. #176,#177,#178,#179,#180,#181,#182,#183,#184,#185,#186,#187,#188,#189,#190,#191,
  2349. #192,#193,#194,#195,#196,#197,#199,#199,#200,#201,#202,#203,#204,#205,#206,#207,
  2350. #208,#209,#210,#211,#212,#213,#214,#215,#216,#217,#218,#219,#220,#221,#222,#223,
  2351. #224,#225,#226,#227,#229,#229,#230,#237,#232,#233,#234,#235,#237,#237,#238,#239,
  2352. #240,#241,#242,#243,#244,#245,#246,#247,#248,#249,#250,#251,#252,#253,#254,#255);
  2353. { lower case translation table for character set 850 }
  2354. CP850LCT: array[128..255] of char =
  2355. (#135,#129,#130,#131,#132,#133,#134,#135,#136,#137,#138,#139,#140,#141,#132,#134,
  2356. #130,#145,#145,#147,#148,#149,#150,#151,#152,#148,#129,#155,#156,#155,#158,#159,
  2357. #160,#161,#162,#163,#164,#164,#166,#167,#168,#169,#170,#171,#172,#173,#174,#175,
  2358. #176,#177,#178,#179,#180,#160,#131,#133,#184,#185,#186,#187,#188,#189,#190,#191,
  2359. #192,#193,#194,#195,#196,#197,#198,#198,#200,#201,#202,#203,#204,#205,#206,#207,
  2360. #208,#209,#136,#137,#138,#213,#161,#140,#139,#217,#218,#219,#220,#221,#141,#223,
  2361. #162,#225,#147,#149,#228,#228,#230,#237,#232,#163,#150,#151,#236,#236,#238,#239,
  2362. #240,#241,#242,#243,#244,#245,#246,#247,#248,#249,#250,#251,#252,#253,#254,#255);
  2363. { upper case translation table for character set ISO 8859/1 Latin 1 }
  2364. CPISO88591UCT: array[192..255] of char =
  2365. ( #192, #193, #194, #195, #196, #197, #198, #199,
  2366. #200, #201, #202, #203, #204, #205, #206, #207,
  2367. #208, #209, #210, #211, #212, #213, #214, #215,
  2368. #216, #217, #218, #219, #220, #221, #222, #223,
  2369. #192, #193, #194, #195, #196, #197, #198, #199,
  2370. #200, #201, #202, #203, #204, #205, #206, #207,
  2371. #208, #209, #210, #211, #212, #213, #214, #247,
  2372. #216, #217, #218, #219, #220, #221, #222, #89 );
  2373. { lower case translation table for character set ISO 8859/1 Latin 1 }
  2374. CPISO88591LCT: array[192..255] of char =
  2375. ( #224, #225, #226, #227, #228, #229, #230, #231,
  2376. #232, #233, #234, #235, #236, #237, #238, #239,
  2377. #240, #241, #242, #243, #244, #245, #246, #215,
  2378. #248, #249, #250, #251, #252, #253, #254, #223,
  2379. #224, #225, #226, #227, #228, #229, #230, #231,
  2380. #232, #233, #234, #235, #236, #237, #238, #239,
  2381. #240, #241, #242, #243, #244, #245, #246, #247,
  2382. #248, #249, #250, #251, #252, #253, #254, #255 );
  2383. {$endif FPC_NOGENERICANSIROUTINES}
  2384. function sscanf(const s: string; const fmt : string;const Pointers : array of Pointer) : Integer;
  2385. var
  2386. i,j,n,m : SizeInt;
  2387. s1 : string;
  2388. function GetInt(unsigned : boolean=false) : Integer;
  2389. begin
  2390. s1 := '';
  2391. while (Length(s) > n) and (s[n] = ' ') do
  2392. inc(n);
  2393. { read sign }
  2394. if (Length(s)>= n) and (s[n] in ['+', '-']) then
  2395. begin
  2396. { don't accept - when reading unsigned }
  2397. if unsigned and (s[n]='-') then
  2398. begin
  2399. result:=length(s1);
  2400. exit;
  2401. end
  2402. else
  2403. begin
  2404. s1:=s1+s[n];
  2405. inc(n);
  2406. end;
  2407. end;
  2408. { read numbers }
  2409. while (Length(s) >= n) and
  2410. (s[n] in ['0'..'9']) do
  2411. begin
  2412. s1 := s1+s[n];
  2413. inc(n);
  2414. end;
  2415. Result := Length(s1);
  2416. end;
  2417. function GetFloat : Integer;
  2418. begin
  2419. s1 := '';
  2420. while (Length(s) > n) and (s[n] = ' ') do
  2421. inc(n);
  2422. while (Length(s) >= n) and
  2423. (s[n] in ['0'..'9', '+', '-', DecimalSeparator, 'e', 'E']) do
  2424. begin
  2425. s1 := s1+s[n];
  2426. inc(n);
  2427. end;
  2428. Result := Length(s1);
  2429. end;
  2430. function GetString : Integer;
  2431. begin
  2432. s1 := '';
  2433. while (Length(s) > n) and (s[n] = ' ') do
  2434. inc(n);
  2435. while (Length(s) >= n) and (s[n] <> ' ')do
  2436. begin
  2437. s1 := s1+s[n];
  2438. inc(n);
  2439. end;
  2440. Result := Length(s1);
  2441. end;
  2442. function ScanStr(c : Char) : Boolean;
  2443. begin
  2444. while (Length(s) > n) and (s[n] <> c) do
  2445. inc(n);
  2446. inc(n);
  2447. If (n <= Length(s)) then
  2448. Result := True
  2449. else
  2450. Result := False;
  2451. end;
  2452. function GetFmt : Integer;
  2453. begin
  2454. Result := -1;
  2455. while true do
  2456. begin
  2457. while (Length(fmt) > m) and (fmt[m] = ' ') do
  2458. inc(m);
  2459. if (m >= Length(fmt)) then
  2460. break;
  2461. if (fmt[m] = '%') then
  2462. begin
  2463. inc(m);
  2464. case fmt[m] of
  2465. 'd':
  2466. Result:=vtInteger;
  2467. {$ifndef FPUNONE}
  2468. 'f':
  2469. Result:=vtExtended;
  2470. {$endif}
  2471. 's':
  2472. Result:=vtString;
  2473. 'c':
  2474. Result:=vtChar;
  2475. else
  2476. raise EFormatError.CreateFmt(SInvalidFormat,[fmt]);
  2477. end;
  2478. inc(m);
  2479. break;
  2480. end;
  2481. if not(ScanStr(fmt[m])) then
  2482. break;
  2483. inc(m);
  2484. end;
  2485. end;
  2486. begin
  2487. n := 1;
  2488. m := 1;
  2489. Result := 0;
  2490. for i:=0 to High(Pointers) do
  2491. begin
  2492. j := GetFmt;
  2493. case j of
  2494. vtInteger :
  2495. begin
  2496. if GetInt>0 then
  2497. begin
  2498. pLongint(Pointers[i])^:=StrToInt(s1);
  2499. inc(Result);
  2500. end
  2501. else
  2502. break;
  2503. end;
  2504. vtchar :
  2505. begin
  2506. if Length(s)>n then
  2507. begin
  2508. pchar(Pointers[i])^:=s[n];
  2509. inc(n);
  2510. inc(Result);
  2511. end
  2512. else
  2513. break;
  2514. end;
  2515. {$ifndef FPUNONE}
  2516. vtExtended :
  2517. begin
  2518. if GetFloat>0 then
  2519. begin
  2520. pextended(Pointers[i])^:=StrToFloat(s1);
  2521. inc(Result);
  2522. end
  2523. else
  2524. break;
  2525. end;
  2526. {$endif}
  2527. vtString :
  2528. begin
  2529. if GetString > 0 then
  2530. begin
  2531. pansistring(Pointers[i])^:=s1;
  2532. inc(Result);
  2533. end
  2534. else
  2535. break;
  2536. end;
  2537. else
  2538. break;
  2539. end;
  2540. end;
  2541. end;