Common.cpp 104 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492
  1. //---------------------------------------------------------------------------
  2. #define NO_WIN32_LEAN_AND_MEAN
  3. #include <vcl.h>
  4. #pragma hdrstop
  5. #include "Common.h"
  6. #include "Exceptions.h"
  7. #include "TextsCore.h"
  8. #include "Interface.h"
  9. #include <StrUtils.hpp>
  10. #include <DateUtils.hpp>
  11. #include <math.h>
  12. #include <shlobj.h>
  13. #include <limits>
  14. #include <shlwapi.h>
  15. #include <CoreMain.h>
  16. #include <openssl/pkcs12.h>
  17. #include <openssl/pem.h>
  18. #include <openssl/err.h>
  19. //---------------------------------------------------------------------------
  20. #pragma package(smart_init)
  21. //---------------------------------------------------------------------------
  22. const wchar_t * DSTModeNames = L"Win;Unix;Keep";
  23. //---------------------------------------------------------------------------
  24. //---------------------------------------------------------------------------
  25. const wchar_t EngShortMonthNames[12][4] =
  26. {L"Jan", L"Feb", L"Mar", L"Apr", L"May", L"Jun",
  27. L"Jul", L"Aug", L"Sep", L"Oct", L"Nov", L"Dec"};
  28. const char Bom[3] = "\xEF\xBB\xBF";
  29. const wchar_t TokenPrefix = L'%';
  30. const wchar_t NoReplacement = wchar_t(false);
  31. const wchar_t TokenReplacement = wchar_t(true);
  32. const UnicodeString LocalInvalidChars = L"/\\:*?\"<>|";
  33. const UnicodeString PasswordMask = L"***";
  34. const UnicodeString Ellipsis = L"...";
  35. //---------------------------------------------------------------------------
  36. UnicodeString ReplaceChar(UnicodeString Str, wchar_t A, wchar_t B)
  37. {
  38. for (Integer Index = 0; Index < Str.Length(); Index++)
  39. if (Str[Index+1] == A) Str[Index+1] = B;
  40. return Str;
  41. }
  42. //---------------------------------------------------------------------------
  43. UnicodeString DeleteChar(UnicodeString Str, wchar_t C)
  44. {
  45. int P;
  46. while ((P = Str.Pos(C)) > 0)
  47. {
  48. Str.Delete(P, 1);
  49. }
  50. return Str;
  51. }
  52. //---------------------------------------------------------------------------
  53. template<typename T>
  54. void DoPackStr(T & Str)
  55. {
  56. // Following will free unnecessary bytes
  57. Str = Str.c_str();
  58. }
  59. //---------------------------------------------------------------------------
  60. void PackStr(UnicodeString & Str)
  61. {
  62. DoPackStr(Str);
  63. }
  64. //---------------------------------------------------------------------------
  65. void PackStr(RawByteString & Str)
  66. {
  67. DoPackStr(Str);
  68. }
  69. //---------------------------------------------------------------------------
  70. void PackStr(AnsiString & Str)
  71. {
  72. DoPackStr(Str);
  73. }
  74. //---------------------------------------------------------------------------
  75. template<typename T>
  76. void __fastcall DoShred(T & Str)
  77. {
  78. if (!Str.IsEmpty())
  79. {
  80. Str.Unique();
  81. memset(Str.c_str(), 0, Str.Length() * sizeof(*Str.c_str()));
  82. Str = L"";
  83. }
  84. }
  85. //---------------------------------------------------------------------------
  86. void __fastcall Shred(UnicodeString & Str)
  87. {
  88. DoShred(Str);
  89. }
  90. //---------------------------------------------------------------------------
  91. void __fastcall Shred(UTF8String & Str)
  92. {
  93. DoShred(Str);
  94. }
  95. //---------------------------------------------------------------------------
  96. void __fastcall Shred(AnsiString & Str)
  97. {
  98. DoShred(Str);
  99. }
  100. //---------------------------------------------------------------------------
  101. UnicodeString AnsiToString(const RawByteString & S)
  102. {
  103. return UnicodeString(AnsiString(S));
  104. }
  105. //---------------------------------------------------------------------------
  106. UnicodeString AnsiToString(const char * S, size_t Len)
  107. {
  108. return UnicodeString(AnsiString(S, Len));
  109. }
  110. //---------------------------------------------------------------------------
  111. UnicodeString MakeValidFileName(UnicodeString FileName)
  112. {
  113. UnicodeString IllegalChars = L":;,=+<>|\"[] \\/?*";
  114. for (int Index = 0; Index < IllegalChars.Length(); Index++)
  115. {
  116. FileName = ReplaceChar(FileName, IllegalChars[Index+1], L'-');
  117. }
  118. return FileName;
  119. }
  120. //---------------------------------------------------------------------------
  121. UnicodeString RootKeyToStr(HKEY RootKey)
  122. {
  123. if (RootKey == HKEY_USERS) return L"HKU";
  124. else
  125. if (RootKey == HKEY_LOCAL_MACHINE) return L"HKLM";
  126. else
  127. if (RootKey == HKEY_CURRENT_USER) return L"HKCU";
  128. else
  129. if (RootKey == HKEY_CLASSES_ROOT) return L"HKCR";
  130. else
  131. if (RootKey == HKEY_CURRENT_CONFIG) return L"HKCC";
  132. else
  133. if (RootKey == HKEY_DYN_DATA) return L"HKDD";
  134. else
  135. { Abort(); return L""; };
  136. }
  137. //---------------------------------------------------------------------------
  138. UnicodeString BooleanToEngStr(bool B)
  139. {
  140. if (B)
  141. {
  142. return L"Yes";
  143. }
  144. else
  145. {
  146. return L"No";
  147. }
  148. }
  149. //---------------------------------------------------------------------------
  150. UnicodeString BooleanToStr(bool B)
  151. {
  152. if (B)
  153. {
  154. return LoadStr(YES_STR);
  155. }
  156. else
  157. {
  158. return LoadStr(NO_STR);
  159. }
  160. }
  161. //---------------------------------------------------------------------------
  162. UnicodeString DefaultStr(const UnicodeString & Str, const UnicodeString & Default)
  163. {
  164. if (!Str.IsEmpty())
  165. {
  166. return Str;
  167. }
  168. else
  169. {
  170. return Default;
  171. }
  172. }
  173. //---------------------------------------------------------------------------
  174. UnicodeString CutToChar(UnicodeString &Str, wchar_t Ch, bool Trim)
  175. {
  176. Integer P = Str.Pos(Ch);
  177. UnicodeString Result;
  178. if (P)
  179. {
  180. Result = Str.SubString(1, P-1);
  181. Str.Delete(1, P);
  182. }
  183. else
  184. {
  185. Result = Str;
  186. Str = L"";
  187. }
  188. if (Trim)
  189. {
  190. Result = Result.TrimRight();
  191. Str = Str.TrimLeft();
  192. }
  193. return Result;
  194. }
  195. //---------------------------------------------------------------------------
  196. UnicodeString CopyToChars(const UnicodeString & Str, int & From, UnicodeString Chs, bool Trim,
  197. wchar_t * Delimiter, bool DoubleDelimiterEscapes)
  198. {
  199. UnicodeString Result;
  200. int P;
  201. for (P = From; P <= Str.Length(); P++)
  202. {
  203. if (IsDelimiter(Chs, Str, P))
  204. {
  205. if (DoubleDelimiterEscapes &&
  206. (P < Str.Length()) &&
  207. IsDelimiter(Chs, Str, P + 1))
  208. {
  209. Result += Str[P];
  210. P++;
  211. }
  212. else
  213. {
  214. break;
  215. }
  216. }
  217. else
  218. {
  219. Result += Str[P];
  220. }
  221. }
  222. if (P <= Str.Length())
  223. {
  224. if (Delimiter != NULL)
  225. {
  226. *Delimiter = Str[P];
  227. }
  228. }
  229. else
  230. {
  231. if (Delimiter != NULL)
  232. {
  233. *Delimiter = L'\0';
  234. }
  235. }
  236. // even if we reached the end, return index, as if there were the delimiter,
  237. // so caller can easily find index of the end of the piece by subtracting
  238. // 2 from From (as long as he did not asked for trimming)
  239. From = P+1;
  240. if (Trim)
  241. {
  242. Result = Result.TrimRight();
  243. while ((From <= Str.Length()) && (Str[From] == L' '))
  244. {
  245. From++;
  246. }
  247. }
  248. return Result;
  249. }
  250. //---------------------------------------------------------------------------
  251. UnicodeString CopyToChar(const UnicodeString & Str, wchar_t Ch, bool Trim)
  252. {
  253. int From = 1;
  254. return CopyToChars(Str, From, UnicodeString(Ch), Trim);
  255. }
  256. //---------------------------------------------------------------------------
  257. UnicodeString DelimitStr(UnicodeString Str, UnicodeString Chars)
  258. {
  259. for (int i = 1; i <= Str.Length(); i++)
  260. {
  261. if (Str.IsDelimiter(Chars, i))
  262. {
  263. Str.Insert(L"\\", i);
  264. i++;
  265. }
  266. }
  267. return Str;
  268. }
  269. //---------------------------------------------------------------------------
  270. UnicodeString ShellDelimitStr(UnicodeString Str, wchar_t Quote)
  271. {
  272. UnicodeString Chars = L"$\\";
  273. if (Quote == L'"')
  274. {
  275. Chars += L"`\"";
  276. }
  277. return DelimitStr(Str, Chars);
  278. }
  279. //---------------------------------------------------------------------------
  280. UnicodeString ExceptionLogString(Exception *E)
  281. {
  282. DebugAssert(E);
  283. if (E->InheritsFrom(__classid(Exception)))
  284. {
  285. UnicodeString Msg;
  286. Msg = FORMAT(L"(%s) %s", (E->ClassName(), E->Message));
  287. if (E->InheritsFrom(__classid(ExtException)))
  288. {
  289. TStrings * MoreMessages = ((ExtException*)E)->MoreMessages;
  290. if (MoreMessages)
  291. {
  292. Msg += L"\n" +
  293. ReplaceStr(MoreMessages->Text, L"\r", L"");
  294. }
  295. }
  296. return Msg;
  297. }
  298. else
  299. {
  300. wchar_t Buffer[1024];
  301. ExceptionErrorMessage(ExceptObject(), ExceptAddr(), Buffer, LENOF(Buffer));
  302. return UnicodeString(Buffer);
  303. }
  304. }
  305. //---------------------------------------------------------------------------
  306. UnicodeString __fastcall MainInstructions(const UnicodeString & S)
  307. {
  308. UnicodeString MainMsgTag = LoadStr(MAIN_MSG_TAG);
  309. return MainMsgTag + S + MainMsgTag;
  310. }
  311. //---------------------------------------------------------------------------
  312. bool __fastcall HasParagraphs(const UnicodeString & S)
  313. {
  314. return (S.Pos(L"\n\n") > 0);
  315. }
  316. //---------------------------------------------------------------------------
  317. UnicodeString __fastcall MainInstructionsFirstParagraph(const UnicodeString & S)
  318. {
  319. // WORKAROUND, we consider it bad practice, the highlighting should better
  320. // be localized (but maybe we change our mind later)
  321. UnicodeString Result;
  322. int Pos = S.Pos(L"\n\n");
  323. // we would not be calling this on single paragraph message
  324. if (DebugAlwaysTrue(Pos > 0))
  325. {
  326. Result =
  327. MainInstructions(S.SubString(1, Pos - 1)) +
  328. S.SubString(Pos, S.Length() - Pos + 1);
  329. }
  330. else
  331. {
  332. Result = MainInstructions(S);
  333. }
  334. return Result;
  335. }
  336. //---------------------------------------------------------------------------
  337. bool ExtractMainInstructions(UnicodeString & S, UnicodeString & MainInstructions)
  338. {
  339. bool Result = false;
  340. UnicodeString MainMsgTag = LoadStr(MAIN_MSG_TAG);
  341. if (StartsStr(MainMsgTag, S))
  342. {
  343. int EndTagPos =
  344. S.SubString(MainMsgTag.Length() + 1, S.Length() - MainMsgTag.Length()).Pos(MainMsgTag);
  345. if (EndTagPos > 0)
  346. {
  347. MainInstructions = S.SubString(MainMsgTag.Length() + 1, EndTagPos - 1);
  348. S.Delete(1, EndTagPos + (2 * MainMsgTag.Length()) - 1);
  349. Result = true;
  350. }
  351. }
  352. DebugAssert(MainInstructions.Pos(MainMsgTag) == 0);
  353. DebugAssert(S.Pos(MainMsgTag) == 0);
  354. return Result;
  355. }
  356. //---------------------------------------------------------------------------
  357. static int FindInteractiveMsgStart(const UnicodeString & S)
  358. {
  359. int Result = 0;
  360. UnicodeString InteractiveMsgTag = LoadStr(INTERACTIVE_MSG_TAG);
  361. if (EndsStr(InteractiveMsgTag, S) &&
  362. (S.Length() >= 2 * InteractiveMsgTag.Length()))
  363. {
  364. Result = S.Length() - 2 * InteractiveMsgTag.Length() + 1;
  365. while ((Result > 0) && (S.SubString(Result, InteractiveMsgTag.Length()) != InteractiveMsgTag))
  366. {
  367. Result--;
  368. }
  369. }
  370. return Result;
  371. }
  372. //---------------------------------------------------------------------------
  373. UnicodeString RemoveMainInstructionsTag(UnicodeString S)
  374. {
  375. UnicodeString MainInstruction;
  376. if (ExtractMainInstructions(S, MainInstruction))
  377. {
  378. S = MainInstruction + S;
  379. }
  380. return S;
  381. }
  382. //---------------------------------------------------------------------------
  383. UnicodeString UnformatMessage(UnicodeString S)
  384. {
  385. S = RemoveMainInstructionsTag(S);
  386. int InteractiveMsgStart = FindInteractiveMsgStart(S);
  387. if (InteractiveMsgStart > 0)
  388. {
  389. S = S.SubString(1, InteractiveMsgStart - 1);
  390. }
  391. return S;
  392. }
  393. //---------------------------------------------------------------------------
  394. UnicodeString RemoveInteractiveMsgTag(UnicodeString S)
  395. {
  396. int InteractiveMsgStart = FindInteractiveMsgStart(S);
  397. if (InteractiveMsgStart > 0)
  398. {
  399. UnicodeString InteractiveMsgTag = LoadStr(INTERACTIVE_MSG_TAG);
  400. S.Delete(InteractiveMsgStart, InteractiveMsgTag.Length());
  401. S.Delete(S.Length() - InteractiveMsgTag.Length() + 1, InteractiveMsgTag.Length());
  402. }
  403. return S;
  404. }
  405. //---------------------------------------------------------------------------
  406. UnicodeString RemoveEmptyLines(const UnicodeString & S)
  407. {
  408. return
  409. ReplaceStr(
  410. ReplaceStr(S.TrimRight(), L"\n\n", L"\n"),
  411. L"\n \n", L"\n");
  412. }
  413. //---------------------------------------------------------------------------
  414. bool IsNumber(const UnicodeString Str)
  415. {
  416. int Value;
  417. return TryStrToInt(Str, Value);
  418. }
  419. //---------------------------------------------------------------------------
  420. UnicodeString __fastcall SystemTemporaryDirectory()
  421. {
  422. UnicodeString TempDir;
  423. TempDir.SetLength(MAX_PATH);
  424. TempDir.SetLength(GetTempPath(MAX_PATH, TempDir.c_str()));
  425. return TempDir;
  426. }
  427. //---------------------------------------------------------------------------
  428. UnicodeString __fastcall GetShellFolderPath(int CSIdl)
  429. {
  430. UnicodeString Result;
  431. wchar_t Path[2 * MAX_PATH + 10] = L"\0";
  432. if (SUCCEEDED(SHGetFolderPath(NULL, CSIdl, NULL, SHGFP_TYPE_CURRENT, Path)))
  433. {
  434. Result = Path;
  435. }
  436. return Result;
  437. }
  438. //---------------------------------------------------------------------------
  439. // Particularly needed when using file name selected by TFilenameEdit,
  440. // as it wraps a path to double-quotes, when there is a space in the path.
  441. UnicodeString __fastcall StripPathQuotes(const UnicodeString Path)
  442. {
  443. if ((Path.Length() >= 2) &&
  444. (Path[1] == L'\"') && (Path[Path.Length()] == L'\"'))
  445. {
  446. return Path.SubString(2, Path.Length() - 2);
  447. }
  448. else
  449. {
  450. return Path;
  451. }
  452. }
  453. //---------------------------------------------------------------------------
  454. UnicodeString __fastcall AddQuotes(UnicodeString Str)
  455. {
  456. if (Str.Pos(L" ") > 0)
  457. {
  458. Str = L"\"" + Str + L"\"";
  459. }
  460. return Str;
  461. }
  462. //---------------------------------------------------------------------------
  463. UnicodeString __fastcall AddPathQuotes(UnicodeString Path)
  464. {
  465. Path = StripPathQuotes(Path);
  466. return AddQuotes(Path);
  467. }
  468. //---------------------------------------------------------------------------
  469. static wchar_t * __fastcall ReplaceChar(
  470. UnicodeString & FileName, wchar_t * InvalidChar, wchar_t InvalidCharsReplacement)
  471. {
  472. int Index = InvalidChar - FileName.c_str() + 1;
  473. if (InvalidCharsReplacement == TokenReplacement)
  474. {
  475. // currently we do not support unicode chars replacement
  476. if (FileName[Index] > 0xFF)
  477. {
  478. EXCEPTION;
  479. }
  480. FileName.Insert(ByteToHex(static_cast<unsigned char>(FileName[Index])), Index + 1);
  481. FileName[Index] = TokenPrefix;
  482. InvalidChar = FileName.c_str() + Index + 2;
  483. }
  484. else
  485. {
  486. FileName[Index] = InvalidCharsReplacement;
  487. InvalidChar = FileName.c_str() + Index;
  488. }
  489. return InvalidChar;
  490. }
  491. //---------------------------------------------------------------------------
  492. UnicodeString __fastcall ValidLocalFileName(UnicodeString FileName)
  493. {
  494. return ValidLocalFileName(FileName, L'_', L"", LocalInvalidChars);
  495. }
  496. //---------------------------------------------------------------------------
  497. UnicodeString __fastcall ValidLocalFileName(
  498. UnicodeString FileName, wchar_t InvalidCharsReplacement,
  499. const UnicodeString & TokenizibleChars, const UnicodeString & LocalInvalidChars)
  500. {
  501. if (InvalidCharsReplacement != NoReplacement)
  502. {
  503. bool ATokenReplacement = (InvalidCharsReplacement == TokenReplacement);
  504. const wchar_t * Chars =
  505. (ATokenReplacement ? TokenizibleChars : LocalInvalidChars).c_str();
  506. wchar_t * InvalidChar = FileName.c_str();
  507. while ((InvalidChar = wcspbrk(InvalidChar, Chars)) != NULL)
  508. {
  509. int Pos = (InvalidChar - FileName.c_str() + 1);
  510. wchar_t Char;
  511. if (ATokenReplacement &&
  512. (*InvalidChar == TokenPrefix) &&
  513. (((FileName.Length() - Pos) <= 1) ||
  514. (((Char = static_cast<wchar_t>(HexToByte(FileName.SubString(Pos + 1, 2)))) == L'\0') ||
  515. (TokenizibleChars.Pos(Char) == 0))))
  516. {
  517. InvalidChar++;
  518. }
  519. else
  520. {
  521. InvalidChar = ReplaceChar(FileName, InvalidChar, InvalidCharsReplacement);
  522. }
  523. }
  524. // Windows trim trailing space or dot, hence we must encode it to preserve it
  525. if (!FileName.IsEmpty() &&
  526. ((FileName[FileName.Length()] == L' ') ||
  527. (FileName[FileName.Length()] == L'.')))
  528. {
  529. ReplaceChar(FileName, FileName.c_str() + FileName.Length() - 1, InvalidCharsReplacement);
  530. }
  531. if (IsReservedName(FileName))
  532. {
  533. int P = FileName.Pos(".");
  534. if (P == 0)
  535. {
  536. P = FileName.Length() + 1;
  537. }
  538. FileName.Insert(L"%00", P);
  539. }
  540. }
  541. return FileName;
  542. }
  543. //---------------------------------------------------------------------------
  544. void __fastcall SplitCommand(UnicodeString Command, UnicodeString &Program,
  545. UnicodeString & Params, UnicodeString & Dir)
  546. {
  547. Command = Command.Trim();
  548. Params = L"";
  549. Dir = L"";
  550. if (!Command.IsEmpty() && (Command[1] == L'\"'))
  551. {
  552. Command.Delete(1, 1);
  553. int P = Command.Pos(L'"');
  554. if (P)
  555. {
  556. Program = Command.SubString(1, P-1).Trim();
  557. Params = Command.SubString(P + 1, Command.Length() - P).Trim();
  558. }
  559. else
  560. {
  561. throw Exception(FMTLOAD(INVALID_SHELL_COMMAND, (L"\"" + Command)));
  562. }
  563. }
  564. else
  565. {
  566. int P = Command.Pos(L" ");
  567. if (P)
  568. {
  569. Program = Command.SubString(1, P).Trim();
  570. Params = Command.SubString(P + 1, Command.Length() - P).Trim();
  571. }
  572. else
  573. {
  574. Program = Command;
  575. }
  576. }
  577. int B = Program.LastDelimiter(L"\\/");
  578. if (B)
  579. {
  580. Dir = Program.SubString(1, B).Trim();
  581. }
  582. }
  583. //---------------------------------------------------------------------------
  584. UnicodeString __fastcall ExtractProgram(UnicodeString Command)
  585. {
  586. UnicodeString Program;
  587. UnicodeString Params;
  588. UnicodeString Dir;
  589. SplitCommand(Command, Program, Params, Dir);
  590. return Program;
  591. }
  592. //---------------------------------------------------------------------------
  593. UnicodeString __fastcall ExtractProgramName(UnicodeString Command)
  594. {
  595. UnicodeString Name = ExtractFileName(ExtractProgram(Command));
  596. int Dot = Name.LastDelimiter(L".");
  597. if (Dot > 0)
  598. {
  599. Name = Name.SubString(1, Dot - 1);
  600. }
  601. return Name;
  602. }
  603. //---------------------------------------------------------------------------
  604. UnicodeString __fastcall FormatCommand(UnicodeString Program, UnicodeString Params)
  605. {
  606. Program = Program.Trim();
  607. Params = Params.Trim();
  608. if (!Params.IsEmpty()) Params = L" " + Params;
  609. Program = AddQuotes(Program);
  610. return Program + Params;
  611. }
  612. //---------------------------------------------------------------------------
  613. const wchar_t ShellCommandFileNamePattern[] = L"!.!";
  614. //---------------------------------------------------------------------------
  615. void __fastcall ReformatFileNameCommand(UnicodeString & Command)
  616. {
  617. if (!Command.IsEmpty())
  618. {
  619. UnicodeString Program, Params, Dir;
  620. SplitCommand(Command, Program, Params, Dir);
  621. if (Params.Pos(ShellCommandFileNamePattern) == 0)
  622. {
  623. Params = Params + (Params.IsEmpty() ? L"" : L" ") + ShellCommandFileNamePattern;
  624. }
  625. Command = FormatCommand(Program, Params);
  626. }
  627. }
  628. //---------------------------------------------------------------------------
  629. UnicodeString __fastcall ExpandFileNameCommand(const UnicodeString Command,
  630. const UnicodeString FileName)
  631. {
  632. return AnsiReplaceStr(Command, ShellCommandFileNamePattern,
  633. AddPathQuotes(FileName));
  634. }
  635. //---------------------------------------------------------------------------
  636. UnicodeString __fastcall EscapeParam(const UnicodeString & Param)
  637. {
  638. // Make sure this won't break RTF syntax
  639. return ReplaceStr(Param, L"\"", L"\"\"");
  640. }
  641. //---------------------------------------------------------------------------
  642. UnicodeString __fastcall EscapePuttyCommandParam(UnicodeString Param)
  643. {
  644. bool Space = false;
  645. for (int i = 1; i <= Param.Length(); i++)
  646. {
  647. switch (Param[i])
  648. {
  649. case L'"':
  650. Param.Insert(L"\\", i);
  651. i++;
  652. break;
  653. case L' ':
  654. Space = true;
  655. break;
  656. case L'\\':
  657. int i2 = i;
  658. while ((i2 <= Param.Length()) && (Param[i2] == L'\\'))
  659. {
  660. i2++;
  661. }
  662. if ((i2 <= Param.Length()) && (Param[i2] == L'"'))
  663. {
  664. while (Param[i] == L'\\')
  665. {
  666. Param.Insert(L"\\", i);
  667. i += 2;
  668. }
  669. i--;
  670. }
  671. break;
  672. }
  673. }
  674. if (Space)
  675. {
  676. Param = L"\"" + Param + L'"';
  677. }
  678. return Param;
  679. }
  680. //---------------------------------------------------------------------------
  681. UnicodeString __fastcall ExpandEnvironmentVariables(const UnicodeString & Str)
  682. {
  683. UnicodeString Buf;
  684. unsigned int Size = 1024;
  685. Buf.SetLength(Size);
  686. Buf.Unique();
  687. unsigned int Len = ExpandEnvironmentStrings(Str.c_str(), Buf.c_str(), Size);
  688. if (Len > Size)
  689. {
  690. Buf.SetLength(Len);
  691. Buf.Unique();
  692. ExpandEnvironmentStrings(Str.c_str(), Buf.c_str(), Len);
  693. }
  694. PackStr(Buf);
  695. return Buf;
  696. }
  697. //---------------------------------------------------------------------------
  698. bool __fastcall CompareFileName(const UnicodeString & Path1, const UnicodeString & Path2)
  699. {
  700. UnicodeString ShortPath1 = ExtractShortPathName(Path1);
  701. UnicodeString ShortPath2 = ExtractShortPathName(Path2);
  702. bool Result;
  703. // ExtractShortPathName returns empty string if file does not exist
  704. if (ShortPath1.IsEmpty() || ShortPath2.IsEmpty())
  705. {
  706. Result = AnsiSameText(Path1, Path2);
  707. }
  708. else
  709. {
  710. Result = AnsiSameText(ShortPath1, ShortPath2);
  711. }
  712. return Result;
  713. }
  714. //---------------------------------------------------------------------------
  715. bool __fastcall ComparePaths(const UnicodeString & Path1, const UnicodeString & Path2)
  716. {
  717. // TODO: ExpandUNCFileName
  718. return AnsiSameText(IncludeTrailingBackslash(Path1), IncludeTrailingBackslash(Path2));
  719. }
  720. //---------------------------------------------------------------------------
  721. int __fastcall CompareLogicalText(const UnicodeString & S1, const UnicodeString & S2)
  722. {
  723. return StrCmpLogicalW(S1.c_str(), S2.c_str());
  724. }
  725. //---------------------------------------------------------------------------
  726. bool __fastcall IsReservedName(UnicodeString FileName)
  727. {
  728. int P = FileName.Pos(L".");
  729. int Len = (P > 0) ? P - 1 : FileName.Length();
  730. if ((Len == 3) || (Len == 4))
  731. {
  732. if (P > 0)
  733. {
  734. FileName.SetLength(P - 1);
  735. }
  736. static UnicodeString Reserved[] = {
  737. L"CON", L"PRN", L"AUX", L"NUL",
  738. L"COM1", L"COM2", L"COM3", L"COM4", L"COM5", L"COM6", L"COM7", L"COM8", L"COM9",
  739. L"LPT1", L"LPT2", L"LPT3", L"LPT4", L"LPT5", L"LPT6", L"LPT7", L"LPT8", L"LPT9" };
  740. for (unsigned int Index = 0; Index < LENOF(Reserved); Index++)
  741. {
  742. if (SameText(FileName, Reserved[Index]))
  743. {
  744. return true;
  745. }
  746. }
  747. }
  748. return false;
  749. }
  750. //---------------------------------------------------------------------------
  751. // ApiPath support functions
  752. // Inspired by
  753. // http://stackoverflow.com/questions/18580945/need-clarification-for-converting-paths-into-long-unicode-paths-or-the-ones-star
  754. // This can be reimplemented using PathCchCanonicalizeEx on Windows 8 and later
  755. enum PATH_PREFIX_TYPE
  756. {
  757. PPT_UNKNOWN,
  758. PPT_ABSOLUTE, //Found absolute path that is none of the other types
  759. PPT_UNC, //Found \\server\share\ prefix
  760. PPT_LONG_UNICODE, //Found \\?\ prefix
  761. PPT_LONG_UNICODE_UNC, //Found \\?\UNC\ prefix
  762. };
  763. //---------------------------------------------------------------------------
  764. static int __fastcall PathRootLength(UnicodeString Path)
  765. {
  766. // Correction for PathSkipRoot API
  767. // Replace all /'s with \'s because PathSkipRoot can't handle /'s
  768. UnicodeString Result = ReplaceChar(Path, L'/', L'\\');
  769. // Now call the API
  770. LPCTSTR Buffer = PathSkipRoot(Result.c_str());
  771. return (Buffer != NULL) ? (Buffer - Result.c_str()) : -1;
  772. }
  773. //---------------------------------------------------------------------------
  774. static bool __fastcall PathIsRelative_CorrectedForMicrosoftStupidity(UnicodeString Path)
  775. {
  776. // Correction for PathIsRelative API
  777. // Replace all /'s with \'s because PathIsRelative can't handle /'s
  778. UnicodeString Result = ReplaceChar(Path, L'/', L'\\');
  779. //Now call the API
  780. return PathIsRelative(Result.c_str());
  781. }
  782. //---------------------------------------------------------------------------
  783. static int __fastcall GetOffsetAfterPathRoot(UnicodeString Path, PATH_PREFIX_TYPE & PrefixType)
  784. {
  785. // Checks if 'pPath' begins with the drive, share, prefix, etc
  786. // EXAMPLES:
  787. // Path Return: Points at: PrefixType:
  788. // Relative\Folder\File.txt 0 Relative\Folder\File.txt PPT_UNKNOWN
  789. // \RelativeToRoot\Folder 1 RelativeToRoot\Folder PPT_ABSOLUTE
  790. // C:\Windows\Folder 3 Windows\Folder PPT_ABSOLUTE
  791. // \\server\share\Desktop 15 Desktop PPT_UNC
  792. // \\?\C:\Windows\Folder 7 Windows\Folder PPT_LONG_UNICODE
  793. // \\?\UNC\server\share\Desktop 21 Desktop PPT_LONG_UNICODE_UNC
  794. // RETURN:
  795. // = Index in 'pPath' after the root, or
  796. // = 0 if no root was found
  797. int Result = 0;
  798. PrefixType = PPT_UNKNOWN;
  799. if (!Path.IsEmpty())
  800. {
  801. int Len = Path.Length();
  802. bool WinXPOnly = !IsWinVista();
  803. // The PathSkipRoot() API doesn't work correctly on Windows XP
  804. if (!WinXPOnly)
  805. {
  806. // Works since Vista and up, but still needs correction :)
  807. int RootLength = PathRootLength(Path);
  808. if (RootLength >= 0)
  809. {
  810. Result = RootLength + 1;
  811. }
  812. }
  813. // Now determine the type of prefix
  814. int IndCheckUNC = -1;
  815. if ((Len >= 8) &&
  816. (Path[1] == L'\\' || Path[1] == L'/') &&
  817. (Path[2] == L'\\' || Path[2] == L'/') &&
  818. (Path[3] == L'?') &&
  819. (Path[4] == L'\\' || Path[4] == L'/') &&
  820. (Path[5] == L'U' || Path[5] == L'u') &&
  821. (Path[6] == L'N' || Path[6] == L'n') &&
  822. (Path[7] == L'C' || Path[7] == L'c') &&
  823. (Path[8] == L'\\' || Path[8] == L'/'))
  824. {
  825. // Found \\?\UNC\ prefix
  826. PrefixType = PPT_LONG_UNICODE_UNC;
  827. if (WinXPOnly)
  828. {
  829. //For older OS
  830. Result += 8;
  831. }
  832. //Check for UNC share later
  833. IndCheckUNC = 8;
  834. }
  835. else if ((Len >= 4) &&
  836. (Path[1] == L'\\' || Path[1] == L'/') &&
  837. (Path[2] == L'\\' || Path[2] == L'/') &&
  838. (Path[3] == L'?') &&
  839. (Path[4] == L'\\' || Path[4] == L'/'))
  840. {
  841. // Found \\?\ prefix
  842. PrefixType = PPT_LONG_UNICODE;
  843. if (WinXPOnly)
  844. {
  845. //For older OS
  846. Result += 4;
  847. }
  848. }
  849. else if ((Len >= 2) &&
  850. (Path[1] == L'\\' || Path[1] == L'/') &&
  851. (Path[2] == L'\\' || Path[2] == L'/'))
  852. {
  853. // Check for UNC share later
  854. IndCheckUNC = 2;
  855. }
  856. if (IndCheckUNC >= 0)
  857. {
  858. // Check for UNC, i.e. \\server\share\ part
  859. int Index = IndCheckUNC;
  860. for (int SkipSlashes = 2; SkipSlashes > 0; SkipSlashes--)
  861. {
  862. for(; Index <= Len; Index++)
  863. {
  864. TCHAR z = Path[Index];
  865. if ((z == L'\\') || (z == L'/') || (Index >= Len))
  866. {
  867. Index++;
  868. if (SkipSlashes == 1)
  869. {
  870. if (PrefixType == PPT_UNKNOWN)
  871. {
  872. PrefixType = PPT_UNC;
  873. }
  874. if (WinXPOnly)
  875. {
  876. //For older OS
  877. Result = Index;
  878. }
  879. }
  880. break;
  881. }
  882. }
  883. }
  884. }
  885. if (WinXPOnly)
  886. {
  887. // Only if we didn't determine any other type
  888. if (PrefixType == PPT_UNKNOWN)
  889. {
  890. if (!PathIsRelative_CorrectedForMicrosoftStupidity(Path.SubString(Result, Path.Length() - Result + 1)))
  891. {
  892. PrefixType = PPT_ABSOLUTE;
  893. }
  894. }
  895. // For older OS only
  896. int RootLength = PathRootLength(Path.SubString(Result, Path.Length() - Result + 1));
  897. if (RootLength >= 0)
  898. {
  899. Result = RootLength + 1;
  900. }
  901. }
  902. else
  903. {
  904. // Only if we didn't determine any other type
  905. if (PrefixType == PPT_UNKNOWN)
  906. {
  907. if (!PathIsRelative_CorrectedForMicrosoftStupidity(Path))
  908. {
  909. PrefixType = PPT_ABSOLUTE;
  910. }
  911. }
  912. }
  913. }
  914. return Result;
  915. }
  916. //---------------------------------------------------------------------------
  917. UnicodeString __fastcall MakeUnicodeLargePath(UnicodeString Path)
  918. {
  919. // Convert path from 'into a larger Unicode path, that allows up to 32,767 character length
  920. UnicodeString Result;
  921. if (!Path.IsEmpty())
  922. {
  923. // Determine the type of the existing prefix
  924. PATH_PREFIX_TYPE PrefixType;
  925. GetOffsetAfterPathRoot(Path, PrefixType);
  926. // Assume path to be without change
  927. Result = Path;
  928. switch (PrefixType)
  929. {
  930. case PPT_ABSOLUTE:
  931. {
  932. // First we need to check if its an absolute path relative to the root
  933. bool AddPrefix = true;
  934. if ((Path.Length() >= 1) &&
  935. ((Path[1] == L'\\') || (Path[1] == L'/')))
  936. {
  937. AddPrefix = FALSE;
  938. // Get current root path
  939. UnicodeString CurrentDir = GetCurrentDir();
  940. PATH_PREFIX_TYPE PrefixType2; // unused
  941. int Following = GetOffsetAfterPathRoot(CurrentDir, PrefixType2);
  942. if (Following > 0)
  943. {
  944. AddPrefix = true;
  945. Result = CurrentDir.SubString(1, Following - 1) + Result.SubString(2, Result.Length() - 1);
  946. }
  947. }
  948. if (AddPrefix)
  949. {
  950. // Add \\?\ prefix
  951. Result = L"\\\\?\\" + Result;
  952. }
  953. }
  954. break;
  955. case PPT_UNC:
  956. // First we need to remove the opening slashes for UNC share
  957. if ((Result.Length() >= 2) &&
  958. ((Result[1] == L'\\') || (Result[1] == L'/')) &&
  959. ((Result[2] == L'\\') || (Result[2] == L'/')))
  960. {
  961. Result = Result.SubString(3, Result.Length() - 2);
  962. }
  963. // Add \\?\UNC\ prefix
  964. Result = L"\\\\?\\UNC\\" + Result;
  965. break;
  966. case PPT_LONG_UNICODE:
  967. case PPT_LONG_UNICODE_UNC:
  968. // nothing to do
  969. break;
  970. }
  971. }
  972. return Result;
  973. }
  974. //---------------------------------------------------------------------------
  975. UnicodeString __fastcall ApiPath(UnicodeString Path)
  976. {
  977. if (Path.Length() >= MAX_PATH)
  978. {
  979. if (Configuration != NULL)
  980. {
  981. Configuration->Usage->Inc(L"LongPath");
  982. }
  983. Path = MakeUnicodeLargePath(Path);
  984. }
  985. return Path;
  986. }
  987. //---------------------------------------------------------------------------
  988. UnicodeString __fastcall DisplayableStr(const RawByteString & Str)
  989. {
  990. bool Displayable = true;
  991. int Index = 1;
  992. while ((Index <= Str.Length()) && Displayable)
  993. {
  994. if (((Str[Index] < '\x20') || (static_cast<unsigned char>(Str[Index]) >= static_cast<unsigned char>('\x80'))) &&
  995. (Str[Index] != '\n') && (Str[Index] != '\r') && (Str[Index] != '\t') && (Str[Index] != '\b'))
  996. {
  997. Displayable = false;
  998. }
  999. Index++;
  1000. }
  1001. UnicodeString Result;
  1002. if (Displayable)
  1003. {
  1004. Result = L"\"";
  1005. for (int Index = 1; Index <= Str.Length(); Index++)
  1006. {
  1007. switch (Str[Index])
  1008. {
  1009. case '\n':
  1010. Result += L"\\n";
  1011. break;
  1012. case '\r':
  1013. Result += L"\\r";
  1014. break;
  1015. case '\t':
  1016. Result += L"\\t";
  1017. break;
  1018. case '\b':
  1019. Result += L"\\b";
  1020. break;
  1021. case '\\':
  1022. Result += L"\\\\";
  1023. break;
  1024. case '"':
  1025. Result += L"\\\"";
  1026. break;
  1027. default:
  1028. Result += wchar_t(Str[Index]);
  1029. break;
  1030. }
  1031. }
  1032. Result += L"\"";
  1033. }
  1034. else
  1035. {
  1036. Result = L"0x" + BytesToHex(Str);
  1037. }
  1038. return Result;
  1039. }
  1040. //---------------------------------------------------------------------------
  1041. UnicodeString __fastcall ByteToHex(unsigned char B, bool UpperCase)
  1042. {
  1043. static wchar_t UpperDigits[] = L"0123456789ABCDEF";
  1044. static wchar_t LowerDigits[] = L"0123456789abcdef";
  1045. const wchar_t * Digits = (UpperCase ? UpperDigits : LowerDigits);
  1046. UnicodeString Result;
  1047. Result.SetLength(2);
  1048. Result[1] = Digits[(B & 0xF0) >> 4];
  1049. Result[2] = Digits[(B & 0x0F) >> 0];
  1050. return Result;
  1051. }
  1052. //---------------------------------------------------------------------------
  1053. UnicodeString __fastcall BytesToHex(const unsigned char * B, size_t Length, bool UpperCase, wchar_t Separator)
  1054. {
  1055. UnicodeString Result;
  1056. for (size_t i = 0; i < Length; i++)
  1057. {
  1058. Result += ByteToHex(B[i], UpperCase);
  1059. if ((Separator != L'\0') && (i < Length - 1))
  1060. {
  1061. Result += Separator;
  1062. }
  1063. }
  1064. return Result;
  1065. }
  1066. //---------------------------------------------------------------------------
  1067. UnicodeString __fastcall BytesToHex(RawByteString Str, bool UpperCase, wchar_t Separator)
  1068. {
  1069. return BytesToHex(reinterpret_cast<const unsigned char *>(Str.c_str()), Str.Length(), UpperCase, Separator);
  1070. }
  1071. //---------------------------------------------------------------------------
  1072. UnicodeString __fastcall CharToHex(wchar_t Ch, bool UpperCase)
  1073. {
  1074. return BytesToHex(reinterpret_cast<const unsigned char *>(&Ch), sizeof(Ch), UpperCase);
  1075. }
  1076. //---------------------------------------------------------------------------
  1077. RawByteString __fastcall HexToBytes(const UnicodeString Hex)
  1078. {
  1079. static UnicodeString Digits = L"0123456789ABCDEF";
  1080. RawByteString Result;
  1081. int L, P1, P2;
  1082. L = Hex.Length();
  1083. if (L % 2 == 0)
  1084. {
  1085. for (int i = 1; i <= Hex.Length(); i += 2)
  1086. {
  1087. P1 = Digits.Pos((wchar_t)toupper(Hex[i]));
  1088. P2 = Digits.Pos((wchar_t)toupper(Hex[i + 1]));
  1089. if (P1 <= 0 || P2 <= 0)
  1090. {
  1091. Result = L"";
  1092. break;
  1093. }
  1094. else
  1095. {
  1096. Result += static_cast<char>((P1 - 1) * 16 + P2 - 1);
  1097. }
  1098. }
  1099. }
  1100. return Result;
  1101. }
  1102. //---------------------------------------------------------------------------
  1103. unsigned char __fastcall HexToByte(const UnicodeString Hex)
  1104. {
  1105. static UnicodeString Digits = L"0123456789ABCDEF";
  1106. DebugAssert(Hex.Length() == 2);
  1107. int P1 = Digits.Pos((wchar_t)toupper(Hex[1]));
  1108. int P2 = Digits.Pos((wchar_t)toupper(Hex[2]));
  1109. return
  1110. static_cast<unsigned char>(((P1 <= 0) || (P2 <= 0)) ? 0 : (((P1 - 1) << 4) + (P2 - 1)));
  1111. }
  1112. //---------------------------------------------------------------------------
  1113. bool __fastcall IsLowerCaseLetter(wchar_t Ch)
  1114. {
  1115. return (Ch >= 'a') && (Ch <= 'z');
  1116. }
  1117. //---------------------------------------------------------------------------
  1118. bool __fastcall IsUpperCaseLetter(wchar_t Ch)
  1119. {
  1120. return (Ch >= 'A') && (Ch <= 'Z');
  1121. }
  1122. //---------------------------------------------------------------------------
  1123. bool __fastcall IsLetter(wchar_t Ch)
  1124. {
  1125. return IsLowerCaseLetter(Ch) || IsUpperCaseLetter(Ch);
  1126. }
  1127. //---------------------------------------------------------------------------
  1128. bool __fastcall IsDigit(wchar_t Ch)
  1129. {
  1130. return (Ch >= '0') && (Ch <= '9');
  1131. }
  1132. //---------------------------------------------------------------------------
  1133. bool __fastcall IsHex(wchar_t Ch)
  1134. {
  1135. return
  1136. IsDigit(Ch) ||
  1137. ((Ch >= 'A') && (Ch <= 'F')) ||
  1138. ((Ch >= 'a') && (Ch <= 'f'));
  1139. }
  1140. //---------------------------------------------------------------------------
  1141. int __fastcall FindCheck(int Result, const UnicodeString & Path)
  1142. {
  1143. if ((Result != ERROR_SUCCESS) &&
  1144. (Result != ERROR_FILE_NOT_FOUND) &&
  1145. (Result != ERROR_NO_MORE_FILES))
  1146. {
  1147. throw EOSExtException(FMTLOAD(FIND_FILE_ERROR, (Path)), Result);
  1148. }
  1149. return Result;
  1150. }
  1151. //---------------------------------------------------------------------------
  1152. int __fastcall FindFirstUnchecked(const UnicodeString & Path, int Attr, TSearchRecChecked & F)
  1153. {
  1154. F.Path = Path;
  1155. return FindFirst(ApiPath(Path), Attr, F);
  1156. }
  1157. //---------------------------------------------------------------------------
  1158. int __fastcall FindFirstChecked(const UnicodeString & Path, int Attr, TSearchRecChecked & F)
  1159. {
  1160. int Result = FindFirstUnchecked(Path, Attr, F);
  1161. return FindCheck(Result, F.Path);
  1162. }
  1163. //---------------------------------------------------------------------------
  1164. // Equivalent to FindNext, just to complement to FindFirstUnchecked
  1165. int __fastcall FindNextUnchecked(TSearchRecChecked & F)
  1166. {
  1167. return FindNext(F);
  1168. }
  1169. //---------------------------------------------------------------------------
  1170. // It can make sense to use FindNextChecked, even if unchecked FindFirst is used.
  1171. // I.e. even if we do not care that FindFirst failed, if FindNext
  1172. // fails after successful FindFirst, it means some terrible problem
  1173. int __fastcall FindNextChecked(TSearchRecChecked & F)
  1174. {
  1175. return FindCheck(FindNextUnchecked(F), F.Path);
  1176. }
  1177. //---------------------------------------------------------------------------
  1178. bool __fastcall FileSearchRec(const UnicodeString FileName, TSearchRec & Rec)
  1179. {
  1180. int FindAttrs = faReadOnly | faHidden | faSysFile | faDirectory | faArchive;
  1181. bool Result = (FindFirst(ApiPath(FileName), FindAttrs, Rec) == 0);
  1182. if (Result)
  1183. {
  1184. FindClose(Rec);
  1185. }
  1186. return Result;
  1187. }
  1188. //---------------------------------------------------------------------------
  1189. void __fastcall ProcessLocalDirectory(UnicodeString DirName,
  1190. TProcessLocalFileEvent CallBackFunc, void * Param,
  1191. int FindAttrs)
  1192. {
  1193. DebugAssert(CallBackFunc);
  1194. if (FindAttrs < 0)
  1195. {
  1196. FindAttrs = faReadOnly | faHidden | faSysFile | faDirectory | faArchive;
  1197. }
  1198. TSearchRecChecked SearchRec;
  1199. DirName = IncludeTrailingBackslash(DirName);
  1200. if (FindFirstChecked(DirName + L"*.*", FindAttrs, SearchRec) == 0)
  1201. {
  1202. try
  1203. {
  1204. do
  1205. {
  1206. if ((SearchRec.Name != L".") && (SearchRec.Name != L".."))
  1207. {
  1208. CallBackFunc(DirName + SearchRec.Name, SearchRec, Param);
  1209. }
  1210. } while (FindNextChecked(SearchRec) == 0);
  1211. }
  1212. __finally
  1213. {
  1214. FindClose(SearchRec);
  1215. }
  1216. }
  1217. }
  1218. //---------------------------------------------------------------------------
  1219. int __fastcall FileGetAttrFix(const UnicodeString FileName)
  1220. {
  1221. // The default for FileGetAttr is to follow links
  1222. bool FollowLink = true;
  1223. // But the FileGetAttr whe called for link with FollowLink set will always fail
  1224. // as its calls InternalGetFileNameFromSymLink, which test for CheckWin32Version(6, 0)
  1225. if (!IsWinVista())
  1226. {
  1227. FollowLink = false;
  1228. }
  1229. return FileGetAttr(FileName, FollowLink);
  1230. }
  1231. //---------------------------------------------------------------------------
  1232. TDateTime __fastcall EncodeDateVerbose(Word Year, Word Month, Word Day)
  1233. {
  1234. try
  1235. {
  1236. TDateTime DateTime = EncodeDate(Year, Month, Day);
  1237. return DateTime;
  1238. }
  1239. catch (EConvertError & E)
  1240. {
  1241. throw EConvertError(FORMAT(L"%s [%d-%d-%d]", (E.Message, int(Year), int(Month), int(Day))));
  1242. }
  1243. }
  1244. //---------------------------------------------------------------------------
  1245. TDateTime __fastcall EncodeTimeVerbose(Word Hour, Word Min, Word Sec, Word MSec)
  1246. {
  1247. try
  1248. {
  1249. TDateTime DateTime = EncodeTime(Hour, Min, Sec, MSec);
  1250. return DateTime;
  1251. }
  1252. catch (EConvertError & E)
  1253. {
  1254. throw EConvertError(FORMAT(L"%s [%d:%d:%d.%d]", (E.Message, int(Hour), int(Min), int(Sec), int(MSec))));
  1255. }
  1256. }
  1257. //---------------------------------------------------------------------------
  1258. TDateTime __fastcall SystemTimeToDateTimeVerbose(const SYSTEMTIME & SystemTime)
  1259. {
  1260. try
  1261. {
  1262. TDateTime DateTime = SystemTimeToDateTime(SystemTime);
  1263. return DateTime;
  1264. }
  1265. catch (EConvertError & E)
  1266. {
  1267. throw EConvertError(FORMAT(L"%s [%d-%2.2d-%2.2d %2.2d:%2.2d:%2.2d.%3.3d]", (E.Message, int(SystemTime.wYear), int(SystemTime.wMonth), int(SystemTime.wDay), int(SystemTime.wHour), int(SystemTime.wMinute), int(SystemTime.wSecond), int(SystemTime.wMilliseconds))));
  1268. }
  1269. }
  1270. //---------------------------------------------------------------------------
  1271. struct TDateTimeParams
  1272. {
  1273. TDateTime UnixEpoch;
  1274. double BaseDifference;
  1275. long BaseDifferenceSec;
  1276. // All Current* are actually global, not per-year and
  1277. // are valid for Year 0 (current) only
  1278. double CurrentDaylightDifference;
  1279. long CurrentDaylightDifferenceSec;
  1280. double CurrentDifference;
  1281. long CurrentDifferenceSec;
  1282. double StandardDifference;
  1283. long StandardDifferenceSec;
  1284. double DaylightDifference;
  1285. long DaylightDifferenceSec;
  1286. SYSTEMTIME SystemStandardDate;
  1287. SYSTEMTIME SystemDaylightDate;
  1288. TDateTime StandardDate;
  1289. TDateTime DaylightDate;
  1290. UnicodeString StandardName;
  1291. UnicodeString DaylightName;
  1292. // This is actually global, not per-year
  1293. bool DaylightHack;
  1294. bool HasDST() const
  1295. {
  1296. // On some systems it occurs that StandardDate is unset, while
  1297. // DaylightDate is set. MSDN states that this is invalid and
  1298. // should be treated as if there is no daylight saving.
  1299. // So check both.
  1300. return
  1301. (SystemStandardDate.wMonth != 0) &&
  1302. (SystemDaylightDate.wMonth != 0);
  1303. }
  1304. bool SummerDST() const
  1305. {
  1306. return HasDST() && (DaylightDate < StandardDate);
  1307. }
  1308. };
  1309. typedef std::map<int, TDateTimeParams> TYearlyDateTimeParams;
  1310. static TYearlyDateTimeParams YearlyDateTimeParams;
  1311. static std::unique_ptr<TCriticalSection> DateTimeParamsSection(new TCriticalSection());
  1312. static void __fastcall EncodeDSTMargin(const SYSTEMTIME & Date, unsigned short Year,
  1313. TDateTime & Result);
  1314. //---------------------------------------------------------------------------
  1315. static unsigned short __fastcall DecodeYear(const TDateTime & DateTime)
  1316. {
  1317. unsigned short Year, Month, Day;
  1318. DecodeDate(DateTime, Year, Month, Day);
  1319. return Year;
  1320. }
  1321. //---------------------------------------------------------------------------
  1322. static const TDateTimeParams * __fastcall GetDateTimeParams(unsigned short Year)
  1323. {
  1324. TGuard Guard(DateTimeParamsSection.get());
  1325. TDateTimeParams * Result;
  1326. TYearlyDateTimeParams::iterator i = YearlyDateTimeParams.find(Year);
  1327. if (i != YearlyDateTimeParams.end())
  1328. {
  1329. Result = &(*i).second;
  1330. }
  1331. else
  1332. {
  1333. // creates new entry as a side effect
  1334. Result = &YearlyDateTimeParams[Year];
  1335. TIME_ZONE_INFORMATION TZI;
  1336. unsigned long GTZI;
  1337. HINSTANCE Kernel32 = GetModuleHandle(kernel32);
  1338. typedef BOOL WINAPI (* TGetTimeZoneInformationForYear)(USHORT wYear, PDYNAMIC_TIME_ZONE_INFORMATION pdtzi, LPTIME_ZONE_INFORMATION ptzi);
  1339. TGetTimeZoneInformationForYear GetTimeZoneInformationForYear =
  1340. (TGetTimeZoneInformationForYear)GetProcAddress(Kernel32, "GetTimeZoneInformationForYear");
  1341. if ((Year == 0) || (GetTimeZoneInformationForYear == NULL))
  1342. {
  1343. GTZI = GetTimeZoneInformation(&TZI);
  1344. }
  1345. else
  1346. {
  1347. GetTimeZoneInformationForYear(Year, NULL, &TZI);
  1348. GTZI = TIME_ZONE_ID_UNKNOWN;
  1349. }
  1350. switch (GTZI)
  1351. {
  1352. case TIME_ZONE_ID_UNKNOWN:
  1353. Result->CurrentDaylightDifferenceSec = 0;
  1354. break;
  1355. case TIME_ZONE_ID_STANDARD:
  1356. Result->CurrentDaylightDifferenceSec = TZI.StandardBias;
  1357. break;
  1358. case TIME_ZONE_ID_DAYLIGHT:
  1359. Result->CurrentDaylightDifferenceSec = TZI.DaylightBias;
  1360. break;
  1361. case TIME_ZONE_ID_INVALID:
  1362. default:
  1363. throw Exception(TIMEZONE_ERROR);
  1364. }
  1365. Result->BaseDifferenceSec = TZI.Bias;
  1366. Result->BaseDifference = double(TZI.Bias) / MinsPerDay;
  1367. Result->BaseDifferenceSec *= SecsPerMin;
  1368. Result->CurrentDifferenceSec = TZI.Bias +
  1369. Result->CurrentDaylightDifferenceSec;
  1370. Result->CurrentDifference =
  1371. double(Result->CurrentDifferenceSec) / MinsPerDay;
  1372. Result->CurrentDifferenceSec *= SecsPerMin;
  1373. Result->CurrentDaylightDifference =
  1374. double(Result->CurrentDaylightDifferenceSec) / MinsPerDay;
  1375. Result->CurrentDaylightDifferenceSec *= SecsPerMin;
  1376. Result->DaylightDifferenceSec = TZI.DaylightBias * SecsPerMin;
  1377. Result->DaylightDifference = double(TZI.DaylightBias) / MinsPerDay;
  1378. Result->StandardDifferenceSec = TZI.StandardBias * SecsPerMin;
  1379. Result->StandardDifference = double(TZI.StandardBias) / MinsPerDay;
  1380. Result->SystemStandardDate = TZI.StandardDate;
  1381. Result->SystemDaylightDate = TZI.DaylightDate;
  1382. unsigned short AYear = (Year != 0) ? Year : DecodeYear(Now());
  1383. if (Result->HasDST())
  1384. {
  1385. EncodeDSTMargin(Result->SystemStandardDate, AYear, Result->StandardDate);
  1386. EncodeDSTMargin(Result->SystemDaylightDate, AYear, Result->DaylightDate);
  1387. }
  1388. Result->StandardName = TZI.StandardName;
  1389. Result->DaylightName = TZI.DaylightName;
  1390. Result->DaylightHack = !IsWin7();
  1391. }
  1392. return Result;
  1393. }
  1394. //---------------------------------------------------------------------------
  1395. static void __fastcall EncodeDSTMargin(const SYSTEMTIME & Date, unsigned short Year,
  1396. TDateTime & Result)
  1397. {
  1398. if (Date.wYear == 0)
  1399. {
  1400. TDateTime Temp = EncodeDateVerbose(Year, Date.wMonth, 1);
  1401. Result = Temp + ((Date.wDayOfWeek - DayOfWeek(Temp) + 8) % 7) +
  1402. (7 * (Date.wDay - 1));
  1403. // Day 5 means, the last occurence of day-of-week in month
  1404. if (Date.wDay == 5)
  1405. {
  1406. unsigned short Month = static_cast<unsigned short>(Date.wMonth + 1);
  1407. if (Month > 12)
  1408. {
  1409. Month = static_cast<unsigned short>(Month - 12);
  1410. Year++;
  1411. }
  1412. if (Result >= EncodeDateVerbose(Year, Month, 1))
  1413. {
  1414. Result -= 7;
  1415. }
  1416. }
  1417. Result += EncodeTimeVerbose(Date.wHour, Date.wMinute, Date.wSecond,
  1418. Date.wMilliseconds);
  1419. }
  1420. else
  1421. {
  1422. Result = EncodeDateVerbose(Year, Date.wMonth, Date.wDay) +
  1423. EncodeTimeVerbose(Date.wHour, Date.wMinute, Date.wSecond, Date.wMilliseconds);
  1424. }
  1425. }
  1426. //---------------------------------------------------------------------------
  1427. static bool __fastcall IsDateInDST(const TDateTime & DateTime)
  1428. {
  1429. const TDateTimeParams * Params = GetDateTimeParams(DecodeYear(DateTime));
  1430. bool Result;
  1431. // On some systems it occurs that StandardDate is unset, while
  1432. // DaylightDate is set. MSDN states that this is invalid and
  1433. // should be treated as if there is no daylight saving.
  1434. // So check both.
  1435. if (!Params->HasDST())
  1436. {
  1437. Result = false;
  1438. }
  1439. else
  1440. {
  1441. if (Params->SummerDST())
  1442. {
  1443. Result =
  1444. (DateTime >= Params->DaylightDate) &&
  1445. (DateTime < Params->StandardDate);
  1446. }
  1447. else
  1448. {
  1449. Result =
  1450. (DateTime < Params->StandardDate) ||
  1451. (DateTime >= Params->DaylightDate);
  1452. }
  1453. }
  1454. return Result;
  1455. }
  1456. //---------------------------------------------------------------------------
  1457. bool __fastcall UsesDaylightHack()
  1458. {
  1459. return GetDateTimeParams(0)->DaylightHack;
  1460. }
  1461. //---------------------------------------------------------------------------
  1462. TDateTime __fastcall UnixToDateTime(__int64 TimeStamp, TDSTMode DSTMode)
  1463. {
  1464. DebugAssert(int(EncodeDateVerbose(1970, 1, 1)) == UnixDateDelta);
  1465. TDateTime Result = UnixDateDelta + (double(TimeStamp) / SecsPerDay);
  1466. const TDateTimeParams * Params = GetDateTimeParams(DecodeYear(Result));
  1467. if (Params->DaylightHack)
  1468. {
  1469. if ((DSTMode == dstmWin) || (DSTMode == dstmUnix))
  1470. {
  1471. const TDateTimeParams * CurrentParams = GetDateTimeParams(0);
  1472. Result -= CurrentParams->CurrentDifference;
  1473. }
  1474. else if (DSTMode == dstmKeep)
  1475. {
  1476. Result -= Params->BaseDifference;
  1477. }
  1478. }
  1479. else
  1480. {
  1481. Result -= Params->BaseDifference;
  1482. }
  1483. if ((DSTMode == dstmUnix) || (DSTMode == dstmKeep))
  1484. {
  1485. Result -= DSTDifferenceForTime(Result);
  1486. }
  1487. return Result;
  1488. }
  1489. //---------------------------------------------------------------------------
  1490. __int64 __fastcall Round(double Number)
  1491. {
  1492. double Floor = floor(Number);
  1493. double Ceil = ceil(Number);
  1494. return static_cast<__int64>(((Number - Floor) > (Ceil - Number)) ? Ceil : Floor);
  1495. }
  1496. //---------------------------------------------------------------------------
  1497. bool __fastcall TryRelativeStrToDateTime(UnicodeString S, TDateTime & DateTime, bool Add)
  1498. {
  1499. S = S.Trim();
  1500. int Index = 1;
  1501. while ((Index <= S.Length()) && IsDigit(S[Index]))
  1502. {
  1503. Index++;
  1504. }
  1505. UnicodeString NumberStr = S.SubString(1, Index - 1);
  1506. int Number;
  1507. bool Result = TryStrToInt(NumberStr, Number);
  1508. if (Result)
  1509. {
  1510. if (!Add)
  1511. {
  1512. Number = -Number;
  1513. }
  1514. S.Delete(1, Index - 1);
  1515. S = S.Trim().UpperCase();
  1516. DateTime = Now();
  1517. // These may not overlap with ParseSize (K, M and G)
  1518. if (S == "S")
  1519. {
  1520. DateTime = IncSecond(DateTime, Number);
  1521. }
  1522. else if (S == "N")
  1523. {
  1524. DateTime = IncMinute(DateTime, Number);
  1525. }
  1526. else if (S == "H")
  1527. {
  1528. DateTime = IncHour(DateTime, Number);
  1529. }
  1530. else if (S == "D")
  1531. {
  1532. DateTime = IncDay(DateTime, Number);
  1533. }
  1534. else if (S == "Y")
  1535. {
  1536. DateTime = IncYear(DateTime, Number);
  1537. }
  1538. else
  1539. {
  1540. Result = false;
  1541. }
  1542. }
  1543. return Result;
  1544. }
  1545. //---------------------------------------------------------------------------
  1546. static __int64 __fastcall DateTimeToUnix(const TDateTime DateTime)
  1547. {
  1548. const TDateTimeParams * CurrentParams = GetDateTimeParams(0);
  1549. DebugAssert(int(EncodeDateVerbose(1970, 1, 1)) == UnixDateDelta);
  1550. return Round(double(DateTime - UnixDateDelta) * SecsPerDay) +
  1551. CurrentParams->CurrentDifferenceSec;
  1552. }
  1553. //---------------------------------------------------------------------------
  1554. FILETIME __fastcall DateTimeToFileTime(const TDateTime DateTime,
  1555. TDSTMode /*DSTMode*/)
  1556. {
  1557. __int64 UnixTimeStamp = ::DateTimeToUnix(DateTime);
  1558. const TDateTimeParams * Params = GetDateTimeParams(DecodeYear(DateTime));
  1559. if (!Params->DaylightHack)
  1560. {
  1561. // We should probably use reversed code of FileTimeToDateTime here instead of custom implementation
  1562. // We are incrementing and decrementing BaseDifferenceSec because it
  1563. // can actually change between years
  1564. // (as it did in Belarus from GMT+2 to GMT+3 between 2011 and 2012)
  1565. UnixTimeStamp += (IsDateInDST(DateTime) ?
  1566. Params->DaylightDifferenceSec : Params->StandardDifferenceSec) +
  1567. Params->BaseDifferenceSec;
  1568. const TDateTimeParams * CurrentParams = GetDateTimeParams(0);
  1569. UnixTimeStamp -=
  1570. CurrentParams->CurrentDaylightDifferenceSec +
  1571. CurrentParams->BaseDifferenceSec;
  1572. }
  1573. FILETIME Result;
  1574. (*(__int64*)&(Result) = (__int64(UnixTimeStamp) + 11644473600LL) * 10000000LL);
  1575. return Result;
  1576. }
  1577. //---------------------------------------------------------------------------
  1578. TDateTime __fastcall FileTimeToDateTime(const FILETIME & FileTime)
  1579. {
  1580. // duplicated in DirView.pas
  1581. TDateTime Result;
  1582. // The 0xFFF... is sometime seen for invalid timestamps,
  1583. // it would cause failure in SystemTimeToDateTime below
  1584. if (FileTime.dwLowDateTime == std::numeric_limits<DWORD>::max())
  1585. {
  1586. Result = MinDateTime;
  1587. }
  1588. else
  1589. {
  1590. SYSTEMTIME SysTime;
  1591. if (!UsesDaylightHack())
  1592. {
  1593. SYSTEMTIME UniverzalSysTime;
  1594. FileTimeToSystemTime(&FileTime, &UniverzalSysTime);
  1595. SystemTimeToTzSpecificLocalTime(NULL, &UniverzalSysTime, &SysTime);
  1596. }
  1597. else
  1598. {
  1599. FILETIME LocalFileTime;
  1600. FileTimeToLocalFileTime(&FileTime, &LocalFileTime);
  1601. FileTimeToSystemTime(&LocalFileTime, &SysTime);
  1602. }
  1603. Result = SystemTimeToDateTimeVerbose(SysTime);
  1604. }
  1605. return Result;
  1606. }
  1607. //---------------------------------------------------------------------------
  1608. __int64 __fastcall ConvertTimestampToUnix(const FILETIME & FileTime,
  1609. TDSTMode DSTMode)
  1610. {
  1611. __int64 Result = ((*(__int64*)&(FileTime)) / 10000000LL - 11644473600LL);
  1612. if (UsesDaylightHack())
  1613. {
  1614. if ((DSTMode == dstmUnix) || (DSTMode == dstmKeep))
  1615. {
  1616. FILETIME LocalFileTime;
  1617. SYSTEMTIME SystemTime;
  1618. FileTimeToLocalFileTime(&FileTime, &LocalFileTime);
  1619. FileTimeToSystemTime(&LocalFileTime, &SystemTime);
  1620. TDateTime DateTime = SystemTimeToDateTimeVerbose(SystemTime);
  1621. const TDateTimeParams * Params = GetDateTimeParams(DecodeYear(DateTime));
  1622. Result += (IsDateInDST(DateTime) ?
  1623. Params->DaylightDifferenceSec : Params->StandardDifferenceSec);
  1624. if (DSTMode == dstmKeep)
  1625. {
  1626. const TDateTimeParams * CurrentParams = GetDateTimeParams(0);
  1627. Result -= CurrentParams->CurrentDaylightDifferenceSec;
  1628. }
  1629. }
  1630. }
  1631. else
  1632. {
  1633. if (DSTMode == dstmWin)
  1634. {
  1635. FILETIME LocalFileTime;
  1636. SYSTEMTIME SystemTime;
  1637. FileTimeToLocalFileTime(&FileTime, &LocalFileTime);
  1638. FileTimeToSystemTime(&LocalFileTime, &SystemTime);
  1639. TDateTime DateTime = SystemTimeToDateTimeVerbose(SystemTime);
  1640. const TDateTimeParams * Params = GetDateTimeParams(DecodeYear(DateTime));
  1641. Result -= (IsDateInDST(DateTime) ?
  1642. Params->DaylightDifferenceSec : Params->StandardDifferenceSec);
  1643. }
  1644. }
  1645. return Result;
  1646. }
  1647. //---------------------------------------------------------------------------
  1648. TDateTime __fastcall ConvertTimestampToUTC(TDateTime DateTime)
  1649. {
  1650. const TDateTimeParams * Params = GetDateTimeParams(DecodeYear(DateTime));
  1651. DateTime += DSTDifferenceForTime(DateTime);
  1652. DateTime += Params->BaseDifference;
  1653. if (Params->DaylightHack)
  1654. {
  1655. const TDateTimeParams * CurrentParams = GetDateTimeParams(0);
  1656. DateTime += CurrentParams->CurrentDaylightDifference;
  1657. }
  1658. return DateTime;
  1659. }
  1660. //---------------------------------------------------------------------------
  1661. TDateTime __fastcall ConvertTimestampFromUTC(TDateTime DateTime)
  1662. {
  1663. const TDateTimeParams * Params = GetDateTimeParams(DecodeYear(DateTime));
  1664. DateTime -= DSTDifferenceForTime(DateTime);
  1665. DateTime -= Params->BaseDifference;
  1666. if (Params->DaylightHack)
  1667. {
  1668. const TDateTimeParams * CurrentParams = GetDateTimeParams(0);
  1669. DateTime -= CurrentParams->CurrentDaylightDifference;
  1670. }
  1671. return DateTime;
  1672. }
  1673. //---------------------------------------------------------------------------
  1674. __int64 __fastcall ConvertTimestampToUnixSafe(const FILETIME & FileTime,
  1675. TDSTMode DSTMode)
  1676. {
  1677. __int64 Result;
  1678. if ((FileTime.dwLowDateTime == 0) &&
  1679. (FileTime.dwHighDateTime == 0))
  1680. {
  1681. Result = ::DateTimeToUnix(Now());
  1682. }
  1683. else
  1684. {
  1685. Result = ConvertTimestampToUnix(FileTime, DSTMode);
  1686. }
  1687. return Result;
  1688. }
  1689. //---------------------------------------------------------------------------
  1690. double __fastcall DSTDifferenceForTime(TDateTime DateTime)
  1691. {
  1692. double Result;
  1693. const TDateTimeParams * Params = GetDateTimeParams(DecodeYear(DateTime));
  1694. if (IsDateInDST(DateTime))
  1695. {
  1696. Result = Params->DaylightDifference;
  1697. }
  1698. else
  1699. {
  1700. Result = Params->StandardDifference;
  1701. }
  1702. return Result;
  1703. }
  1704. //---------------------------------------------------------------------------
  1705. TDateTime __fastcall AdjustDateTimeFromUnix(TDateTime DateTime, TDSTMode DSTMode)
  1706. {
  1707. const TDateTimeParams * Params = GetDateTimeParams(DecodeYear(DateTime));
  1708. if (Params->DaylightHack)
  1709. {
  1710. if ((DSTMode == dstmWin) || (DSTMode == dstmUnix))
  1711. {
  1712. const TDateTimeParams * CurrentParams = GetDateTimeParams(0);
  1713. DateTime = DateTime - CurrentParams->CurrentDaylightDifference;
  1714. }
  1715. if (!IsDateInDST(DateTime))
  1716. {
  1717. if (DSTMode == dstmWin)
  1718. {
  1719. DateTime = DateTime - Params->DaylightDifference;
  1720. }
  1721. }
  1722. else
  1723. {
  1724. DateTime = DateTime - Params->StandardDifference;
  1725. }
  1726. }
  1727. else
  1728. {
  1729. if (DSTMode == dstmWin)
  1730. {
  1731. DateTime = DateTime + DSTDifferenceForTime(DateTime);
  1732. }
  1733. }
  1734. return DateTime;
  1735. }
  1736. //---------------------------------------------------------------------------
  1737. UnicodeString __fastcall FixedLenDateTimeFormat(const UnicodeString & Format)
  1738. {
  1739. UnicodeString Result = Format;
  1740. bool AsIs = false;
  1741. int Index = 1;
  1742. while (Index <= Result.Length())
  1743. {
  1744. wchar_t F = Result[Index];
  1745. if ((F == L'\'') || (F == L'\"'))
  1746. {
  1747. AsIs = !AsIs;
  1748. Index++;
  1749. }
  1750. else if (!AsIs && ((F == L'a') || (F == L'A')))
  1751. {
  1752. if (Result.SubString(Index, 5).LowerCase() == L"am/pm")
  1753. {
  1754. Index += 5;
  1755. }
  1756. else if (Result.SubString(Index, 3).LowerCase() == L"a/p")
  1757. {
  1758. Index += 3;
  1759. }
  1760. else if (Result.SubString(Index, 4).LowerCase() == L"ampm")
  1761. {
  1762. Index += 4;
  1763. }
  1764. else
  1765. {
  1766. Index++;
  1767. }
  1768. }
  1769. else
  1770. {
  1771. if (!AsIs && (wcschr(L"dDeEmMhHnNsS", F) != NULL) &&
  1772. ((Index == Result.Length()) || (Result[Index + 1] != F)))
  1773. {
  1774. Result.Insert(F, Index);
  1775. }
  1776. while ((Index <= Result.Length()) && (F == Result[Index]))
  1777. {
  1778. Index++;
  1779. }
  1780. }
  1781. }
  1782. return Result;
  1783. }
  1784. //---------------------------------------------------------------------------
  1785. UnicodeString __fastcall FormatTimeZone(long Sec)
  1786. {
  1787. TTimeSpan Span = TTimeSpan::FromSeconds(Sec);
  1788. UnicodeString Str;
  1789. if ((Span.Seconds == 0) && (Span.Minutes == 0))
  1790. {
  1791. Str = FORMAT(L"%d", (-Span.Hours));
  1792. }
  1793. else if (Span.Seconds == 0)
  1794. {
  1795. Str = FORMAT(L"%d:%2.2d", (-Span.Hours, abs(Span.Minutes)));
  1796. }
  1797. else
  1798. {
  1799. Str = FORMAT(L"%d:%2.2d:%2.2d", (-Span.Hours, abs(Span.Minutes), abs(Span.Seconds)));
  1800. }
  1801. Str = ((Span <= TTimeSpan::Zero) ? L"+" : L"") + Str;
  1802. return Str;
  1803. }
  1804. //---------------------------------------------------------------------------
  1805. UnicodeString __fastcall GetTimeZoneLogString()
  1806. {
  1807. const TDateTimeParams * CurrentParams = GetDateTimeParams(0);
  1808. UnicodeString Result =
  1809. FORMAT(L"Current: GMT%s", (FormatTimeZone(CurrentParams->CurrentDifferenceSec)));
  1810. if (!CurrentParams->HasDST())
  1811. {
  1812. Result += FORMAT(L" (%s), No DST", (CurrentParams->StandardName));
  1813. }
  1814. else
  1815. {
  1816. Result +=
  1817. FORMAT(L", Standard: GMT%s (%s), DST: GMT%s (%s), DST Start: %s, DST End: %s",
  1818. (FormatTimeZone(CurrentParams->BaseDifferenceSec + CurrentParams->StandardDifferenceSec),
  1819. CurrentParams->StandardName,
  1820. FormatTimeZone(CurrentParams->BaseDifferenceSec + CurrentParams->DaylightDifferenceSec),
  1821. CurrentParams->DaylightName,
  1822. CurrentParams->DaylightDate.DateString(),
  1823. CurrentParams->StandardDate.DateString()));
  1824. }
  1825. return Result;
  1826. }
  1827. //---------------------------------------------------------------------------
  1828. bool __fastcall AdjustClockForDSTEnabled()
  1829. {
  1830. // Windows XP deletes the DisableAutoDaylightTimeSet value when it is off
  1831. // (the later versions set it to DynamicDaylightTimeDisabled to 0)
  1832. bool DynamicDaylightTimeDisabled = false;
  1833. TRegistry * Registry = new TRegistry(KEY_READ);
  1834. try
  1835. {
  1836. Registry->RootKey = HKEY_LOCAL_MACHINE;
  1837. if (Registry->OpenKey(L"SYSTEM", false) &&
  1838. Registry->OpenKey(L"CurrentControlSet", false) &&
  1839. Registry->OpenKey(L"Control", false) &&
  1840. Registry->OpenKey(L"TimeZoneInformation", false))
  1841. {
  1842. if (Registry->ValueExists(L"DynamicDaylightTimeDisabled"))
  1843. {
  1844. DynamicDaylightTimeDisabled = Registry->ReadBool(L"DynamicDaylightTimeDisabled");
  1845. }
  1846. // WORKAROUND
  1847. // Windows XP equivalent
  1848. else if (Registry->ValueExists(L"DisableAutoDaylightTimeSet"))
  1849. {
  1850. DynamicDaylightTimeDisabled = Registry->ReadBool(L"DisableAutoDaylightTimeSet");
  1851. }
  1852. }
  1853. delete Registry;
  1854. }
  1855. catch(...)
  1856. {
  1857. }
  1858. return !DynamicDaylightTimeDisabled;
  1859. }
  1860. //---------------------------------------------------------------------------
  1861. UnicodeString __fastcall StandardDatestamp()
  1862. {
  1863. return FormatDateTime(L"yyyy'-'mm'-'dd", ConvertTimestampToUTC(Now()));
  1864. }
  1865. //---------------------------------------------------------------------------
  1866. UnicodeString __fastcall StandardTimestamp(const TDateTime & DateTime)
  1867. {
  1868. return FormatDateTime(L"yyyy'-'mm'-'dd'T'hh':'nn':'ss'.'zzz'Z'", ConvertTimestampToUTC(DateTime));
  1869. }
  1870. //---------------------------------------------------------------------------
  1871. UnicodeString __fastcall StandardTimestamp()
  1872. {
  1873. return StandardTimestamp(Now());
  1874. }
  1875. //---------------------------------------------------------------------------
  1876. static TDateTime TwoSeconds(0, 0, 2, 0);
  1877. int __fastcall CompareFileTime(TDateTime T1, TDateTime T2)
  1878. {
  1879. // "FAT" time precision
  1880. // (when one time is seconds-precision and other is millisecond-precision,
  1881. // we may have times like 12:00:00.000 and 12:00:01.999, which should
  1882. // be treated the same)
  1883. int Result;
  1884. if (T1 == T2)
  1885. {
  1886. // just optimization
  1887. Result = 0;
  1888. }
  1889. else if ((T1 < T2) && (T2 - T1 >= TwoSeconds))
  1890. {
  1891. Result = -1;
  1892. }
  1893. else if ((T1 > T2) && (T1 - T2 >= TwoSeconds))
  1894. {
  1895. Result = 1;
  1896. }
  1897. else
  1898. {
  1899. Result = 0;
  1900. }
  1901. return Result;
  1902. }
  1903. //---------------------------------------------------------------------------
  1904. int __fastcall TimeToMSec(TDateTime T)
  1905. {
  1906. return int(Round(double(T) * double(MSecsPerDay)));
  1907. }
  1908. //---------------------------------------------------------------------------
  1909. int __fastcall TimeToSeconds(TDateTime T)
  1910. {
  1911. return TimeToMSec(T) / MSecsPerSec;
  1912. }
  1913. //---------------------------------------------------------------------------
  1914. int __fastcall TimeToMinutes(TDateTime T)
  1915. {
  1916. return TimeToSeconds(T) / SecsPerMin;
  1917. }
  1918. //---------------------------------------------------------------------------
  1919. static bool __fastcall DoRecursiveDeleteFile(const UnicodeString FileName, bool ToRecycleBin, UnicodeString & ErrorPath)
  1920. {
  1921. bool Result;
  1922. UnicodeString AErrorPath = FileName;
  1923. if (!ToRecycleBin)
  1924. {
  1925. TSearchRecChecked SearchRec;
  1926. Result = FileSearchRec(FileName, SearchRec);
  1927. if (Result)
  1928. {
  1929. if (FLAGCLEAR(SearchRec.Attr, faDirectory))
  1930. {
  1931. Result = DeleteFile(ApiPath(FileName));
  1932. }
  1933. else
  1934. {
  1935. Result = (FindFirstUnchecked(FileName + L"\\*", faAnyFile, SearchRec) == 0);
  1936. if (Result)
  1937. {
  1938. try
  1939. {
  1940. do
  1941. {
  1942. UnicodeString FileName2 = FileName + L"\\" + SearchRec.Name;
  1943. if (FLAGSET(SearchRec.Attr, faDirectory))
  1944. {
  1945. if ((SearchRec.Name != L".") && (SearchRec.Name != L".."))
  1946. {
  1947. Result = DoRecursiveDeleteFile(FileName2, DebugAlwaysFalse(ToRecycleBin), AErrorPath);
  1948. }
  1949. }
  1950. else
  1951. {
  1952. Result = DeleteFile(ApiPath(FileName2));
  1953. if (!Result)
  1954. {
  1955. AErrorPath = FileName2;
  1956. }
  1957. }
  1958. }
  1959. while (Result && (FindNextUnchecked(SearchRec) == 0));
  1960. }
  1961. __finally
  1962. {
  1963. FindClose(SearchRec);
  1964. }
  1965. if (Result)
  1966. {
  1967. Result = RemoveDir(ApiPath(FileName));
  1968. }
  1969. }
  1970. }
  1971. }
  1972. }
  1973. else
  1974. {
  1975. SHFILEOPSTRUCT Data;
  1976. memset(&Data, 0, sizeof(Data));
  1977. Data.hwnd = NULL;
  1978. Data.wFunc = FO_DELETE;
  1979. // SHFileOperation does not support long paths anyway
  1980. UnicodeString FileList(ApiPath(FileName));
  1981. FileList.SetLength(FileList.Length() + 2);
  1982. FileList[FileList.Length() - 1] = L'\0';
  1983. FileList[FileList.Length()] = L'\0';
  1984. Data.pFrom = FileList.c_str();
  1985. Data.pTo = L"\0\0"; // this will actually give one null more than needed
  1986. Data.fFlags = FOF_NOCONFIRMATION | FOF_RENAMEONCOLLISION | FOF_NOCONFIRMMKDIR |
  1987. FOF_NOERRORUI | FOF_SILENT;
  1988. if (DebugAlwaysTrue(ToRecycleBin))
  1989. {
  1990. Data.fFlags |= FOF_ALLOWUNDO;
  1991. }
  1992. int ErrorCode = SHFileOperation(&Data);
  1993. Result = (ErrorCode == 0);
  1994. if (!Result)
  1995. {
  1996. // according to MSDN, SHFileOperation may return following non-Win32
  1997. // error codes
  1998. if (((ErrorCode >= 0x71) && (ErrorCode <= 0x88)) ||
  1999. (ErrorCode == 0xB7) || (ErrorCode == 0x402) || (ErrorCode == 0x10000) ||
  2000. (ErrorCode == 0x10074))
  2001. {
  2002. ErrorCode = 0;
  2003. }
  2004. SetLastError(ErrorCode);
  2005. }
  2006. }
  2007. if (!Result)
  2008. {
  2009. ErrorPath = AErrorPath;
  2010. }
  2011. return Result;
  2012. }
  2013. //---------------------------------------------------------------------------
  2014. bool __fastcall RecursiveDeleteFile(const UnicodeString & FileName, bool ToRecycleBin)
  2015. {
  2016. UnicodeString ErrorPath; // unused
  2017. return DoRecursiveDeleteFile(FileName, ToRecycleBin, ErrorPath);
  2018. }
  2019. //---------------------------------------------------------------------------
  2020. void __fastcall RecursiveDeleteFileChecked(const UnicodeString & FileName, bool ToRecycleBin)
  2021. {
  2022. UnicodeString ErrorPath;
  2023. if (!DoRecursiveDeleteFile(FileName, ToRecycleBin, ErrorPath))
  2024. {
  2025. throw EOSExtException(FMTLOAD(DELETE_LOCAL_FILE_ERROR, (ErrorPath)));
  2026. }
  2027. }
  2028. //---------------------------------------------------------------------------
  2029. void __fastcall DeleteFileChecked(const UnicodeString & FileName)
  2030. {
  2031. if (!DeleteFile(ApiPath(FileName)))
  2032. {
  2033. throw EOSExtException(FMTLOAD(DELETE_LOCAL_FILE_ERROR, (FileName)));
  2034. }
  2035. }
  2036. //---------------------------------------------------------------------------
  2037. unsigned int __fastcall CancelAnswer(unsigned int Answers)
  2038. {
  2039. unsigned int Result;
  2040. if ((Answers & qaCancel) != 0)
  2041. {
  2042. Result = qaCancel;
  2043. }
  2044. else if ((Answers & qaNo) != 0)
  2045. {
  2046. Result = qaNo;
  2047. }
  2048. else if ((Answers & qaAbort) != 0)
  2049. {
  2050. Result = qaAbort;
  2051. }
  2052. else if ((Answers & qaOK) != 0)
  2053. {
  2054. Result = qaOK;
  2055. }
  2056. else
  2057. {
  2058. DebugFail();
  2059. Result = qaCancel;
  2060. }
  2061. return Result;
  2062. }
  2063. //---------------------------------------------------------------------------
  2064. unsigned int __fastcall AbortAnswer(unsigned int Answers)
  2065. {
  2066. unsigned int Result;
  2067. if (FLAGSET(Answers, qaAbort))
  2068. {
  2069. Result = qaAbort;
  2070. }
  2071. else
  2072. {
  2073. Result = CancelAnswer(Answers);
  2074. }
  2075. return Result;
  2076. }
  2077. //---------------------------------------------------------------------------
  2078. unsigned int __fastcall ContinueAnswer(unsigned int Answers)
  2079. {
  2080. unsigned int Result;
  2081. if (FLAGSET(Answers, qaSkip))
  2082. {
  2083. Result = qaSkip;
  2084. }
  2085. else if (FLAGSET(Answers, qaIgnore))
  2086. {
  2087. Result = qaIgnore;
  2088. }
  2089. else if (FLAGSET(Answers, qaYes))
  2090. {
  2091. Result = qaYes;
  2092. }
  2093. else if (FLAGSET(Answers, qaOK))
  2094. {
  2095. Result = qaOK;
  2096. }
  2097. else if (FLAGSET(Answers, qaRetry))
  2098. {
  2099. Result = qaRetry;
  2100. }
  2101. else
  2102. {
  2103. Result = CancelAnswer(Answers);
  2104. }
  2105. return Result;
  2106. }
  2107. //---------------------------------------------------------------------------
  2108. TLibModule * __fastcall FindModule(void * Instance)
  2109. {
  2110. TLibModule * CurModule;
  2111. CurModule = reinterpret_cast<TLibModule*>(LibModuleList);
  2112. while (CurModule)
  2113. {
  2114. if (CurModule->Instance == (unsigned)Instance)
  2115. {
  2116. break;
  2117. }
  2118. else
  2119. {
  2120. CurModule = CurModule->Next;
  2121. }
  2122. }
  2123. return CurModule;
  2124. }
  2125. //---------------------------------------------------------------------------
  2126. UnicodeString __fastcall LoadStr(int Ident, unsigned int MaxLength)
  2127. {
  2128. TLibModule * MainModule = FindModule(HInstance);
  2129. DebugAssert(MainModule != NULL);
  2130. UnicodeString Result;
  2131. Result.SetLength(MaxLength);
  2132. int Length = LoadString((HINSTANCE)MainModule->ResInstance, Ident, Result.c_str(), MaxLength);
  2133. Result.SetLength(Length);
  2134. return Result;
  2135. }
  2136. //---------------------------------------------------------------------------
  2137. UnicodeString __fastcall LoadStrPart(int Ident, int Part)
  2138. {
  2139. UnicodeString Result;
  2140. UnicodeString Str = LoadStr(Ident);
  2141. while (Part > 0)
  2142. {
  2143. Result = CutToChar(Str, L'|', false);
  2144. Part--;
  2145. }
  2146. return Result;
  2147. }
  2148. //---------------------------------------------------------------------------
  2149. UnicodeString __fastcall DecodeUrlChars(UnicodeString S)
  2150. {
  2151. int i = 1;
  2152. while (i <= S.Length())
  2153. {
  2154. switch (S[i])
  2155. {
  2156. case L'+':
  2157. S[i] = ' ';
  2158. break;
  2159. case L'%':
  2160. {
  2161. UnicodeString Hex;
  2162. while ((i + 2 <= S.Length()) && (S[i] == L'%') &&
  2163. IsHex(S[i + 1]) && IsHex(S[i + 2]))
  2164. {
  2165. Hex += S.SubString(i + 1, 2);
  2166. S.Delete(i, 3);
  2167. }
  2168. if (!Hex.IsEmpty())
  2169. {
  2170. RawByteString Bytes = HexToBytes(Hex);
  2171. UnicodeString Chars(UTF8ToString(Bytes));
  2172. S.Insert(Chars, i);
  2173. i += Chars.Length() - 1;
  2174. }
  2175. }
  2176. break;
  2177. }
  2178. i++;
  2179. }
  2180. return S;
  2181. }
  2182. //---------------------------------------------------------------------------
  2183. UnicodeString __fastcall DoEncodeUrl(UnicodeString S, bool EncodeSlash)
  2184. {
  2185. int Index = 1;
  2186. while (Index <= S.Length())
  2187. {
  2188. wchar_t C = S[Index];
  2189. if (IsLetter(C) ||
  2190. IsDigit(C) ||
  2191. (C == L'_') || (C == L'-') || (C == L'.') ||
  2192. ((C == L'/') && !EncodeSlash))
  2193. {
  2194. Index++;
  2195. }
  2196. else
  2197. {
  2198. UTF8String UtfS(S.SubString(Index, 1));
  2199. UnicodeString H;
  2200. for (int Index2 = 1; Index2 <= UtfS.Length(); Index2++)
  2201. {
  2202. H += L"%" + ByteToHex(static_cast<unsigned char>(UtfS[Index2]));
  2203. }
  2204. S.Delete(Index, 1);
  2205. S.Insert(H, Index);
  2206. Index += H.Length();
  2207. }
  2208. }
  2209. return S;
  2210. }
  2211. //---------------------------------------------------------------------------
  2212. UnicodeString __fastcall EncodeUrlString(UnicodeString S)
  2213. {
  2214. return DoEncodeUrl(S, true);
  2215. }
  2216. //---------------------------------------------------------------------------
  2217. UnicodeString __fastcall EncodeUrlPath(UnicodeString S)
  2218. {
  2219. return DoEncodeUrl(S, false);
  2220. }
  2221. //---------------------------------------------------------------------------
  2222. UnicodeString __fastcall AppendUrlParams(UnicodeString AURL, UnicodeString Params)
  2223. {
  2224. // see also TWebHelpSystem::ShowHelp
  2225. const wchar_t FragmentSeparator = L'#';
  2226. UnicodeString URL = CutToChar(AURL, FragmentSeparator, false);
  2227. if (URL.Pos(L"?") == 0)
  2228. {
  2229. URL += L"?";
  2230. }
  2231. else
  2232. {
  2233. URL += L"&";
  2234. }
  2235. URL += Params;
  2236. AddToList(URL, AURL, FragmentSeparator);
  2237. return URL;
  2238. }
  2239. //---------------------------------------------------------------------------
  2240. UnicodeString __fastcall ExtractFileNameFromUrl(const UnicodeString & Url)
  2241. {
  2242. UnicodeString Result = Url;
  2243. int P = Result.Pos(L"?");
  2244. if (P > 0)
  2245. {
  2246. Result.SetLength(P - 1);
  2247. }
  2248. P = Result.LastDelimiter("/");
  2249. if (DebugAlwaysTrue(P > 0))
  2250. {
  2251. Result.Delete(1, P);
  2252. }
  2253. return Result;
  2254. }
  2255. //---------------------------------------------------------------------------
  2256. UnicodeString __fastcall EscapeHotkey(const UnicodeString & Caption)
  2257. {
  2258. return ReplaceStr(Caption, L"&", L"&&");
  2259. }
  2260. //---------------------------------------------------------------------------
  2261. // duplicated in console's Main.cpp
  2262. static bool __fastcall DoCutToken(UnicodeString & Str, UnicodeString & Token,
  2263. UnicodeString * RawToken, UnicodeString * Separator, bool EscapeQuotesInQuotesOnly)
  2264. {
  2265. bool Result;
  2266. Token = L"";
  2267. // inspired by Putty's sftp_getcmd() from PSFTP.C
  2268. int Index = 1;
  2269. while ((Index <= Str.Length()) &&
  2270. ((Str[Index] == L' ') || (Str[Index] == L'\t')))
  2271. {
  2272. Index++;
  2273. }
  2274. if (Index <= Str.Length())
  2275. {
  2276. bool Quoting = false;
  2277. while (Index <= Str.Length())
  2278. {
  2279. if (!Quoting && ((Str[Index] == L' ') || (Str[Index] == L'\t')))
  2280. {
  2281. break;
  2282. }
  2283. // With EscapeQuotesInQuotesOnly we escape quotes only within quotes
  2284. // otherwise the "" means " (quote), but it should mean empty string.
  2285. else if ((Str[Index] == L'"') && (Index + 1 <= Str.Length()) &&
  2286. (Str[Index + 1] == L'"') && (!EscapeQuotesInQuotesOnly || Quoting))
  2287. {
  2288. Index += 2;
  2289. Token += L'"';
  2290. }
  2291. else if (Str[Index] == L'"')
  2292. {
  2293. Index++;
  2294. Quoting = !Quoting;
  2295. }
  2296. else
  2297. {
  2298. Token += Str[Index];
  2299. Index++;
  2300. }
  2301. }
  2302. if (RawToken != NULL)
  2303. {
  2304. (*RawToken) = Str.SubString(1, Index - 1);
  2305. }
  2306. if (Index <= Str.Length())
  2307. {
  2308. if (Separator != NULL)
  2309. {
  2310. *Separator = Str.SubString(Index, 1);
  2311. }
  2312. Index++;
  2313. }
  2314. else
  2315. {
  2316. if (Separator != NULL)
  2317. {
  2318. *Separator = UnicodeString();
  2319. }
  2320. }
  2321. Str = Str.SubString(Index, Str.Length());
  2322. Result = true;
  2323. }
  2324. else
  2325. {
  2326. Result = false;
  2327. Str = L"";
  2328. }
  2329. return Result;
  2330. }
  2331. //---------------------------------------------------------------------------
  2332. bool __fastcall CutToken(UnicodeString & Str, UnicodeString & Token,
  2333. UnicodeString * RawToken, UnicodeString * Separator)
  2334. {
  2335. return DoCutToken(Str, Token, RawToken, Separator, false);
  2336. }
  2337. //---------------------------------------------------------------------------
  2338. bool __fastcall CutTokenEx(UnicodeString & Str, UnicodeString & Token,
  2339. UnicodeString * RawToken, UnicodeString * Separator)
  2340. {
  2341. return DoCutToken(Str, Token, RawToken, Separator, true);
  2342. }
  2343. //---------------------------------------------------------------------------
  2344. void __fastcall AddToList(UnicodeString & List, const UnicodeString & Value, const UnicodeString & Delimiter)
  2345. {
  2346. if (!Value.IsEmpty())
  2347. {
  2348. if (!List.IsEmpty() &&
  2349. ((List.Length() < Delimiter.Length()) ||
  2350. (List.SubString(List.Length() - Delimiter.Length() + 1, Delimiter.Length()) != Delimiter)))
  2351. {
  2352. List += Delimiter;
  2353. }
  2354. List += Value;
  2355. }
  2356. }
  2357. //---------------------------------------------------------------------------
  2358. bool __fastcall IsWinVista()
  2359. {
  2360. // Vista is 6.0
  2361. // Win XP is 5.1
  2362. // There also 5.2, what is Windows 2003 or Windows XP 64bit
  2363. // (we consider it WinXP for now)
  2364. return CheckWin32Version(6, 0);
  2365. }
  2366. //---------------------------------------------------------------------------
  2367. bool __fastcall IsWin7()
  2368. {
  2369. return CheckWin32Version(6, 1);
  2370. }
  2371. //---------------------------------------------------------------------------
  2372. bool __fastcall IsWin8()
  2373. {
  2374. return CheckWin32Version(6, 2);
  2375. }
  2376. //---------------------------------------------------------------------------
  2377. bool __fastcall IsWin10()
  2378. {
  2379. return CheckWin32Version(10, 0);
  2380. }
  2381. //---------------------------------------------------------------------------
  2382. bool __fastcall IsWine()
  2383. {
  2384. HMODULE NtDll = GetModuleHandle(L"ntdll.dll");
  2385. return
  2386. DebugAlwaysTrue(NtDll != NULL) &&
  2387. (GetProcAddress(NtDll, "wine_get_version") != NULL);
  2388. }
  2389. //---------------------------------------------------------------------------
  2390. LCID __fastcall GetDefaultLCID()
  2391. {
  2392. return GetUserDefaultLCID();
  2393. }
  2394. //---------------------------------------------------------------------------
  2395. static UnicodeString ADefaultEncodingName;
  2396. UnicodeString __fastcall DefaultEncodingName()
  2397. {
  2398. if (ADefaultEncodingName.IsEmpty())
  2399. {
  2400. CPINFOEX Info;
  2401. GetCPInfoEx(CP_ACP, 0, &Info);
  2402. ADefaultEncodingName = Info.CodePageName;
  2403. }
  2404. return ADefaultEncodingName;
  2405. }
  2406. //---------------------------------------------------------------------------
  2407. bool _fastcall GetWindowsProductType(DWORD & Type)
  2408. {
  2409. bool Result;
  2410. HINSTANCE Kernel32 = GetModuleHandle(kernel32);
  2411. typedef BOOL WINAPI (* TGetProductInfo)(DWORD, DWORD, DWORD, DWORD, PDWORD);
  2412. TGetProductInfo GetProductInfo =
  2413. (TGetProductInfo)GetProcAddress(Kernel32, "GetProductInfo");
  2414. if (GetProductInfo == NULL)
  2415. {
  2416. Result = false;
  2417. }
  2418. else
  2419. {
  2420. GetProductInfo(Win32MajorVersion, Win32MinorVersion, 0, 0, &Type);
  2421. Result = true;
  2422. }
  2423. return Result;
  2424. }
  2425. //---------------------------------------------------------------------------
  2426. UnicodeString __fastcall WindowsProductName()
  2427. {
  2428. UnicodeString Result;
  2429. TRegistry * Registry = new TRegistry(KEY_READ);
  2430. try
  2431. {
  2432. Registry->RootKey = HKEY_LOCAL_MACHINE;
  2433. if (Registry->OpenKey(L"SOFTWARE", false) &&
  2434. Registry->OpenKey(L"Microsoft", false) &&
  2435. Registry->OpenKey(L"Windows NT", false) &&
  2436. Registry->OpenKey(L"CurrentVersion", false))
  2437. {
  2438. Result = Registry->ReadString(L"ProductName");
  2439. }
  2440. delete Registry;
  2441. }
  2442. catch(...)
  2443. {
  2444. }
  2445. return Result;
  2446. }
  2447. //---------------------------------------------------------------------------
  2448. UnicodeString __fastcall WindowsVersion()
  2449. {
  2450. UnicodeString Result;
  2451. OSVERSIONINFO OSVersionInfo;
  2452. OSVersionInfo.dwOSVersionInfoSize = sizeof(OSVersionInfo);
  2453. // Cannot use the VCL Win32MajorVersion+Win32MinorVersion+Win32BuildNumber as
  2454. // on Windows 10 due to some hacking in InitPlatformId, the Win32BuildNumber is lost
  2455. if (GetVersionEx(&OSVersionInfo) != 0)
  2456. {
  2457. Result = FORMAT(L"%d.%d.%d", (int(OSVersionInfo.dwMajorVersion), int(OSVersionInfo.dwMinorVersion), int(OSVersionInfo.dwBuildNumber)));
  2458. }
  2459. return Result;
  2460. }
  2461. //---------------------------------------------------------------------------
  2462. UnicodeString __fastcall WindowsVersionLong()
  2463. {
  2464. UnicodeString Result = WindowsVersion();
  2465. AddToList(Result, Win32CSDVersion, L" ");
  2466. return Result;
  2467. }
  2468. //---------------------------------------------------------------------------
  2469. bool __fastcall IsDirectoryWriteable(const UnicodeString & Path)
  2470. {
  2471. UnicodeString FileName =
  2472. IncludeTrailingPathDelimiter(Path) +
  2473. FORMAT(L"wscp_%s_%d.tmp", (FormatDateTime(L"nnzzz", Now()), int(GetCurrentProcessId())));
  2474. HANDLE Handle = CreateFile(ApiPath(FileName).c_str(), GENERIC_READ | GENERIC_WRITE, 0, NULL,
  2475. CREATE_NEW, FILE_ATTRIBUTE_TEMPORARY | FILE_FLAG_DELETE_ON_CLOSE, 0);
  2476. bool Result = (Handle != INVALID_HANDLE_VALUE);
  2477. if (Result)
  2478. {
  2479. CloseHandle(Handle);
  2480. }
  2481. return Result;
  2482. }
  2483. //---------------------------------------------------------------------------
  2484. UnicodeString __fastcall FormatNumber(__int64 Number)
  2485. {
  2486. return FormatFloat(L"#,##0", Number);
  2487. }
  2488. //---------------------------------------------------------------------------
  2489. // simple alternative to FormatBytes
  2490. UnicodeString __fastcall FormatSize(__int64 Size)
  2491. {
  2492. return FormatNumber(Size);
  2493. }
  2494. //---------------------------------------------------------------------------
  2495. UnicodeString __fastcall ExtractFileBaseName(const UnicodeString & Path)
  2496. {
  2497. return ChangeFileExt(ExtractFileName(Path), L"");
  2498. }
  2499. //---------------------------------------------------------------------------
  2500. TStringList * __fastcall TextToStringList(const UnicodeString & Text)
  2501. {
  2502. std::unique_ptr<TStringList> List(new TStringList());
  2503. List->Text = Text;
  2504. return List.release();
  2505. }
  2506. //---------------------------------------------------------------------------
  2507. UnicodeString __fastcall StringsToText(TStrings * Strings)
  2508. {
  2509. UnicodeString Result;
  2510. if (Strings->Count == 1)
  2511. {
  2512. Result = Strings->Strings[0];
  2513. }
  2514. else
  2515. {
  2516. Result = Strings->Text;
  2517. }
  2518. return Result;
  2519. }
  2520. //---------------------------------------------------------------------------
  2521. TStrings * __fastcall CloneStrings(TStrings * Strings)
  2522. {
  2523. std::unique_ptr<TStringList> List(new TStringList());
  2524. List->AddStrings(Strings);
  2525. return List.release();
  2526. }
  2527. //---------------------------------------------------------------------------
  2528. UnicodeString __fastcall TrimVersion(UnicodeString Version)
  2529. {
  2530. while ((Version.Pos(L".") != Version.LastDelimiter(L".")) &&
  2531. (Version.SubString(Version.Length() - 1, 2) == L".0"))
  2532. {
  2533. Version.SetLength(Version.Length() - 2);
  2534. }
  2535. return Version;
  2536. }
  2537. //---------------------------------------------------------------------------
  2538. UnicodeString __fastcall FormatVersion(int MajovVersion, int MinorVersion, int Release)
  2539. {
  2540. return
  2541. TrimVersion(FORMAT(L"%d.%d.%d",
  2542. (MajovVersion, MinorVersion, Release)));
  2543. }
  2544. //---------------------------------------------------------------------------
  2545. TFormatSettings __fastcall GetEngFormatSettings()
  2546. {
  2547. return TFormatSettings::Create((TLocaleID)1033);
  2548. }
  2549. //---------------------------------------------------------------------------
  2550. int __fastcall ParseShortEngMonthName(const UnicodeString & MonthStr)
  2551. {
  2552. TFormatSettings FormatSettings = GetEngFormatSettings();
  2553. return IndexStr(MonthStr, FormatSettings.ShortMonthNames, FormatSettings.ShortMonthNames.Size()) + 1;
  2554. }
  2555. //---------------------------------------------------------------------------
  2556. TStringList * __fastcall CreateSortedStringList(bool CaseSensitive, System::Types::TDuplicates Duplicates)
  2557. {
  2558. TStringList * Result = new TStringList();
  2559. Result->CaseSensitive = CaseSensitive;
  2560. Result->Sorted = true;
  2561. Result->Duplicates = Duplicates;
  2562. return Result;
  2563. }
  2564. //---------------------------------------------------------------------------
  2565. static UnicodeString __fastcall NormalizeIdent(UnicodeString Ident)
  2566. {
  2567. int Index = 1;
  2568. while (Index <= Ident.Length())
  2569. {
  2570. if (Ident[Index] == L'-')
  2571. {
  2572. Ident.Delete(Index, 1);
  2573. }
  2574. else
  2575. {
  2576. Index++;
  2577. }
  2578. }
  2579. return Ident;
  2580. }
  2581. //---------------------------------------------------------------------------
  2582. UnicodeString __fastcall FindIdent(const UnicodeString & Ident, TStrings * Idents)
  2583. {
  2584. UnicodeString NormalizedIdent(NormalizeIdent(Ident));
  2585. for (int Index = 0; Index < Idents->Count; Index++)
  2586. {
  2587. if (SameText(NormalizedIdent, NormalizeIdent(Idents->Strings[Index])))
  2588. {
  2589. return Idents->Strings[Index];
  2590. }
  2591. }
  2592. return Ident;
  2593. }
  2594. //---------------------------------------------------------------------------
  2595. static UnicodeString __fastcall GetTlsErrorStr(int Err)
  2596. {
  2597. char * Buffer = new char[512];
  2598. ERR_error_string(Err, Buffer);
  2599. // not sure about the UTF8
  2600. return UnicodeString(UTF8String(Buffer));
  2601. }
  2602. //---------------------------------------------------------------------------
  2603. static FILE * __fastcall OpenCertificate(const UnicodeString & Path)
  2604. {
  2605. FILE * Result = _wfopen(ApiPath(Path).c_str(), L"rb");
  2606. if (Result == NULL)
  2607. {
  2608. int Error = errno;
  2609. throw EOSExtException(MainInstructions(FMTLOAD(CERTIFICATE_OPEN_ERROR, (Path))), Error);
  2610. }
  2611. return Result;
  2612. }
  2613. //---------------------------------------------------------------------------
  2614. struct TPemPasswordCallbackData
  2615. {
  2616. UnicodeString * Passphrase;
  2617. };
  2618. //---------------------------------------------------------------------------
  2619. static int PemPasswordCallback(char * Buf, int Size, int /*RWFlag*/, void * UserData)
  2620. {
  2621. TPemPasswordCallbackData & Data = *reinterpret_cast<TPemPasswordCallbackData *>(UserData);
  2622. UTF8String UtfPassphrase = UTF8String(*Data.Passphrase);
  2623. strncpy(Buf, UtfPassphrase.c_str(), Size);
  2624. Shred(UtfPassphrase);
  2625. Buf[Size - 1] = '\0';
  2626. return strlen(Buf);
  2627. }
  2628. //---------------------------------------------------------------------------
  2629. static bool __fastcall IsTlsPassphraseError(int Error, bool HasPassphrase)
  2630. {
  2631. int ErrorLib = ERR_GET_LIB(Error);
  2632. int ErrorReason = ERR_GET_REASON(Error);
  2633. bool Result =
  2634. ((ErrorLib == ERR_LIB_PKCS12) &&
  2635. (ErrorReason == PKCS12_R_MAC_VERIFY_FAILURE)) ||
  2636. ((ErrorLib == ERR_LIB_PEM) &&
  2637. (ErrorReason == PEM_R_BAD_PASSWORD_READ)) ||
  2638. (HasPassphrase && (ERR_LIB_EVP == ERR_LIB_EVP) &&
  2639. ((ErrorReason == PEM_R_BAD_DECRYPT) || (ErrorReason == PEM_R_BAD_BASE64_DECODE)));
  2640. return Result;
  2641. }
  2642. //---------------------------------------------------------------------------
  2643. static void __fastcall ThrowTlsCertificateErrorIgnorePassphraseErrors(const UnicodeString & Path, bool HasPassphrase)
  2644. {
  2645. int Error = ERR_get_error();
  2646. if (!IsTlsPassphraseError(Error, HasPassphrase))
  2647. {
  2648. throw ExtException(MainInstructions(FMTLOAD(CERTIFICATE_READ_ERROR, (Path))), GetTlsErrorStr(Error));
  2649. }
  2650. }
  2651. //---------------------------------------------------------------------------
  2652. void __fastcall ParseCertificate(const UnicodeString & Path,
  2653. const UnicodeString & Passphrase, X509 *& Certificate, EVP_PKEY *& PrivateKey,
  2654. bool & WrongPassphrase)
  2655. {
  2656. Certificate = NULL;
  2657. PrivateKey = NULL;
  2658. bool HasPassphrase = !Passphrase.IsEmpty();
  2659. FILE * File;
  2660. // Inspired by neon's ne_ssl_clicert_read
  2661. File = OpenCertificate(Path);
  2662. // openssl pkcs12 -inkey cert.pem -in cert.crt -export -out cert.pfx
  2663. // Binary file
  2664. PKCS12 * Pkcs12 = d2i_PKCS12_fp(File, NULL);
  2665. fclose(File);
  2666. if (Pkcs12 != NULL)
  2667. {
  2668. // Not sure about the UTF-8 encoding, but there's no wchar_t API
  2669. bool Result =
  2670. (PKCS12_parse(Pkcs12, UTF8String(Passphrase).c_str(), &PrivateKey, &Certificate, NULL) == 1);
  2671. PKCS12_free(Pkcs12);
  2672. if (!Result)
  2673. {
  2674. ThrowTlsCertificateErrorIgnorePassphraseErrors(Path, HasPassphrase);
  2675. WrongPassphrase = true;
  2676. }
  2677. }
  2678. else
  2679. {
  2680. ERR_clear_error();
  2681. TPemPasswordCallbackData CallbackUserData;
  2682. // PemPasswordCallback never writes to the .Passphrase
  2683. CallbackUserData.Passphrase = const_cast<UnicodeString *>(&Passphrase);
  2684. File = OpenCertificate(Path);
  2685. // Encrypted:
  2686. // openssl req -x509 -newkey rsa:2048 -keyout cert.pem -out cert.crt
  2687. // -----BEGIN ENCRYPTED PRIVATE KEY-----
  2688. // ...
  2689. // -----END ENCRYPTED PRIVATE KEY-----
  2690. // Not encrypted (add -nodes):
  2691. // -----BEGIN PRIVATE KEY-----
  2692. // ...
  2693. // -----END PRIVATE KEY-----
  2694. // Or (openssl genrsa -out client.key 1024 # used for certificate signing request)
  2695. // -----BEGIN RSA PRIVATE KEY-----
  2696. // ...
  2697. // -----END RSA PRIVATE KEY-----
  2698. PrivateKey = PEM_read_PrivateKey(File, NULL, PemPasswordCallback, &CallbackUserData);
  2699. fclose(File);
  2700. try
  2701. {
  2702. if (PrivateKey == NULL)
  2703. {
  2704. ThrowTlsCertificateErrorIgnorePassphraseErrors(Path, HasPassphrase);
  2705. WrongPassphrase = true;
  2706. }
  2707. File = OpenCertificate(Path);
  2708. // The file can contain both private and public key
  2709. // (basically cert.pem and cert.crt appended one to each other)
  2710. // -----BEGIN ENCRYPTED PRIVATE KEY-----
  2711. // ...
  2712. // -----END ENCRYPTED PRIVATE KEY-----
  2713. // -----BEGIN CERTIFICATE-----
  2714. // ...
  2715. // -----END CERTIFICATE-----
  2716. Certificate = PEM_read_X509(File, NULL, PemPasswordCallback, &CallbackUserData);
  2717. fclose(File);
  2718. if (Certificate == NULL)
  2719. {
  2720. int Error = ERR_get_error();
  2721. // unlikely
  2722. if (IsTlsPassphraseError(Error, HasPassphrase))
  2723. {
  2724. WrongPassphrase = true;
  2725. }
  2726. else
  2727. {
  2728. UnicodeString CertificatePath = ChangeFileExt(Path, L".cer");
  2729. if (!FileExists(CertificatePath))
  2730. {
  2731. CertificatePath = ChangeFileExt(Path, L".crt");
  2732. }
  2733. if (!FileExists(CertificatePath))
  2734. {
  2735. throw Exception(MainInstructions(FMTLOAD(CERTIFICATE_PUBLIC_KEY_NOT_FOUND, (Path))));
  2736. }
  2737. else
  2738. {
  2739. File = OpenCertificate(CertificatePath);
  2740. // -----BEGIN CERTIFICATE-----
  2741. // ...
  2742. // -----END CERTIFICATE-----
  2743. Certificate = PEM_read_X509(File, NULL, PemPasswordCallback, &CallbackUserData);
  2744. fclose(File);
  2745. if (Certificate == NULL)
  2746. {
  2747. int Base64Error = ERR_get_error();
  2748. File = OpenCertificate(CertificatePath);
  2749. // Binary DER-encoded certificate
  2750. // (as above, with BEGIN/END removed, and decoded from Base64 to binary)
  2751. // openssl x509 -in cert.crt -out client.der.crt -outform DER
  2752. Certificate = d2i_X509_fp(File, NULL);
  2753. fclose(File);
  2754. if (Certificate == NULL)
  2755. {
  2756. int DERError = ERR_get_error();
  2757. UnicodeString Message = MainInstructions(FMTLOAD(CERTIFICATE_READ_ERROR, (CertificatePath)));
  2758. UnicodeString MoreMessages =
  2759. FORMAT(L"Base64: %s\nDER: %s", (GetTlsErrorStr(Base64Error), GetTlsErrorStr(DERError)));
  2760. throw ExtException(Message, MoreMessages);
  2761. }
  2762. }
  2763. }
  2764. }
  2765. }
  2766. }
  2767. __finally
  2768. {
  2769. // We loaded private key, but failed to load certificate, discard the certificate
  2770. // (either exception was thrown or WrongPassphrase)
  2771. if ((PrivateKey != NULL) && (Certificate == NULL))
  2772. {
  2773. EVP_PKEY_free(PrivateKey);
  2774. PrivateKey = NULL;
  2775. }
  2776. // Certificate was verified, but passphrase was wrong when loading private key,
  2777. // so discard the certificate
  2778. else if ((Certificate != NULL) && (PrivateKey == NULL))
  2779. {
  2780. X509_free(Certificate);
  2781. Certificate = NULL;
  2782. }
  2783. }
  2784. }
  2785. }
  2786. //---------------------------------------------------------------------------
  2787. void __fastcall CheckCertificate(const UnicodeString & Path)
  2788. {
  2789. X509 * Certificate;
  2790. EVP_PKEY * PrivateKey;
  2791. bool WrongPassphrase;
  2792. ParseCertificate(Path, L"", Certificate, PrivateKey, WrongPassphrase);
  2793. if (PrivateKey != NULL)
  2794. {
  2795. EVP_PKEY_free(PrivateKey);
  2796. }
  2797. if (Certificate != NULL)
  2798. {
  2799. X509_free(Certificate);
  2800. }
  2801. }
  2802. //---------------------------------------------------------------------------
  2803. const UnicodeString HttpProtocol(L"http");
  2804. const UnicodeString HttpsProtocol(L"https");
  2805. const UnicodeString ProtocolSeparator(L"://");
  2806. //---------------------------------------------------------------------------
  2807. bool __fastcall IsHttpUrl(const UnicodeString & S)
  2808. {
  2809. return StartsText(HttpProtocol + ProtocolSeparator, S);
  2810. }
  2811. //---------------------------------------------------------------------------
  2812. bool __fastcall IsHttpOrHttpsUrl(const UnicodeString & S)
  2813. {
  2814. return
  2815. IsHttpUrl(S) ||
  2816. StartsText(HttpsProtocol + ProtocolSeparator, S);
  2817. }
  2818. //---------------------------------------------------------------------------
  2819. UnicodeString __fastcall ChangeUrlProtocol(const UnicodeString & S, const UnicodeString & Protocol)
  2820. {
  2821. int P = S.Pos(ProtocolSeparator);
  2822. DebugAssert(P > 0);
  2823. return Protocol + ProtocolSeparator + RightStr(S, S.Length() - P - ProtocolSeparator.Length() + 1);
  2824. }
  2825. //---------------------------------------------------------------------------
  2826. const UnicodeString RtfPara = L"\\par\n";
  2827. const UnicodeString AssemblyNamespace = L"WinSCP";
  2828. const UnicodeString TransferOptionsClassName(L"TransferOptions");
  2829. const UnicodeString SessionClassName(L"Session");
  2830. const UnicodeString RtfHyperlinkField = L"HYPERLINK";
  2831. const UnicodeString RtfHyperlinkFieldPrefix = RtfHyperlinkField + L" \"";
  2832. const UnicodeString RtfHyperlinkFieldSuffix = L"\" ";
  2833. //---------------------------------------------------------------------
  2834. UnicodeString __fastcall RtfColor(int Index)
  2835. {
  2836. return FORMAT(L"\\cf%d", (Index));
  2837. }
  2838. //---------------------------------------------------------------------
  2839. UnicodeString __fastcall RtfText(const UnicodeString & Text, bool Rtf)
  2840. {
  2841. UnicodeString Result = Text;
  2842. if (Rtf)
  2843. {
  2844. int Index = 1;
  2845. while (Index <= Result.Length())
  2846. {
  2847. UnicodeString Replacement;
  2848. wchar_t Ch = Result[Index];
  2849. if ((Ch == L'\\') || (Ch == L'{') || (Ch == L'}'))
  2850. {
  2851. Replacement = FORMAT(L"\\%s", (Ch));
  2852. }
  2853. else if (Ch >= 0x0080)
  2854. {
  2855. Replacement = FORMAT(L"\\u%d?", (int(Ch)));
  2856. }
  2857. if (!Replacement.IsEmpty())
  2858. {
  2859. Result.Delete(Index, 1);
  2860. Result.Insert(Replacement, Index);
  2861. Index += Replacement.Length();
  2862. }
  2863. else
  2864. {
  2865. Index++;
  2866. }
  2867. }
  2868. }
  2869. return Result;
  2870. }
  2871. //---------------------------------------------------------------------
  2872. UnicodeString __fastcall RtfColorText(int Color, const UnicodeString & Text)
  2873. {
  2874. return RtfColor(Color) + L" " + RtfText(Text) + RtfColor(0) + L" ";
  2875. }
  2876. //---------------------------------------------------------------------
  2877. UnicodeString __fastcall RtfColorItalicText(int Color, const UnicodeString & Text)
  2878. {
  2879. return RtfColor(Color) + L"\\i " + RtfText(Text) + L"\\i0" + RtfColor(0) + L" ";
  2880. }
  2881. //---------------------------------------------------------------------
  2882. UnicodeString __fastcall RtfOverrideColorText(const UnicodeString & Text)
  2883. {
  2884. return RtfColorText(1, Text);
  2885. }
  2886. //---------------------------------------------------------------------
  2887. UnicodeString __fastcall RtfKeyword(const UnicodeString & Text)
  2888. {
  2889. return RtfColorText(5, Text);
  2890. }
  2891. //---------------------------------------------------------------------
  2892. UnicodeString __fastcall RtfParameter(const UnicodeString & Text)
  2893. {
  2894. return RtfColorText(6, Text);
  2895. }
  2896. //---------------------------------------------------------------------
  2897. UnicodeString __fastcall RtfString(const UnicodeString & Text)
  2898. {
  2899. return RtfColorText(4, Text);
  2900. }
  2901. //---------------------------------------------------------------------
  2902. UnicodeString __fastcall RtfLink(const UnicodeString & Link, const UnicodeString & RtfText)
  2903. {
  2904. return
  2905. L"{\\field{\\*\\fldinst{" + RtfHyperlinkFieldPrefix + Link + RtfHyperlinkFieldSuffix + L"}}{\\fldrslt{" +
  2906. RtfText + L"}}}";
  2907. }
  2908. //---------------------------------------------------------------------
  2909. UnicodeString __fastcall ScriptCommandLink(const UnicodeString & Command)
  2910. {
  2911. return L"scriptcommand_" + Command;
  2912. }
  2913. //---------------------------------------------------------------------
  2914. UnicodeString __fastcall RtfSwitch(
  2915. const UnicodeString & Switch, const UnicodeString & Link, bool Rtf)
  2916. {
  2917. UnicodeString Result = FORMAT(L"-%s", (Switch));
  2918. if (Rtf)
  2919. {
  2920. Result = RtfLink(Link + L"#" + Switch.LowerCase(), RtfParameter(Result));
  2921. }
  2922. return L" " + Result;
  2923. }
  2924. //---------------------------------------------------------------------
  2925. UnicodeString __fastcall RtfSwitchValue(
  2926. const UnicodeString & Name, const UnicodeString & Link, const UnicodeString & Value, bool Rtf)
  2927. {
  2928. return RtfSwitch(Name, Link, Rtf) + L"=" + Value;
  2929. }
  2930. //---------------------------------------------------------------------
  2931. UnicodeString __fastcall RtfSwitch(
  2932. const UnicodeString & Name, const UnicodeString & Link, const UnicodeString & Value, bool Rtf)
  2933. {
  2934. return RtfSwitchValue(Name, Link, RtfText(FORMAT("\"%s\"", (EscapeParam(Value))), Rtf), Rtf);
  2935. }
  2936. //---------------------------------------------------------------------
  2937. UnicodeString __fastcall RtfSwitch(
  2938. const UnicodeString & Name, const UnicodeString & Link, int Value, bool Rtf)
  2939. {
  2940. return RtfSwitchValue(Name, Link, RtfText(IntToStr(Value), Rtf), Rtf);
  2941. }
  2942. //---------------------------------------------------------------------
  2943. UnicodeString __fastcall RtfRemoveHyperlinks(UnicodeString Text)
  2944. {
  2945. // Remove all tags HYPERLINK "http://www.example.com".
  2946. // See also RtfEscapeParam
  2947. int Index = 1;
  2948. int P;
  2949. while ((P = PosEx(RtfHyperlinkFieldPrefix, Text, Index)) > 0)
  2950. {
  2951. int Index2 = P + RtfHyperlinkFieldPrefix.Length();
  2952. int P2 = PosEx(RtfHyperlinkFieldSuffix, Text, Index2);
  2953. if (P2 > 0)
  2954. {
  2955. Text.Delete(P, P2 - P + RtfHyperlinkFieldSuffix.Length());
  2956. }
  2957. else
  2958. {
  2959. Index = Index2;
  2960. }
  2961. }
  2962. return Text;
  2963. }
  2964. //---------------------------------------------------------------------
  2965. UnicodeString __fastcall RtfEscapeParam(UnicodeString Param)
  2966. {
  2967. const UnicodeString Quote(L"\"");
  2968. // Equivalent of EscapeParam, except that it does not double quotes in HYPERLINK.
  2969. // See also RtfRemoveHyperlinks.
  2970. int Index = 1;
  2971. while (true)
  2972. {
  2973. int P1 = PosEx(Quote, Param, Index);
  2974. if (P1 == 0)
  2975. {
  2976. // no more quotes
  2977. break;
  2978. }
  2979. else
  2980. {
  2981. int P2 = PosEx(RtfHyperlinkFieldPrefix, Param, Index);
  2982. int P3;
  2983. if ((P2 > 0) && (P2 < P1) && ((P3 = PosEx(RtfHyperlinkFieldSuffix, Param, P2)) > 0))
  2984. {
  2985. // skip HYPERLINK
  2986. Index = P3 + RtfHyperlinkFieldSuffix.Length();
  2987. }
  2988. else
  2989. {
  2990. Param.Insert(Quote, P1);
  2991. Index = P1 + (Quote.Length() * 2);
  2992. }
  2993. }
  2994. }
  2995. return Param;
  2996. }
  2997. //---------------------------------------------------------------------
  2998. static UnicodeString __fastcall RtfCodeComment(const UnicodeString & Text)
  2999. {
  3000. return RtfColorItalicText(2, Text);
  3001. }
  3002. //---------------------------------------------------------------------
  3003. UnicodeString __fastcall AssemblyCommentLine(TAssemblyLanguage Language, const UnicodeString & Text)
  3004. {
  3005. UnicodeString Prefix;
  3006. switch (Language)
  3007. {
  3008. case alCSharp:
  3009. Prefix = L"//";
  3010. break;
  3011. case alVBNET:
  3012. Prefix = L"'";
  3013. break;
  3014. case alPowerShell:
  3015. Prefix = L"#";
  3016. break;
  3017. }
  3018. return RtfCodeComment(Prefix + L" " + Text) + RtfPara;
  3019. }
  3020. //---------------------------------------------------------------------
  3021. UnicodeString __fastcall AssemblyString(TAssemblyLanguage Language, UnicodeString S)
  3022. {
  3023. switch (Language)
  3024. {
  3025. case alCSharp:
  3026. if (S.Pos(L"\\") > 0)
  3027. {
  3028. S = FORMAT(L"@\"%s\"", (ReplaceStr(S, L"\"", L"\"\"")));
  3029. }
  3030. else
  3031. {
  3032. S = FORMAT(L"\"%s\"", (ReplaceStr(S, L"\"", L"\\\"")));
  3033. }
  3034. break;
  3035. case alVBNET:
  3036. S = FORMAT(L"\"%s\"", (ReplaceStr(S, L"\"", L"\"\"")));
  3037. break;
  3038. case alPowerShell:
  3039. S = FORMAT(L"\"%s\"", (ReplaceStr(S, L"\"", L"`\"")));
  3040. break;
  3041. default:
  3042. DebugFail();
  3043. break;
  3044. }
  3045. return RtfString(S);
  3046. }
  3047. //---------------------------------------------------------------------
  3048. static UnicodeString __fastcall RtfClass(const UnicodeString & Text)
  3049. {
  3050. return RtfColorText(3, Text);
  3051. }
  3052. //---------------------------------------------------------------------
  3053. UnicodeString __fastcall RtfLibraryClass(const UnicodeString & ClassName)
  3054. {
  3055. return RtfLink(L"library_" + ClassName.LowerCase(), RtfClass(ClassName));
  3056. }
  3057. //---------------------------------------------------------------------
  3058. UnicodeString __fastcall RtfLibraryMethod(const UnicodeString & ClassName, const UnicodeString & MethodName, bool InPage)
  3059. {
  3060. return RtfLink(L"library_" + ClassName.LowerCase() + (InPage ? L"#" : L"_") + MethodName.LowerCase(), RtfOverrideColorText(MethodName));
  3061. }
  3062. //---------------------------------------------------------------------
  3063. static UnicodeString __fastcall RtfLibraryProperty(const UnicodeString & ClassName, const UnicodeString & PropertyName)
  3064. {
  3065. return RtfLink(L"library_" + ClassName.LowerCase() + L"#" + PropertyName.LowerCase(), RtfOverrideColorText(PropertyName));
  3066. }
  3067. //---------------------------------------------------------------------
  3068. UnicodeString __fastcall AssemblyVariableName(TAssemblyLanguage Language, const UnicodeString & ClassName)
  3069. {
  3070. UnicodeString Result = ClassName.SubString(1, 1).LowerCase() + ClassName.SubString(2, ClassName.Length() - 1);
  3071. if (Language == alPowerShell)
  3072. {
  3073. Result = L"$" + Result;
  3074. }
  3075. return Result;
  3076. }
  3077. //---------------------------------------------------------------------
  3078. UnicodeString __fastcall AssemblyStatementSeparator(TAssemblyLanguage Language)
  3079. {
  3080. UnicodeString Result;
  3081. switch (Language)
  3082. {
  3083. case alCSharp:
  3084. Result = L";";
  3085. break;
  3086. case alVBNET:
  3087. case alPowerShell:
  3088. // noop
  3089. break;
  3090. }
  3091. return Result;
  3092. }
  3093. //---------------------------------------------------------------------
  3094. UnicodeString __fastcall AssemblyPropertyRaw(
  3095. TAssemblyLanguage Language, const UnicodeString & ClassName, const UnicodeString & Name,
  3096. const UnicodeString & Value, bool Inline)
  3097. {
  3098. UnicodeString Result;
  3099. UnicodeString RtfPropertyAndValue = RtfLibraryProperty(ClassName, Name) + L" = " + Value;
  3100. UnicodeString Indetation = (Inline ? L"" : L" ");
  3101. UnicodeString SpaceOrPara = (Inline ? UnicodeString(L" ") : RtfPara);
  3102. switch (Language)
  3103. {
  3104. case alCSharp:
  3105. Result = Indetation + RtfPropertyAndValue + (Inline ? L"" : L",") + SpaceOrPara;
  3106. break;
  3107. case alVBNET:
  3108. Result = Indetation + L"." + RtfPropertyAndValue + SpaceOrPara;
  3109. break;
  3110. case alPowerShell:
  3111. Result = Indetation + RtfPropertyAndValue + SpaceOrPara;
  3112. break;
  3113. }
  3114. return Result;
  3115. }
  3116. //---------------------------------------------------------------------
  3117. UnicodeString __fastcall AssemblyProperty(
  3118. TAssemblyLanguage Language, const UnicodeString & ClassName, const UnicodeString & Name,
  3119. const UnicodeString & Type, const UnicodeString & Member, bool Inline)
  3120. {
  3121. UnicodeString PropertyValue;
  3122. switch (Language)
  3123. {
  3124. case alCSharp:
  3125. case alVBNET:
  3126. PropertyValue = RtfClass(Type) + RtfText(L"." + Member);
  3127. break;
  3128. case alPowerShell:
  3129. PropertyValue = RtfText(L"[" + AssemblyNamespace + L".") + RtfClass(Type) + RtfText(L"]::" + Member);
  3130. break;
  3131. }
  3132. return AssemblyPropertyRaw(Language, ClassName, Name, PropertyValue, Inline);
  3133. }
  3134. //---------------------------------------------------------------------
  3135. UnicodeString __fastcall AssemblyProperty(
  3136. TAssemblyLanguage Language, const UnicodeString & ClassName,
  3137. const UnicodeString & Name, const UnicodeString & Value, bool Inline)
  3138. {
  3139. return AssemblyPropertyRaw(Language, ClassName, Name, AssemblyString(Language, Value), Inline);
  3140. }
  3141. //---------------------------------------------------------------------
  3142. UnicodeString __fastcall AssemblyProperty(
  3143. TAssemblyLanguage Language, const UnicodeString & ClassName,
  3144. const UnicodeString & Name, int Value, bool Inline)
  3145. {
  3146. return AssemblyPropertyRaw(Language, ClassName, Name, IntToStr(Value), Inline);
  3147. }
  3148. //---------------------------------------------------------------------
  3149. UnicodeString __fastcall AssemblyBoolean(TAssemblyLanguage Language, bool Value)
  3150. {
  3151. UnicodeString Result;
  3152. switch (Language)
  3153. {
  3154. case alCSharp:
  3155. Result = (Value ? L"true" : L"false");
  3156. break;
  3157. case alVBNET:
  3158. Result = (Value ? L"True" : L"False");
  3159. break;
  3160. case alPowerShell:
  3161. Result = (Value ? L"$True" : L"$False");
  3162. break;
  3163. }
  3164. return Result;
  3165. }
  3166. //---------------------------------------------------------------------
  3167. UnicodeString __fastcall AssemblyProperty(
  3168. TAssemblyLanguage Language, const UnicodeString & ClassName, const UnicodeString & Name, bool Value, bool Inline)
  3169. {
  3170. UnicodeString PropertyValue = AssemblyBoolean(Language, Value);
  3171. return AssemblyPropertyRaw(Language, ClassName, Name, PropertyValue, Inline);
  3172. }
  3173. //---------------------------------------------------------------------
  3174. UnicodeString __fastcall AssemblyNewClassInstance(TAssemblyLanguage Language, const UnicodeString & ClassName, bool Inline)
  3175. {
  3176. UnicodeString VariableName = AssemblyVariableName(Language, ClassName);
  3177. UnicodeString RtfClass = RtfLibraryClass(ClassName);
  3178. UnicodeString Result;
  3179. switch (Language)
  3180. {
  3181. case alCSharp:
  3182. if (!Inline)
  3183. {
  3184. Result += RtfClass + RtfText(L" " + VariableName + L" = ");
  3185. }
  3186. Result += RtfKeyword(L"new") + RtfText(L" ") + RtfClass;
  3187. break;
  3188. case alVBNET:
  3189. if (!Inline)
  3190. {
  3191. Result += RtfText(VariableName + L" ") + RtfKeyword(L"As") + RtfText(L" ");
  3192. }
  3193. Result += RtfKeyword(L"New") + RtfText(" ") + RtfClass;
  3194. break;
  3195. case alPowerShell:
  3196. if (!Inline)
  3197. {
  3198. Result += RtfText(VariableName + L" = ");
  3199. }
  3200. Result += RtfKeyword(L"New-Object") + RtfText(L" " + AssemblyNamespace + L".") + RtfClass;
  3201. break;
  3202. }
  3203. return Result;
  3204. }
  3205. //---------------------------------------------------------------------
  3206. UnicodeString __fastcall AssemblyNewClassInstanceStart(
  3207. TAssemblyLanguage Language, const UnicodeString & ClassName, bool Inline)
  3208. {
  3209. UnicodeString NewClassInstance = AssemblyNewClassInstance(Language, ClassName, Inline);
  3210. UnicodeString SpaceOrPara = (Inline ? UnicodeString(L" ") : RtfPara);
  3211. UnicodeString Result;
  3212. switch (Language)
  3213. {
  3214. case alCSharp:
  3215. Result =
  3216. NewClassInstance + SpaceOrPara +
  3217. RtfText(L"{") + SpaceOrPara;
  3218. break;
  3219. case alVBNET:
  3220. // Historically we use Dim .. With instead of object initilizer.
  3221. // But for inline use, we have to use object initialize.
  3222. // We should consistently always use object initilizers.
  3223. if (!Inline)
  3224. {
  3225. Result += RtfKeyword(L"Dim") + RtfText(L" ");
  3226. }
  3227. Result += NewClassInstance + SpaceOrPara + RtfKeyword(L"With");
  3228. if (Inline)
  3229. {
  3230. Result += RtfText(L" { ");
  3231. }
  3232. else
  3233. {
  3234. Result += RtfText(L" " + AssemblyVariableName(Language, ClassName)) + RtfPara;
  3235. }
  3236. break;
  3237. case alPowerShell:
  3238. Result = NewClassInstance + RtfText(" -Property @{") + SpaceOrPara;
  3239. break;
  3240. }
  3241. return Result;
  3242. }
  3243. //---------------------------------------------------------------------
  3244. UnicodeString __fastcall AssemblyNewClassInstanceEnd(TAssemblyLanguage Language, bool Inline)
  3245. {
  3246. UnicodeString InlineEnd = RtfText(L"}");
  3247. UnicodeString Result;
  3248. switch (Language)
  3249. {
  3250. case alCSharp:
  3251. if (Inline)
  3252. {
  3253. Result = InlineEnd;
  3254. }
  3255. else
  3256. {
  3257. Result = RtfText(L"};") + RtfPara;
  3258. }
  3259. break;
  3260. case alVBNET:
  3261. if (Inline)
  3262. {
  3263. Result = InlineEnd;
  3264. }
  3265. else
  3266. {
  3267. Result = RtfKeyword(L"End With") + RtfPara;
  3268. }
  3269. break;
  3270. case alPowerShell:
  3271. if (Inline)
  3272. {
  3273. Result = InlineEnd;
  3274. }
  3275. else
  3276. {
  3277. Result = RtfText(L"}") + RtfPara;
  3278. }
  3279. break;
  3280. }
  3281. return Result;
  3282. }
  3283. //---------------------------------------------------------------------------
  3284. void __fastcall LoadScriptFromFile(UnicodeString FileName, TStrings * Lines)
  3285. {
  3286. Lines->LoadFromFile(ApiPath(FileName), TEncoding::UTF8);
  3287. }
  3288. //---------------------------------------------------------------------------
  3289. UnicodeString __fastcall StripEllipsis(const UnicodeString & S)
  3290. {
  3291. UnicodeString Result = S;
  3292. if (Result.SubString(Result.Length() - Ellipsis.Length() + 1, Ellipsis.Length()) == Ellipsis)
  3293. {
  3294. Result.SetLength(Result.Length() - Ellipsis.Length());
  3295. Result = Result.TrimRight();
  3296. }
  3297. return Result;
  3298. }