| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156 | 
							- //---------------------------------------------------------------------------
 
- #include <vcl.h>
 
- #pragma hdrstop
 
- #include "Common.h"
 
- #include "RemoteFiles.h"
 
- #include <SysUtils.hpp>
 
- #include <StrUtils.hpp>
 
- #include <DateUtils.hpp>
 
- #include "Exceptions.h"
 
- #include "Interface.h"
 
- #include "Terminal.h"
 
- #include "TextsCore.h"
 
- #include "HelpCore.h"
 
- #include "Cryptography.h"
 
- /* TODO 1 : Path class instead of UnicodeString (handle relativity...) */
 
- //---------------------------------------------------------------------------
 
- const UnicodeString PartialExt(L".filepart");
 
- //---------------------------------------------------------------------------
 
- bool __fastcall IsUnixStyleWindowsPath(const UnicodeString & Path)
 
- {
 
-   return (Path.Length() >= 3) && IsLetter(Path[1]) && (Path[2] == L':') && (Path[3] == L'/');
 
- }
 
- //---------------------------------------------------------------------------
 
- bool __fastcall UnixIsAbsolutePath(const UnicodeString & Path)
 
- {
 
-   return
 
-     ((Path.Length() >= 1) && (Path[1] == L'/')) ||
 
-     // we need this for FTP only, but this is unfortunately used in a static context
 
-     IsUnixStyleWindowsPath(Path);
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall UnixIncludeTrailingBackslash(const UnicodeString & Path)
 
- {
 
-   // it used to return "/" when input path was empty
 
-   if (!Path.IsEmpty() && !Path.IsDelimiter(L"/", Path.Length()))
 
-   {
 
-     return Path + L"/";
 
-   }
 
-   else
 
-   {
 
-     return Path;
 
-   }
 
- }
 
- //---------------------------------------------------------------------------
 
- // Keeps "/" for root path
 
- UnicodeString __fastcall UnixExcludeTrailingBackslash(const UnicodeString & Path, bool Simple)
 
- {
 
-   if (Path.IsEmpty() ||
 
-       (Path == L"/") ||
 
-       !Path.IsDelimiter(L"/", Path.Length()) ||
 
-       (!Simple && ((Path.Length() == 3) && IsUnixStyleWindowsPath(Path))))
 
-   {
 
-     return Path;
 
-   }
 
-   else
 
-   {
 
-     return Path.SubString(1, Path.Length() - 1);
 
-   }
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall SimpleUnixExcludeTrailingBackslash(const UnicodeString & Path)
 
- {
 
-   return UnixExcludeTrailingBackslash(Path, true);
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall UnixCombinePaths(const UnicodeString & Path1, const UnicodeString & Path2)
 
- {
 
-   return UnixIncludeTrailingBackslash(Path1) + Path2;
 
- }
 
- //---------------------------------------------------------------------------
 
- Boolean __fastcall UnixSamePath(const UnicodeString & Path1, const UnicodeString & Path2)
 
- {
 
-   return (UnixIncludeTrailingBackslash(Path1) == UnixIncludeTrailingBackslash(Path2));
 
- }
 
- //---------------------------------------------------------------------------
 
- bool __fastcall UnixIsChildPath(const UnicodeString & AParent, const UnicodeString & AChild)
 
- {
 
-   UnicodeString Parent = UnixIncludeTrailingBackslash(AParent);
 
-   UnicodeString Child = UnixIncludeTrailingBackslash(AChild);
 
-   return (Child.SubString(1, Parent.Length()) == Parent);
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall UnixExtractFileDir(const UnicodeString & Path)
 
- {
 
-   int Pos = Path.LastDelimiter(L'/');
 
-   // it used to return Path when no slash was found
 
-   if (Pos > 1)
 
-   {
 
-     return Path.SubString(1, Pos - 1);
 
-   }
 
-   else
 
-   {
 
-     return (Pos == 1) ? UnicodeString(ROOTDIRECTORY) : UnicodeString();
 
-   }
 
- }
 
- //---------------------------------------------------------------------------
 
- // must return trailing backslash
 
- UnicodeString __fastcall UnixExtractFilePath(const UnicodeString & Path)
 
- {
 
-   int Pos = Path.LastDelimiter(L'/');
 
-   // it used to return Path when no slash was found
 
-   if (Pos > 0)
 
-   {
 
-     return Path.SubString(1, Pos);
 
-   }
 
-   else
 
-   {
 
-     return UnicodeString();
 
-   }
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall UnixExtractFileName(const UnicodeString & Path)
 
- {
 
-   int Pos = Path.LastDelimiter(L'/');
 
-   UnicodeString Result;
 
-   if (Pos > 0)
 
-   {
 
-     Result = Path.SubString(Pos + 1, Path.Length() - Pos);
 
-   }
 
-   else
 
-   {
 
-     Result = Path;
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall UnixExtractFileExt(const UnicodeString & Path)
 
- {
 
-   UnicodeString FileName = UnixExtractFileName(Path);
 
-   int Pos = FileName.LastDelimiter(L".");
 
-   return (Pos > 0) ? Path.SubString(Pos, Path.Length() - Pos + 1) : UnicodeString();
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall ExtractFileName(const UnicodeString & Path, bool Unix)
 
- {
 
-   if (Unix)
 
-   {
 
-     return UnixExtractFileName(Path);
 
-   }
 
-   else
 
-   {
 
-     return ExtractFileName(Path);
 
-   }
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString ExtractShortName(const UnicodeString & Path, bool Unix)
 
- {
 
-   UnicodeString Result = ExtractFileName(Path, Unix);
 
-   if (Result.IsEmpty())
 
-   {
 
-     Result = Path;
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- bool __fastcall ExtractCommonPath(TStrings * Files, UnicodeString & Path)
 
- {
 
-   DebugAssert(Files->Count > 0);
 
-   Path = ExtractFilePath(Files->Strings[0]);
 
-   bool Result = !Path.IsEmpty();
 
-   if (Result)
 
-   {
 
-     for (int Index = 1; Index < Files->Count; Index++)
 
-     {
 
-       while (!Path.IsEmpty() &&
 
-         (Files->Strings[Index].SubString(1, Path.Length()) != Path))
 
-       {
 
-         int PrevLen = Path.Length();
 
-         Path = ExtractFilePath(ExcludeTrailingBackslash(Path));
 
-         if (Path.Length() == PrevLen)
 
-         {
 
-           Path = L"";
 
-           Result = false;
 
-         }
 
-       }
 
-     }
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- static UnicodeString GetFileListItemPath(TStrings * Files, int Index)
 
- {
 
-   UnicodeString Result;
 
-   if (Files->Objects[Index] != NULL)
 
-   {
 
-     Result = DebugNotNull(dynamic_cast<TRemoteFile *>(Files->Objects[Index]))->FullFileName;
 
-   }
 
-   else
 
-   {
 
-     Result = Files->Strings[Index];
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- bool __fastcall UnixExtractCommonPath(TStrings * Files, UnicodeString & Path)
 
- {
 
-   DebugAssert(Files->Count > 0);
 
-   Path = UnixExtractFilePath(GetFileListItemPath(Files, 0));
 
-   bool Result = !Path.IsEmpty();
 
-   if (Result)
 
-   {
 
-     for (int Index = 1; Index < Files->Count; Index++)
 
-     {
 
-       while (!Path.IsEmpty() &&
 
-         (GetFileListItemPath(Files, Index).SubString(1, Path.Length()) != Path))
 
-       {
 
-         int PrevLen = Path.Length();
 
-         Path = UnixExtractFilePath(UnixExcludeTrailingBackslash(Path));
 
-         if (Path.Length() == PrevLen)
 
-         {
 
-           Path = L"";
 
-           Result = false;
 
-         }
 
-       }
 
-     }
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- bool __fastcall IsUnixRootPath(const UnicodeString & Path)
 
- {
 
-   return Path.IsEmpty() || (Path == ROOTDIRECTORY);
 
- }
 
- //---------------------------------------------------------------------------
 
- bool __fastcall IsUnixHiddenFile(const UnicodeString & FileName)
 
- {
 
-   return IsRealFile(FileName) && !FileName.IsEmpty() && (FileName[1] == L'.');
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall AbsolutePath(const UnicodeString & Base, const UnicodeString & Path)
 
- {
 
-   // There's a duplicate implementation in TTerminal::ExpandFileName()
 
-   UnicodeString Result;
 
-   if (Path.IsEmpty())
 
-   {
 
-     Result = Base;
 
-   }
 
-   else if (Path[1] == L'/')
 
-   {
 
-     Result = UnixExcludeTrailingBackslash(Path);
 
-   }
 
-   else
 
-   {
 
-     Result = UnixIncludeTrailingBackslash(
 
-       UnixIncludeTrailingBackslash(Base) + Path);
 
-     int P;
 
-     while ((P = Result.Pos(L"/../")) > 0)
 
-     {
 
-       // special case, "/../" => "/"
 
-       if (P == 1)
 
-       {
 
-         Result = L"/";
 
-       }
 
-       else
 
-       {
 
-         int P2 = Result.SubString(1, P-1).LastDelimiter(L"/");
 
-         DebugAssert(P2 > 0);
 
-         Result.Delete(P2, P - P2 + 3);
 
-       }
 
-     }
 
-     while ((P = Result.Pos(L"/./")) > 0)
 
-     {
 
-       Result.Delete(P, 2);
 
-     }
 
-     Result = UnixExcludeTrailingBackslash(Result);
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall FromUnixPath(const UnicodeString & Path)
 
- {
 
-   return ReplaceStr(Path, L"/", L"\\");
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall ToUnixPath(const UnicodeString & Path)
 
- {
 
-   return ReplaceStr(Path, L"\\", L"/");
 
- }
 
- //---------------------------------------------------------------------------
 
- static void __fastcall CutFirstDirectory(UnicodeString & S, bool Unix)
 
- {
 
-   bool Root;
 
-   int P;
 
-   UnicodeString Sep = Unix ? L"/" : L"\\";
 
-   if (S == Sep)
 
-   {
 
-     S = L"";
 
-   }
 
-   else
 
-   {
 
-     if (S[1] == Sep[1])
 
-     {
 
-       Root = true;
 
-       S.Delete(1, 1);
 
-     }
 
-     else
 
-     {
 
-       Root = false;
 
-     }
 
-     if (S[1] == L'.')
 
-     {
 
-       S.Delete(1, 4);
 
-     }
 
-     P = S.Pos(Sep[1]);
 
-     if (P)
 
-     {
 
-       S.Delete(1, P);
 
-       S = Ellipsis + Sep + S;
 
-     }
 
-     else
 
-     {
 
-       S = L"";
 
-     }
 
-     if (Root)
 
-     {
 
-       S = Sep + S;
 
-     }
 
-   }
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall MinimizeName(const UnicodeString & FileName, int MaxLen, bool Unix)
 
- {
 
-   UnicodeString Drive, Dir, Name, Result;
 
-   UnicodeString Sep = Unix ? L"/" : L"\\";
 
-   Result = FileName;
 
-   if (Unix)
 
-   {
 
-     int P = Result.LastDelimiter(L"/");
 
-     if (P)
 
-     {
 
-       Dir = Result.SubString(1, P);
 
-       Name = Result.SubString(P + 1, Result.Length() - P);
 
-     }
 
-     else
 
-     {
 
-       Dir = L"";
 
-       Name = Result;
 
-     }
 
-   }
 
-   else
 
-   {
 
-     Dir = ExtractFilePath(Result);
 
-     Name = ExtractFileName(Result);
 
-     if (Dir.Length() >= 2 && Dir[2] == L':')
 
-     {
 
-       Drive = Dir.SubString(1, 2);
 
-       Dir.Delete(1, 2);
 
-     }
 
-   }
 
-   while ((!Dir.IsEmpty() || !Drive.IsEmpty()) && (Result.Length() > MaxLen))
 
-   {
 
-     if (Dir == Sep + Ellipsis + Sep)
 
-     {
 
-       Dir = Ellipsis + Sep;
 
-     }
 
-     else if (Dir == L"")
 
-     {
 
-       Drive = L"";
 
-     }
 
-     else
 
-     {
 
-       CutFirstDirectory(Dir, Unix);
 
-     }
 
-     Result = Drive + Dir + Name;
 
-   }
 
-   if (Result.Length() > MaxLen)
 
-   {
 
-     Result = Result.SubString(1, MaxLen);
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall MakeFileList(TStrings * FileList)
 
- {
 
-   UnicodeString Result;
 
-   for (int Index = 0; Index < FileList->Count; Index++)
 
-   {
 
-     UnicodeString FileName = FileList->Strings[Index];
 
-     // currently this is used for local file only, so no delimiting is done
 
-     AddToList(Result, AddQuotes(FileName), L" ");
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- // copy from BaseUtils.pas
 
- TDateTime __fastcall ReduceDateTimePrecision(TDateTime DateTime,
 
-   TModificationFmt Precision)
 
- {
 
-   if (Precision == mfNone)
 
-   {
 
-     DateTime = double(0);
 
-   }
 
-   else if (Precision != mfFull)
 
-   {
 
-     unsigned short Y, M, D, H, N, S, MS;
 
-     DecodeDate(DateTime, Y, M, D);
 
-     DecodeTime(DateTime, H, N, S, MS);
 
-     switch (Precision)
 
-     {
 
-       case mfYMDHM:
 
-       case mfMDHM:
 
-         S = 0;
 
-         MS = 0;
 
-         break;
 
-       case mfMDY:
 
-         H = 0;
 
-         N = 0;
 
-         S = 0;
 
-         MS = 0;
 
-         break;
 
-       default:
 
-         DebugFail();
 
-     }
 
-     DateTime = EncodeDateVerbose(Y, M, D) + EncodeTimeVerbose(H, N, S, MS);
 
-   }
 
-   return DateTime;
 
- }
 
- //---------------------------------------------------------------------------
 
- TModificationFmt __fastcall LessDateTimePrecision(
 
-   TModificationFmt Precision1, TModificationFmt Precision2)
 
- {
 
-   return (Precision1 < Precision2) ? Precision1 : Precision2;
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall UserModificationStr(TDateTime DateTime,
 
-   TModificationFmt Precision)
 
- {
 
-   switch (Precision)
 
-   {
 
-     case mfNone:
 
-       return L"";
 
-     case mfMDY:
 
-       return FormatDateTime(L"ddddd", DateTime);
 
-     case mfYMDHM:
 
-     case mfMDHM:
 
-       return FormatDateTime(L"ddddd t", DateTime);
 
-     case mfFull:
 
-     default:
 
-       // Keep consistent with TDirView.GetDisplayInfo
 
-       return FormatDateTime(L"ddddd tt", DateTime);
 
-   }
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall ModificationStr(TDateTime DateTime,
 
-   TModificationFmt Precision)
 
- {
 
-   Word Year, Month, Day, Hour, Min, Sec, MSec;
 
-   DateTime.DecodeDate(&Year, &Month, &Day);
 
-   DateTime.DecodeTime(&Hour, &Min, &Sec, &MSec);
 
-   switch (Precision)
 
-   {
 
-     case mfNone:
 
-       return L"";
 
-     case mfMDY:
 
-       return FORMAT(L"%3s %2d %2d", (EngShortMonthNames[Month-1], Day, Year));
 
-     case mfMDHM:
 
-       return FORMAT(L"%3s %2d %2d:%2.2d",
 
-         (EngShortMonthNames[Month-1], Day, Hour, Min));
 
-     case mfYMDHM:
 
-       return FORMAT(L"%3s %2d %2d:%2.2d %4d",
 
-         (EngShortMonthNames[Month-1], Day, Hour, Min, Year));
 
-     default:
 
-       DebugFail();
 
-       // fall thru
 
-     case mfFull:
 
-       return FORMAT(L"%3s %2d %2d:%2.2d:%2.2d %4d",
 
-         (EngShortMonthNames[Month-1], Day, Hour, Min, Sec, Year));
 
-   }
 
- }
 
- //---------------------------------------------------------------------------
 
- int GetPartialFileExtLen(const UnicodeString & FileName)
 
- {
 
-   int Result = 0;
 
-   if (EndsText(PartialExt, FileName))
 
-   {
 
-     Result = PartialExt.Length();
 
-   }
 
-   else
 
-   {
 
-     int P = FileName.LastDelimiter(L".");
 
-     if ((P > 0) && (P < FileName.Length()))
 
-     {
 
-       if (IsNumber(MidStr(FileName, P + 1)) &&
 
-           EndsText(PartialExt, FileName.SubString(1, P - 1)))
 
-       {
 
-         Result = PartialExt.Length() + (FileName.Length() - P + 1);
 
-       }
 
-     }
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- int __fastcall FakeFileImageIndex(UnicodeString FileName, unsigned long Attrs,
 
-   UnicodeString * TypeName)
 
- {
 
-   Attrs |= FILE_ATTRIBUTE_NORMAL;
 
-   TSHFileInfoW SHFileInfo;
 
-   // On Win2k we get icon of "ZIP drive" for ".." (parent directory)
 
-   if ((FileName == PARENTDIRECTORY) ||
 
-       ((FileName.Length() == 2) && (FileName[2] == L':') && IsLetter(FileName[1])) ||
 
-       IsReservedName(FileName))
 
-   {
 
-     FileName = L"dumb";
 
-   }
 
-   // this should be somewhere else, probably in TUnixDirView,
 
-   // as the "partial" overlay is added there too
 
-   int PartialFileExtLen = GetPartialFileExtLen(FileName);
 
-   if (GetPartialFileExtLen(FileName) > 0)
 
-   {
 
-     FileName.SetLength(FileName.Length() - PartialFileExtLen);
 
-   }
 
-   int Icon;
 
-   if (SHGetFileInfo(FileName.c_str(),
 
-         Attrs, &SHFileInfo, sizeof(SHFileInfo),
 
-         SHGFI_SYSICONINDEX | SHGFI_USEFILEATTRIBUTES | SHGFI_TYPENAME) != 0)
 
-   {
 
-     if (TypeName != NULL)
 
-     {
 
-       *TypeName = SHFileInfo.szTypeName;
 
-     }
 
-     Icon = SHFileInfo.iIcon;
 
-   }
 
-   else
 
-   {
 
-     if (TypeName != NULL)
 
-     {
 
-       *TypeName = L"";
 
-     }
 
-     Icon = -1;
 
-   }
 
-   return Icon;
 
- }
 
- //---------------------------------------------------------------------------
 
- bool __fastcall SameUserName(const UnicodeString & UserName1, const UnicodeString & UserName2)
 
- {
 
-   // Bitvise reports file owner as "user@host", but we login with "user" only.
 
-   UnicodeString AUserName1 = CopyToChar(UserName1, L'@', true);
 
-   UnicodeString AUserName2 = CopyToChar(UserName2, L'@', true);
 
-   return SameText(AUserName1, AUserName2);
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall FormatMultiFilesToOneConfirmation(const UnicodeString & Target, bool Unix)
 
- {
 
-   UnicodeString Dir;
 
-   UnicodeString Name;
 
-   UnicodeString Path;
 
-   if (Unix)
 
-   {
 
-     Dir = UnixExtractFileDir(Target);
 
-     Name = UnixExtractFileName(Target);
 
-     Path = UnixIncludeTrailingBackslash(Target);
 
-   }
 
-   else
 
-   {
 
-     Dir = ExtractFilePath(Target);
 
-     Name = ExtractFileName(Target);
 
-     Path = IncludeTrailingBackslash(Target);
 
-   }
 
-   return FMTLOAD(MULTI_FILES_TO_ONE, (Name, Dir, Path));
 
- }
 
- //---------------------------------------------------------------------------
 
- //---------------------------------------------------------------------------
 
- __fastcall TRemoteToken::TRemoteToken() :
 
-   FID(0),
 
-   FIDValid(false)
 
- {
 
- }
 
- //---------------------------------------------------------------------------
 
- __fastcall TRemoteToken::TRemoteToken(const UnicodeString & Name) :
 
-   FName(Name),
 
-   FID(0),
 
-   FIDValid(false)
 
- {
 
- }
 
- //---------------------------------------------------------------------------
 
- void __fastcall TRemoteToken::Clear()
 
- {
 
-   FID = 0;
 
-   FIDValid = false;
 
- }
 
- //---------------------------------------------------------------------------
 
- bool __fastcall TRemoteToken::operator ==(const TRemoteToken & rht) const
 
- {
 
-   return
 
-     (FName == rht.FName) &&
 
-     (FIDValid == rht.FIDValid) &&
 
-     (!FIDValid || (FID == rht.FID));
 
- }
 
- //---------------------------------------------------------------------------
 
- bool __fastcall TRemoteToken::operator !=(const TRemoteToken & rht) const
 
- {
 
-   return !(*this == rht);
 
- }
 
- //---------------------------------------------------------------------------
 
- TRemoteToken & __fastcall TRemoteToken::operator =(const TRemoteToken & rht)
 
- {
 
-   if (this != &rht)
 
-   {
 
-     FName = rht.FName;
 
-     FIDValid = rht.FIDValid;
 
-     FID = rht.FID;
 
-   }
 
-   return *this;
 
- }
 
- //---------------------------------------------------------------------------
 
- int __fastcall TRemoteToken::Compare(const TRemoteToken & rht) const
 
- {
 
-   int Result;
 
-   if (!FName.IsEmpty())
 
-   {
 
-     if (!rht.FName.IsEmpty())
 
-     {
 
-       Result = AnsiCompareText(FName, rht.FName);
 
-     }
 
-     else
 
-     {
 
-       Result = -1;
 
-     }
 
-   }
 
-   else
 
-   {
 
-     if (!rht.FName.IsEmpty())
 
-     {
 
-       Result = 1;
 
-     }
 
-     else
 
-     {
 
-       if (FIDValid)
 
-       {
 
-         if (rht.FIDValid)
 
-         {
 
-           Result = (FID < rht.FID) ? -1 : ((FID > rht.FID) ? 1 : 0);
 
-         }
 
-         else
 
-         {
 
-           Result = -1;
 
-         }
 
-       }
 
-       else
 
-       {
 
-         if (rht.FIDValid)
 
-         {
 
-           Result = 1;
 
-         }
 
-         else
 
-         {
 
-           Result = 0;
 
-         }
 
-       }
 
-     }
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- void __fastcall TRemoteToken::SetID(unsigned int value)
 
- {
 
-   FID = value;
 
-   FIDValid = true;
 
- }
 
- //---------------------------------------------------------------------------
 
- bool __fastcall TRemoteToken::GetNameValid() const
 
- {
 
-   return !FName.IsEmpty();
 
- }
 
- //---------------------------------------------------------------------------
 
- bool __fastcall TRemoteToken::GetIsSet() const
 
- {
 
-   return !FName.IsEmpty() || FIDValid;
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall TRemoteToken::GetDisplayText() const
 
- {
 
-   if (!FName.IsEmpty())
 
-   {
 
-     return FName;
 
-   }
 
-   else if (FIDValid)
 
-   {
 
-     return IntToStr(int(FID));
 
-   }
 
-   else
 
-   {
 
-     return UnicodeString();
 
-   }
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall TRemoteToken::GetLogText() const
 
- {
 
-   return FORMAT(L"\"%s\" [%d]", (FName, int(FID)));
 
- }
 
- //---------------------------------------------------------------------------
 
- //---------------------------------------------------------------------------
 
- TRemoteTokenList * __fastcall TRemoteTokenList::Duplicate() const
 
- {
 
-   TRemoteTokenList * Result = new TRemoteTokenList();
 
-   try
 
-   {
 
-     TTokens::const_iterator I = FTokens.begin();
 
-     while (I != FTokens.end())
 
-     {
 
-       Result->Add(*I);
 
-       ++I;
 
-     }
 
-   }
 
-   catch(...)
 
-   {
 
-     delete Result;
 
-     throw;
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- void __fastcall TRemoteTokenList::Clear()
 
- {
 
-   FTokens.clear();
 
-   FNameMap.clear();
 
-   FIDMap.clear();
 
- }
 
- //---------------------------------------------------------------------------
 
- void __fastcall TRemoteTokenList::Add(const TRemoteToken & Token)
 
- {
 
-   FTokens.push_back(Token);
 
-   if (Token.IDValid)
 
-   {
 
-     std::pair<TIDMap::iterator, bool> Position =
 
-       FIDMap.insert(TIDMap::value_type(Token.ID, FTokens.size() - 1));
 
-   }
 
-   if (Token.NameValid)
 
-   {
 
-     std::pair<TNameMap::iterator, bool> Position =
 
-       FNameMap.insert(TNameMap::value_type(Token.Name, FTokens.size() - 1));
 
-   }
 
- }
 
- //---------------------------------------------------------------------------
 
- void __fastcall TRemoteTokenList::AddUnique(const TRemoteToken & Token)
 
- {
 
-   if (Token.IDValid)
 
-   {
 
-     TIDMap::const_iterator I = FIDMap.find(Token.ID);
 
-     if (I != FIDMap.end())
 
-     {
 
-       // is present already.
 
-       // may have different name (should not),
 
-       // but what can we do about it anyway?
 
-     }
 
-     else
 
-     {
 
-       Add(Token);
 
-     }
 
-   }
 
-   else if (Token.NameValid)
 
-   {
 
-     TNameMap::const_iterator I = FNameMap.find(Token.Name);
 
-     if (I != FNameMap.end())
 
-     {
 
-       // is present already.
 
-     }
 
-     else
 
-     {
 
-       Add(Token);
 
-     }
 
-   }
 
-   else
 
-   {
 
-     // can happen, e.g. with winsshd/SFTP
 
-   }
 
- }
 
- //---------------------------------------------------------------------------
 
- bool __fastcall TRemoteTokenList::Exists(const UnicodeString & Name) const
 
- {
 
-   // We should make use of SameUserName
 
-   return (FNameMap.find(Name) != FNameMap.end());
 
- }
 
- //---------------------------------------------------------------------------
 
- const TRemoteToken * TRemoteTokenList::Find(unsigned int ID) const
 
- {
 
-   TIDMap::const_iterator I = FIDMap.find(ID);
 
-   const TRemoteToken * Result;
 
-   if (I != FIDMap.end())
 
-   {
 
-     Result = &FTokens[(*I).second];
 
-   }
 
-   else
 
-   {
 
-     Result = NULL;
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- const TRemoteToken * TRemoteTokenList::Find(const UnicodeString & Name) const
 
- {
 
-   TNameMap::const_iterator I = FNameMap.find(Name);
 
-   const TRemoteToken * Result;
 
-   if (I != FNameMap.end())
 
-   {
 
-     Result = &FTokens[(*I).second];
 
-   }
 
-   else
 
-   {
 
-     Result = NULL;
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- void __fastcall TRemoteTokenList::Log(TTerminal * Terminal, const wchar_t * Title)
 
- {
 
-   if (!FTokens.empty())
 
-   {
 
-     Terminal->LogEvent(FORMAT(L"Following %s found:", (Title)));
 
-     for (size_t Index = 0; Index < FTokens.size(); Index++)
 
-     {
 
-       Terminal->LogEvent(UnicodeString(L"  ") + FTokens[Index].LogText);
 
-     }
 
-   }
 
-   else
 
-   {
 
-     Terminal->LogEvent(FORMAT(L"No %s found.", (Title)));
 
-   }
 
- }
 
- //---------------------------------------------------------------------------
 
- int __fastcall TRemoteTokenList::Count() const
 
- {
 
-   return (int)FTokens.size();
 
- }
 
- //---------------------------------------------------------------------------
 
- const TRemoteToken * __fastcall TRemoteTokenList::Token(int Index) const
 
- {
 
-   return &FTokens[Index];
 
- }
 
- //---------------------------------------------------------------------------
 
- //---------------------------------------------------------------------------
 
- __fastcall TRemoteFile::TRemoteFile(TRemoteFile * ALinkedByFile):
 
-   TPersistent()
 
- {
 
-   FLinkedFile = NULL;
 
-   FRights = new TRights();
 
-   FIconIndex = -1;
 
-   FCyclicLink = false;
 
-   FModificationFmt = mfFull;
 
-   FLinkedByFile = ALinkedByFile;
 
-   FTerminal = NULL;
 
-   FDirectory = NULL;
 
-   FIsHidden = -1;
 
-   FIsEncrypted = false;
 
-   FCalculatedSize = -1;
 
- }
 
- //---------------------------------------------------------------------------
 
- __fastcall TRemoteFile::~TRemoteFile()
 
- {
 
-   delete FRights;
 
-   delete FLinkedFile;
 
- }
 
- //---------------------------------------------------------------------------
 
- TRemoteFile * __fastcall TRemoteFile::Duplicate(bool Standalone) const
 
- {
 
-   TRemoteFile * Result;
 
-   Result = new TRemoteFile();
 
-   try
 
-   {
 
-     if (FLinkedFile)
 
-     {
 
-       Result->FLinkedFile = FLinkedFile->Duplicate(true);
 
-       Result->FLinkedFile->FLinkedByFile = Result;
 
-     }
 
-     *Result->Rights = *FRights;
 
-     #define COPY_FP(PROP) Result->F ## PROP = F ## PROP;
 
-     COPY_FP(Terminal);
 
-     COPY_FP(Owner);
 
-     COPY_FP(ModificationFmt);
 
-     COPY_FP(Size);
 
-     COPY_FP(CalculatedSize);
 
-     COPY_FP(FileName);
 
-     COPY_FP(DisplayName);
 
-     COPY_FP(INodeBlocks);
 
-     COPY_FP(Modification);
 
-     COPY_FP(LastAccess);
 
-     COPY_FP(Group);
 
-     COPY_FP(IconIndex);
 
-     COPY_FP(TypeName);
 
-     COPY_FP(IsSymLink);
 
-     COPY_FP(LinkTo);
 
-     COPY_FP(Type);
 
-     COPY_FP(CyclicLink);
 
-     COPY_FP(HumanRights);
 
-     COPY_FP(IsEncrypted);
 
-     #undef COPY_FP
 
-     if (Standalone && (!FFullFileName.IsEmpty() || (Directory != NULL)))
 
-     {
 
-       Result->FFullFileName = FullFileName;
 
-     }
 
-   }
 
-   catch(...)
 
-   {
 
-     delete Result;
 
-     throw;
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- void __fastcall TRemoteFile::LoadTypeInfo()
 
- {
 
-   /* TODO : If file is link: Should be attributes taken from linked file? */
 
-   unsigned long Attrs = 0;
 
-   if (IsDirectory) Attrs |= FILE_ATTRIBUTE_DIRECTORY;
 
-   if (IsHidden) Attrs |= FILE_ATTRIBUTE_HIDDEN;
 
-   UnicodeString DumbFileName = (IsSymLink && !LinkTo.IsEmpty() ? LinkTo : FileName);
 
-   FIconIndex = FakeFileImageIndex(DumbFileName, Attrs, &FTypeName);
 
- }
 
- //---------------------------------------------------------------------------
 
- __int64 __fastcall TRemoteFile::GetSize() const
 
- {
 
-   return IsDirectory ? 0 : FSize;
 
- }
 
- //---------------------------------------------------------------------------
 
- Integer __fastcall TRemoteFile::GetIconIndex() const
 
- {
 
-   if (FIconIndex == -1)
 
-   {
 
-     const_cast<TRemoteFile *>(this)->LoadTypeInfo();
 
-   }
 
-   return FIconIndex;
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall TRemoteFile::GetTypeName()
 
- {
 
-   // check availability of type info by icon index, because type name can be empty
 
-   if (FIconIndex < 0)
 
-   {
 
-     LoadTypeInfo();
 
-   }
 
-   return FTypeName;
 
- }
 
- //---------------------------------------------------------------------------
 
- Boolean __fastcall TRemoteFile::GetIsHidden() const
 
- {
 
-   bool Result;
 
-   switch (FIsHidden)
 
-   {
 
-     case 0:
 
-       Result = false;
 
-       break;
 
-     case 1:
 
-       Result = true;
 
-       break;
 
-     default:
 
-       Result = IsUnixHiddenFile(FileName);
 
-       break;
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- void __fastcall TRemoteFile::SetIsHidden(bool value)
 
- {
 
-   FIsHidden = value ? 1 : 0;
 
- }
 
- //---------------------------------------------------------------------------
 
- Boolean __fastcall TRemoteFile::GetIsDirectory() const
 
- {
 
-   if (IsSymLink && (FLinkedFile != NULL))
 
-   {
 
-     return FLinkedFile->IsDirectory;
 
-   }
 
-   else
 
-   {
 
-     return (towupper(Type) == FILETYPE_DIRECTORY);
 
-   }
 
- }
 
- //---------------------------------------------------------------------------
 
- Boolean __fastcall TRemoteFile::GetIsParentDirectory() const
 
- {
 
-   return (FileName == PARENTDIRECTORY);
 
- }
 
- //---------------------------------------------------------------------------
 
- Boolean __fastcall TRemoteFile::GetIsThisDirectory() const
 
- {
 
-   return (FileName == THISDIRECTORY);
 
- }
 
- //---------------------------------------------------------------------------
 
- Boolean __fastcall TRemoteFile::GetIsInaccesibleDirectory() const
 
- {
 
-   Boolean Result;
 
-   if (IsDirectory)
 
-   {
 
-     DebugAssert(Terminal);
 
-     Result = !
 
-        (SameUserName(Terminal->UserName, L"root") ||
 
-         ((Rights->RightUndef[TRights::rrOtherExec] != TRights::rsNo)) ||
 
-         ((Rights->Right[TRights::rrGroupExec] != TRights::rsNo) &&
 
-          Terminal->Membership->Exists(Group.Name)) ||
 
-         ((Rights->Right[TRights::rrUserExec] != TRights::rsNo) &&
 
-          SameUserName(Terminal->UserName, Owner.Name)));
 
-   }
 
-     else Result = False;
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- wchar_t __fastcall TRemoteFile::GetType() const
 
- {
 
-   return FType;
 
- }
 
- //---------------------------------------------------------------------------
 
- void __fastcall TRemoteFile::SetType(wchar_t AType)
 
- {
 
-   FType = AType;
 
-   FIsSymLink = ((wchar_t)towupper(FType) == FILETYPE_SYMLINK);
 
- }
 
- //---------------------------------------------------------------------------
 
- const TRemoteFile * __fastcall TRemoteFile::GetLinkedFile() const
 
- {
 
-   // do not call FindLinkedFile as it would be called repeatedly for broken symlinks
 
-   return FLinkedFile;
 
- }
 
- //---------------------------------------------------------------------------
 
- bool __fastcall TRemoteFile::GetBrokenLink()
 
- {
 
-   DebugAssert(Terminal);
 
-   // If file is symlink but we couldn't find linked file we assume broken link
 
-   return (IsSymLink && (FCyclicLink || !FLinkedFile) &&
 
-     Terminal->ResolvingSymlinks);
 
-   // "!FLinkTo.IsEmpty()" removed because it does not work with SFTP
 
- }
 
- //---------------------------------------------------------------------------
 
- bool __fastcall TRemoteFile::IsTimeShiftingApplicable()
 
- {
 
-   return IsTimeShiftingApplicable(ModificationFmt);
 
- }
 
- //---------------------------------------------------------------------------
 
- bool __fastcall TRemoteFile::IsTimeShiftingApplicable(TModificationFmt ModificationFmt)
 
- {
 
-   return (ModificationFmt == mfMDHM) || (ModificationFmt == mfYMDHM) || (ModificationFmt == mfFull);
 
- }
 
- //---------------------------------------------------------------------------
 
- void __fastcall TRemoteFile::ShiftTimeInSeconds(__int64 Seconds)
 
- {
 
-   ShiftTimeInSeconds(FModification, ModificationFmt, Seconds);
 
-   ShiftTimeInSeconds(FLastAccess, ModificationFmt, Seconds);
 
- }
 
- //---------------------------------------------------------------------------
 
- void __fastcall TRemoteFile::ShiftTimeInSeconds(TDateTime & DateTime, TModificationFmt ModificationFmt, __int64 Seconds)
 
- {
 
-   if ((Seconds != 0) && IsTimeShiftingApplicable(ModificationFmt))
 
-   {
 
-     DebugAssert(int(DateTime) != 0);
 
-     DateTime = IncSecond(DateTime, Seconds);
 
-   }
 
- }
 
- //---------------------------------------------------------------------------
 
- void __fastcall TRemoteFile::SetModification(const TDateTime & value)
 
- {
 
-   if (FModification != value)
 
-   {
 
-     FModificationFmt = mfFull;
 
-     FModification = value;
 
-   }
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall TRemoteFile::GetUserModificationStr()
 
- {
 
-   return ::UserModificationStr(Modification, FModificationFmt);
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall TRemoteFile::GetModificationStr()
 
- {
 
-   return ::ModificationStr(Modification, FModificationFmt);
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall TRemoteFile::GetExtension()
 
- {
 
-   return UnixExtractFileExt(FFileName);
 
- }
 
- //---------------------------------------------------------------------------
 
- void __fastcall TRemoteFile::SetRights(TRights * value)
 
- {
 
-   FRights->Assign(value);
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall TRemoteFile::GetRightsStr()
 
- {
 
-   // note that HumanRights is typically an empty string
 
-   // (with an exception of Perm-fact-only MLSD FTP listing)
 
-   return FRights->Unknown ? HumanRights : FRights->Text;
 
- }
 
- //---------------------------------------------------------------------------
 
- void __fastcall TRemoteFile::SetListingStr(UnicodeString value)
 
- {
 
-   // Value stored in 'value' can be used for error message
 
-   UnicodeString Line = value;
 
-   FIconIndex = -1;
 
-   try
 
-   {
 
-     UnicodeString Col;
 
-     // Do we need to do this (is ever TAB is LS output)?
 
-     Line = ReplaceChar(Line, L'\t', L' ');
 
-     Type = Line[1];
 
-     Line.Delete(1, 1);
 
-     #define GETNCOL  \
 
-       { if (Line.IsEmpty()) throw Exception(L""); \
 
-         Integer P = Line.Pos(L' '); \
 
-         if (P) { Col = Line.SubString(1, P-1); Line.Delete(1, P); } \
 
-           else { Col = Line; Line = L""; } \
 
-       }
 
-     #define GETCOL { GETNCOL; Line = TrimLeft(Line); }
 
-     // Rights string may contain special permission attributes (S,t, ...)
 
-     // (TODO: maybe no longer necessary, once we can handle the special permissions)
 
-     Rights->AllowUndef = True;
 
-     // On some system there is no space between permissions and node blocks count columns
 
-     // so we get only first 9 characters and trim all following spaces (if any)
 
-     Rights->Text = Line.SubString(1, 9);
 
-     Line.Delete(1, 9);
 
-     // Rights column maybe followed by '+', '@' or '.' signs, we ignore them
 
-     // (On MacOS, there may be a space in between)
 
-     if (!Line.IsEmpty() && ((Line[1] == L'+') || (Line[1] == L'@') || (Line[1] == L'.')))
 
-     {
 
-       Line.Delete(1, 1);
 
-     }
 
-     else if ((Line.Length() >= 2) && (Line[1] == L' ') &&
 
-              ((Line[2] == L'+') || (Line[2] == L'@') || (Line[2] == L'.')))
 
-     {
 
-       Line.Delete(1, 2);
 
-     }
 
-     Line = Line.TrimLeft();
 
-     GETCOL;
 
-     if (!TryStrToInt(Col, FINodeBlocks))
 
-     {
 
-       // if the column is not an integer, suppose it's owner
 
-       // (Android BusyBox)
 
-       FINodeBlocks = 0;
 
-     }
 
-     else
 
-     {
 
-       GETCOL;
 
-     }
 
-     FOwner.Name = Col;
 
-     // #60 17.10.01: group name can contain space
 
-     FGroup.Name = L"";
 
-     GETCOL;
 
-     __int64 ASize;
 
-     do
 
-     {
 
-       FGroup.Name = FGroup.Name + Col;
 
-       GETCOL;
 
-       // SSH FS link like
 
-       // d????????? ? ? ? ? ? name
 
-       if ((FGroup.Name == L"?") && (Col == L"?"))
 
-       {
 
-         ASize = 0;
 
-       }
 
-       else
 
-       {
 
-         DebugAssert(!Col.IsEmpty());
 
-         // for devices etc.. there is additional column ending by comma, we ignore it
 
-         if (Col[Col.Length()] == L',') GETCOL;
 
-         ASize = StrToInt64Def(Col, -1);
 
-         // if it's not a number (file size) we take it as part of group name
 
-         // (at least on CygWin, there can be group with space in its name)
 
-         if (ASize < 0) Col = L" " + Col;
 
-       }
 
-     }
 
-     while (ASize < 0);
 
-     // Do not read modification time and filename (test close to the end of this block) if it is already set.
 
-     if (double(FModification) == 0)
 
-     {
 
-       bool FullTime = false;
 
-       bool DayMonthFormat = false;
 
-       Word Day, Month, Year, Hour, Min, Sec, P;
 
-       GETCOL;
 
-       // SSH FS link, see above
 
-       if (Col == L"?")
 
-       {
 
-         GETCOL;
 
-         FModificationFmt = mfNone;
 
-         FModification = 0;
 
-         FLastAccess = 0;
 
-       }
 
-       else
 
-       {
 
-         // format dd mmm or mmm dd ?
 
-         Day = (Word)StrToIntDef(Col, 0);
 
-         if (Day > 0)
 
-         {
 
-           DayMonthFormat = true;
 
-           GETCOL;
 
-         }
 
-         Month = 0;
 
-         #define COL2MONTH \
 
-           for (Word IMonth = 0; IMonth < 12; IMonth++) \
 
-             if (!Col.CompareIC(EngShortMonthNames[IMonth])) { Month = IMonth; Month++; break; }
 
-         COL2MONTH;
 
-         // if the column is not known month name, it may have been "yyyy-mm-dd"
 
-         // for --full-time format
 
-         if ((Month == 0) && (Col.Length() == 10) && (Col[5] == L'-') && (Col[8] == L'-'))
 
-         {
 
-           Year = (Word)Col.SubString(1, 4).ToInt();
 
-           Month = (Word)Col.SubString(6, 2).ToInt();
 
-           Day = (Word)Col.SubString(9, 2).ToInt();
 
-           GETCOL;
 
-           Hour = (Word)Col.SubString(1, 2).ToInt();
 
-           Min = (Word)Col.SubString(4, 2).ToInt();
 
-           if (Col.Length() >= 8)
 
-           {
 
-             Sec = (Word)StrToInt(Col.SubString(7, 2));
 
-           }
 
-           else
 
-           {
 
-             Sec = 0;
 
-           }
 
-           FModificationFmt = mfFull;
 
-           // skip TZ (TODO)
 
-           // do not trim leading space of filename
 
-           GETNCOL;
 
-         }
 
-         else
 
-         {
 
-           // or it may have been day name for another format of --full-time
 
-           if (Month == 0)
 
-           {
 
-             GETCOL;
 
-             COL2MONTH;
 
-             // neither standard, not --full-time format
 
-             if (Month == 0)
 
-             {
 
-               Abort();
 
-             }
 
-             else
 
-             {
 
-               FullTime = true;
 
-             }
 
-           }
 
-           #undef COL2MONTH
 
-           if (Day == 0)
 
-           {
 
-             GETNCOL;
 
-             Day = (Word)StrToInt(Col);
 
-           }
 
-           if ((Day < 1) || (Day > 31)) Abort();
 
-           // second full-time format
 
-           // ddd mmm dd hh:nn:ss yyyy
 
-           if (FullTime)
 
-           {
 
-             GETCOL;
 
-             if (Col.Length() != 8)
 
-             {
 
-               Abort();
 
-             }
 
-             Hour = (Word)StrToInt(Col.SubString(1, 2));
 
-             Min = (Word)StrToInt(Col.SubString(4, 2));
 
-             Sec = (Word)StrToInt(Col.SubString(7, 2));
 
-             FModificationFmt = mfFull;
 
-             // do not trim leading space of filename
 
-             GETNCOL;
 
-             Year = (Word)StrToInt(Col);
 
-           }
 
-           else
 
-           {
 
-             // for format dd mmm the below description seems not to be true,
 
-             // the year is not aligned to 5 characters
 
-             if (DayMonthFormat)
 
-             {
 
-               GETCOL;
 
-             }
 
-             else
 
-             {
 
-               // Time/Year indicator is always 5 characters long (???), on most
 
-               // systems year is aligned to right (_YYYY), but on some to left (YYYY_),
 
-               // we must ensure that trailing space is also deleted, so real
 
-               // separator space is not treated as part of file name
 
-               Col = Line.SubString(1, 6).Trim();
 
-               Line.Delete(1, 6);
 
-             }
 
-             // GETNCOL; // We don't want to trim input strings (name with space at beginning???)
 
-             // Check if we got time (contains :) or year
 
-             if ((P = (Word)Col.Pos(L':')) > 0)
 
-             {
 
-               Word CurrMonth, CurrDay;
 
-               Hour = (Word)StrToInt(Col.SubString(1, P-1));
 
-               Min = (Word)StrToInt(Col.SubString(P+1, Col.Length() - P));
 
-               if (Hour > 23 || Min > 59) Abort();
 
-               // When we don't got year, we assume current year
 
-               // with exception that the date would be in future
 
-               // in this case we assume last year.
 
-               DecodeDate(Date(), Year, CurrMonth, CurrDay);
 
-               if ((Month > CurrMonth) ||
 
-                   (Month == CurrMonth && Day > CurrDay)) Year--;
 
-               Sec = 0;
 
-               FModificationFmt = mfMDHM;
 
-             }
 
-               else
 
-             {
 
-               Year = (Word)StrToInt(Col);
 
-               if (Year > 10000) Abort();
 
-               // When we didn't get time we assume midnight
 
-               Hour = 0; Min = 0; Sec = 0;
 
-               FModificationFmt = mfMDY;
 
-             }
 
-           }
 
-         }
 
-         FModification = EncodeDateVerbose(Year, Month, Day) + EncodeTimeVerbose(Hour, Min, Sec, 0);
 
-         // adjust only when time is known,
 
-         // adjusting default "midnight" time makes no sense
 
-         if ((FModificationFmt == mfMDHM) ||
 
-              DebugAlwaysFalse(FModificationFmt == mfYMDHM) ||
 
-              (FModificationFmt == mfFull))
 
-         {
 
-           DebugAssert(Terminal != NULL);
 
-           FModification = AdjustDateTimeFromUnix(FModification,
 
-             Terminal->SessionData->DSTMode);
 
-         }
 
-         if (double(FLastAccess) == 0)
 
-         {
 
-           FLastAccess = FModification;
 
-         }
 
-       }
 
-       // separating space is already deleted, other spaces are treated as part of name
 
-       // see comment at the beginning of the block
 
-       if (FileName.IsEmpty())
 
-       {
 
-         FSize = ASize;
 
-         int P;
 
-         FLinkTo = L"";
 
-         if (IsSymLink)
 
-         {
 
-           P = Line.Pos(SYMLINKSTR);
 
-           if (P)
 
-           {
 
-             FLinkTo = Line.SubString(
 
-               P + wcslen(SYMLINKSTR), Line.Length() - P + wcslen(SYMLINKSTR) + 1);
 
-             Line.SetLength(P - 1);
 
-           }
 
-           else
 
-           {
 
-             Abort();
 
-           }
 
-         }
 
-         FFileName = UnixExtractFileName(Line);
 
-       }
 
-     }
 
-     #undef GETNCOL
 
-     #undef GETCOL
 
-   }
 
-   catch (Exception &E)
 
-   {
 
-     throw ETerminal(&E, FmtLoadStr(LIST_LINE_ERROR, ARRAYOFCONST((value))), HELP_LIST_LINE_ERROR);
 
-   }
 
- }
 
- //---------------------------------------------------------------------------
 
- void __fastcall TRemoteFile::Complete()
 
- {
 
-   DebugAssert(Terminal != NULL);
 
-   if (IsSymLink && Terminal->ResolvingSymlinks)
 
-   {
 
-     FindLinkedFile();
 
-   }
 
- }
 
- //---------------------------------------------------------------------------
 
- void __fastcall TRemoteFile::SetEncrypted()
 
- {
 
-   FIsEncrypted = true;
 
-   if (Size > TEncryption::GetOverhead())
 
-   {
 
-     Size -= TEncryption::GetOverhead();
 
-   }
 
- }
 
- //---------------------------------------------------------------------------
 
- void __fastcall TRemoteFile::FindLinkedFile()
 
- {
 
-   DebugAssert(Terminal && IsSymLink);
 
-   if (FLinkedFile) delete FLinkedFile;
 
-   FLinkedFile = NULL;
 
-   FCyclicLink = false;
 
-   if (!LinkTo.IsEmpty())
 
-   {
 
-     // check for cyclic link
 
-     TRemoteFile * LinkedBy = FLinkedByFile;
 
-     while (LinkedBy)
 
-     {
 
-       if (LinkedBy->LinkTo == LinkTo)
 
-       {
 
-         // this is currenly redundant information, because it is used only to
 
-         // detect broken symlink, which would be otherwise detected
 
-         // by FLinkedFile == NULL
 
-         FCyclicLink = true;
 
-         break;
 
-       }
 
-       LinkedBy = LinkedBy->FLinkedByFile;
 
-     }
 
-   }
 
-   if (FCyclicLink)
 
-   {
 
-     TRemoteFile * LinkedBy = FLinkedByFile;
 
-     while (LinkedBy)
 
-     {
 
-       LinkedBy->FCyclicLink = true;
 
-       LinkedBy = LinkedBy->FLinkedByFile;
 
-     }
 
-   }
 
-   else
 
-   {
 
-     DebugAssert(Terminal->ResolvingSymlinks);
 
-     Terminal->ExceptionOnFail = true;
 
-     try
 
-     {
 
-       try
 
-       {
 
-         Terminal->ReadSymlink(this, FLinkedFile);
 
-       }
 
-       __finally
 
-       {
 
-         Terminal->ExceptionOnFail = false;
 
-       }
 
-     }
 
-     catch (Exception &E)
 
-     {
 
-       if (E.InheritsFrom(__classid(EFatal))) throw;
 
-       else
 
-       {
 
-         Terminal->Log->AddException(&E);
 
-       }
 
-     }
 
-   }
 
- }
 
- //---------------------------------------------------------------------------
 
- const TRemoteFile * __fastcall TRemoteFile::Resolve() const
 
- {
 
-   const TRemoteFile * Result = this;
 
-   while (Result->LinkedFile != NULL)
 
-   {
 
-     Result = Result->LinkedFile;
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall TRemoteFile::GetListingStr()
 
- {
 
-   // note that ModificationStr is longer than 12 for mfFull
 
-   UnicodeString LinkPart;
 
-   // expanded from ?: to avoid memory leaks
 
-   if (IsSymLink)
 
-   {
 
-     LinkPart = UnicodeString(SYMLINKSTR) + LinkTo;
 
-   }
 
-   return Format(L"%s%s %3s %-8s %-8s %9s %-12s %s%s", ARRAYOFCONST((
 
-     Type, Rights->Text, IntToStr(INodeBlocks), Owner.Name, Group.Name,
 
-     IntToStr(FSize), // explicitly using size even for directories
 
-     ModificationStr, FileName,
 
-     LinkPart)));
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall TRemoteFile::GetFullFileName() const
 
- {
 
-   UnicodeString Result;
 
-   if (FFullFileName.IsEmpty())
 
-   {
 
-     DebugAssert(Terminal);
 
-     DebugAssert(Directory != NULL);
 
-     if (IsParentDirectory)
 
-     {
 
-       Result = Directory->ParentPath;
 
-     }
 
-     else if (IsDirectory)
 
-     {
 
-       Result = UnixIncludeTrailingBackslash(Directory->FullDirectory + FileName);
 
-     }
 
-     else
 
-     {
 
-       Result = Directory->FullDirectory + FileName;
 
-     }
 
-   }
 
-   else
 
-   {
 
-     Result = FFullFileName;
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- bool __fastcall TRemoteFile::GetHaveFullFileName() const
 
- {
 
-   return !FFullFileName.IsEmpty() || (Directory != NULL);
 
- }
 
- //---------------------------------------------------------------------------
 
- Integer __fastcall TRemoteFile::GetAttr()
 
- {
 
-   Integer Result = 0;
 
-   if (Rights->ReadOnly) Result |= faReadOnly;
 
-   if (IsHidden) Result |= faHidden;
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- void __fastcall TRemoteFile::SetTerminal(TTerminal * value)
 
- {
 
-   FTerminal = value;
 
-   if (FLinkedFile)
 
-   {
 
-     FLinkedFile->Terminal = value;
 
-   }
 
- }
 
- //---------------------------------------------------------------------------
 
- //---------------------------------------------------------------------------
 
- __fastcall TRemoteDirectoryFile::TRemoteDirectoryFile() : TRemoteFile()
 
- {
 
-   Modification = double(0);
 
-   ModificationFmt = mfNone;
 
-   LastAccess = Modification;
 
-   Type = L'D';
 
- }
 
- //---------------------------------------------------------------------------
 
- //---------------------------------------------------------------------------
 
- __fastcall TRemoteParentDirectory::TRemoteParentDirectory(TTerminal * ATerminal)
 
-   : TRemoteDirectoryFile()
 
- {
 
-   FileName = PARENTDIRECTORY;
 
-   Terminal = ATerminal;
 
- }
 
- //=== TRemoteFileList ------------------------------------------------------
 
- __fastcall TRemoteFileList::TRemoteFileList():
 
-   TObjectList()
 
- {
 
-   FTimestamp = Now();
 
- }
 
- //---------------------------------------------------------------------------
 
- void __fastcall TRemoteFileList::AddFile(TRemoteFile * File)
 
- {
 
-   Add(File);
 
-   File->Directory = this;
 
- }
 
- //---------------------------------------------------------------------------
 
- TStrings * __fastcall TRemoteFileList::CloneStrings(TStrings * List)
 
- {
 
-   std::unique_ptr<TStringList> Result(new TStringList());
 
-   Result->OwnsObjects = true;
 
-   for (int Index = 0; Index < List->Count; Index++)
 
-   {
 
-     TRemoteFile * File = static_cast<TRemoteFile *>(List->Objects[Index]);
 
-     Result->AddObject(List->Strings[Index], File->Duplicate(true));
 
-   }
 
-   return Result.release();
 
- }
 
- //---------------------------------------------------------------------------
 
- bool TRemoteFileList::AnyDirectory(TStrings * List)
 
- {
 
-   bool Result = false;
 
-   for (int Index = 0; !Result && (Index < List->Count); Index++)
 
-   {
 
-     Result = static_cast<TRemoteFile *>(List->Objects[Index])->IsDirectory;
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- void __fastcall TRemoteFileList::DuplicateTo(TRemoteFileList * Copy)
 
- {
 
-   Copy->Reset();
 
-   for (int Index = 0; Index < Count; Index++)
 
-   {
 
-     TRemoteFile * File = Files[Index];
 
-     Copy->AddFile(File->Duplicate(false));
 
-   }
 
-   Copy->FDirectory = Directory;
 
-   Copy->FTimestamp = FTimestamp;
 
- }
 
- //---------------------------------------------------------------------------
 
- void __fastcall TRemoteFileList::Reset()
 
- {
 
-   FTimestamp = Now();
 
-   Clear();
 
- }
 
- //---------------------------------------------------------------------------
 
- void __fastcall TRemoteFileList::SetDirectory(UnicodeString value)
 
- {
 
-   FDirectory = UnixExcludeTrailingBackslash(value);
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall TRemoteFileList::GetFullDirectory()
 
- {
 
-   return UnixIncludeTrailingBackslash(Directory);
 
- }
 
- //---------------------------------------------------------------------------
 
- TRemoteFile * __fastcall TRemoteFileList::GetFiles(Integer Index)
 
- {
 
-   return (TRemoteFile *)Items[Index];
 
- }
 
- //---------------------------------------------------------------------------
 
- Boolean __fastcall TRemoteFileList::GetIsRoot()
 
- {
 
-   return (Directory == ROOTDIRECTORY);
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall TRemoteFileList::GetParentPath()
 
- {
 
-   return UnixExtractFilePath(Directory);
 
- }
 
- //---------------------------------------------------------------------------
 
- __int64 __fastcall TRemoteFileList::GetTotalSize()
 
- {
 
-   __int64 Result = 0;
 
-   for (Integer Index = 0; Index < Count; Index++)
 
-     Result += Files[Index]->Size;
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- TRemoteFile * __fastcall TRemoteFileList::FindFile(const UnicodeString &FileName)
 
- {
 
-   for (Integer Index = 0; Index < Count; Index++)
 
-     if (Files[Index]->FileName == FileName) return Files[Index];
 
-   return NULL;
 
- }
 
- //=== TRemoteDirectory ------------------------------------------------------
 
- __fastcall TRemoteDirectory::TRemoteDirectory(TTerminal * aTerminal, TRemoteDirectory * Template) :
 
-   TRemoteFileList(), FTerminal(aTerminal)
 
- {
 
-   FThisDirectory = NULL;
 
-   FParentDirectory = NULL;
 
-   if (Template == NULL)
 
-   {
 
-     FIncludeThisDirectory = false;
 
-     FIncludeParentDirectory = true;
 
-   }
 
-   else
 
-   {
 
-     FIncludeThisDirectory = Template->FIncludeThisDirectory;
 
-     FIncludeParentDirectory = Template->FIncludeParentDirectory;
 
-   }
 
- }
 
- //---------------------------------------------------------------------------
 
- __fastcall TRemoteDirectory::~TRemoteDirectory()
 
- {
 
-   ReleaseRelativeDirectories();
 
- }
 
- //---------------------------------------------------------------------------
 
- void __fastcall TRemoteDirectory::ReleaseRelativeDirectories()
 
- {
 
-   if ((ThisDirectory != NULL) && !IncludeThisDirectory)
 
-   {
 
-     delete FThisDirectory;
 
-     FThisDirectory = NULL;
 
-   }
 
-   if ((ParentDirectory != NULL) && !IncludeParentDirectory)
 
-   {
 
-     delete FParentDirectory;
 
-     FParentDirectory = NULL;
 
-   }
 
- }
 
- //---------------------------------------------------------------------------
 
- void __fastcall TRemoteDirectory::Reset()
 
- {
 
-   ReleaseRelativeDirectories();
 
-   TRemoteFileList::Reset();
 
- }
 
- //---------------------------------------------------------------------------
 
- void __fastcall TRemoteDirectory::SetDirectory(UnicodeString value)
 
- {
 
-   TRemoteFileList::SetDirectory(value);
 
- }
 
- //---------------------------------------------------------------------------
 
- void __fastcall TRemoteDirectory::AddFile(TRemoteFile * File)
 
- {
 
-   if (File->IsThisDirectory) FThisDirectory = File;
 
-   if (File->IsParentDirectory) FParentDirectory = File;
 
-   if ((!File->IsThisDirectory || IncludeThisDirectory) &&
 
-       (!File->IsParentDirectory || IncludeParentDirectory))
 
-   {
 
-     TRemoteFileList::AddFile(File);
 
-   }
 
-   File->Terminal = Terminal;
 
- }
 
- //---------------------------------------------------------------------------
 
- void __fastcall TRemoteDirectory::DuplicateTo(TRemoteFileList * Copy)
 
- {
 
-   TRemoteFileList::DuplicateTo(Copy);
 
-   if (ThisDirectory && !IncludeThisDirectory)
 
-   {
 
-     Copy->AddFile(ThisDirectory->Duplicate(false));
 
-   }
 
-   if (ParentDirectory && !IncludeParentDirectory)
 
-   {
 
-     Copy->AddFile(ParentDirectory->Duplicate(false));
 
-   }
 
- }
 
- //---------------------------------------------------------------------------
 
- bool __fastcall TRemoteDirectory::GetLoaded()
 
- {
 
-   return ((Terminal != NULL) && Terminal->Active && !Directory.IsEmpty());
 
- }
 
- //---------------------------------------------------------------------------
 
- void __fastcall TRemoteDirectory::SetIncludeParentDirectory(Boolean value)
 
- {
 
-   if (IncludeParentDirectory != value)
 
-   {
 
-     FIncludeParentDirectory = value;
 
-     if (value && ParentDirectory)
 
-     {
 
-       DebugAssert(IndexOf(ParentDirectory) < 0);
 
-       Add(ParentDirectory);
 
-     }
 
-     else if (!value && ParentDirectory)
 
-     {
 
-       DebugAssert(IndexOf(ParentDirectory) >= 0);
 
-       Extract(ParentDirectory);
 
-     }
 
-   }
 
- }
 
- //---------------------------------------------------------------------------
 
- void __fastcall TRemoteDirectory::SetIncludeThisDirectory(Boolean value)
 
- {
 
-   if (IncludeThisDirectory != value)
 
-   {
 
-     FIncludeThisDirectory = value;
 
-     if (value && ThisDirectory)
 
-     {
 
-       DebugAssert(IndexOf(ThisDirectory) < 0);
 
-       Add(ThisDirectory);
 
-     }
 
-     else if (!value && ThisDirectory)
 
-     {
 
-       DebugAssert(IndexOf(ThisDirectory) >= 0);
 
-       Extract(ThisDirectory);
 
-     }
 
-   }
 
- }
 
- //===========================================================================
 
- __fastcall TRemoteDirectoryCache::TRemoteDirectoryCache(): TStringList()
 
- {
 
-   FSection = new TCriticalSection();
 
-   Sorted = true;
 
-   Duplicates = Types::dupError;
 
-   CaseSensitive = true;
 
- }
 
- //---------------------------------------------------------------------------
 
- __fastcall TRemoteDirectoryCache::~TRemoteDirectoryCache()
 
- {
 
-   Clear();
 
-   delete FSection;
 
- }
 
- //---------------------------------------------------------------------------
 
- void __fastcall TRemoteDirectoryCache::Clear()
 
- {
 
-   TGuard Guard(FSection);
 
-   try
 
-   {
 
-     for (int Index = 0; Index < Count; Index++)
 
-     {
 
-       delete (TRemoteFileList *)Objects[Index];
 
-       Objects[Index] = NULL;
 
-     }
 
-   }
 
-   __finally
 
-   {
 
-     TStringList::Clear();
 
-   }
 
- }
 
- //---------------------------------------------------------------------------
 
- bool __fastcall TRemoteDirectoryCache::GetIsEmpty() const
 
- {
 
-   TGuard Guard(FSection);
 
-   return (const_cast<TRemoteDirectoryCache*>(this)->Count == 0);
 
- }
 
- //---------------------------------------------------------------------------
 
- bool __fastcall TRemoteDirectoryCache::HasFileList(const UnicodeString Directory)
 
- {
 
-   TGuard Guard(FSection);
 
-   int Index = IndexOf(UnixExcludeTrailingBackslash(Directory));
 
-   return (Index >= 0);
 
- }
 
- //---------------------------------------------------------------------------
 
- bool __fastcall TRemoteDirectoryCache::HasNewerFileList(const UnicodeString Directory,
 
-   TDateTime Timestamp)
 
- {
 
-   TGuard Guard(FSection);
 
-   int Index = IndexOf(UnixExcludeTrailingBackslash(Directory));
 
-   if (Index >= 0)
 
-   {
 
-     TRemoteFileList * FileList = dynamic_cast<TRemoteFileList *>(Objects[Index]);
 
-     if (FileList->Timestamp <= Timestamp)
 
-     {
 
-       Index = -1;
 
-     }
 
-   }
 
-   return (Index >= 0);
 
- }
 
- //---------------------------------------------------------------------------
 
- bool __fastcall TRemoteDirectoryCache::GetFileList(const UnicodeString Directory,
 
-   TRemoteFileList * FileList)
 
- {
 
-   TGuard Guard(FSection);
 
-   int Index = IndexOf(UnixExcludeTrailingBackslash(Directory));
 
-   bool Result = (Index >= 0);
 
-   if (Result)
 
-   {
 
-     DebugAssert(Objects[Index] != NULL);
 
-     dynamic_cast<TRemoteFileList *>(Objects[Index])->DuplicateTo(FileList);
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- void __fastcall TRemoteDirectoryCache::AddFileList(TRemoteFileList * FileList)
 
- {
 
-   DebugAssert(FileList);
 
-   TRemoteFileList * Copy = new TRemoteFileList();
 
-   FileList->DuplicateTo(Copy);
 
-   {
 
-     TGuard Guard(FSection);
 
-     // file list cannot be cached already with only one thread, but it can be
 
-     // when directory is loaded by secondary terminal
 
-     DoClearFileList(FileList->Directory, false);
 
-     AddObject(Copy->Directory, Copy);
 
-   }
 
- }
 
- //---------------------------------------------------------------------------
 
- void __fastcall TRemoteDirectoryCache::ClearFileList(UnicodeString Directory, bool SubDirs)
 
- {
 
-   TGuard Guard(FSection);
 
-   DoClearFileList(Directory, SubDirs);
 
- }
 
- //---------------------------------------------------------------------------
 
- void __fastcall TRemoteDirectoryCache::DoClearFileList(UnicodeString Directory, bool SubDirs)
 
- {
 
-   Directory = UnixExcludeTrailingBackslash(Directory);
 
-   int Index = IndexOf(Directory);
 
-   if (Index >= 0)
 
-   {
 
-     Delete(Index);
 
-   }
 
-   if (SubDirs)
 
-   {
 
-     UnicodeString DirectoryWithSlash = UnixIncludeTrailingBackslash(Directory); // optimization
 
-     Index = Count-1;
 
-     while (Index >= 0)
 
-     {
 
-       if (UnixIsChildPath(DirectoryWithSlash, Strings[Index]))
 
-       {
 
-         Delete(Index);
 
-       }
 
-       Index--;
 
-     }
 
-   }
 
- }
 
- //---------------------------------------------------------------------------
 
- void __fastcall TRemoteDirectoryCache::Delete(int Index)
 
- {
 
-   delete dynamic_cast<TRemoteFileList *>(Objects[Index]);
 
-   TStringList::Delete(Index);
 
- }
 
- //---------------------------------------------------------------------------
 
- //---------------------------------------------------------------------------
 
- __fastcall TRemoteDirectoryChangesCache::TRemoteDirectoryChangesCache(int MaxSize) :
 
-   TStringList(),
 
-   FMaxSize(MaxSize)
 
- {
 
-   CaseSensitive = true;
 
- }
 
- //---------------------------------------------------------------------------
 
- void __fastcall TRemoteDirectoryChangesCache::Clear()
 
- {
 
-   TStringList::Clear();
 
- }
 
- //---------------------------------------------------------------------------
 
- bool __fastcall TRemoteDirectoryChangesCache::GetIsEmpty() const
 
- {
 
-   return (const_cast<TRemoteDirectoryChangesCache*>(this)->Count == 0);
 
- }
 
- //---------------------------------------------------------------------------
 
- void __fastcall TRemoteDirectoryChangesCache::SetValue(const UnicodeString & Name,
 
-   const UnicodeString & Value)
 
- {
 
-   int Index = IndexOfName(Name);
 
-   if (Index > 0)
 
-   {
 
-     Delete(Index);
 
-   }
 
-   Values[Name] = Value;
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall TRemoteDirectoryChangesCache::GetValue(const UnicodeString & Name)
 
- {
 
-   UnicodeString Value = Values[Name];
 
-   SetValue(Name, Value);
 
-   return Value;
 
- }
 
- //---------------------------------------------------------------------------
 
- void __fastcall TRemoteDirectoryChangesCache::AddDirectoryChange(
 
-   const UnicodeString SourceDir, const UnicodeString Change,
 
-   const UnicodeString TargetDir)
 
- {
 
-   DebugAssert(!TargetDir.IsEmpty());
 
-   SetValue(TargetDir, L"//");
 
-   if (TTerminal::ExpandFileName(Change, SourceDir) != TargetDir)
 
-   {
 
-     UnicodeString Key;
 
-     if (DirectoryChangeKey(SourceDir, Change, Key))
 
-     {
 
-       SetValue(Key, TargetDir);
 
-     }
 
-   }
 
- }
 
- //---------------------------------------------------------------------------
 
- void __fastcall TRemoteDirectoryChangesCache::ClearDirectoryChange(
 
-   UnicodeString SourceDir)
 
- {
 
-   for (int Index = 0; Index < Count; Index++)
 
-   {
 
-     if (Names[Index].SubString(1, SourceDir.Length()) == SourceDir)
 
-     {
 
-       Delete(Index);
 
-       Index--;
 
-     }
 
-   }
 
- }
 
- //---------------------------------------------------------------------------
 
- void __fastcall TRemoteDirectoryChangesCache::ClearDirectoryChangeTarget(
 
-   UnicodeString TargetDir)
 
- {
 
-   UnicodeString Key;
 
-   // hack to clear at least local sym-link change in case symlink is deleted
 
-   DirectoryChangeKey(UnixExcludeTrailingBackslash(UnixExtractFilePath(TargetDir)),
 
-     UnixExtractFileName(TargetDir), Key);
 
-   for (int Index = 0; Index < Count; Index++)
 
-   {
 
-     UnicodeString Name = Names[Index];
 
-     if ((Name.SubString(1, TargetDir.Length()) == TargetDir) ||
 
-         (Values[Name].SubString(1, TargetDir.Length()) == TargetDir) ||
 
-         (!Key.IsEmpty() && (Name == Key)))
 
-     {
 
-       Delete(Index);
 
-       Index--;
 
-     }
 
-   }
 
- }
 
- //---------------------------------------------------------------------------
 
- bool __fastcall TRemoteDirectoryChangesCache::GetDirectoryChange(
 
-   const UnicodeString SourceDir, const UnicodeString Change, UnicodeString & TargetDir)
 
- {
 
-   UnicodeString Key;
 
-   bool Result;
 
-   Key = TTerminal::ExpandFileName(Change, SourceDir);
 
-   Result = (IndexOfName(Key) >= 0);
 
-   if (Result)
 
-   {
 
-     TargetDir = GetValue(Key);
 
-     // TargetDir is not "//" here only when Change is full path to symbolic link
 
-     if (TargetDir == L"//")
 
-     {
 
-       TargetDir = Key;
 
-     }
 
-   }
 
-   else
 
-   {
 
-     Result = DirectoryChangeKey(SourceDir, Change, Key);
 
-     if (Result)
 
-     {
 
-       UnicodeString Directory = GetValue(Key);
 
-       Result = !Directory.IsEmpty();
 
-       if (Result)
 
-       {
 
-         TargetDir = Directory;
 
-       }
 
-     }
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- void __fastcall TRemoteDirectoryChangesCache::Serialize(UnicodeString & Data)
 
- {
 
-   Data = L"A";
 
-   int ACount = Count;
 
-   if (ACount > FMaxSize)
 
-   {
 
-     TStrings * Limited = new TStringList();
 
-     try
 
-     {
 
-       int Index = ACount - FMaxSize;
 
-       while (Index < ACount)
 
-       {
 
-         Limited->Add(Strings[Index]);
 
-         Index++;
 
-       }
 
-       Data += Limited->Text;
 
-     }
 
-     __finally
 
-     {
 
-       delete Limited;
 
-     }
 
-   }
 
-   else
 
-   {
 
-     Data += Text;
 
-   }
 
- }
 
- //---------------------------------------------------------------------------
 
- void __fastcall TRemoteDirectoryChangesCache::Deserialize(const UnicodeString Data)
 
- {
 
-   if (Data.IsEmpty())
 
-   {
 
-     Text = L"";
 
-   }
 
-   else
 
-   {
 
-     Text = Data.c_str() + 1;
 
-   }
 
- }
 
- //---------------------------------------------------------------------------
 
- bool __fastcall TRemoteDirectoryChangesCache::DirectoryChangeKey(
 
-   const UnicodeString SourceDir, const UnicodeString Change, UnicodeString & Key)
 
- {
 
-   bool Result = !Change.IsEmpty();
 
-   if (Result)
 
-   {
 
-     bool Absolute = UnixIsAbsolutePath(Change);
 
-     Result = !SourceDir.IsEmpty() || Absolute;
 
-     if (Result)
 
-     {
 
-       // expanded from ?: to avoid memory leaks
 
-       if (Absolute)
 
-       {
 
-         Key = Change;
 
-       }
 
-       else
 
-       {
 
-         Key = SourceDir + L"," + Change;
 
-       }
 
-     }
 
-   }
 
-   return Result;
 
- }
 
- //=== TRights ---------------------------------------------------------------
 
- const wchar_t TRights::BasicSymbols[] = L"rwxrwxrwx";
 
- const wchar_t TRights::CombinedSymbols[] = L"--s--s--t";
 
- const wchar_t TRights::ExtendedSymbols[] = L"--S--S--T";
 
- const wchar_t TRights::ModeGroups[] = L"ugo";
 
- //---------------------------------------------------------------------------
 
- __fastcall TRights::TRights()
 
- {
 
-   FAllowUndef = false;
 
-   FSet = 0;
 
-   FUnset = 0;
 
-   Number = 0;
 
-   FUnknown = true;
 
- }
 
- //---------------------------------------------------------------------------
 
- __fastcall TRights::TRights(unsigned short ANumber)
 
- {
 
-   FAllowUndef = false;
 
-   FSet = 0;
 
-   FUnset = 0;
 
-   Number = ANumber;
 
- }
 
- //---------------------------------------------------------------------------
 
- __fastcall TRights::TRights(const TRights & Source)
 
- {
 
-   Assign(&Source);
 
- }
 
- //---------------------------------------------------------------------------
 
- //---------------------------------------------------------------------------
 
- void __fastcall TRights::Assign(const TRights * Source)
 
- {
 
-   FAllowUndef = Source->AllowUndef;
 
-   FSet = Source->FSet;
 
-   FUnset = Source->FUnset;
 
-   FText = Source->FText;
 
-   FUnknown = Source->FUnknown;
 
- }
 
- //---------------------------------------------------------------------------
 
- TRights::TRight TRights::CalculateRight(TRightGroup Group, TRightLevel Level)
 
- {
 
-   int Result;
 
-   if (Level == rlSpecial)
 
-   {
 
-     Result = rrUserIDExec + Group;
 
-   }
 
-   else
 
-   {
 
-     DebugAssert(rlRead == 0);
 
-     Result = rrUserRead + Level + (Group * 3);
 
-   }
 
-   return static_cast<TRight>(Result);
 
- }
 
- //---------------------------------------------------------------------------
 
- TRights::TFlag __fastcall TRights::RightToFlag(TRights::TRight Right)
 
- {
 
-   return static_cast<TFlag>(1 << (rrLast - Right));
 
- }
 
- //---------------------------------------------------------------------------
 
- TRights::TFlag TRights::CalculateFlag(TRightGroup Group, TRightLevel Level)
 
- {
 
-   return RightToFlag(CalculateRight(Group, Level));
 
- }
 
- //---------------------------------------------------------------------------
 
- unsigned short TRights::CalculatePermissions(TRightGroup Group, TRightLevel Level, TRightLevel Level2, TRightLevel Level3)
 
- {
 
-   unsigned int Permissions = CalculateFlag(Group, Level);
 
-   if (Level2 != rlNone)
 
-   {
 
-     Permissions |= CalculateFlag(Group, Level2);
 
-   }
 
-   if (Level3 != rlNone)
 
-   {
 
-     Permissions |= CalculateFlag(Group, Level3);
 
-   }
 
-   unsigned short Result = static_cast<unsigned short>(Permissions);
 
-   DebugAssert((Permissions - Result) == 0);
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- bool __fastcall TRights::operator ==(const TRights & rhr) const
 
- {
 
-   if (AllowUndef || rhr.AllowUndef)
 
-   {
 
-     for (int Right = rrFirst; Right <= rrLast; Right++)
 
-     {
 
-       if (RightUndef[static_cast<TRight>(Right)] !=
 
-             rhr.RightUndef[static_cast<TRight>(Right)])
 
-       {
 
-         return false;
 
-       }
 
-     }
 
-     return true;
 
-   }
 
-   else
 
-   {
 
-     return (Number == rhr.Number);
 
-   }
 
- }
 
- //---------------------------------------------------------------------------
 
- bool __fastcall TRights::operator ==(unsigned short rhr) const
 
- {
 
-   return (Number == rhr);
 
- }
 
- //---------------------------------------------------------------------------
 
- bool __fastcall TRights::operator !=(const TRights & rhr) const
 
- {
 
-   return !(*this == rhr);
 
- }
 
- //---------------------------------------------------------------------------
 
- TRights & __fastcall TRights::operator =(unsigned short rhr)
 
- {
 
-   Number = rhr;
 
-   return *this;
 
- }
 
- //---------------------------------------------------------------------------
 
- TRights & __fastcall TRights::operator =(const TRights & rhr)
 
- {
 
-   Assign(&rhr);
 
-   return *this;
 
- }
 
- //---------------------------------------------------------------------------
 
- TRights __fastcall TRights::operator ~() const
 
- {
 
-   TRights Result(static_cast<unsigned short>(~Number));
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- TRights __fastcall TRights::operator &(const TRights & rhr) const
 
- {
 
-   TRights Result(*this);
 
-   Result &= rhr;
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- TRights __fastcall TRights::operator &(unsigned short rhr) const
 
- {
 
-   TRights Result(*this);
 
-   Result &= rhr;
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- TRights & __fastcall TRights::operator &=(const TRights & rhr)
 
- {
 
-   if (AllowUndef || rhr.AllowUndef)
 
-   {
 
-     for (int Right = rrFirst; Right <= rrLast; Right++)
 
-     {
 
-       if (RightUndef[static_cast<TRight>(Right)] !=
 
-             rhr.RightUndef[static_cast<TRight>(Right)])
 
-       {
 
-         RightUndef[static_cast<TRight>(Right)] = rsUndef;
 
-       }
 
-     }
 
-   }
 
-   else
 
-   {
 
-     Number &= rhr.Number;
 
-   }
 
-   return *this;
 
- }
 
- //---------------------------------------------------------------------------
 
- TRights & __fastcall TRights::operator &=(unsigned short rhr)
 
- {
 
-   Number &= rhr;
 
-   return *this;
 
- }
 
- //---------------------------------------------------------------------------
 
- TRights __fastcall TRights::operator |(const TRights & rhr) const
 
- {
 
-   TRights Result(*this);
 
-   Result |= rhr;
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- TRights __fastcall TRights::operator |(unsigned short rhr) const
 
- {
 
-   TRights Result(*this);
 
-   Result |= rhr;
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- TRights & __fastcall TRights::operator |=(const TRights & rhr)
 
- {
 
-   Number |= rhr.Number;
 
-   return *this;
 
- }
 
- //---------------------------------------------------------------------------
 
- TRights & __fastcall TRights::operator |=(unsigned short rhr)
 
- {
 
-   Number |= rhr;
 
-   return *this;
 
- }
 
- //---------------------------------------------------------------------------
 
- void __fastcall TRights::SetAllowUndef(bool value)
 
- {
 
-   if (FAllowUndef != value)
 
-   {
 
-     DebugAssert(!value || ((FSet | FUnset) == rfAllSpecials));
 
-     FAllowUndef = value;
 
-   }
 
- }
 
- //---------------------------------------------------------------------------
 
- void __fastcall TRights::SetText(const UnicodeString & value)
 
- {
 
-   if (value != Text)
 
-   {
 
-     if ((value.Length() != TextLen) ||
 
-         (!AllowUndef && (value.Pos(UndefSymbol) > 0)) ||
 
-         (value.Pos(L" ") > 0))
 
-     {
 
-       throw Exception(FMTLOAD(RIGHTS_ERROR, (value)));
 
-     }
 
-     FSet = 0;
 
-     FUnset = 0;
 
-     int Flag = 00001;
 
-     int ExtendedFlag = 01000;
 
-     bool KeepText = false;
 
-     for (int i = TextLen; i >= 1; i--)
 
-     {
 
-       if ((value[i] == UnsetSymbol) || (value[i] == UnsetSymbolWin))
 
-       {
 
-         FUnset |= static_cast<unsigned short>(Flag | ExtendedFlag);
 
-       }
 
-       else if (value[i] == UndefSymbol)
 
-       {
 
-         // do nothing
 
-       }
 
-       else if (value[i] == CombinedSymbols[i - 1])
 
-       {
 
-         FSet |= static_cast<unsigned short>(Flag | ExtendedFlag);
 
-       }
 
-       else if (value[i] == ExtendedSymbols[i - 1])
 
-       {
 
-         FSet |= static_cast<unsigned short>(ExtendedFlag);
 
-         FUnset |= static_cast<unsigned short>(Flag);
 
-       }
 
-       else
 
-       {
 
-         if (value[i] != BasicSymbols[i - 1])
 
-         {
 
-           KeepText = true;
 
-         }
 
-         FSet |= static_cast<unsigned short>(Flag);
 
-         if (i % 3 == 0)
 
-         {
 
-           FUnset |= static_cast<unsigned short>(ExtendedFlag);
 
-         }
 
-       }
 
-       Flag <<= 1;
 
-       if (i % 3 == 1)
 
-       {
 
-         ExtendedFlag <<= 1;
 
-       }
 
-     }
 
-     FText = KeepText ? value : UnicodeString();
 
-   }
 
-   FUnknown = false;
 
- }
 
- //---------------------------------------------------------------------------
 
- void TRights::SetTextOverride(const UnicodeString & value)
 
- {
 
-   if (FText != value)
 
-   {
 
-     FText = value;
 
-     FUnknown = false;
 
-   }
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall TRights::GetText() const
 
- {
 
-   if (!FText.IsEmpty())
 
-   {
 
-     return FText;
 
-   }
 
-   else
 
-   {
 
-     UnicodeString Result;
 
-     Result.SetLength(TextLen);
 
-     int Flag = 00001;
 
-     int ExtendedFlag = 01000;
 
-     bool ExtendedPos = true;
 
-     wchar_t Symbol;
 
-     int i = TextLen;
 
-     while (i >= 1)
 
-     {
 
-       if (ExtendedPos &&
 
-           ((FSet & (Flag | ExtendedFlag)) == (Flag | ExtendedFlag)))
 
-       {
 
-         Symbol = CombinedSymbols[i - 1];
 
-       }
 
-       else if ((FSet & Flag) != 0)
 
-       {
 
-         Symbol = BasicSymbols[i - 1];
 
-       }
 
-       else if (ExtendedPos && ((FSet & ExtendedFlag) != 0))
 
-       {
 
-         Symbol = ExtendedSymbols[i - 1];
 
-       }
 
-       else if ((!ExtendedPos && ((FUnset & Flag) == Flag)) ||
 
-         (ExtendedPos && ((FUnset & (Flag | ExtendedFlag)) == (Flag | ExtendedFlag))))
 
-       {
 
-         Symbol = UnsetSymbol;
 
-       }
 
-       else
 
-       {
 
-         Symbol = UndefSymbol;
 
-       }
 
-       Result[i] = Symbol;
 
-       Flag <<= 1;
 
-       i--;
 
-       ExtendedPos = ((i % 3) == 0);
 
-       if (ExtendedPos)
 
-       {
 
-         ExtendedFlag <<= 1;
 
-       }
 
-     }
 
-     return Result;
 
-   }
 
- }
 
- //---------------------------------------------------------------------------
 
- void __fastcall TRights::SetOctal(UnicodeString value)
 
- {
 
-   UnicodeString AValue(value);
 
-   if (AValue.Length() == 3)
 
-   {
 
-     AValue = L"0" + AValue;
 
-   }
 
-   if (Octal != AValue)
 
-   {
 
-     bool Correct = (AValue.Length() == 4);
 
-     if (Correct)
 
-     {
 
-       for (int i = 1; (i <= AValue.Length()) && Correct; i++)
 
-       {
 
-         Correct = (AValue[i] >= L'0') && (AValue[i] <= L'7');
 
-       }
 
-     }
 
-     if (!Correct)
 
-     {
 
-       throw Exception(FMTLOAD(INVALID_OCTAL_PERMISSIONS, (value)));
 
-     }
 
-     Number = static_cast<unsigned short>(
 
-       ((AValue[1] - L'0') << 9) +
 
-       ((AValue[2] - L'0') << 6) +
 
-       ((AValue[3] - L'0') << 3) +
 
-       ((AValue[4] - L'0') << 0));
 
-     FText = L"";
 
-   }
 
-   FUnknown = false;
 
- }
 
- //---------------------------------------------------------------------------
 
- unsigned long __fastcall TRights::GetNumberDecadic() const
 
- {
 
-   unsigned long N = NumberSet; // used to be "Number"
 
-   unsigned long Result =
 
-       ((N & 07000) / 01000 * 1000) +
 
-       ((N & 00700) /  0100 *  100) +
 
-       ((N & 00070) /   010 *   10) +
 
-       ((N & 00007) /    01 *    1);
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall TRights::GetOctal() const
 
- {
 
-   UnicodeString Result;
 
-   unsigned short N = NumberSet; // used to be "Number"
 
-   Result.SetLength(4);
 
-   Result[1] = static_cast<wchar_t>(L'0' + ((N & 07000) >> 9));
 
-   Result[2] = static_cast<wchar_t>(L'0' + ((N & 00700) >> 6));
 
-   Result[3] = static_cast<wchar_t>(L'0' + ((N & 00070) >> 3));
 
-   Result[4] = static_cast<wchar_t>(L'0' + ((N & 00007) >> 0));
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- void __fastcall TRights::SetNumber(unsigned short value)
 
- {
 
-   if ((FSet != value) || ((FSet | FUnset) != rfAllSpecials))
 
-   {
 
-     FSet = value;
 
-     FUnset = static_cast<unsigned short>(rfAllSpecials & ~FSet);
 
-     FText = L"";
 
-   }
 
-   FUnknown = false;
 
- }
 
- //---------------------------------------------------------------------------
 
- unsigned short __fastcall TRights::GetNumber() const
 
- {
 
-   DebugAssert(!IsUndef);
 
-   return FSet;
 
- }
 
- //---------------------------------------------------------------------------
 
- void __fastcall TRights::SetRight(TRight Right, bool value)
 
- {
 
-   RightUndef[Right] = (value ? rsYes : rsNo);
 
- }
 
- //---------------------------------------------------------------------------
 
- bool __fastcall TRights::GetRight(TRight Right) const
 
- {
 
-   TState State = RightUndef[Right];
 
-   DebugAssert(State != rsUndef);
 
-   return (State == rsYes);
 
- }
 
- //---------------------------------------------------------------------------
 
- void __fastcall TRights::SetRightUndef(TRight Right, TState value)
 
- {
 
-   if (value != RightUndef[Right])
 
-   {
 
-     DebugAssert((value != rsUndef) || AllowUndef);
 
-     TFlag Flag = RightToFlag(Right);
 
-     switch (value)
 
-     {
 
-       case rsYes:
 
-         FSet |= static_cast<unsigned short>(Flag);
 
-         FUnset &= static_cast<unsigned short>(~Flag);
 
-         break;
 
-       case rsNo:
 
-         FSet &= static_cast<unsigned short>(~Flag);
 
-         FUnset |= static_cast<unsigned short>(Flag);
 
-         break;
 
-       case rsUndef:
 
-       default:
 
-         FSet &= static_cast<unsigned short>(~Flag);
 
-         FUnset &= static_cast<unsigned short>(~Flag);
 
-         break;
 
-     }
 
-     FText = L"";
 
-   }
 
-   FUnknown = false;
 
- }
 
- //---------------------------------------------------------------------------
 
- TRights::TState __fastcall TRights::GetRightUndef(TRight Right) const
 
- {
 
-   TFlag Flag = RightToFlag(Right);
 
-   TState Result;
 
-   if ((FSet & Flag) != 0)
 
-   {
 
-     Result = rsYes;
 
-   }
 
-   else if ((FUnset & Flag) != 0)
 
-   {
 
-     Result = rsNo;
 
-   }
 
-   else
 
-   {
 
-     Result = rsUndef;
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- void __fastcall TRights::SetReadOnly(bool value)
 
- {
 
-   Right[rrUserWrite] = !value;
 
-   Right[rrGroupWrite] = !value;
 
-   Right[rrOtherWrite] = !value;
 
- }
 
- //---------------------------------------------------------------------------
 
- bool  __fastcall TRights::GetReadOnly()
 
- {
 
-   return Right[rrUserWrite] && Right[rrGroupWrite] && Right[rrOtherWrite];
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall TRights::GetChmodStr(int Directory) const
 
- {
 
-   UnicodeString Result;
 
-   if (IsUndef)
 
-   {
 
-     Result = ModeStr;
 
-   }
 
-   else
 
-   {
 
-     Result = Octal;
 
-     if (Directory != 0) // unknown or folder
 
-     {
 
-       // New versions of coreutils need leading 5th zero to unset UID/GID for directories
 
-       Result = UnicodeString(L"0") + Result;
 
-     }
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall TRights::GetModeStr() const
 
- {
 
-   UnicodeString Result;
 
-   UnicodeString SetModeStr, UnsetModeStr;
 
-   TRight Right;
 
-   int Index;
 
-   for (int Group = 0; Group < 3; Group++)
 
-   {
 
-     SetModeStr = L"";
 
-     UnsetModeStr = L"";
 
-     for (int Mode = 0; Mode < 3; Mode++)
 
-     {
 
-       Index = (Group * 3) + Mode;
 
-       Right = static_cast<TRight>(rrUserRead + Index);
 
-       switch (RightUndef[Right])
 
-       {
 
-         case rsYes:
 
-           SetModeStr += BasicSymbols[Index];
 
-           break;
 
-         case rsNo:
 
-           UnsetModeStr += BasicSymbols[Index];
 
-           break;
 
-       }
 
-     }
 
-     Right = static_cast<TRight>(rrUserIDExec + Group);
 
-     Index = (Group * 3) + 2;
 
-     switch (RightUndef[Right])
 
-     {
 
-       case rsYes:
 
-         SetModeStr += CombinedSymbols[Index];
 
-         break;
 
-       case rsNo:
 
-         UnsetModeStr += CombinedSymbols[Index];
 
-         break;
 
-     }
 
-     if (!SetModeStr.IsEmpty() || !UnsetModeStr.IsEmpty())
 
-     {
 
-       if (!Result.IsEmpty())
 
-       {
 
-         Result += L',';
 
-       }
 
-       Result += ModeGroups[Group];
 
-       if (!SetModeStr.IsEmpty())
 
-       {
 
-         Result += L"+" + SetModeStr;
 
-       }
 
-       if (!UnsetModeStr.IsEmpty())
 
-       {
 
-         Result += L"-" + UnsetModeStr;
 
-       }
 
-     }
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- void __fastcall TRights::AddExecute()
 
- {
 
-   for (int Group = 0; Group < 3; Group++)
 
-   {
 
-     if ((RightUndef[static_cast<TRight>(rrUserRead + (Group * 3))] == rsYes) ||
 
-         (RightUndef[static_cast<TRight>(rrUserWrite + (Group * 3))] == rsYes))
 
-     {
 
-       Right[static_cast<TRight>(rrUserExec + (Group * 3))] = true;
 
-       FText = L"";
 
-     }
 
-   }
 
-   FUnknown = false;
 
- }
 
- //---------------------------------------------------------------------------
 
- void __fastcall TRights::AllUndef()
 
- {
 
-   if ((FSet != 0) || (FUnset != 0))
 
-   {
 
-     FSet = 0;
 
-     FUnset = 0;
 
-     FText = L"";
 
-   }
 
-   FUnknown = false;
 
- }
 
- //---------------------------------------------------------------------------
 
- bool __fastcall TRights::GetIsUndef() const
 
- {
 
-   return ((FSet | FUnset) != rfAllSpecials);
 
- }
 
- //---------------------------------------------------------------------------
 
- __fastcall TRights::operator unsigned short() const
 
- {
 
-   return Number;
 
- }
 
- //---------------------------------------------------------------------------
 
- __fastcall TRights::operator unsigned long() const
 
- {
 
-   return Number;
 
- }
 
- //---------------------------------------------------------------------------
 
- TRights TRights::Combine(const TRights & Other) const
 
- {
 
-   TRights Result = (*this);
 
-   Result |= Other.NumberSet;
 
-   Result &= (unsigned short)~Other.NumberUnset;
 
-   return Result;
 
- }
 
- //=== TRemoteProperties -------------------------------------------------------
 
- __fastcall TRemoteProperties::TRemoteProperties()
 
- {
 
-   Default();
 
- }
 
- //---------------------------------------------------------------------------
 
- __fastcall TRemoteProperties::TRemoteProperties(const TRemoteProperties & rhp) :
 
-   Valid(rhp.Valid),
 
-   Recursive(rhp.Recursive),
 
-   Rights(rhp.Rights),
 
-   AddXToDirectories(rhp.AddXToDirectories),
 
-   Group(rhp.Group),
 
-   Owner(rhp.Owner),
 
-   Modification(rhp.Modification),
 
-   LastAccess(rhp.Modification),
 
-   Encrypt(rhp.Encrypt)
 
- {
 
- }
 
- //---------------------------------------------------------------------------
 
- void __fastcall TRemoteProperties::Default()
 
- {
 
-   Valid.Clear();
 
-   AddXToDirectories = false;
 
-   Rights.AllowUndef = false;
 
-   Rights.Number = 0;
 
-   Group.Clear();
 
-   Owner.Clear();
 
-   Recursive = false;
 
-   Encrypt = false;
 
- }
 
- //---------------------------------------------------------------------------
 
- bool __fastcall TRemoteProperties::operator ==(const TRemoteProperties & rhp) const
 
- {
 
-   bool Result = (Valid == rhp.Valid && Recursive == rhp.Recursive);
 
-   if (Result)
 
-   {
 
-     if ((Valid.Contains(vpRights) &&
 
-           (Rights != rhp.Rights || AddXToDirectories != rhp.AddXToDirectories)) ||
 
-         (Valid.Contains(vpOwner) && (Owner != rhp.Owner)) ||
 
-         (Valid.Contains(vpGroup) && (Group != rhp.Group)) ||
 
-         (Valid.Contains(vpModification) && (Modification != rhp.Modification)) ||
 
-         (Valid.Contains(vpLastAccess) && (LastAccess != rhp.LastAccess)) ||
 
-         (Valid.Contains(vpEncrypt) && (Encrypt != rhp.Encrypt)))
 
-     {
 
-       Result = false;
 
-     }
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- bool __fastcall TRemoteProperties::operator !=(const TRemoteProperties & rhp) const
 
- {
 
-   return !(*this == rhp);
 
- }
 
- //---------------------------------------------------------------------------
 
- TRemoteProperties __fastcall TRemoteProperties::CommonProperties(TStrings * FileList)
 
- {
 
-   // TODO: Modification and LastAccess
 
-   TRemoteProperties CommonProperties;
 
-   for (int Index = 0; Index < FileList->Count; Index++)
 
-   {
 
-     TRemoteFile * File = (TRemoteFile *)(FileList->Objects[Index]);
 
-     DebugAssert(File);
 
-     if (!Index)
 
-     {
 
-       if (!File->Rights->Unknown)
 
-       {
 
-         CommonProperties.Rights = *(File->Rights);
 
-         // previously we allowed undef implicitly for directories,
 
-         // now we do it explicitly in properties dialog and only in combination
 
-         // with "recursive" option
 
-         CommonProperties.Rights.AllowUndef = File->Rights->IsUndef;
 
-         CommonProperties.Valid << vpRights;
 
-       }
 
-       if (File->Owner.IsSet)
 
-       {
 
-         CommonProperties.Owner = File->Owner;
 
-         CommonProperties.Valid << vpOwner;
 
-       }
 
-       if (File->Group.IsSet)
 
-       {
 
-         CommonProperties.Group = File->Group;
 
-         CommonProperties.Valid << vpGroup;
 
-       }
 
-     }
 
-     else
 
-     {
 
-       CommonProperties.Rights.AllowUndef = True;
 
-       CommonProperties.Rights &= *File->Rights;
 
-       if (CommonProperties.Owner != File->Owner)
 
-       {
 
-         CommonProperties.Owner.Clear();
 
-         CommonProperties.Valid >> vpOwner;
 
-       }
 
-       if (CommonProperties.Group != File->Group)
 
-       {
 
-         CommonProperties.Group.Clear();
 
-         CommonProperties.Valid >> vpGroup;
 
-       }
 
-     }
 
-   }
 
-   return CommonProperties;
 
- }
 
- //---------------------------------------------------------------------------
 
- TRemoteProperties __fastcall TRemoteProperties::ChangedProperties(
 
-   const TRemoteProperties & OriginalProperties, TRemoteProperties NewProperties)
 
- {
 
-   DebugAssert(!OriginalProperties.Valid.Contains(vpEncrypt));
 
-   // TODO: Modification and LastAccess
 
-   if (!NewProperties.Recursive)
 
-   {
 
-     if (NewProperties.Rights == OriginalProperties.Rights &&
 
-         !NewProperties.AddXToDirectories)
 
-     {
 
-       NewProperties.Valid >> vpRights;
 
-     }
 
-     if (NewProperties.Group == OriginalProperties.Group)
 
-     {
 
-       NewProperties.Valid >> vpGroup;
 
-     }
 
-     if (NewProperties.Owner == OriginalProperties.Owner)
 
-     {
 
-       NewProperties.Valid >> vpOwner;
 
-     }
 
-   }
 
-   return NewProperties;
 
- }
 
- //---------------------------------------------------------------------------
 
- void __fastcall TRemoteProperties::Load(THierarchicalStorage * Storage)
 
- {
 
-   unsigned char Buf[sizeof(Valid)];
 
-   if (static_cast<size_t>(Storage->ReadBinaryData(L"Valid", &Buf, sizeof(Buf))) == sizeof(Buf))
 
-   {
 
-     memmove(&Valid, Buf, sizeof(Valid));
 
-   }
 
-   if (Valid.Contains(vpRights))
 
-   {
 
-     Rights.Text = Storage->ReadString(L"Rights", Rights.Text);
 
-   }
 
-   // TODO
 
- }
 
- //---------------------------------------------------------------------------
 
- void __fastcall TRemoteProperties::Save(THierarchicalStorage * Storage) const
 
- {
 
-   Storage->WriteBinaryData(UnicodeString(L"Valid"),
 
-     static_cast<const void *>(&Valid), sizeof(Valid));
 
-   if (Valid.Contains(vpRights))
 
-   {
 
-     Storage->WriteString(L"Rights", Rights.Text);
 
-   }
 
-   // TODO
 
- }
 
- //---------------------------------------------------------------------------
 
- //---------------------------------------------------------------------------
 
- TSynchronizeChecklist::TItem::TItem() :
 
-   Action(saNone), IsDirectory(false), RemoteFile(NULL), Checked(true), ImageIndex(-1), FDirectoryHasSize(false)
 
- {
 
-   Local.ModificationFmt = mfFull;
 
-   Local.Modification = 0;
 
-   Local.Size = 0;
 
-   Remote.ModificationFmt = mfFull;
 
-   Remote.Modification = 0;
 
-   Remote.Size = 0;
 
- }
 
- //---------------------------------------------------------------------------
 
- TSynchronizeChecklist::TItem::~TItem()
 
- {
 
-   delete RemoteFile;
 
- }
 
- //---------------------------------------------------------------------------
 
- const UnicodeString& TSynchronizeChecklist::TItem::GetFileName() const
 
- {
 
-   if (!Remote.FileName.IsEmpty())
 
-   {
 
-     return Remote.FileName;
 
-   }
 
-   else
 
-   {
 
-     DebugAssert(!Local.FileName.IsEmpty());
 
-     return Local.FileName;
 
-   }
 
- }
 
- //---------------------------------------------------------------------------
 
- __int64 __fastcall TSynchronizeChecklist::TItem::GetSize() const
 
- {
 
-   return GetSize(Action);
 
- }
 
- //---------------------------------------------------------------------------
 
- __int64 __fastcall TSynchronizeChecklist::TItem::GetSize(TAction AAction) const
 
- {
 
-   if (IsItemSizeIrrelevant(AAction))
 
-   {
 
-     return 0;
 
-   }
 
-   else
 
-   {
 
-     switch (AAction)
 
-     {
 
-       case saUploadNew:
 
-       case saUploadUpdate:
 
-         return Local.Size;
 
-       case saDownloadNew:
 
-       case saDownloadUpdate:
 
-         return Remote.Size;
 
-       default:
 
-         DebugFail();
 
-         return 0;
 
-     }
 
-   }
 
- }
 
- //---------------------------------------------------------------------------
 
- //---------------------------------------------------------------------------
 
- TSynchronizeChecklist::TSynchronizeChecklist() :
 
-   FList(new TList())
 
- {
 
- }
 
- //---------------------------------------------------------------------------
 
- TSynchronizeChecklist::~TSynchronizeChecklist()
 
- {
 
-   for (int Index = 0; Index < FList->Count; Index++)
 
-   {
 
-     delete static_cast<TItem *>(FList->Items[Index]);
 
-   }
 
-   delete FList;
 
- }
 
- //---------------------------------------------------------------------------
 
- void TSynchronizeChecklist::Add(TItem * Item)
 
- {
 
-   FList->Add(Item);
 
- }
 
- //---------------------------------------------------------------------------
 
- int __fastcall TSynchronizeChecklist::Compare(void * AItem1, void * AItem2)
 
- {
 
-   TItem * Item1 = static_cast<TItem *>(AItem1);
 
-   TItem * Item2 = static_cast<TItem *>(AItem2);
 
-   int Result;
 
-   if (!Item1->Local.Directory.IsEmpty())
 
-   {
 
-     Result = AnsiCompareText(Item1->Local.Directory, Item2->Local.Directory);
 
-   }
 
-   else
 
-   {
 
-     DebugAssert(!Item1->Remote.Directory.IsEmpty());
 
-     Result = AnsiCompareText(Item1->Remote.Directory, Item2->Remote.Directory);
 
-   }
 
-   if (Result == 0)
 
-   {
 
-     Result = AnsiCompareText(Item1->GetFileName(), Item2->GetFileName());
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- void TSynchronizeChecklist::Sort()
 
- {
 
-   FList->Sort(Compare);
 
- }
 
- //---------------------------------------------------------------------------
 
- int TSynchronizeChecklist::GetCount() const
 
- {
 
-   return FList->Count;
 
- }
 
- //---------------------------------------------------------------------------
 
- int TSynchronizeChecklist::GetCheckedCount() const
 
- {
 
-   int Result = 0;
 
-   for (int Index = 0; (Index < Count); Index++)
 
-   {
 
-     if (Item[Index]->Checked)
 
-     {
 
-       Result++;
 
-     }
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- const TSynchronizeChecklist::TItem * TSynchronizeChecklist::GetItem(int Index) const
 
- {
 
-   return static_cast<TItem *>(FList->Items[Index]);
 
- }
 
- //---------------------------------------------------------------------------
 
- void __fastcall TSynchronizeChecklist::Update(const TItem * Item, bool Check, TAction Action)
 
- {
 
-   // TSynchronizeChecklist owns non-const items so it can manipulate them freely,
 
-   // const_cast here is just an optimization
 
-   TItem * MutableItem = const_cast<TItem *>(Item);
 
-   DebugAssert(FList->IndexOf(MutableItem) >= 0);
 
-   MutableItem->Checked = Check;
 
-   MutableItem->Action = Action;
 
- }
 
- //---------------------------------------------------------------------------
 
- void TSynchronizeChecklist::Delete(const TItem * Item)
 
- {
 
-   // See comment in Update()
 
-   TItem * MutableItem = const_cast<TItem *>(Item);
 
-   FList->Extract(MutableItem);
 
-   delete Item;
 
- }
 
- //---------------------------------------------------------------------------
 
- void __fastcall TSynchronizeChecklist::UpdateDirectorySize(const TItem * Item, __int64 Size)
 
- {
 
-   // See comment in Update
 
-   TItem * MutableItem = const_cast<TItem *>(Item);
 
-   DebugAssert(FList->IndexOf(MutableItem) >= 0);
 
-   if (DebugAlwaysTrue(Item->IsDirectory))
 
-   {
 
-     MutableItem->FDirectoryHasSize = true;
 
-     if (Item->IsRemoteOnly())
 
-     {
 
-       MutableItem->Remote.Size = Size;
 
-     }
 
-     else if (Item->IsLocalOnly())
 
-     {
 
-       MutableItem->Local.Size = Size;
 
-     }
 
-     else
 
-     {
 
-       // "update" actions are not relevant for directories
 
-       DebugFail();
 
-     }
 
-   }
 
- }
 
- //---------------------------------------------------------------------------
 
- TSynchronizeChecklist::TAction __fastcall TSynchronizeChecklist::Reverse(TSynchronizeChecklist::TAction Action)
 
- {
 
-   switch (Action)
 
-   {
 
-     case saUploadNew:
 
-       return saDeleteLocal;
 
-     case saDownloadNew:
 
-       return saDeleteRemote;
 
-     case saUploadUpdate:
 
-       return saDownloadUpdate;
 
-     case saDownloadUpdate:
 
-       return saUploadUpdate;
 
-     case saDeleteRemote:
 
-       return saDownloadNew;
 
-     case saDeleteLocal:
 
-       return saUploadNew;
 
-     default:
 
-     case saNone:
 
-       DebugFail();
 
-       return saNone;
 
-   }
 
- }
 
- //---------------------------------------------------------------------------
 
- bool __fastcall TSynchronizeChecklist::IsItemSizeIrrelevant(TAction Action)
 
- {
 
-   switch (Action)
 
-   {
 
-     case saNone:
 
-     case saDeleteRemote:
 
-     case saDeleteLocal:
 
-       return true;
 
-     default:
 
-       return false;
 
-   }
 
- }
 
- //---------------------------------------------------------------------------
 
- //---------------------------------------------------------------------------
 
- TSynchronizeProgress::TSynchronizeProgress(const TSynchronizeChecklist * Checklist)
 
- {
 
-   FTotalSize = -1;
 
-   FProcessedSize = 0;
 
-   FChecklist = Checklist;
 
- }
 
- //---------------------------------------------------------------------------
 
- __int64 TSynchronizeProgress::ItemSize(const TSynchronizeChecklist::TItem * ChecklistItem) const
 
- {
 
-   __int64 Result;
 
-   switch (ChecklistItem->Action)
 
-   {
 
-     case TSynchronizeChecklist::saDeleteRemote:
 
-     case TSynchronizeChecklist::saDeleteLocal:
 
-       Result = ChecklistItem->IsDirectory ? 1024*1024 : 100*1024;
 
-       break;
 
-     default:
 
-       if (ChecklistItem->HasSize())
 
-       {
 
-         Result = ChecklistItem->GetSize();
 
-       }
 
-       else
 
-       {
 
-         DebugAssert(ChecklistItem->IsDirectory);
 
-         Result = 1024*1024;
 
-       }
 
-       break;
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- void TSynchronizeProgress::ItemProcessed(const TSynchronizeChecklist::TItem * ChecklistItem)
 
- {
 
-   FProcessedSize += ItemSize(ChecklistItem);
 
- }
 
- //---------------------------------------------------------------------------
 
- __int64 TSynchronizeProgress::GetProcessed(const TFileOperationProgressType * CurrentItemOperationProgress) const
 
- {
 
-   DebugAssert(!TFileOperationProgressType::IsIndeterminateOperation(CurrentItemOperationProgress->Operation));
 
-   // Need to calculate the total size on the first call only,
 
-   // as at the time the constructor it called, we usually do not have sizes of folders caculated yet.
 
-   if (FTotalSize < 0)
 
-   {
 
-     FTotalSize = 0;
 
-     for (int Index = 0; Index < FChecklist->Count; Index++)
 
-     {
 
-       const TSynchronizeChecklist::TItem * ChecklistItem = FChecklist->Item[Index];
 
-       if (ChecklistItem->Checked)
 
-       {
 
-         FTotalSize += ItemSize(ChecklistItem);
 
-       }
 
-     }
 
-   }
 
-   // For (single-item-)delete operation, this should return 0
 
-   __int64 CurrentItemProcessedSize = CurrentItemOperationProgress->OperationTransferred;
 
-   return (FProcessedSize + CurrentItemProcessedSize);
 
- }
 
- //---------------------------------------------------------------------------
 
- int TSynchronizeProgress::Progress(const TFileOperationProgressType * CurrentItemOperationProgress) const
 
- {
 
-   int Result;
 
-   if (TFileOperationProgressType::IsIndeterminateOperation(CurrentItemOperationProgress->Operation))
 
-   {
 
-     Result = -1;
 
-   }
 
-   else
 
-   {
 
-     __int64 Processed = GetProcessed(CurrentItemOperationProgress);
 
-     if (FTotalSize > 0)
 
-     {
 
-       Result = (Processed * 100) / FTotalSize;
 
-     }
 
-     else
 
-     {
 
-       Result = 0;
 
-     }
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- TDateTime TSynchronizeProgress::TimeLeft(const TFileOperationProgressType * CurrentItemOperationProgress) const
 
- {
 
-   TDateTime Result;
 
-   __int64 Processed = GetProcessed(CurrentItemOperationProgress);
 
-   if (Processed > 0)
 
-   {
 
-     Result = TDateTime(double(Now() - CurrentItemOperationProgress->StartTime) / Processed * (FTotalSize - Processed));
 
-   }
 
-   return Result;
 
- }
 
 
  |