| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158 |
- //---------------------------------------------------------------------------
- #include <vcl.h>
- #pragma hdrstop
- #include "Common.h"
- #include "Exceptions.h"
- #include "TextsCore.h"
- #include "Interface.h"
- #include <StrUtils.hpp>
- #include <math.h>
- #include <shellapi.h>
- //---------------------------------------------------------------------------
- #pragma package(smart_init)
- //---------------------------------------------------------------------------
- //---------------------------------------------------------------------------
- // TCriticalSection
- //---------------------------------------------------------------------------
- __fastcall TCriticalSection::TCriticalSection()
- {
- FAcquired = 0;
- InitializeCriticalSection(&FSection);
- }
- //---------------------------------------------------------------------------
- __fastcall TCriticalSection::~TCriticalSection()
- {
- assert(FAcquired == 0);
- DeleteCriticalSection(&FSection);
- }
- //---------------------------------------------------------------------------
- void __fastcall TCriticalSection::Enter()
- {
- EnterCriticalSection(&FSection);
- FAcquired++;
- }
- //---------------------------------------------------------------------------
- void __fastcall TCriticalSection::Leave()
- {
- FAcquired--;
- LeaveCriticalSection(&FSection);
- }
- //---------------------------------------------------------------------------
- // TGuard
- //---------------------------------------------------------------------------
- __fastcall TGuard::TGuard(TCriticalSection * ACriticalSection) :
- FCriticalSection(ACriticalSection)
- {
- assert(ACriticalSection != NULL);
- FCriticalSection->Enter();
- }
- //---------------------------------------------------------------------------
- __fastcall TGuard::~TGuard()
- {
- FCriticalSection->Leave();
- }
- //---------------------------------------------------------------------------
- // TUnguard
- //---------------------------------------------------------------------------
- __fastcall TUnguard::TUnguard(TCriticalSection * ACriticalSection) :
- FCriticalSection(ACriticalSection)
- {
- assert(ACriticalSection != NULL);
- FCriticalSection->Leave();
- }
- //---------------------------------------------------------------------------
- __fastcall TUnguard::~TUnguard()
- {
- FCriticalSection->Enter();
- }
- //---------------------------------------------------------------------------
- //---------------------------------------------------------------------------
- const char EngShortMonthNames[12][4] =
- {"Jan", "Feb", "Mar", "Apr", "May", "Jun",
- "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"};
- //---------------------------------------------------------------------------
- AnsiString ReplaceChar(AnsiString Str, Char A, Char B)
- {
- for (Integer Index = 0; Index < Str.Length(); Index++)
- if (Str[Index+1] == A) Str[Index+1] = B;
- return Str;
- }
- //---------------------------------------------------------------------------
- AnsiString DeleteChar(AnsiString Str, Char C)
- {
- int P;
- while ((P = Str.Pos(C)) > 0)
- {
- Str.Delete(P, 1);
- }
- return Str;
- }
- //---------------------------------------------------------------------------
- void PackStr(AnsiString &Str)
- {
- // Following will free unnecessary bytes
- Str = Str.c_str();
- }
- //---------------------------------------------------------------------------
- AnsiString MakeValidFileName(AnsiString FileName)
- {
- AnsiString IllegalChars = ";,=+<>|\"[] \\/?*";
- for (int Index = 0; Index < IllegalChars.Length(); Index++)
- {
- FileName = ReplaceChar(FileName, IllegalChars[Index+1], '-');
- }
- return FileName;
- }
- //---------------------------------------------------------------------------
- AnsiString RootKeyToStr(HKEY RootKey)
- {
- if (RootKey == HKEY_USERS) return "HKEY_USERS";
- else
- if (RootKey == HKEY_LOCAL_MACHINE) return "HKEY_LOCAL_MACHINE";
- else
- if (RootKey == HKEY_CURRENT_USER) return "HKEY_CURRENT_USER";
- else
- if (RootKey == HKEY_CLASSES_ROOT) return "HKEY_CLASSES_ROOT";
- else
- if (RootKey == HKEY_CURRENT_CONFIG) return "HKEY_CURRENT_CONFIG";
- else
- if (RootKey == HKEY_DYN_DATA) return "HKEY_DYN_DATA";
- else
- { Abort(); return ""; };
- }
- //---------------------------------------------------------------------------
- AnsiString BooleanToEngStr(bool B)
- {
- return B ? "Yes" : "No";
- }
- //---------------------------------------------------------------------------
- AnsiString BooleanToStr(bool B)
- {
- return B ? LoadStr(YES_STR) : LoadStr(NO_STR);
- }
- //---------------------------------------------------------------------------
- AnsiString DefaultStr(const AnsiString & Str, const AnsiString & Default)
- {
- if (!Str.IsEmpty())
- {
- return Str;
- }
- else
- {
- return Default;
- }
- }
- //---------------------------------------------------------------------------
- AnsiString CutToChar(AnsiString &Str, Char Ch, bool Trim)
- {
- Integer P = Str.Pos(Ch);
- AnsiString Result;
- if (P)
- {
- Result = Str.SubString(1, P-1);
- Str.Delete(1, P);
- }
- else
- {
- Result = Str;
- Str = "";
- }
- if (Trim)
- {
- Result = Result.TrimRight();
- Str = Str.TrimLeft();
- }
- return Result;
- }
- //---------------------------------------------------------------------------
- AnsiString CutToChars(AnsiString & Str, AnsiString Chs, bool Trim,
- char * Delimiter)
- {
- int P;
- for (P = 1; P <= Str.Length(); P++)
- {
- if (IsDelimiter(Chs, Str, P))
- {
- break;
- }
- }
- AnsiString Result;
- if (P <= Str.Length())
- {
- if (Delimiter != NULL)
- {
- *Delimiter = Str[P];
- }
- Result = Str.SubString(1, P-1);
- Str.Delete(1, P);
- }
- else
- {
- if (Delimiter != NULL)
- {
- *Delimiter = '\0';
- }
- Result = Str;
- Str = "";
- }
- if (Trim)
- {
- Result = Result.TrimRight();
- Str = Str.TrimLeft();
- }
- return Result;
- }
- //---------------------------------------------------------------------------
- AnsiString DelimitStr(AnsiString Str, AnsiString Chars)
- {
- for (int i = 1; i <= Str.Length(); i++)
- {
- if (Str.IsDelimiter(Chars, i))
- {
- Str.Insert("\\", i);
- i++;
- }
- }
- return Str;
- }
- //---------------------------------------------------------------------------
- AnsiString ShellDelimitStr(AnsiString Str, char Quote)
- {
- AnsiString Chars = "$\\";
- if (Quote == '"')
- {
- Chars += "`\"";
- }
- return DelimitStr(Str, Chars);
- }
- //---------------------------------------------------------------------------
- AnsiString ExceptionLogString(Exception *E)
- {
- assert(E);
- if (E->InheritsFrom(__classid(Exception)))
- {
- AnsiString Msg;
- Msg = FORMAT("(%s) %s", (E->ClassName(), E->Message));
- if (E->InheritsFrom(__classid(ExtException)))
- {
- TStrings * MoreMessages = ((ExtException*)E)->MoreMessages;
- if (MoreMessages)
- {
- Msg += "\n" +
- StringReplace(MoreMessages->Text, "\r", "", TReplaceFlags() << rfReplaceAll);
- }
- }
- return Msg;
- }
- else
- {
- char Buffer[1024];
- ExceptionErrorMessage(ExceptObject(), ExceptAddr(), Buffer, sizeof(Buffer));
- return AnsiString(Buffer);
- }
- }
- //---------------------------------------------------------------------------
- bool IsDots(const AnsiString Str)
- {
- char * str = Str.c_str();
- return (str[strspn(str, ".")] == '\0');
- }
- //---------------------------------------------------------------------------
- AnsiString __fastcall SystemTemporaryDirectory()
- {
- AnsiString TempDir;
- TempDir.SetLength(MAX_PATH);
- TempDir.SetLength(GetTempPath(MAX_PATH, TempDir.c_str()));
- return TempDir;
- }
- //---------------------------------------------------------------------------
- AnsiString __fastcall StripPathQuotes(const AnsiString Path)
- {
- if ((Path.Length() >= 2) &&
- (Path[1] == '\"') && (Path[Path.Length()] == '\"'))
- {
- return Path.SubString(2, Path.Length() - 2);
- }
- else
- {
- return Path;
- }
- }
- //---------------------------------------------------------------------------
- AnsiString __fastcall AddPathQuotes(AnsiString Path)
- {
- Path = StripPathQuotes(Path);
- if (Path.Pos(" "))
- {
- Path = "\"" + Path + "\"";
- }
- return Path;
- }
- //---------------------------------------------------------------------------
- void __fastcall SplitCommand(AnsiString Command, AnsiString &Program,
- AnsiString & Params, AnsiString & Dir)
- {
- Command = Command.Trim();
- Params = "";
- Dir = "";
- if (!Command.IsEmpty() && (Command[1] == '\"'))
- {
- Command.Delete(1, 1);
- int P = Command.Pos('"');
- if (P)
- {
- Program = Command.SubString(1, P-1).Trim();
- Params = Command.SubString(P + 1, Command.Length() - P).Trim();
- }
- else
- {
- throw Exception(FMTLOAD(INVALID_SHELL_COMMAND, ("\"" + Command)));
- }
- }
- else
- {
- int P = Command.Pos(" ");
- if (P)
- {
- Program = Command.SubString(1, P).Trim();
- Params = Command.SubString(P + 1, Command.Length() - P).Trim();
- }
- else
- {
- Program = Command;
- }
- }
- int B = Program.LastDelimiter("\\/");
- if (B)
- {
- Dir = Program.SubString(1, B).Trim();
- }
- }
- //---------------------------------------------------------------------------
- AnsiString __fastcall ExtractProgram(AnsiString Command)
- {
- AnsiString Program;
- AnsiString Params;
- AnsiString Dir;
- SplitCommand(Command, Program, Params, Dir);
- return Program;
- }
- //---------------------------------------------------------------------------
- AnsiString __fastcall FormatCommand(AnsiString Program, AnsiString Params)
- {
- Program = Program.Trim();
- Params = Params.Trim();
- if (!Params.IsEmpty()) Params = " " + Params;
- if (Program.Pos(" ")) Program = "\"" + Program + "\"";
- return Program + Params;
- }
- //---------------------------------------------------------------------------
- const char ShellCommandFileNamePattern[] = "!.!";
- //---------------------------------------------------------------------------
- void __fastcall ReformatFileNameCommand(AnsiString & Command)
- {
- AnsiString Program, Params, Dir;
- SplitCommand(Command, Program, Params, Dir);
- if (Params.Pos(ShellCommandFileNamePattern) == 0)
- {
- Params = Params + (Params.IsEmpty() ? "" : " ") + ShellCommandFileNamePattern;
- }
- Command = FormatCommand(Program, Params);
- }
- //---------------------------------------------------------------------------
- AnsiString __fastcall ExpandFileNameCommand(const AnsiString Command,
- const AnsiString FileName)
- {
- return AnsiReplaceStr(Command, ShellCommandFileNamePattern,
- AddPathQuotes(FileName));
- }
- //---------------------------------------------------------------------------
- AnsiString __fastcall ExpandEnvironmentVariables(const AnsiString & Str)
- {
- AnsiString Buf;
- unsigned int Size = 1024;
- Buf.SetLength(Size);
- Buf.Unique();
- unsigned int Len = ExpandEnvironmentStrings(Str.c_str(), Buf.c_str(), Size);
- if (Len > Size)
- {
- Buf.SetLength(Len);
- Buf.Unique();
- ExpandEnvironmentStrings(Str.c_str(), Buf.c_str(), Len);
- }
- PackStr(Buf);
- return Buf;
- }
- //---------------------------------------------------------------------------
- bool __fastcall CompareFileName(const AnsiString & Path1, const AnsiString & Path2)
- {
- AnsiString ShortPath1 = ExtractShortPathName(Path1);
- AnsiString ShortPath2 = ExtractShortPathName(Path2);
- bool Result;
- // ExtractShortPathName returns empty string if file does not exist
- if (ShortPath1.IsEmpty() || ShortPath2.IsEmpty())
- {
- Result = AnsiSameText(Path1, Path2);
- }
- else
- {
- Result = AnsiSameText(ExtractShortPathName(Path1), ExtractShortPathName(Path2));
- }
- return Result;
- }
- //---------------------------------------------------------------------------
- bool __fastcall ComparePaths(const AnsiString & Path1, const AnsiString & Path2)
- {
- // TODO: ExpandUNCFileName
- return AnsiSameText(IncludeTrailingBackslash(Path1), IncludeTrailingBackslash(Path2));
- }
- //---------------------------------------------------------------------------
- bool __fastcall IsDisplayableStr(const AnsiString Str)
- {
- bool Displayable = true;
- int Index = 1;
- while ((Index <= Str.Length()) && Displayable)
- {
- if (Str[Index] < '\32')
- {
- Displayable = false;
- }
- Index++;
- }
- return Displayable;
- }
- //---------------------------------------------------------------------------
- AnsiString __fastcall CharToHex(char Ch)
- {
- return IntToHex((unsigned char)Ch, 2);
- }
- //---------------------------------------------------------------------------
- AnsiString __fastcall StrToHex(const AnsiString Str)
- {
- AnsiString Result;
- for (int i = 1; i <= Str.Length(); i++)
- {
- Result += CharToHex(Str[i]);
- }
- return Result;
- }
- //---------------------------------------------------------------------------
- AnsiString __fastcall HexToStr(const AnsiString Hex)
- {
- static AnsiString Digits = "0123456789ABCDEF";
- AnsiString Result;
- int L, P1, P2;
- L = Hex.Length();
- if (L % 2 == 0)
- {
- for (int i = 1; i <= Hex.Length(); i += 2)
- {
- P1 = Digits.Pos(Hex[i]);
- P2 = Digits.Pos(Hex[i + 1]);
- if (P1 <= 0 || P2 <= 0)
- {
- Result = "";
- break;
- }
- else
- {
- Result += static_cast<char>((P1 - 1) * 16 + P2 - 1);
- }
- }
- }
- return Result;
- }
- //---------------------------------------------------------------------------
- unsigned int __fastcall HexToInt(const AnsiString Hex, int MinChars)
- {
- static AnsiString Digits = "0123456789ABCDEF";
- int Result = 0;
- int I = 1;
- while (I <= Hex.Length())
- {
- int A = Digits.Pos(Hex[I]);
- if (A <= 0)
- {
- if ((MinChars < 0) || (I <= MinChars))
- {
- Result = 0;
- }
- break;
- }
- Result = (Result * 16) + (A - 1);
- I++;
- }
- return Result;
- }
- //---------------------------------------------------------------------------
- bool __fastcall FileSearchRec(const AnsiString FileName, TSearchRec & Rec)
- {
- int FindAttrs = faReadOnly | faHidden | faSysFile | faDirectory | faArchive;
- bool Result = (FindFirst(FileName, FindAttrs, Rec) == 0);
- if (Result)
- {
- FindClose(Rec);
- }
- return Result;
- }
- //---------------------------------------------------------------------------
- void __fastcall ProcessLocalDirectory(AnsiString DirName,
- TProcessLocalFileEvent CallBackFunc, void * Param,
- int FindAttrs)
- {
- assert(CallBackFunc);
- if (FindAttrs < 0)
- {
- FindAttrs = faReadOnly | faHidden | faSysFile | faDirectory | faArchive;
- }
- TSearchRec SearchRec;
- DirName = IncludeTrailingBackslash(DirName);
- if (FindFirst(DirName + "*.*", FindAttrs, SearchRec) == 0)
- {
- try
- {
- do
- {
- if ((SearchRec.Name != ".") && (SearchRec.Name != ".."))
- {
- CallBackFunc(DirName + SearchRec.Name, SearchRec, Param);
- }
- } while (FindNext(SearchRec) == 0);
- }
- __finally
- {
- FindClose(SearchRec);
- }
- }
- }
- //---------------------------------------------------------------------------
- struct TDateTimeParams
- {
- TDateTime UnixEpoch;
- double BaseDifference;
- long BaseDifferenceSec;
- double CurrentDaylightDifference;
- long CurrentDaylightDifferenceSec;
- double CurrentDifference;
- long CurrentDifferenceSec;
- double StandardDifference;
- long StandardDifferenceSec;
- double DaylightDifference;
- long DaylightDifferenceSec;
- SYSTEMTIME StandardDate;
- SYSTEMTIME DaylightDate;
- };
- static bool DateTimeParamsInitialized = false;
- static TDateTimeParams DateTimeParams;
- static TCriticalSection DateTimeParamsSection;
- //---------------------------------------------------------------------------
- static TDateTimeParams * __fastcall GetDateTimeParams()
- {
- if (!DateTimeParamsInitialized)
- {
- TGuard Guard(&DateTimeParamsSection);
- if (!DateTimeParamsInitialized)
- {
- TIME_ZONE_INFORMATION TZI;
- unsigned long GTZI;
- GTZI = GetTimeZoneInformation(&TZI);
- switch (GTZI)
- {
- case TIME_ZONE_ID_UNKNOWN:
- DateTimeParams.CurrentDifferenceSec = 0;
- DateTimeParams.CurrentDaylightDifferenceSec = 0;
- break;
- case TIME_ZONE_ID_STANDARD:
- DateTimeParams.CurrentDaylightDifferenceSec = TZI.StandardBias;
- break;
- case TIME_ZONE_ID_DAYLIGHT:
- DateTimeParams.CurrentDaylightDifferenceSec = TZI.DaylightBias;
- break;
- case TIME_ZONE_ID_INVALID:
- default:
- throw Exception(TIMEZONE_ERROR);
- }
- // Is it same as SysUtils::UnixDateDelta = 25569 ??
- DateTimeParams.UnixEpoch = EncodeDate(1970, 1, 1);
- DateTimeParams.BaseDifferenceSec = TZI.Bias;
- DateTimeParams.BaseDifference = double(TZI.Bias) / 1440;
- DateTimeParams.BaseDifferenceSec *= 60;
- DateTimeParams.CurrentDifferenceSec = TZI.Bias +
- DateTimeParams.CurrentDaylightDifferenceSec;
- DateTimeParams.CurrentDifference =
- double(DateTimeParams.CurrentDifferenceSec) / 1440;
- DateTimeParams.CurrentDifferenceSec *= 60;
- DateTimeParams.CurrentDaylightDifference =
- double(DateTimeParams.CurrentDaylightDifferenceSec) / 1440;
- DateTimeParams.CurrentDaylightDifferenceSec *= 60;
- DateTimeParams.DaylightDifferenceSec = TZI.DaylightBias * 60;
- DateTimeParams.DaylightDifference = double(TZI.DaylightBias) / 1440;
- DateTimeParams.StandardDifferenceSec = TZI.StandardBias * 60;
- DateTimeParams.StandardDifference = double(TZI.StandardBias) / 1440;
- DateTimeParams.StandardDate = TZI.StandardDate;
- DateTimeParams.DaylightDate = TZI.DaylightDate;
- DateTimeParamsInitialized = true;
- }
- }
- return &DateTimeParams;
- }
- //---------------------------------------------------------------------------
- static void __fastcall EncodeDSTMargin(const SYSTEMTIME & Date, unsigned short Year,
- TDateTime & Result)
- {
- if (Date.wYear == 0)
- {
- TDateTime Temp = EncodeDate(Year, Date.wMonth, 1);
- Result = Temp + ((Date.wDayOfWeek - DayOfWeek(Temp) + 8) % 7) +
- (7 * (Date.wDay - 1));
- if (Date.wDay == 5)
- {
- unsigned short Month = static_cast<unsigned short>(Date.wMonth + 1);
- if (Month > 12)
- {
- Month = static_cast<unsigned short>(Month - 12);
- Year++;
- }
- if (Result > EncodeDate(Year, Month, 1))
- {
- Result -= 7;
- }
- }
- Result += EncodeTime(Date.wHour, Date.wMinute, Date.wSecond,
- Date.wMilliseconds);
- }
- else
- {
- Result = EncodeDate(Year, Date.wMonth, Date.wDay) +
- EncodeTime(Date.wHour, Date.wMinute, Date.wSecond, Date.wMilliseconds);
- }
- }
- //---------------------------------------------------------------------------
- static bool __fastcall IsDateInDST(const TDateTime & DateTime)
- {
- struct TDSTCache
- {
- bool Filled;
- unsigned short Year;
- TDateTime StandardDate;
- TDateTime DaylightDate;
- };
- static TDSTCache DSTCache[10];
- static int DSTCacheCount = 0;
- static TCriticalSection Section;
- TDateTimeParams * Params = GetDateTimeParams();
- bool Result;
- if (Params->StandardDate.wMonth == 0)
- {
- Result = false;
- }
- else
- {
- unsigned short Year, Month, Day;
- DecodeDate(DateTime, Year, Month, Day);
- TDSTCache * CurrentCache = &DSTCache[0];
- int CacheIndex = 0;
- while ((CacheIndex < DSTCacheCount) && (CacheIndex < LENOF(DSTCache)) &&
- CurrentCache->Filled && (CurrentCache->Year != Year))
- {
- CacheIndex++;
- CurrentCache++;
- }
- if ((CacheIndex < DSTCacheCount) && (CacheIndex < LENOF(DSTCache)) &&
- CurrentCache->Filled)
- {
- assert(CurrentCache->Year == Year);
- Result = (DateTime >= CurrentCache->DaylightDate) &&
- (DateTime < CurrentCache->StandardDate);
- }
- else
- {
- TDSTCache NewCache;
- EncodeDSTMargin(Params->StandardDate, Year, NewCache.StandardDate);
- EncodeDSTMargin(Params->DaylightDate, Year, NewCache.DaylightDate);
- if (DSTCacheCount < LENOF(DSTCache))
- {
- TGuard Guard(&Section);
- if (DSTCacheCount < LENOF(DSTCache))
- {
- NewCache.Year = Year;
- DSTCache[DSTCacheCount] = NewCache;
- DSTCache[DSTCacheCount].Filled = true;
- DSTCacheCount++;
- }
- }
- Result = (DateTime >= NewCache.DaylightDate) &&
- (DateTime < NewCache.StandardDate);
- }
- }
- return Result;
- }
- //---------------------------------------------------------------------------
- TDateTime __fastcall UnixToDateTime(__int64 TimeStamp, TDSTMode DSTMode)
- {
- TDateTimeParams * Params = GetDateTimeParams();
- TDateTime Result;
- Result = Params->UnixEpoch + (double(TimeStamp) / 86400);
- if ((DSTMode == dstmWin) || (DSTMode == dstmUnix))
- {
- Result -= Params->CurrentDifference;
- }
- else if (DSTMode == dstmKeep)
- {
- Result -= Params->BaseDifference;
- }
- if ((DSTMode == dstmUnix) || (DSTMode == dstmKeep))
- {
- Result -= (IsDateInDST(Result) ?
- Params->DaylightDifference : Params->StandardDifference);
- }
- return Result;
- }
- //---------------------------------------------------------------------------
- inline __int64 __fastcall Round(double Number)
- {
- double Floor = floor(Number);
- double Ceil = ceil(Number);
- return ((Number - Floor) > (Ceil - Number)) ? Ceil : Floor;
- }
- //---------------------------------------------------------------------------
- #define TIME_POSIX_TO_WIN(t, ft) (*(LONGLONG*)&(ft) = \
- ((LONGLONG) (t) + (LONGLONG) 11644473600) * (LONGLONG) 10000000)
- #define TIME_WIN_TO_POSIX(ft, t) ((t) = (__int64) \
- ((*(LONGLONG*)&(ft)) / (LONGLONG) 10000000 - (LONGLONG) 11644473600))
- //---------------------------------------------------------------------------
- static __int64 __fastcall DateTimeToUnix(const TDateTime DateTime)
- {
- TDateTimeParams * Params = GetDateTimeParams();
- return Round(double(DateTime - Params->UnixEpoch) * 86400) +
- Params->CurrentDifferenceSec;
- }
- //---------------------------------------------------------------------------
- FILETIME __fastcall DateTimeToFileTime(const TDateTime DateTime,
- TDSTMode /*DSTMode*/)
- {
- FILETIME Result;
- __int64 UnixTimeStamp = DateTimeToUnix(DateTime);
- TIME_POSIX_TO_WIN(UnixTimeStamp, Result);
- return Result;
- }
- //---------------------------------------------------------------------------
- __int64 __fastcall ConvertTimestampToUnix(const FILETIME & FileTime,
- TDSTMode DSTMode)
- {
- __int64 Result;
- TIME_WIN_TO_POSIX(FileTime, Result);
- if ((DSTMode == dstmUnix) || (DSTMode == dstmKeep))
- {
- FILETIME LocalFileTime;
- SYSTEMTIME SystemTime;
- TDateTime DateTime;
- FileTimeToLocalFileTime(&FileTime, &LocalFileTime);
- FileTimeToSystemTime(&LocalFileTime, &SystemTime);
- DateTime = SystemTimeToDateTime(SystemTime);
- TDateTimeParams * Params = GetDateTimeParams();
- Result += (IsDateInDST(DateTime) ?
- Params->DaylightDifferenceSec : Params->StandardDifferenceSec);
- if (DSTMode == dstmKeep)
- {
- Result -= Params->CurrentDaylightDifferenceSec;
- }
- }
- return Result;
- }
- //---------------------------------------------------------------------------
- __int64 __fastcall ConvertTimestampToUnixSafe(const FILETIME & FileTime,
- TDSTMode DSTMode)
- {
- __int64 Result;
- if ((FileTime.dwLowDateTime == 0) &&
- (FileTime.dwHighDateTime == 0))
- {
- Result = DateTimeToUnix(Now());
- }
- else
- {
- Result = ConvertTimestampToUnix(FileTime, DSTMode);
- }
- return Result;
- }
- //---------------------------------------------------------------------------
- TDateTime __fastcall AdjustDateTimeFromUnix(TDateTime DateTime, TDSTMode DSTMode)
- {
- TDateTimeParams * Params = GetDateTimeParams();
- if ((DSTMode == dstmWin) || (DSTMode == dstmUnix))
- {
- DateTime = DateTime - Params->CurrentDaylightDifference;
- }
- if (!IsDateInDST(DateTime))
- {
- if (DSTMode == dstmWin)
- {
- DateTime = DateTime - Params->DaylightDifference;
- }
- }
- else
- {
- DateTime = DateTime - Params->StandardDifference;
- }
- return DateTime;
- }
- //---------------------------------------------------------------------------
- __inline static bool __fastcall UnifySignificance(unsigned short & V1,
- unsigned short & V2)
- {
- bool Result = (V1 == 0) || (V2 == 0);
- if (Result)
- {
- V1 = 0;
- V2 = 0;
- }
- return Result;
- }
- //---------------------------------------------------------------------------
- void __fastcall UnifyDateTimePrecision(TDateTime & DateTime1, TDateTime & DateTime2)
- {
- unsigned short Y1, M1, D1, H1, N1, S1, MS1;
- unsigned short Y2, M2, D2, H2, N2, S2, MS2;
- bool Changed;
- if (DateTime1 != DateTime2)
- {
- DateTime1.DecodeDate(&Y1, &M1, &D1);
- DateTime1.DecodeTime(&H1, &N1, &S1, &MS1);
- DateTime2.DecodeDate(&Y2, &M2, &D2);
- DateTime2.DecodeTime(&H2, &N2, &S2, &MS2);
- Changed = UnifySignificance(MS1, MS2);
- if (Changed && UnifySignificance(S1, S2) && UnifySignificance(N1, N2) &&
- UnifySignificance(H1, H2) && UnifySignificance(D1, D2) &&
- UnifySignificance(M1, M2))
- {
- UnifySignificance(Y1, Y2);
- }
- if (Changed)
- {
- DateTime1 = EncodeDate(Y1, M1, D1) + EncodeTime(H1, N1, S1, MS1);
- DateTime2 = EncodeDate(Y2, M2, D2) + EncodeTime(H2, N2, S2, MS2);
- }
- }
- }
- //---------------------------------------------------------------------------
- AnsiString __fastcall FixedLenDateTimeFormat(const AnsiString & Format)
- {
- AnsiString Result = Format;
- bool AsIs = false;
- int Index = 1;
- while (Index <= Result.Length())
- {
- char F = Result[Index];
- if ((F == '\'') || (F == '\"'))
- {
- AsIs = !AsIs;
- Index++;
- }
- else if (!AsIs && ((F == 'a') || (F == 'A')))
- {
- if (Result.SubString(Index, 5).LowerCase() == "am/pm")
- {
- Index += 5;
- }
- else if (Result.SubString(Index, 3).LowerCase() == "a/p")
- {
- Index += 3;
- }
- else if (Result.SubString(Index, 4).LowerCase() == "ampm")
- {
- Index += 4;
- }
- else
- {
- Index++;
- }
- }
- else
- {
- if (!AsIs && (strchr("dDeEmMhHnNsS", F) != NULL) &&
- ((Index == Result.Length()) || (Result[Index + 1] != F)))
- {
- Result.Insert(F, Index);
- }
- while ((Index <= Result.Length()) && (F == Result[Index]))
- {
- Index++;
- }
- }
- }
- return Result;
- }
- //---------------------------------------------------------------------------
- int __fastcall CompareFileTime(TDateTime T1, TDateTime T2)
- {
- // "FAT" time precision
- // 1 ms more solves the rounding issues (see also CustomDirView.pas)
- static TDateTime Second(0, 0, 1, 1);
- int Result;
- if (T1 == T2)
- {
- // just optimalisation
- Result = 0;
- }
- else if ((T1 < T2) && (T2 - T1 > Second))
- {
- Result = -1;
- }
- else if ((T1 > T2) && (T1 - T2 > Second))
- {
- Result = 1;
- }
- else
- {
- Result = 0;
- }
- return Result;
- }
- //---------------------------------------------------------------------------
- bool __fastcall RecursiveDeleteFile(const AnsiString FileName, bool ToRecycleBin)
- {
- SHFILEOPSTRUCT Data;
- memset(&Data, 0, sizeof(Data));
- Data.hwnd = NULL;
- Data.wFunc = FO_DELETE;
- AnsiString FileList(FileName);
- FileList.SetLength(FileList.Length() + 2);
- FileList[FileList.Length() - 1] = '\0';
- FileList[FileList.Length()] = '\0';
- Data.pFrom = FileList.c_str();
- Data.pTo = "";
- Data.fFlags = FOF_NOCONFIRMATION | FOF_RENAMEONCOLLISION | FOF_NOCONFIRMMKDIR |
- FOF_NOERRORUI | FOF_SILENT;
- if (ToRecycleBin)
- {
- Data.fFlags |= FOF_ALLOWUNDO;
- }
- int Result = SHFileOperation(&Data);
- return (Result == 0);
- }
- //---------------------------------------------------------------------------
- int __fastcall CancelAnswer(int Answers)
- {
- int Result;
- if ((Answers & qaCancel) != 0)
- {
- Result = qaCancel;
- }
- else if ((Answers & qaNo) != 0)
- {
- Result = qaNo;
- }
- else if ((Answers & qaAbort) != 0)
- {
- Result = qaAbort;
- }
- else if ((Answers & qaOK) != 0)
- {
- Result = qaOK;
- }
- else
- {
- assert(false);
- Result = qaCancel;
- }
- return Result;
- }
- //---------------------------------------------------------------------------
- int __fastcall AbortAnswer(int Answers)
- {
- int Result;
- if (FLAGSET(Answers, qaAbort))
- {
- Result = qaAbort;
- }
- else
- {
- Result = CancelAnswer(Answers);
- }
- return Result;
- }
- //---------------------------------------------------------------------------
- int __fastcall ContinueAnswer(int Answers)
- {
- int Result;
- if (FLAGSET(Answers, qaSkip))
- {
- Result = qaSkip;
- }
- else if (FLAGSET(Answers, qaIgnore))
- {
- Result = qaIgnore;
- }
- else if (FLAGSET(Answers, qaYes))
- {
- Result = qaYes;
- }
- else if (FLAGSET(Answers, qaOK))
- {
- Result = qaOK;
- }
- else if (FLAGSET(Answers, qaRetry))
- {
- Result = qaOK;
- }
- else
- {
- Result = CancelAnswer(Answers);
- }
- return Result;
- }
- //---------------------------------------------------------------------------
- TPasLibModule * __fastcall FindModule(void * Instance)
- {
- TPasLibModule * CurModule;
- CurModule = reinterpret_cast<TPasLibModule*>(LibModuleList);
- while (CurModule)
- {
- if (CurModule->Instance == Instance)
- {
- break;
- }
- else
- {
- CurModule = CurModule->Next;
- }
- }
- return CurModule;
- }
- //---------------------------------------------------------------------------
- AnsiString __fastcall LoadStr(int Ident, unsigned int MaxLength)
- {
- TPasLibModule * MainModule = FindModule(HInstance);
- assert(MainModule != NULL);
- AnsiString Result;
- Result.SetLength(MaxLength);
- int Length = LoadString(MainModule->ResInstance, Ident, Result.c_str(), MaxLength);
- Result.SetLength(Length);
- return Result;
- }
- //---------------------------------------------------------------------------
- AnsiString __fastcall LoadStrPart(int Ident, int Part)
- {
- AnsiString Result;
- AnsiString Str = LoadStr(Ident);
- while (Part > 0)
- {
- Result = CutToChar(Str, '|', false);
- Part--;
- }
- return Result;
- }
- //---------------------------------------------------------------------------
- AnsiString __fastcall DecodeUrlChars(AnsiString S)
- {
- int i = 1;
- while (i <= S.Length())
- {
- switch (S[i])
- {
- case '+':
- S[i] = ' ';
- break;
- case '%':
- if (i <= S.Length() - 2)
- {
- S[i] = HexToStr(S.SubString(i + 1, 2))[1];
- S.Delete(i + 1, 2);
- }
- break;
- }
- i++;
- }
- return S;
- }
- //---------------------------------------------------------------------------
- AnsiString __fastcall EncodeUrlChars(AnsiString S, AnsiString Ignore)
- {
- AnsiString Encode = "/ ";
- int i = 1;
- while (i <= S.Length())
- {
- if ((Encode.Pos(S[i]) > 0) &&
- (Ignore.Pos(S[i]) == 0))
- {
- AnsiString H = CharToHex(S[i]);
- S.Insert(H, i + 1);
- S[i] = '%';
- i += H.Length();
- }
- i++;
- }
- return S;
- }
- //---------------------------------------------------------------------------
- void __fastcall OemToAnsi(AnsiString & Str)
- {
- if (!Str.IsEmpty())
- {
- Str.Unique();
- OemToChar(Str.c_str(), Str.c_str());
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall AnsiToOem(AnsiString & Str)
- {
- if (!Str.IsEmpty())
- {
- Str.Unique();
- CharToOem(Str.c_str(), Str.c_str());
- }
- }
|