sysstr.inc 76 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000
  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. procedure CheckBoolStrs;
  1409. begin
  1410. If Length(TrueBoolStrs)=0 then
  1411. begin
  1412. SetLength(TrueBoolStrs,1);
  1413. TrueBoolStrs[0]:='True';
  1414. end;
  1415. If Length(FalseBoolStrs)=0 then
  1416. begin
  1417. SetLength(FalseBoolStrs,1);
  1418. FalseBoolStrs[0]:='False';
  1419. end;
  1420. end;
  1421. function BoolToStr(B: Boolean;UseBoolStrs:Boolean=False): string;
  1422. begin
  1423. if UseBoolStrs Then
  1424. begin
  1425. CheckBoolStrs;
  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. I : Longint;
  1451. {$ifdef FPUNONE}
  1452. D : Longint;
  1453. {$else}
  1454. D : Double;
  1455. {$endif}
  1456. Code: word;
  1457. begin
  1458. Temp:=upcase(S);
  1459. Val(temp,D,code);
  1460. Result:=true;
  1461. If Code=0 then
  1462. {$ifdef FPUNONE}
  1463. Value:=(D<>0)
  1464. {$else}
  1465. Value:=(D<>0.0)
  1466. {$endif}
  1467. else
  1468. begin
  1469. CheckBoolStrs;
  1470. for I:=low(TrueBoolStrs) to High(TrueBoolStrs) do
  1471. if Temp=upcase(TrueBoolStrs[I]) then
  1472. begin
  1473. Value:=true;
  1474. exit;
  1475. end;
  1476. for I:=low(FalseBoolStrs) to High(FalseBoolStrs) do
  1477. if Temp=upcase(FalseBoolStrs[I]) then
  1478. begin
  1479. Value:=false;
  1480. exit;
  1481. end;
  1482. Result:=false;
  1483. end;
  1484. end;
  1485. {$ifndef FPUNONE}
  1486. Function FloatToTextFmt(Buffer: PChar; Value: Extended; format: PChar): Integer;
  1487. begin
  1488. Result:=FloatToTextFmt(Buffer,Value,Format,DefaultFormatSettings);
  1489. end;
  1490. Function FloatToTextFmt(Buffer: PChar; Value: Extended; format: PChar;FormatSettings : TFormatSettings): Integer;
  1491. Var
  1492. Digits: String[40]; { String Of Digits }
  1493. Exponent: String[8]; { Exponent strin }
  1494. FmtStart, FmtStop: PChar; { Start And End Of relevant part }
  1495. { Of format String }
  1496. ExpFmt, ExpSize: Integer; { Type And Length Of }
  1497. { exponential format chosen }
  1498. Placehold: Array[1..4] Of Integer; { Number Of placeholders In All }
  1499. { four Sections }
  1500. thousand: Boolean; { thousand separators? }
  1501. UnexpectedDigits: Integer; { Number Of unexpected Digits that }
  1502. { have To be inserted before the }
  1503. { First placeholder. }
  1504. DigitExponent: Integer; { Exponent Of First digit In }
  1505. { Digits Array. }
  1506. { Find end of format section starting at P. False, if empty }
  1507. Function GetSectionEnd(Var P: PChar): Boolean;
  1508. Var
  1509. C: Char;
  1510. SQ, DQ: Boolean;
  1511. Begin
  1512. Result := False;
  1513. SQ := False;
  1514. DQ := False;
  1515. C := P[0];
  1516. While (C<>#0) And ((C<>';') Or SQ Or DQ) Do
  1517. Begin
  1518. Result := True;
  1519. Case C Of
  1520. #34: If Not SQ Then DQ := Not DQ;
  1521. #39: If Not DQ Then SQ := Not SQ;
  1522. End;
  1523. Inc(P);
  1524. C := P[0];
  1525. End;
  1526. End;
  1527. { Find start and end of format section to apply. If section doesn't exist,
  1528. use section 1. If section 2 is used, the sign of value is ignored. }
  1529. Procedure GetSectionRange(section: Integer);
  1530. Var
  1531. Sec: Array[1..3] Of PChar;
  1532. SecOk: Array[1..3] Of Boolean;
  1533. Begin
  1534. Sec[1] := format;
  1535. SecOk[1] := GetSectionEnd(Sec[1]);
  1536. If section > 1 Then
  1537. Begin
  1538. Sec[2] := Sec[1];
  1539. If Sec[2][0] <> #0 Then
  1540. Inc(Sec[2]);
  1541. SecOk[2] := GetSectionEnd(Sec[2]);
  1542. If section > 2 Then
  1543. Begin
  1544. Sec[3] := Sec[2];
  1545. If Sec[3][0] <> #0 Then
  1546. Inc(Sec[3]);
  1547. SecOk[3] := GetSectionEnd(Sec[3]);
  1548. End;
  1549. End;
  1550. If Not SecOk[1] Then
  1551. FmtStart := Nil
  1552. Else
  1553. Begin
  1554. If Not SecOk[section] Then
  1555. section := 1
  1556. Else If section = 2 Then
  1557. Value := -Value; { Remove sign }
  1558. If section = 1 Then FmtStart := format Else
  1559. Begin
  1560. FmtStart := Sec[section - 1];
  1561. Inc(FmtStart);
  1562. End;
  1563. FmtStop := Sec[section];
  1564. End;
  1565. End;
  1566. { Find format section ranging from FmtStart to FmtStop. }
  1567. Procedure GetFormatOptions;
  1568. Var
  1569. Fmt: PChar;
  1570. SQ, DQ: Boolean;
  1571. area: Integer;
  1572. Begin
  1573. SQ := False;
  1574. DQ := False;
  1575. Fmt := FmtStart;
  1576. ExpFmt := 0;
  1577. area := 1;
  1578. thousand := False;
  1579. Placehold[1] := 0;
  1580. Placehold[2] := 0;
  1581. Placehold[3] := 0;
  1582. Placehold[4] := 0;
  1583. While Fmt < FmtStop Do
  1584. Begin
  1585. Case Fmt[0] Of
  1586. #34:
  1587. Begin
  1588. If Not SQ Then
  1589. DQ := Not DQ;
  1590. Inc(Fmt);
  1591. End;
  1592. #39:
  1593. Begin
  1594. If Not DQ Then
  1595. SQ := Not SQ;
  1596. Inc(Fmt);
  1597. End;
  1598. Else
  1599. { if not in quotes, then interpret}
  1600. If Not (SQ Or DQ) Then
  1601. Begin
  1602. Case Fmt[0] Of
  1603. '0':
  1604. Begin
  1605. Case area Of
  1606. 1:
  1607. area := 2;
  1608. 4:
  1609. Begin
  1610. area := 3;
  1611. Inc(Placehold[3], Placehold[4]);
  1612. Placehold[4] := 0;
  1613. End;
  1614. End;
  1615. Inc(Placehold[area]);
  1616. Inc(Fmt);
  1617. End;
  1618. '#':
  1619. Begin
  1620. If area=3 Then
  1621. area:=4;
  1622. Inc(Placehold[area]);
  1623. Inc(Fmt);
  1624. End;
  1625. '.':
  1626. Begin
  1627. If area<3 Then
  1628. area:=3;
  1629. Inc(Fmt);
  1630. End;
  1631. ',':
  1632. Begin
  1633. thousand := DefaultFormatSettings.ThousandSeparator<>#0;
  1634. Inc(Fmt);
  1635. End;
  1636. 'e', 'E':
  1637. If ExpFmt = 0 Then
  1638. Begin
  1639. If (Fmt[0]='E') Then
  1640. ExpFmt:=1
  1641. Else
  1642. ExpFmt := 3;
  1643. Inc(Fmt);
  1644. If (Fmt<FmtStop) Then
  1645. Begin
  1646. Case Fmt[0] Of
  1647. '+':
  1648. Begin
  1649. End;
  1650. '-':
  1651. Inc(ExpFmt);
  1652. Else
  1653. ExpFmt := 0;
  1654. End;
  1655. If ExpFmt <> 0 Then
  1656. Begin
  1657. Inc(Fmt);
  1658. ExpSize := 0;
  1659. While (Fmt<FmtStop) And
  1660. (ExpSize<4) And
  1661. (Fmt[0] In ['0'..'9']) Do
  1662. Begin
  1663. Inc(ExpSize);
  1664. Inc(Fmt);
  1665. End;
  1666. End;
  1667. End;
  1668. End
  1669. Else
  1670. Inc(Fmt);
  1671. Else { Case }
  1672. Inc(Fmt);
  1673. End; { Case }
  1674. End { Begin }
  1675. Else
  1676. Inc(Fmt);
  1677. End; { Case }
  1678. End; { While .. Begin }
  1679. End;
  1680. Procedure FloatToStr;
  1681. Var
  1682. I, J, Exp, Width, Decimals, DecimalPoint, len: Integer;
  1683. Begin
  1684. If ExpFmt = 0 Then
  1685. Begin
  1686. { Fixpoint }
  1687. Decimals:=Placehold[3]+Placehold[4];
  1688. Width:=Placehold[1]+Placehold[2]+Decimals;
  1689. If (Decimals=0) Then
  1690. Str(Value:Width:0,Digits)
  1691. Else if Value>=0 then
  1692. Str(Value:Width+1:Decimals,Digits)
  1693. else
  1694. Str(Value:Width+2:Decimals,Digits);
  1695. len:=Length(Digits);
  1696. { Find the decimal point }
  1697. If (Decimals=0) Then
  1698. DecimalPoint:=len+1
  1699. Else
  1700. DecimalPoint:=len-Decimals;
  1701. { If value is very small, and no decimal places
  1702. are desired, remove the leading 0. }
  1703. If (Abs(Value) < 1) And (Placehold[2] = 0) Then
  1704. Begin
  1705. If (Placehold[1]=0) Then
  1706. Delete(Digits,DecimalPoint-1,1)
  1707. Else
  1708. Digits[DecimalPoint-1]:=' ';
  1709. End;
  1710. { Convert optional zeroes to spaces. }
  1711. I:=len;
  1712. J:=DecimalPoint+Placehold[3];
  1713. While (I>J) And (Digits[I]='0') Do
  1714. Begin
  1715. Digits[I] := ' ';
  1716. Dec(I);
  1717. End;
  1718. { If integer value and no obligatory decimal
  1719. places, remove decimal point. }
  1720. If (DecimalPoint < len) And (Digits[DecimalPoint + 1] = ' ') Then
  1721. Digits[DecimalPoint] := ' ';
  1722. { Convert spaces left from obligatory decimal point to zeroes.
  1723. MVC : If - sign is encountered, replace it too, and put at position 1}
  1724. I:=DecimalPoint-Placehold[2];
  1725. J:=0;
  1726. While (I<DecimalPoint) And (Digits[I] in [' ','-']) Do
  1727. Begin
  1728. If Digits[i]='-' then
  1729. J:=I;
  1730. Digits[I] := '0';
  1731. Inc(I);
  1732. End;
  1733. If (J<>0) then
  1734. Digits[1]:='-';
  1735. Exp := 0;
  1736. End
  1737. Else
  1738. Begin
  1739. { Scientific: exactly <Width> Digits With <Precision> Decimals
  1740. And adjusted Exponent. }
  1741. If Placehold[1]+Placehold[2]=0 Then
  1742. Placehold[1]:=1;
  1743. Decimals := Placehold[3] + Placehold[4];
  1744. Width:=Placehold[1]+Placehold[2]+Decimals;
  1745. { depending on the maximally supported precision, the exponent field }
  1746. { is longer/shorter }
  1747. {$ifdef FPC_HAS_TYPE_EXTENDED}
  1748. Str(Value:Width+8,Digits);
  1749. {$else FPC_HAS_TYPE_EXTENDED}
  1750. {$ifdef FPC_HAS_TYPE_DOUBLE}
  1751. Str(Value:Width+7,Digits);
  1752. {$else FPC_HAS_TYPE_DOUBLE}
  1753. Str(Value:Width+6,Digits);
  1754. {$endif FPC_HAS_TYPE_DOUBLE}
  1755. {$endif FPC_HAS_TYPE_EXTENDED}
  1756. { Find and cut out exponent. Always the
  1757. last 6 characters in the string.
  1758. -> 0000E+0000
  1759. *** No, not always the last 6 characters, this depends on
  1760. the maximally supported precision (JM)}
  1761. I:=Pos('E',Digits);
  1762. Val(Copy(Digits,I+1,255),Exp,J);
  1763. Exp:=Exp+1-(Placehold[1]+Placehold[2]);
  1764. Delete(Digits, I, 255);
  1765. { Str() always returns at least one digit after the decimal point.
  1766. If we don't want it, we have to remove it. }
  1767. If (Decimals=0) And (Placehold[1]+Placehold[2]<= 1) Then
  1768. Begin
  1769. If (Digits[4]>='5') Then
  1770. Begin
  1771. Inc(Digits[2]);
  1772. If (Digits[2]>'9') Then
  1773. Begin
  1774. Digits[2] := '1';
  1775. Inc(Exp);
  1776. End;
  1777. End;
  1778. Delete(Digits, 3, 2);
  1779. DecimalPoint := Length(Digits) + 1;
  1780. End
  1781. Else
  1782. Begin
  1783. { Move decimal point at the desired position }
  1784. Delete(Digits, 3, 1);
  1785. DecimalPoint:=2+Placehold[1]+Placehold[2];
  1786. If (Decimals<>0) Then
  1787. Insert('.',Digits,DecimalPoint);
  1788. End;
  1789. { Convert optional zeroes to spaces. }
  1790. I := Length(Digits);
  1791. J := DecimalPoint + Placehold[3];
  1792. While (I > J) And (Digits[I] = '0') Do
  1793. Begin
  1794. Digits[I] := ' ';
  1795. Dec(I);
  1796. End;
  1797. { If integer number and no obligatory decimal paces, remove decimal point }
  1798. If (DecimalPoint<Length(Digits)) And
  1799. (Digits[DecimalPoint+1]=' ') Then
  1800. Digits[DecimalPoint]:=' ';
  1801. If (Digits[1]=' ') Then
  1802. Begin
  1803. Delete(Digits, 1, 1);
  1804. Dec(DecimalPoint);
  1805. End;
  1806. { Calculate exponent string }
  1807. Str(Abs(Exp), Exponent);
  1808. While Length(Exponent)<ExpSize Do
  1809. Insert('0',Exponent,1);
  1810. If Exp >= 0 Then
  1811. Begin
  1812. If (ExpFmt In [1,3]) Then
  1813. Insert('+', Exponent, 1);
  1814. End
  1815. Else
  1816. Insert('-',Exponent,1);
  1817. If (ExpFmt<3) Then
  1818. Insert('E',Exponent,1)
  1819. Else
  1820. Insert('e',Exponent,1);
  1821. End;
  1822. DigitExponent:=DecimalPoint-2;
  1823. If (Digits[1]='-') Then
  1824. Dec(DigitExponent);
  1825. UnexpectedDigits:=DecimalPoint-1-(Placehold[1]+Placehold[2]);
  1826. End;
  1827. Function PutResult: LongInt;
  1828. Var
  1829. SQ, DQ: Boolean;
  1830. Fmt, Buf: PChar;
  1831. Dig, N: Integer;
  1832. Begin
  1833. SQ := False;
  1834. DQ := False;
  1835. Fmt := FmtStart;
  1836. Buf := Buffer;
  1837. Dig := 1;
  1838. While (Fmt<FmtStop) Do
  1839. Begin
  1840. //Write(Fmt[0]);
  1841. Case Fmt[0] Of
  1842. #34:
  1843. Begin
  1844. If Not SQ Then
  1845. DQ := Not DQ;
  1846. Inc(Fmt);
  1847. End;
  1848. #39:
  1849. Begin
  1850. If Not DQ Then
  1851. SQ := Not SQ;
  1852. Inc(Fmt);
  1853. End;
  1854. Else
  1855. If Not (SQ Or DQ) Then
  1856. Begin
  1857. Case Fmt[0] Of
  1858. '0', '#', '.':
  1859. Begin
  1860. If (Dig=1) And (UnexpectedDigits>0) Then
  1861. Begin
  1862. { Everything unexpected is written before the first digit }
  1863. For N := 1 To UnexpectedDigits Do
  1864. Begin
  1865. if (Digits[N]<>' ') Then
  1866. begin
  1867. Buf[0] := Digits[N];
  1868. Inc(Buf);
  1869. end;
  1870. If thousand And (Digits[N]<>'-') Then
  1871. Begin
  1872. If (DigitExponent Mod 3 = 0) And (DigitExponent>0) Then
  1873. Begin
  1874. Buf[0] := FormatSettings.ThousandSeparator;
  1875. Inc(Buf);
  1876. End;
  1877. Dec(DigitExponent);
  1878. End;
  1879. End;
  1880. Inc(Dig, UnexpectedDigits);
  1881. End;
  1882. If (Digits[Dig]<>' ') Then
  1883. Begin
  1884. If (Digits[Dig]='.') Then
  1885. Buf[0] := FormatSettings.DecimalSeparator
  1886. Else
  1887. Buf[0] := Digits[Dig];
  1888. Inc(Buf);
  1889. If thousand And (DigitExponent Mod 3 = 0) And (DigitExponent > 0) and (Digits[Dig]<>'-') Then
  1890. Begin
  1891. Buf[0] := FormatSettings.ThousandSeparator;
  1892. Inc(Buf);
  1893. End;
  1894. End;
  1895. Inc(Dig);
  1896. Dec(DigitExponent);
  1897. Inc(Fmt);
  1898. End;
  1899. 'e', 'E':
  1900. Begin
  1901. If ExpFmt <> 0 Then
  1902. Begin
  1903. Inc(Fmt);
  1904. If Fmt < FmtStop Then
  1905. Begin
  1906. If Fmt[0] In ['+', '-'] Then
  1907. Begin
  1908. Inc(Fmt, ExpSize);
  1909. For N:=1 To Length(Exponent) Do
  1910. Buf[N-1] := Exponent[N];
  1911. Inc(Buf,Length(Exponent));
  1912. ExpFmt:=0;
  1913. End;
  1914. Inc(Fmt);
  1915. End;
  1916. End
  1917. Else
  1918. Begin
  1919. { No legal exponential format.
  1920. Simply write the 'E' to the result. }
  1921. Buf[0] := Fmt[0];
  1922. Inc(Buf);
  1923. Inc(Fmt);
  1924. End;
  1925. End;
  1926. Else { Case }
  1927. { Usual character }
  1928. If (Fmt[0]<>',') Then
  1929. Begin
  1930. Buf[0] := Fmt[0];
  1931. Inc(Buf);
  1932. End;
  1933. Inc(Fmt);
  1934. End; { Case }
  1935. End
  1936. Else { IF }
  1937. Begin
  1938. { Character inside single or double quotes }
  1939. Buf[0] := Fmt[0];
  1940. Inc(Buf);
  1941. Inc(Fmt);
  1942. End;
  1943. End; { Case }
  1944. End; { While .. Begin }
  1945. Result:=PtrUInt(Buf)-PtrUInt(Buffer);
  1946. End;
  1947. Begin
  1948. If (Value>0) Then
  1949. GetSectionRange(1)
  1950. Else If (Value<0) Then
  1951. GetSectionRange(2)
  1952. Else
  1953. GetSectionRange(3);
  1954. If FmtStart = Nil Then
  1955. Begin
  1956. Result := FloatToText(Buffer, Value, ffGeneral, 15, 4, FormatSettings);
  1957. End
  1958. Else
  1959. Begin
  1960. GetFormatOptions;
  1961. If (ExpFmt = 0) And (Abs(Value) >= 1E18) Then
  1962. Result := FloatToText(Buffer, Value, ffGeneral, 15, 4, FormatSettings)
  1963. Else
  1964. Begin
  1965. FloatToStr;
  1966. Result := PutResult;
  1967. End;
  1968. End;
  1969. End;
  1970. Procedure FloatToDecimal(Out Result: TFloatRec; const Value; ValueType: TFloatValue; Precision, Decimals : integer);
  1971. var
  1972. Buffer: String[254]; //Though str func returns only 25 chars, this might change in the future
  1973. InfNan: string[3];
  1974. Error, N, L, Start, C: Integer;
  1975. GotNonZeroBeforeDot, BeforeDot : boolean;
  1976. begin
  1977. case ValueType of
  1978. fvExtended:
  1979. Str(Extended(Value):25, Buffer);
  1980. fvDouble,
  1981. fvReal:
  1982. Str(Double(Value):23, Buffer);
  1983. fvSingle:
  1984. Str(Single(Value):16, Buffer);
  1985. fvCurrency:
  1986. Str(Currency(Value):25, Buffer);
  1987. fvComp:
  1988. Str(Currency(Value):23, Buffer);
  1989. end;
  1990. N := 1;
  1991. L := Byte(Buffer[0]);
  1992. while Buffer[N]=' ' do
  1993. Inc(N);
  1994. Result.Negative := (Buffer[N] = '-');
  1995. if Result.Negative then
  1996. Inc(N)
  1997. else if (Buffer[N] = '+') then
  1998. inc(N);
  1999. { special cases for Inf and Nan }
  2000. if (L>=N+2) then
  2001. begin
  2002. InfNan:=copy(Buffer,N,3);
  2003. if (InfNan='Inf') then
  2004. begin
  2005. Result.Digits[0]:=#0;
  2006. Result.Exponent:=32767;
  2007. exit
  2008. end;
  2009. if (InfNan='Nan') then
  2010. begin
  2011. Result.Digits[0]:=#0;
  2012. Result.Exponent:=-32768;
  2013. exit
  2014. end;
  2015. end;
  2016. Start := N; //Start of digits
  2017. Result.Exponent := 0; BeforeDot := true;
  2018. GotNonZeroBeforeDot := false;
  2019. while (L>=N) and (Buffer[N]<>'E') do
  2020. begin
  2021. if Buffer[N]='.' then
  2022. BeforeDot := false
  2023. else
  2024. begin
  2025. if BeforeDot then
  2026. begin // Currently this is always 1 char
  2027. Inc(Result.Exponent);
  2028. Result.Digits[N-Start] := Buffer[N];
  2029. if Buffer[N] <> '0' then
  2030. GotNonZeroBeforeDot := true;
  2031. end
  2032. else
  2033. Result.Digits[N-Start-1] := Buffer[N]
  2034. end;
  2035. Inc(N);
  2036. end;
  2037. Inc(N); // Pass through 'E'
  2038. if N<=L then
  2039. begin
  2040. Val(Copy(Buffer, N, L-N+1), C, Error); // Get exponent after 'E'
  2041. Inc(Result.Exponent, C);
  2042. end;
  2043. // Calculate number of digits we have from str
  2044. if BeforeDot then
  2045. N := N - Start - 1
  2046. else
  2047. N := N - Start - 2;
  2048. L := SizeOf(Result.Digits);
  2049. if N<L then
  2050. FillChar(Result.Digits[N], L-N, '0'); //Zero remaining space
  2051. if Decimals + Result.Exponent < Precision Then //After this it is the same as in FloatToDecimal
  2052. N := Decimals + Result.Exponent
  2053. Else
  2054. N := Precision;
  2055. if N >= L Then
  2056. N := L-1;
  2057. if N = 0 Then
  2058. begin
  2059. if Result.Digits[0] >= '5' Then
  2060. begin
  2061. Result.Digits[0] := '1';
  2062. Result.Digits[1] := #0;
  2063. Inc(Result.Exponent);
  2064. end
  2065. Else
  2066. Result.Digits[0] := #0;
  2067. end //N=0
  2068. Else if N > 0 Then
  2069. begin
  2070. if Result.Digits[N] >= '5' Then
  2071. begin
  2072. Repeat
  2073. Result.Digits[N] := #0;
  2074. Dec(N);
  2075. Inc(Result.Digits[N]);
  2076. Until (N = 0) Or (Result.Digits[N] < ':');
  2077. If Result.Digits[0] = ':' Then
  2078. begin
  2079. Result.Digits[0] := '1';
  2080. Inc(Result.Exponent);
  2081. end;
  2082. end
  2083. Else
  2084. begin
  2085. Result.Digits[N] := '0';
  2086. While (N > -1) And (Result.Digits[N] = '0') Do
  2087. begin
  2088. Result.Digits[N] := #0;
  2089. Dec(N);
  2090. end;
  2091. end;
  2092. end //N>0
  2093. Else
  2094. Result.Digits[0] := #0;
  2095. if (Result.Digits[0] = #0) and
  2096. not GotNonZeroBeforeDot then
  2097. begin
  2098. Result.Exponent := 0;
  2099. Result.Negative := False;
  2100. end;
  2101. end;
  2102. Procedure FloatToDecimal(Out Result: TFloatRec; Value: Extended; Precision, Decimals : integer);
  2103. begin
  2104. FloatToDecimal(Result,Value,fvExtended,Precision,Decimals);
  2105. end;
  2106. Function FormatFloat(Const Format : String; Value : Extended; Const FormatSettings: TFormatSettings) : String;
  2107. Var
  2108. buf : Array[0..1024] of char;
  2109. Begin // not changed to pchar(pointer(). Possibly not safe
  2110. Buf[FloatToTextFmt(@Buf[0],Value,Pchar(Format),FormatSettings)]:=#0;
  2111. Result:=StrPas(@Buf[0]);
  2112. End;
  2113. Function FormatFloat(Const format: String; Value: Extended): String;
  2114. begin
  2115. Result:=FormatFloat(Format,Value,DefaultFormatSettings);
  2116. end;
  2117. Function FormatCurr(const Format: string; Value: Currency; Const FormatSettings: TFormatSettings): string;
  2118. begin
  2119. Result := FormatFloat(Format, Value,FormatSettings);
  2120. end;
  2121. function FormatCurr(const Format: string; Value: Currency): string;
  2122. begin
  2123. Result:=FormatCurr(Format,Value,DefaultFormatSettings);
  2124. end;
  2125. {$endif}
  2126. {==============================================================================}
  2127. { extra functions }
  2128. {==============================================================================}
  2129. { LeftStr returns Count left-most characters from S }
  2130. function LeftStr(const S: string; Count: integer): string;
  2131. begin
  2132. result := Copy(S, 1, Count);
  2133. end ;
  2134. { RightStr returns Count right-most characters from S }
  2135. function RightStr(const S: string; Count: integer): string;
  2136. begin
  2137. If Count>Length(S) then
  2138. Count:=Length(S);
  2139. result := Copy(S, 1 + Length(S) - Count, Count);
  2140. end;
  2141. { BCDToInt converts the BCD value Value to an integer }
  2142. function BCDToInt(Value: integer): integer;
  2143. var i, j, digit: integer;
  2144. begin
  2145. result := 0;
  2146. j := 1;
  2147. for i := 0 to SizeOf(Value) shl 1 - 1 do begin
  2148. digit := Value and 15;
  2149. if digit > $9 then
  2150. begin
  2151. if i = 0 then
  2152. begin
  2153. if digit in [$B, $D] then j := -1
  2154. end
  2155. else raise EConvertError.createfmt(SInvalidBCD,[Value]);
  2156. end
  2157. else
  2158. begin
  2159. result := result + j * digit;
  2160. j := j * 10;
  2161. end ;
  2162. Value := Value shr 4;
  2163. end ;
  2164. end ;
  2165. Function LastDelimiter(const Delimiters, S: string): Integer;
  2166. var
  2167. chs: TSysCharSet;
  2168. I: LongInt;
  2169. begin
  2170. chs := [];
  2171. for I := 1 to Length(Delimiters) do
  2172. Include(chs, Delimiters[I]);
  2173. Result:=Length(S);
  2174. While (Result>0) and not (S[Result] in chs) do
  2175. Dec(Result);
  2176. end;
  2177. Function StringReplace(const S, OldPattern, NewPattern: string; Flags: TReplaceFlags): string;
  2178. var
  2179. Srch,OldP,RemS: string; // Srch and Oldp can contain uppercase versions of S,OldPattern
  2180. P : Integer;
  2181. begin
  2182. Srch:=S;
  2183. OldP:=OldPattern;
  2184. if rfIgnoreCase in Flags then
  2185. begin
  2186. Srch:=AnsiUpperCase(Srch);
  2187. OldP:=AnsiUpperCase(OldP);
  2188. end;
  2189. RemS:=S;
  2190. Result:='';
  2191. while (Length(Srch)<>0) do
  2192. begin
  2193. P:=AnsiPos(OldP, Srch);
  2194. if P=0 then
  2195. begin
  2196. Result:=Result+RemS;
  2197. Srch:='';
  2198. end
  2199. else
  2200. begin
  2201. Result:=Result+Copy(RemS,1,P-1)+NewPattern;
  2202. P:=P+Length(OldP);
  2203. RemS:=Copy(RemS,P,Length(RemS)-P+1);
  2204. if not (rfReplaceAll in Flags) then
  2205. begin
  2206. Result:=Result+RemS;
  2207. Srch:='';
  2208. end
  2209. else
  2210. Srch:=Copy(Srch,P,Length(Srch)-P+1);
  2211. end;
  2212. end;
  2213. end;
  2214. Function IsDelimiter(const Delimiters, S: string; Index: Integer): Boolean;
  2215. begin
  2216. Result:=False;
  2217. If (Index>0) and (Index<=Length(S)) then
  2218. Result:=Pos(S[Index],Delimiters)<>0; // Note we don't do MBCS yet
  2219. end;
  2220. Function ByteToCharLen(const S: string; MaxLen: Integer): Integer;
  2221. begin
  2222. Result:=Length(S);
  2223. If Result>MaxLen then
  2224. Result:=MaxLen;
  2225. end;
  2226. Function ByteToCharIndex(const S: string; Index: Integer): Integer;
  2227. begin
  2228. Result:=Index;
  2229. end;
  2230. Function CharToByteLen(const S: string; MaxLen: Integer): Integer;
  2231. begin
  2232. Result:=Length(S);
  2233. If Result>MaxLen then
  2234. Result:=MaxLen;
  2235. end;
  2236. Function CharToByteIndex(const S: string; Index: Integer): Integer;
  2237. begin
  2238. Result:=Index;
  2239. end;
  2240. Function ByteType(const S: string; Index: Integer): TMbcsByteType;
  2241. begin
  2242. Result:=mbSingleByte;
  2243. end;
  2244. Function StrByteType(Str: PChar; Index: Cardinal): TMbcsByteType;
  2245. begin
  2246. Result:=mbSingleByte;
  2247. end;
  2248. Function StrCharLength(const Str: PChar): Integer;
  2249. begin
  2250. result:=widestringmanager.CharLengthPCharProc(Str);
  2251. end;
  2252. function StrNextChar(const Str: PChar): PChar;
  2253. begin
  2254. result:=Str+StrCharLength(Str);
  2255. end;
  2256. Function FindCmdLineSwitch(const Switch: string; const Chars: TSysCharSet;IgnoreCase: Boolean): Boolean;
  2257. Var
  2258. I,L : Integer;
  2259. S,T : String;
  2260. begin
  2261. Result:=False;
  2262. S:=Switch;
  2263. If IgnoreCase then
  2264. S:=UpperCase(S);
  2265. I:=ParamCount;
  2266. While (Not Result) and (I>0) do
  2267. begin
  2268. L:=Length(Paramstr(I));
  2269. If (L>0) and (ParamStr(I)[1] in Chars) then
  2270. begin
  2271. T:=Copy(ParamStr(I),2,L-1);
  2272. If IgnoreCase then
  2273. T:=UpperCase(T);
  2274. Result:=S=T;
  2275. end;
  2276. Dec(i);
  2277. end;
  2278. end;
  2279. Function FindCmdLineSwitch(const Switch: string; IgnoreCase: Boolean): Boolean;
  2280. begin
  2281. Result:=FindCmdLineSwitch(Switch,SwitchChars,IgnoreCase);
  2282. end;
  2283. Function FindCmdLineSwitch(const Switch: string): Boolean;
  2284. begin
  2285. Result:=FindCmdLineSwitch(Switch,SwitchChars,False);
  2286. end;
  2287. function WrapText(const Line, BreakStr: string; const BreakChars: TSysCharSet; MaxCol: Integer): string;
  2288. const
  2289. Quotes = ['''', '"'];
  2290. Var
  2291. L : String;
  2292. C,LQ,BC : Char;
  2293. P,BLen,Len : Integer;
  2294. HB,IBC : Boolean;
  2295. begin
  2296. Result:='';
  2297. L:=Line;
  2298. Blen:=Length(BreakStr);
  2299. If (BLen>0) then
  2300. BC:=BreakStr[1]
  2301. else
  2302. BC:=#0;
  2303. Len:=Length(L);
  2304. While (Len>0) do
  2305. begin
  2306. P:=1;
  2307. LQ:=#0;
  2308. HB:=False;
  2309. IBC:=False;
  2310. While ((P<=Len) and ((P<=MaxCol) or not IBC)) and ((LQ<>#0) or Not HB) do
  2311. begin
  2312. C:=L[P];
  2313. If (C=LQ) then
  2314. LQ:=#0
  2315. else If (C in Quotes) then
  2316. LQ:=C;
  2317. If (LQ<>#0) then
  2318. Inc(P)
  2319. else
  2320. begin
  2321. HB:=((C=BC) and (BreakStr=Copy(L,P,BLen)));
  2322. If HB then
  2323. Inc(P,Blen)
  2324. else
  2325. begin
  2326. If (P>MaxCol) then
  2327. IBC:=C in BreakChars;
  2328. Inc(P);
  2329. end;
  2330. end;
  2331. // Writeln('"',C,'" : IBC : ',IBC,' HB : ',HB,' LQ : ',LQ,' P>MaxCol : ',P>MaxCol);
  2332. end;
  2333. Result:=Result+Copy(L,1,P-1);
  2334. If Not HB then
  2335. Result:=Result+BreakStr;
  2336. Delete(L,1,P-1);
  2337. Len:=Length(L);
  2338. end;
  2339. end;
  2340. function WrapText(const Line: string; MaxCol: Integer): string;
  2341. begin
  2342. Result:=WrapText(Line,sLineBreak, [' ', '-', #9], MaxCol);
  2343. end;
  2344. {$ifndef FPC_NOGENERICANSIROUTINES}
  2345. {
  2346. Case Translation Tables
  2347. Can be used in internationalization support.
  2348. Although these tables can be obtained through system calls
  2349. cd it is better to not use those, since most implementation are not 100%
  2350. WARNING:
  2351. before modifying a translation table make sure that the current codepage
  2352. of the OS corresponds to the one you make changes to
  2353. }
  2354. const
  2355. { upper case translation table for character set 850 }
  2356. CP850UCT: array[128..255] of char =
  2357. (#128,#154,#144,#182,#142,#182,#143,#128,#210,#211,#212,#216,#215,#222,#142,#143,
  2358. #144,#146,#146,#226,#153,#227,#234,#235,'Y',#153,#154,#157,#156,#157,#158,#159,
  2359. #181,#214,#224,#233,#165,#165,#166,#167,#168,#169,#170,#171,#172,#173,#174,#175,
  2360. #176,#177,#178,#179,#180,#181,#182,#183,#184,#185,#186,#187,#188,#189,#190,#191,
  2361. #192,#193,#194,#195,#196,#197,#199,#199,#200,#201,#202,#203,#204,#205,#206,#207,
  2362. #208,#209,#210,#211,#212,#213,#214,#215,#216,#217,#218,#219,#220,#221,#222,#223,
  2363. #224,#225,#226,#227,#229,#229,#230,#237,#232,#233,#234,#235,#237,#237,#238,#239,
  2364. #240,#241,#242,#243,#244,#245,#246,#247,#248,#249,#250,#251,#252,#253,#254,#255);
  2365. { lower case translation table for character set 850 }
  2366. CP850LCT: array[128..255] of char =
  2367. (#135,#129,#130,#131,#132,#133,#134,#135,#136,#137,#138,#139,#140,#141,#132,#134,
  2368. #130,#145,#145,#147,#148,#149,#150,#151,#152,#148,#129,#155,#156,#155,#158,#159,
  2369. #160,#161,#162,#163,#164,#164,#166,#167,#168,#169,#170,#171,#172,#173,#174,#175,
  2370. #176,#177,#178,#179,#180,#160,#131,#133,#184,#185,#186,#187,#188,#189,#190,#191,
  2371. #192,#193,#194,#195,#196,#197,#198,#198,#200,#201,#202,#203,#204,#205,#206,#207,
  2372. #208,#209,#136,#137,#138,#213,#161,#140,#139,#217,#218,#219,#220,#221,#141,#223,
  2373. #162,#225,#147,#149,#228,#228,#230,#237,#232,#163,#150,#151,#236,#236,#238,#239,
  2374. #240,#241,#242,#243,#244,#245,#246,#247,#248,#249,#250,#251,#252,#253,#254,#255);
  2375. { upper case translation table for character set ISO 8859/1 Latin 1 }
  2376. CPISO88591UCT: array[192..255] of char =
  2377. ( #192, #193, #194, #195, #196, #197, #198, #199,
  2378. #200, #201, #202, #203, #204, #205, #206, #207,
  2379. #208, #209, #210, #211, #212, #213, #214, #215,
  2380. #216, #217, #218, #219, #220, #221, #222, #223,
  2381. #192, #193, #194, #195, #196, #197, #198, #199,
  2382. #200, #201, #202, #203, #204, #205, #206, #207,
  2383. #208, #209, #210, #211, #212, #213, #214, #247,
  2384. #216, #217, #218, #219, #220, #221, #222, #89 );
  2385. { lower case translation table for character set ISO 8859/1 Latin 1 }
  2386. CPISO88591LCT: array[192..255] of char =
  2387. ( #224, #225, #226, #227, #228, #229, #230, #231,
  2388. #232, #233, #234, #235, #236, #237, #238, #239,
  2389. #240, #241, #242, #243, #244, #245, #246, #215,
  2390. #248, #249, #250, #251, #252, #253, #254, #223,
  2391. #224, #225, #226, #227, #228, #229, #230, #231,
  2392. #232, #233, #234, #235, #236, #237, #238, #239,
  2393. #240, #241, #242, #243, #244, #245, #246, #247,
  2394. #248, #249, #250, #251, #252, #253, #254, #255 );
  2395. {$endif FPC_NOGENERICANSIROUTINES}
  2396. function sscanf(const s: string; const fmt : string;const Pointers : array of Pointer) : Integer;
  2397. var
  2398. i,j,n,m : SizeInt;
  2399. s1 : string;
  2400. function GetInt(unsigned : boolean=false) : Integer;
  2401. begin
  2402. s1 := '';
  2403. while (Length(s) > n) and (s[n] = ' ') do
  2404. inc(n);
  2405. { read sign }
  2406. if (Length(s)>= n) and (s[n] in ['+', '-']) then
  2407. begin
  2408. { don't accept - when reading unsigned }
  2409. if unsigned and (s[n]='-') then
  2410. begin
  2411. result:=length(s1);
  2412. exit;
  2413. end
  2414. else
  2415. begin
  2416. s1:=s1+s[n];
  2417. inc(n);
  2418. end;
  2419. end;
  2420. { read numbers }
  2421. while (Length(s) >= n) and
  2422. (s[n] in ['0'..'9']) do
  2423. begin
  2424. s1 := s1+s[n];
  2425. inc(n);
  2426. end;
  2427. Result := Length(s1);
  2428. end;
  2429. function GetFloat : Integer;
  2430. begin
  2431. s1 := '';
  2432. while (Length(s) > n) and (s[n] = ' ') do
  2433. inc(n);
  2434. while (Length(s) >= n) and
  2435. (s[n] in ['0'..'9', '+', '-', DecimalSeparator, 'e', 'E']) do
  2436. begin
  2437. s1 := s1+s[n];
  2438. inc(n);
  2439. end;
  2440. Result := Length(s1);
  2441. end;
  2442. function GetString : Integer;
  2443. begin
  2444. s1 := '';
  2445. while (Length(s) > n) and (s[n] = ' ') do
  2446. inc(n);
  2447. while (Length(s) >= n) and (s[n] <> ' ')do
  2448. begin
  2449. s1 := s1+s[n];
  2450. inc(n);
  2451. end;
  2452. Result := Length(s1);
  2453. end;
  2454. function ScanStr(c : Char) : Boolean;
  2455. begin
  2456. while (Length(s) > n) and (s[n] <> c) do
  2457. inc(n);
  2458. inc(n);
  2459. If (n <= Length(s)) then
  2460. Result := True
  2461. else
  2462. Result := False;
  2463. end;
  2464. function GetFmt : Integer;
  2465. begin
  2466. Result := -1;
  2467. while true do
  2468. begin
  2469. while (Length(fmt) > m) and (fmt[m] = ' ') do
  2470. inc(m);
  2471. if (m >= Length(fmt)) then
  2472. break;
  2473. if (fmt[m] = '%') then
  2474. begin
  2475. inc(m);
  2476. case fmt[m] of
  2477. 'd':
  2478. Result:=vtInteger;
  2479. {$ifndef FPUNONE}
  2480. 'f':
  2481. Result:=vtExtended;
  2482. {$endif}
  2483. 's':
  2484. Result:=vtString;
  2485. 'c':
  2486. Result:=vtChar;
  2487. else
  2488. raise EFormatError.CreateFmt(SInvalidFormat,[fmt]);
  2489. end;
  2490. inc(m);
  2491. break;
  2492. end;
  2493. if not(ScanStr(fmt[m])) then
  2494. break;
  2495. inc(m);
  2496. end;
  2497. end;
  2498. begin
  2499. n := 1;
  2500. m := 1;
  2501. Result := 0;
  2502. for i:=0 to High(Pointers) do
  2503. begin
  2504. j := GetFmt;
  2505. case j of
  2506. vtInteger :
  2507. begin
  2508. if GetInt>0 then
  2509. begin
  2510. pLongint(Pointers[i])^:=StrToInt(s1);
  2511. inc(Result);
  2512. end
  2513. else
  2514. break;
  2515. end;
  2516. vtchar :
  2517. begin
  2518. if Length(s)>n then
  2519. begin
  2520. pchar(Pointers[i])^:=s[n];
  2521. inc(n);
  2522. inc(Result);
  2523. end
  2524. else
  2525. break;
  2526. end;
  2527. {$ifndef FPUNONE}
  2528. vtExtended :
  2529. begin
  2530. if GetFloat>0 then
  2531. begin
  2532. pextended(Pointers[i])^:=StrToFloat(s1);
  2533. inc(Result);
  2534. end
  2535. else
  2536. break;
  2537. end;
  2538. {$endif}
  2539. vtString :
  2540. begin
  2541. if GetString > 0 then
  2542. begin
  2543. pansistring(Pointers[i])^:=s1;
  2544. inc(Result);
  2545. end
  2546. else
  2547. break;
  2548. end;
  2549. else
  2550. break;
  2551. end;
  2552. end;
  2553. end;