| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574 | //---------------------------------------------------------------------------#include <vcl.h>#pragma hdrstop#include <stdio.h>#include <lmcons.h>#define SECURITY_WIN32#include <sspi.h>#include <secext.h>#include "Common.h"#include "SessionInfo.h"#include "Exceptions.h"#include "TextsCore.h"#include "CoreMain.h"#include "Script.h"//---------------------------------------------------------------------------#pragma package(smart_init)//---------------------------------------------------------------------------UnicodeString __fastcall DoXmlEscape(UnicodeString Str, bool NewLine){  for (int i = 1; i <= Str.Length(); i++)  {    const wchar_t * Repl = NULL;    switch (Str[i])    {      case L'&':        Repl = L"amp;";        break;      case L'>':        Repl = L"gt;";        break;      case L'<':        Repl = L"lt;";        break;      case L'"':        Repl = L"quot;";        break;      case L'\n':        if (NewLine)        {          Repl = L"#10;";        }        break;      case L'\r':        Str.Delete(i, 1);        i--;        break;    }    if (Repl != NULL)    {      Str[i] = L'&';      Str.Insert(Repl, i + 1);      i += wcslen(Repl);    }  }  return Str;}//---------------------------------------------------------------------------UnicodeString __fastcall XmlEscape(UnicodeString Str){  return DoXmlEscape(Str, false);}//---------------------------------------------------------------------------UnicodeString __fastcall XmlAttributeEscape(UnicodeString Str){  return DoXmlEscape(Str, true);}//---------------------------------------------------------------------------//---------------------------------------------------------------------------#pragma warn -inlclass TSessionActionRecord{public:  __fastcall TSessionActionRecord(TActionLog * Log, TLogAction Action) :    FLog(Log),    FAction(Action),    FState(Opened),    FRecursive(false),    FErrorMessages(NULL),    FNames(new TStringList()),    FValues(new TStringList()),    FFileList(NULL),    FFile(NULL)  {    FLog->AddPendingAction(this);  }  __fastcall ~TSessionActionRecord()  {    delete FErrorMessages;    delete FNames;    delete FValues;    delete FFileList;    delete FFile;  }  void __fastcall Restart()  {    FState = Opened;    FRecursive = false;    delete FErrorMessages;    FErrorMessages = NULL;    delete FFileList;    FFileList = NULL;    delete FFile;    FFile = NULL;    FNames->Clear();    FValues->Clear();  }  bool __fastcall Record()  {    bool Result = (FState != Opened);    if (Result)    {      if (FLog->FLogging && (FState != Cancelled))      {        const wchar_t * Name = ActionName();        UnicodeString Attrs;        if (FRecursive)        {          Attrs = L" recursive=\"true\"";        }        FLog->AddIndented(FORMAT(L"<%s%s>", (Name,  Attrs)));        for (int Index = 0; Index < FNames->Count; Index++)        {          UnicodeString Value = FValues->Strings[Index];          if (Value.IsEmpty())          {            FLog->AddIndented(FORMAT(L"  <%s />", (FNames->Strings[Index])));          }          else          {            FLog->AddIndented(FORMAT(L"  <%s value=\"%s\" />",              (FNames->Strings[Index], XmlAttributeEscape(Value))));          }        }        if (FFileList != NULL)        {          FLog->AddIndented(L"  <files>");          for (int Index = 0; Index < FFileList->Count; Index++)          {            TRemoteFile * File = FFileList->Files[Index];            RecordFile(L"    ", File, true);          }          FLog->AddIndented(L"  </files>");        }        if (FFile != NULL)        {          RecordFile(L"  ", FFile, false);        }        if (FState == RolledBack)        {          if (FErrorMessages != NULL)          {            FLog->AddIndented(L"  <result success=\"false\">");            FLog->AddMessages(L"    ", FErrorMessages);            FLog->AddIndented(L"  </result>");          }          else          {            FLog->AddIndented(L"  <result success=\"false\" />");          }        }        else        {          FLog->AddIndented(L"  <result success=\"true\" />");        }        FLog->AddIndented(FORMAT(L"</%s>", (Name)));      }      delete this;    }    return Result;  }  void __fastcall Commit()  {    Close(Committed);  }  void __fastcall Rollback(Exception * E)  {    DebugAssert(FErrorMessages == NULL);    FErrorMessages = ExceptionToMoreMessages(E);    Close(RolledBack);  }  void __fastcall Cancel()  {    Close(Cancelled);  }  void __fastcall FileName(const UnicodeString & FileName)  {    Parameter(L"filename", FileName);  }  void __fastcall Destination(const UnicodeString & Destination)  {    Parameter(L"destination", Destination);  }  void __fastcall Rights(const TRights & Rights)  {    Parameter(L"permissions", Rights.Text);  }  void __fastcall Modification(const TDateTime & DateTime)  {    Parameter(L"modification", StandardTimestamp(DateTime));  }  void __fastcall Recursive()  {    FRecursive = true;  }  void __fastcall Command(const UnicodeString & Command)  {    Parameter(L"command", Command);  }  void __fastcall AddOutput(UnicodeString Output, bool StdError)  {    const wchar_t * Name = (StdError ? L"erroroutput" : L"output");    int Index = FNames->IndexOf(Name);    if (Index >= 0)    {      FValues->Strings[Index] = FValues->Strings[Index] + L"\r\n" + Output;    }    else    {      Parameter(Name, Output);    }  }  void __fastcall ExitCode(int ExitCode)  {    Parameter(L"exitcode", IntToStr(ExitCode));  }  void __fastcall Checksum(const UnicodeString & Alg, const UnicodeString & Checksum)  {    Parameter(L"algorithm", Alg);    Parameter(L"checksum", Checksum);  }  void __fastcall Cwd(const UnicodeString & Path)  {    Parameter(L"cwd", Path);  }  void __fastcall FileList(TRemoteFileList * FileList)  {    if (FFileList == NULL)    {      FFileList = new TRemoteFileList();    }    FileList->DuplicateTo(FFileList);  }  void __fastcall File(TRemoteFile * File)  {    if (FFile != NULL)    {      delete FFile;    }    FFile = File->Duplicate(true);  }protected:  enum TState { Opened, Committed, RolledBack, Cancelled };  inline void __fastcall Close(TState State)  {    DebugAssert(FState == Opened);    FState = State;    FLog->RecordPendingActions();  }  const wchar_t * __fastcall ActionName()  {    switch (FAction)    {      case laUpload: return L"upload";      case laDownload: return L"download";      case laTouch: return L"touch";      case laChmod: return L"chmod";      case laMkdir: return L"mkdir";      case laRm: return L"rm";      case laMv: return L"mv";      case laCp: return L"cp";      case laCall: return L"call";      case laLs: return L"ls";      case laStat: return L"stat";      case laChecksum: return L"checksum";      case laCwd: return L"cwd";      default: DebugFail(); return L"";    }  }  void __fastcall Parameter(const UnicodeString & Name, const UnicodeString & Value = L"")  {    FNames->Add(Name);    FValues->Add(Value);  }  void __fastcall RecordFile(const UnicodeString & Indent, TRemoteFile * File, bool IncludeFileName)  {    FLog->AddIndented(Indent + L"<file>");    FLog->AddIndented(Indent + FORMAT(L"  <filename value=\"%s\" />", (XmlAttributeEscape(File->FileName))));    FLog->AddIndented(Indent + FORMAT(L"  <type value=\"%s\" />", (XmlAttributeEscape(File->Type))));    if (!File->IsDirectory)    {      FLog->AddIndented(Indent + FORMAT(L"  <size value=\"%s\" />", (IntToStr(File->Size))));    }    if (File->ModificationFmt != mfNone)    {      FLog->AddIndented(Indent + FORMAT(L"  <modification value=\"%s\" />", (StandardTimestamp(File->Modification))));    }    if (!File->Rights->Unknown)    {      FLog->AddIndented(Indent + FORMAT(L"  <permissions value=\"%s\" />", (XmlAttributeEscape(File->Rights->Text))));    }    if (File->Owner.IsSet)    {      FLog->AddIndented(Indent + FORMAT(L"  <owner value=\"%s\" />", (XmlAttributeEscape(File->Owner.DisplayText))));    }    if (File->Group.IsSet)    {      FLog->AddIndented(Indent + FORMAT(L"  <group value=\"%s\" />", (XmlAttributeEscape(File->Group.DisplayText))));    }    FLog->AddIndented(Indent + L"</file>");  }private:  TActionLog * FLog;  TLogAction FAction;  TState FState;  bool FRecursive;  TStrings * FErrorMessages;  TStrings * FNames;  TStrings * FValues;  TRemoteFileList * FFileList;  TRemoteFile * FFile;};#pragma warn .inl//---------------------------------------------------------------------------//---------------------------------------------------------------------------__fastcall TSessionAction::TSessionAction(TActionLog * Log, TLogAction Action){  if (Log->FLogging)  {    FRecord = new TSessionActionRecord(Log, Action);  }  else  {    FRecord = NULL;  }}//---------------------------------------------------------------------------__fastcall TSessionAction::~TSessionAction(){  if (FRecord != NULL)  {    Commit();  }}//---------------------------------------------------------------------------void __fastcall TSessionAction::Restart(){  if (FRecord != NULL)  {    FRecord->Restart();  }}//---------------------------------------------------------------------------void __fastcall TSessionAction::Commit(){  if (FRecord != NULL)  {    TSessionActionRecord * Record = FRecord;    FRecord = NULL;    Record->Commit();  }}//---------------------------------------------------------------------------void __fastcall TSessionAction::Rollback(Exception * E){  if (FRecord != NULL)  {    TSessionActionRecord * Record = FRecord;    FRecord = NULL;    Record->Rollback(E);  }}//---------------------------------------------------------------------------void __fastcall TSessionAction::Cancel(){  if (FRecord != NULL)  {    TSessionActionRecord * Record = FRecord;    FRecord = NULL;    Record->Cancel();  }}//---------------------------------------------------------------------------//---------------------------------------------------------------------------__fastcall TFileSessionAction::TFileSessionAction(TActionLog * Log, TLogAction Action) :  TSessionAction(Log, Action){}//---------------------------------------------------------------------------__fastcall TFileSessionAction::TFileSessionAction(    TActionLog * Log, TLogAction Action, const UnicodeString & AFileName) :  TSessionAction(Log, Action){  FileName(AFileName);}//---------------------------------------------------------------------------void __fastcall TFileSessionAction::FileName(const UnicodeString & FileName){  if (FRecord != NULL)  {    FRecord->FileName(FileName);  }}//---------------------------------------------------------------------------//---------------------------------------------------------------------------__fastcall TFileLocationSessionAction::TFileLocationSessionAction(    TActionLog * Log, TLogAction Action) :  TFileSessionAction(Log, Action){}//---------------------------------------------------------------------------__fastcall TFileLocationSessionAction::TFileLocationSessionAction(    TActionLog * Log, TLogAction Action, const UnicodeString & FileName) :  TFileSessionAction(Log, Action, FileName){}//---------------------------------------------------------------------------void __fastcall TFileLocationSessionAction::Destination(const UnicodeString & Destination){  if (FRecord != NULL)  {    FRecord->Destination(Destination);  }}//---------------------------------------------------------------------------//---------------------------------------------------------------------------__fastcall TUploadSessionAction::TUploadSessionAction(TActionLog * Log) :  TFileLocationSessionAction(Log, laUpload){}//---------------------------------------------------------------------------//---------------------------------------------------------------------------__fastcall TDownloadSessionAction::TDownloadSessionAction(TActionLog * Log) :  TFileLocationSessionAction(Log, laDownload){}//---------------------------------------------------------------------------//---------------------------------------------------------------------------__fastcall TChmodSessionAction::TChmodSessionAction(    TActionLog * Log, const UnicodeString & FileName) :  TFileSessionAction(Log, laChmod, FileName){}//---------------------------------------------------------------------------void __fastcall TChmodSessionAction::Recursive(){  if (FRecord != NULL)  {    FRecord->Recursive();  }}//---------------------------------------------------------------------------__fastcall TChmodSessionAction::TChmodSessionAction(    TActionLog * Log, const UnicodeString & FileName, const TRights & ARights) :  TFileSessionAction(Log, laChmod, FileName){  Rights(ARights);}//---------------------------------------------------------------------------void __fastcall TChmodSessionAction::Rights(const TRights & Rights){  if (FRecord != NULL)  {    FRecord->Rights(Rights);  }}//---------------------------------------------------------------------------__fastcall TTouchSessionAction::TTouchSessionAction(    TActionLog * Log, const UnicodeString & FileName, const TDateTime & Modification) :  TFileSessionAction(Log, laTouch, FileName){  if (FRecord != NULL)  {    FRecord->Modification(Modification);  }}//---------------------------------------------------------------------------__fastcall TMkdirSessionAction::TMkdirSessionAction(    TActionLog * Log, const UnicodeString & FileName) :  TFileSessionAction(Log, laMkdir, FileName){}//---------------------------------------------------------------------------__fastcall TRmSessionAction::TRmSessionAction(    TActionLog * Log, const UnicodeString & FileName) :  TFileSessionAction(Log, laRm, FileName){}//---------------------------------------------------------------------------void __fastcall TRmSessionAction::Recursive(){  if (FRecord != NULL)  {    FRecord->Recursive();  }}//---------------------------------------------------------------------------__fastcall TMvSessionAction::TMvSessionAction(TActionLog * Log,    const UnicodeString & FileName, const UnicodeString & ADestination) :  TFileLocationSessionAction(Log, laMv, FileName){  Destination(ADestination);}//---------------------------------------------------------------------------__fastcall TCpSessionAction::TCpSessionAction(TActionLog * Log,    const UnicodeString & FileName, const UnicodeString & ADestination) :  TFileLocationSessionAction(Log, laCp, FileName){  Destination(ADestination);}//---------------------------------------------------------------------------__fastcall TCallSessionAction::TCallSessionAction(TActionLog * Log,    const UnicodeString & Command, const UnicodeString & Destination) :  TSessionAction(Log, laCall){  if (FRecord != NULL)  {    FRecord->Command(Command);    FRecord->Destination(Destination);  }}//---------------------------------------------------------------------------void __fastcall TCallSessionAction::AddOutput(const UnicodeString & Output, bool StdError){  if (FRecord != NULL)  {    FRecord->AddOutput(Output, StdError);  }}//---------------------------------------------------------------------------void __fastcall TCallSessionAction::ExitCode(int ExitCode){  if (FRecord != NULL)  {    FRecord->ExitCode(ExitCode);  }}//---------------------------------------------------------------------------__fastcall TLsSessionAction::TLsSessionAction(TActionLog * Log,    const UnicodeString & Destination) :  TSessionAction(Log, laLs){  if (FRecord != NULL)  {    FRecord->Destination(Destination);  }}//---------------------------------------------------------------------------void __fastcall TLsSessionAction::FileList(TRemoteFileList * FileList){  if (FRecord != NULL)  {    FRecord->FileList(FileList);  }}//---------------------------------------------------------------------------//---------------------------------------------------------------------------__fastcall TStatSessionAction::TStatSessionAction(TActionLog * Log, const UnicodeString & FileName) :  TFileSessionAction(Log, laStat, FileName){}//---------------------------------------------------------------------------void __fastcall TStatSessionAction::File(TRemoteFile * File){  if (FRecord != NULL)  {    FRecord->File(File);  }}//---------------------------------------------------------------------------//---------------------------------------------------------------------------__fastcall TChecksumSessionAction::TChecksumSessionAction(TActionLog * Log) :  TFileSessionAction(Log, laChecksum){}//---------------------------------------------------------------------------void __fastcall TChecksumSessionAction::Checksum(const UnicodeString & Alg, const UnicodeString & Checksum){  if (FRecord != NULL)  {    FRecord->Checksum(Alg, Checksum);  }}//---------------------------------------------------------------------------//---------------------------------------------------------------------------__fastcall TCwdSessionAction::TCwdSessionAction(TActionLog * Log, const UnicodeString & Path) :  TSessionAction(Log, laCwd){  if (FRecord != NULL)  {    FRecord->Cwd(Path);  }}//---------------------------------------------------------------------------//---------------------------------------------------------------------------TSessionInfo::TSessionInfo(){  LoginTime = Now();}//---------------------------------------------------------------------------TFileSystemInfo::TFileSystemInfo(){  memset(&IsCapable, false, sizeof(IsCapable));}//---------------------------------------------------------------------------//---------------------------------------------------------------------------FILE * __fastcall OpenFile(UnicodeString LogFileName, TDateTime Started, TSessionData * SessionData, bool Append, UnicodeString & NewFileName){  FILE * Result;  UnicodeString ANewFileName = GetExpandedLogFileName(LogFileName, Started, SessionData);  Result = _wfopen(ApiPath(ANewFileName).c_str(), (Append ? L"ab" : L"wb"));  if (Result != NULL)  {    setvbuf(Result, NULL, _IONBF, BUFSIZ);    NewFileName = ANewFileName;  }  else  {    throw ECRTExtException(FMTLOAD(LOG_OPENERROR, (ANewFileName)));  }  return Result;}//---------------------------------------------------------------------------//---------------------------------------------------------------------------const wchar_t *LogLineMarks = L"<>!.*";__fastcall TSessionLog::TSessionLog(TSessionUI* UI, TDateTime Started, TSessionData * SessionData,  TConfiguration * Configuration){  FCriticalSection = new TCriticalSection;  FLogging = false;  FConfiguration = Configuration;  FParent = NULL;  FUI = UI;  FSessionData = SessionData;  FStarted = Started;  FFile = NULL;  FCurrentLogFileName = L"";  FCurrentFileName = L"";  FClosed = false;}//---------------------------------------------------------------------------__fastcall TSessionLog::~TSessionLog(){  FClosed = true;  ReflectSettings();  DebugAssert(FFile == NULL);  delete FCriticalSection;}//---------------------------------------------------------------------------void __fastcall TSessionLog::SetParent(TSessionLog * Parent, const UnicodeString & Name){  FParent = Parent;  FName = Name;}//---------------------------------------------------------------------------void __fastcall TSessionLog::DoAddToParent(TLogLineType Type, const UnicodeString & Line){  DebugAssert(FParent != NULL);  FParent->Add(Type, Line);}//---------------------------------------------------------------------------void __fastcall TSessionLog::DoAddToSelf(TLogLineType Type, const UnicodeString & Line){  if (LogToFile())  {    if (FFile == NULL)    {      OpenLogFile();    }    if (FFile != NULL)    {      UnicodeString Timestamp = FormatDateTime(L" yyyy-mm-dd hh:nn:ss.zzz ", Now());      UTF8String UtfLine = UTF8String(UnicodeString(LogLineMarks[Type]) + Timestamp + Line + L"\r\n");      for (int Index = 1; Index <= UtfLine.Length(); Index++)      {        if ((UtfLine[Index] == '\n') &&            ((Index == 1) || (UtfLine[Index - 1] != '\r')))        {          UtfLine.Insert('\r', Index);        }      }      int Writting = UtfLine.Length();      CheckSize(Writting);      FCurrentFileSize += fwrite(UtfLine.c_str(), 1, Writting, (FILE *)FFile);    }  }}//---------------------------------------------------------------------------UnicodeString __fastcall TSessionLog::LogPartFileName(const UnicodeString & BaseName, int Index){  UnicodeString Result;  if (Index >= 1)  {    Result = FORMAT(L"%s.%d", (BaseName, Index));  }  else  {    Result = BaseName;  }  return Result;}//---------------------------------------------------------------------------void __fastcall TSessionLog::CheckSize(__int64 Addition){  __int64 MaxSize = FConfiguration->LogMaxSize;  if ((MaxSize > 0) && (FCurrentFileSize + Addition >= MaxSize))  {    // Before we close it    UnicodeString BaseName = FCurrentFileName;    CloseLogFile();    FCurrentFileSize = 0;    int Index = 0;    while (FileExists(LogPartFileName(BaseName, Index + 1)))    {      Index++;    }    int MaxCount = FConfiguration->LogMaxCount;    do    {      UnicodeString LogPart = LogPartFileName(BaseName, Index);      if ((MaxCount > 0) && (Index >= MaxCount))      {        DeleteFileChecked(LogPart);      }      else      {        THROWOSIFFALSE(RenameFile(LogPart, LogPartFileName(BaseName, Index + 1)));      }      Index--;    }    while (Index >= 0);    OpenLogFile();  }}//---------------------------------------------------------------------------void __fastcall TSessionLog::DoAdd(TLogLineType Type, UnicodeString Line,  void __fastcall (__closure *f)(TLogLineType Type, const UnicodeString & Line)){  UnicodeString Prefix;  if (!FName.IsEmpty())  {    Prefix = L"[" + FName + L"] ";  }  while (!Line.IsEmpty())  {    f(Type, Prefix + CutToChar(Line, L'\n', false));  }}//---------------------------------------------------------------------------void __fastcall TSessionLog::Add(TLogLineType Type, const UnicodeString & Line){  DebugAssert(FConfiguration);  if (Logging)  {    try    {      if (FParent != NULL)      {        DoAdd(Type, Line, DoAddToParent);      }      else      {        TGuard Guard(FCriticalSection);        DoAdd(Type, Line, DoAddToSelf);      }    }    catch (Exception &E)    {      // We failed logging, turn it off and notify user.      FConfiguration->Logging = false;      try      {        throw ExtException(&E, LoadStr(LOG_GEN_ERROR));      }      catch (Exception &E)      {        AddException(&E);        FUI->HandleExtendedException(&E);      }    }  }}//---------------------------------------------------------------------------void __fastcall TSessionLog::AddException(Exception * E){  if (E != NULL)  {    Add(llException, ExceptionLogString(E));  }}//---------------------------------------------------------------------------void __fastcall TSessionLog::ReflectSettings(){  TGuard Guard(FCriticalSection);  FLogging =    !FClosed &&    ((FParent != NULL) || FConfiguration->Logging);  // if logging to file was turned off or log file was changed -> close current log file  if ((FFile != NULL) &&      (!LogToFile() || (FCurrentLogFileName != FConfiguration->LogFileName)))  {    CloseLogFile();  }  if (FFile != NULL)  {    CheckSize(0);  }}//---------------------------------------------------------------------------bool __fastcall TSessionLog::LogToFile(){  return Logging && FConfiguration->LogToFile && (FParent == NULL);}//---------------------------------------------------------------------------void __fastcall TSessionLog::CloseLogFile(){  if (FFile != NULL)  {    fclose((FILE *)FFile);    FFile = NULL;  }  FCurrentLogFileName = L"";  FCurrentFileName = L"";}//---------------------------------------------------------------------------void __fastcall TSessionLog::OpenLogFile(){  try  {    DebugAssert(FFile == NULL);    DebugAssert(FConfiguration != NULL);    FCurrentLogFileName = FConfiguration->LogFileName;    FFile = OpenFile(FCurrentLogFileName, FStarted, FSessionData, FConfiguration->LogFileAppend, FCurrentFileName);    TSearchRec SearchRec;    if (FileSearchRec(FCurrentFileName, SearchRec))    {      FCurrentFileSize = SearchRec.Size;    }    else    {      FCurrentFileSize = 0;    }  }  catch (Exception & E)  {    // We failed logging to file, turn it off and notify user.    FCurrentLogFileName = L"";    FCurrentFileName = L"";    FConfiguration->LogFileName = UnicodeString();    try    {      throw ExtException(&E, LoadStr(LOG_GEN_ERROR));    }    catch (Exception & E)    {      AddException(&E);      // not to deadlock with TSessionLog::ReflectSettings invoked by FConfiguration->LogFileName setter above      TUnguard Unguard(FCriticalSection);      FUI->HandleExtendedException(&E);    }  }  // in case we are appending and the existing log file is already too large  if (FFile != NULL)  {    CheckSize(0);  }}//---------------------------------------------------------------------------void __fastcall TSessionLog::AddSystemInfo(){  AddStartupInfo(true);}//---------------------------------------------------------------------------void __fastcall TSessionLog::AddStartupInfo(){  AddStartupInfo(false);}//---------------------------------------------------------------------------void __fastcall TSessionLog::AddStartupInfo(bool System){  TSessionData * Data = (System ? NULL : FSessionData);  if (Logging)  {    if (FParent != NULL)    {      // do not add session info for secondary session      // (this should better be handled in the TSecondaryTerminal)    }    else    {      DoAddStartupInfo(Data);    }  }}//---------------------------------------------------------------------------UnicodeString __fastcall TSessionLog::GetTlsVersionName(TTlsVersion TlsVersion){  switch (TlsVersion)  {    default:      DebugFail();    case ssl2:      return "SSLv2";    case ssl3:      return "SSLv3";    case tls10:      return "TLSv1.0";    case tls11:      return "TLSv1.1";    case tls12:      return "TLSv1.2";  }}//---------------------------------------------------------------------------UnicodeString __fastcall TSessionLog::LogSensitive(const UnicodeString & Str){  if (FConfiguration->LogSensitive && !Str.IsEmpty())  {    return Str;  }  else  {    return BooleanToEngStr(!Str.IsEmpty());  }}//---------------------------------------------------------------------------UnicodeString __fastcall TSessionLog::GetCmdLineLog(){  UnicodeString Result = CmdLine;  if (!Configuration->LogSensitive)  {    TManagementScript Script(StoredSessions, false);    Script.MaskPasswordInCommandLine(Result, true);  }  return Result;}//---------------------------------------------------------------------------template <typename T>UnicodeString __fastcall EnumName(T Value, UnicodeString Names){  int N = int(Value);  do  {    UnicodeString Name = CutToChar(Names, L';', true);    if (N == 0)    {      return Name;    }    N--;  }  while ((N >= 0) && !Names.IsEmpty());  return L"(unknown)";}//---------------------------------------------------------------------------#define ADSTR(S) DoAdd(llMessage, S, DoAddToSelf);#define ADF(S, F) ADSTR(FORMAT(S, F));//---------------------------------------------------------------------------void __fastcall TSessionLog::DoAddStartupInfo(TSessionData * Data){  if (Data == NULL)  {    AddSeparator();    UnicodeString OS = WindowsVersionLong();    AddToList(OS, WindowsProductName(), L" - ");    ADF(L"WinSCP %s (OS %s)", (FConfiguration->VersionStr, OS));    THierarchicalStorage * Storage = FConfiguration->CreateConfigStorage();    try    {      ADF(L"Configuration: %s", (Storage->Source));    }    __finally    {      delete Storage;    }    wchar_t UserName[UNLEN + 1];    unsigned long UserNameSize = LENOF(UserName);    if (DebugAlwaysFalse(!GetUserNameEx(NameSamCompatible, UserName, &UserNameSize)))    {      wcscpy(UserName, L"<Failed to retrieve username>");    }    UnicodeString LogStr;    if (FConfiguration->LogProtocol <= 0)    {      LogStr = L"Normal";    }    else if (FConfiguration->LogProtocol == 1)    {      LogStr = L"Debug 1";    }    else if (FConfiguration->LogProtocol >= 2)    {      LogStr = L"Debug 2";    }    if (FConfiguration->LogSensitive)    {      LogStr += L", Logging passwords";    }    if (FConfiguration->LogMaxSize > 0)    {      LogStr += FORMAT(L", Rotating after: %s", (SizeToStr(FConfiguration->LogMaxSize)));      if (FConfiguration->LogMaxCount > 0)      {        LogStr += FORMAT(L", Keeping at most %d logs", (FConfiguration->LogMaxCount));      }    }    ADF(L"Log level: %s", (LogStr));    ADF(L"Local account: %s", (UserName));    ADF(L"Working directory: %s", (GetCurrentDir()));    ADF(L"Process ID: %d", (int(GetCurrentProcessId())));    ADF(L"Command-line: %s", (GetCmdLineLog()));    if (FConfiguration->LogProtocol >= 1)    {      AddOptions(GetGlobalOptions());    }    ADF(L"Time zone: %s", (GetTimeZoneLogString()));    if (!AdjustClockForDSTEnabled())    {      ADSTR(L"Warning: System option \"Automatically adjust clock for Daylight Saving Time\" is disabled, timestamps will not be represented correctly");    }    ADF(L"Login time: %s", (FormatDateTime(L"dddddd tt", Now())));    AddSeparator();  }  else  {    ADF(L"Session name: %s (%s)", (Data->SessionName, Data->Source));    ADF(L"Host name: %s (Port: %d)", (Data->HostNameExpanded, Data->PortNumber));    ADF(L"User name: %s (Password: %s, Key file: %s, Passphrase: %s)",      (Data->UserNameExpanded, LogSensitive(Data->Password),       LogSensitive(Data->PublicKeyFile), LogSensitive(Data->Passphrase)));    if (Data->UsesSsh)    {      ADF(L"Tunnel: %s", (BooleanToEngStr(Data->Tunnel)));      if (Data->Tunnel)      {        ADF(L"Tunnel: Host name: %s (Port: %d)", (Data->TunnelHostName, Data->TunnelPortNumber));        ADF(L"Tunnel: User name: %s (Password: %s, Key file: %s)",          (Data->TunnelUserName,           LogSensitive(Data->TunnelPassword),           LogSensitive(Data->TunnelPublicKeyFile)));        ADF(L"Tunnel: Local port number: %d", (Data->TunnelLocalPortNumber));      }    }    ADF(L"Transfer Protocol: %s", (Data->FSProtocolStr));    if (Data->UsesSsh || (Data->FSProtocol == fsFTP))    {      TPingType PingType;      int PingInterval;      if (Data->FSProtocol == fsFTP)      {        PingType = Data->FtpPingType;        PingInterval = Data->FtpPingInterval;      }      else      {        PingType = Data->PingType;        PingInterval = Data->PingInterval;      }      ADF(L"Ping type: %s, Ping interval: %d sec; Timeout: %d sec",        (EnumName(PingType, PingTypeNames), PingInterval, Data->Timeout));      ADF(L"Disable Nagle: %s",        (BooleanToEngStr(Data->TcpNoDelay)));    }    ADF(L"Proxy: %s",      ((Data->FtpProxyLogonType != 0) ?        FORMAT(L"FTP proxy %d", (Data->FtpProxyLogonType)) :        EnumName(Data->ProxyMethod, ProxyMethodNames)));    if ((Data->FtpProxyLogonType != 0) || (Data->ProxyMethod != ::pmNone))    {      ADF(L"HostName: %s (Port: %d); Username: %s; Passwd: %s",        (Data->ProxyHost, Data->ProxyPort,         Data->ProxyUsername, LogSensitive(Data->ProxyPassword)));      if (Data->ProxyMethod == pmTelnet)      {        ADF(L"Telnet command: %s", (Data->ProxyTelnetCommand));      }      if (Data->ProxyMethod == pmCmd)      {        ADF(L"Local command: %s", (Data->ProxyLocalCommand));      }    }    if (Data->UsesSsh || (Data->FSProtocol == fsFTP))    {      ADF(L"Send buffer: %d", (Data->SendBuf));    }    if (Data->UsesSsh)    {      ADF(L"SSH protocol version: %s; Compression: %s",        (Data->SshProtStr, BooleanToEngStr(Data->Compression)));      ADF(L"Bypass authentication: %s",       (BooleanToEngStr(Data->SshNoUserAuth)));      ADF(L"Try agent: %s; Agent forwarding: %s; TIS/CryptoCard: %s; KI: %s; GSSAPI: %s",        (BooleanToEngStr(Data->TryAgent), BooleanToEngStr(Data->AgentFwd), BooleanToEngStr(Data->AuthTIS),         BooleanToEngStr(Data->AuthKI), BooleanToEngStr(Data->AuthGSSAPI)));      if (Data->AuthGSSAPI)      {        ADF(L"GSSAPI: Forwarding: %s",          (BooleanToEngStr(Data->GSSAPIFwdTGT)));      }      ADF(L"Ciphers: %s; Ssh2DES: %s",        (Data->CipherList, BooleanToEngStr(Data->Ssh2DES)));      ADF(L"KEX: %s", (Data->KexList));      UnicodeString Bugs;      for (int Index = 0; Index < BUG_COUNT; Index++)      {        AddToList(Bugs, EnumName(Data->Bug[(TSshBug)Index], AutoSwitchNames), L",");      }      ADF(L"SSH Bugs: %s", (Bugs));      ADF(L"Simple channel: %s", (BooleanToEngStr(Data->SshSimple)));      ADF(L"Return code variable: %s; Lookup user groups: %s",        ((Data->DetectReturnVar ? UnicodeString(L"Autodetect") : Data->ReturnVar),         EnumName(Data->LookupUserGroups, AutoSwitchNames)));      ADF(L"Shell: %s", ((Data->Shell.IsEmpty()? UnicodeString(L"default") : Data->Shell)));      ADF(L"EOL: %s, UTF: %s", (EnumName(Data->EOLType, EOLTypeNames), EnumName(Data->NotUtf, NotAutoSwitchNames))); // NotUtf duplicated in FTP branch      ADF(L"Clear aliases: %s, Unset nat.vars: %s, Resolve symlinks: %s; Follow directory symlinks: %s",        (BooleanToEngStr(Data->ClearAliases), BooleanToEngStr(Data->UnsetNationalVars),         BooleanToEngStr(Data->ResolveSymlinks), BooleanToEngStr(Data->FollowDirectorySymlinks)));      ADF(L"LS: %s, Ign LS warn: %s, Scp1 Comp: %s",        (Data->ListingCommand,         BooleanToEngStr(Data->IgnoreLsWarnings),         BooleanToEngStr(Data->Scp1Compatibility)));    }    if ((Data->FSProtocol == fsSFTP) || (Data->FSProtocol == fsSFTPonly))    {      UnicodeString Bugs;      for (int Index = 0; Index < SFTP_BUG_COUNT; Index++)      {        AddToList(Bugs, EnumName(Data->SFTPBug[(TSftpBug)Index], AutoSwitchNames), L",");      }      ADF(L"SFTP Bugs: %s", (Bugs));      ADF(L"SFTP Server: %s", ((Data->SftpServer.IsEmpty()? UnicodeString(L"default") : Data->SftpServer)));    }    bool FtpsOn = false;    if (Data->FSProtocol == fsFTP)    {      ADF(L"UTF: %s", (EnumName(Data->NotUtf, NotAutoSwitchNames))); // duplicated in UsesSsh branch      UnicodeString Ftps;      switch (Data->Ftps)      {        case ftpsImplicit:          Ftps = L"Implicit TLS/SSL";          FtpsOn = true;          break;        case ftpsExplicitSsl:          Ftps = L"Explicit SSL/TLS";          FtpsOn = true;          break;        case ftpsExplicitTls:          Ftps = L"Explicit TLS/SSL";          FtpsOn = true;          break;        default:          DebugAssert(Data->Ftps == ftpsNone);          Ftps = L"None";          break;      }      // kind of hidden option, so do not reveal it unless it is set      if (Data->FtpTransferActiveImmediately != asAuto)      {        ADF(L"Transfer active immediately: %s", (EnumName(Data->FtpTransferActiveImmediately, AutoSwitchNames)));      }      ADF(L"FTPS: %s [Client certificate: %s]",        (Ftps, LogSensitive(Data->TlsCertificateFile)));      ADF(L"FTP: Passive: %s [Force IP: %s]; MLSD: %s [List all: %s]; HOST: %s",        (BooleanToEngStr(Data->FtpPasvMode),         EnumName(Data->FtpForcePasvIp, AutoSwitchNames),         EnumName(Data->FtpUseMlsd, AutoSwitchNames),         EnumName(Data->FtpListAll, AutoSwitchNames),         EnumName(Data->FtpHost, AutoSwitchNames)));    }    if (Data->FSProtocol == fsWebDAV)    {      FtpsOn = (Data->Ftps != ftpsNone);      ADF(L"HTTPS: %s [Client certificate: %s]",        (BooleanToEngStr(FtpsOn), LogSensitive(Data->TlsCertificateFile)));    }    if (Data->FSProtocol == fsS3)    {      FtpsOn = (Data->Ftps != ftpsNone);      ADF(L"HTTPS: %s", (BooleanToEngStr(FtpsOn)));    }    if (FtpsOn)    {      if (Data->FSProtocol == fsFTP)      {        ADF(L"Session reuse: %s", (BooleanToEngStr(Data->SslSessionReuse)));      }      ADF(L"TLS/SSL versions: %s-%s", (GetTlsVersionName(Data->MinTlsVersion), GetTlsVersionName(Data->MaxTlsVersion)));    }    ADF(L"Local directory: %s, Remote directory: %s, Update: %s, Cache: %s",      ((Data->LocalDirectory.IsEmpty() ? UnicodeString(L"default") : Data->LocalDirectory),       (Data->RemoteDirectory.IsEmpty() ? UnicodeString(L"home") : Data->RemoteDirectory),       BooleanToEngStr(Data->UpdateDirectories),       BooleanToEngStr(Data->CacheDirectories)));    ADF(L"Cache directory changes: %s, Permanent: %s",      (BooleanToEngStr(Data->CacheDirectoryChanges),       BooleanToEngStr(Data->PreserveDirectoryChanges)));    ADF(L"Recycle bin: Delete to: %s, Overwritten to: %s, Bin path: %s",      (BooleanToEngStr(Data->DeleteToRecycleBin),       BooleanToEngStr(Data->OverwrittenToRecycleBin),       Data->RecycleBinPath));    if (Data->TrimVMSVersions)    {      ADF(L"Trim VMS versions: %s",        (BooleanToEngStr(Data->TrimVMSVersions)));    }    UnicodeString TimeInfo;    if ((Data->FSProtocol == fsSFTP) || (Data->FSProtocol == fsSFTPonly) || (Data->FSProtocol == fsSCPonly) || (Data->FSProtocol == fsWebDAV))    {      AddToList(TimeInfo, FORMAT(L"DST mode: %s", (EnumName(Data->DSTMode, DSTModeNames))), L";");    }    if ((Data->FSProtocol == fsSCPonly) || (Data->FSProtocol == fsFTP))    {      int TimeDifferenceMin = TimeToMinutes(Data->TimeDifference);      AddToList(TimeInfo, FORMAT(L"Timezone offset: %dh %dm", ((TimeDifferenceMin / MinsPerHour), (TimeDifferenceMin % MinsPerHour))), L";");    }    ADSTR(TimeInfo);    if (Data->FSProtocol == fsWebDAV)    {      ADF(L"Compression: %s",        (BooleanToEngStr(Data->Compression)));    }    AddSeparator();  }}//---------------------------------------------------------------------------void __fastcall TSessionLog::AddOption(const UnicodeString & LogStr){  ADSTR(LogStr);}//---------------------------------------------------------------------------void __fastcall TSessionLog::AddOptions(TOptions * Options){  Options->LogOptions(AddOption);}//---------------------------------------------------------------------------#undef ADF#undef ADSTR//---------------------------------------------------------------------------void __fastcall TSessionLog::AddSeparator(){  Add(llMessage, L"--------------------------------------------------------------------------");}//---------------------------------------------------------------------------//---------------------------------------------------------------------------__fastcall TActionLog::TActionLog(TSessionUI * UI, TDateTime Started, TSessionData * SessionData,  TConfiguration * Configuration){  DebugAssert(UI != NULL);  DebugAssert(SessionData != NULL);  Init(UI, Started, SessionData, Configuration);}//---------------------------------------------------------------------------__fastcall TActionLog::TActionLog(TDateTime Started, TConfiguration * Configuration){  Init(NULL, Started, NULL, Configuration);  // not associated with session, so no need to waiting for anything  ReflectSettings();}//---------------------------------------------------------------------------void __fastcall TActionLog::Init(TSessionUI * UI, TDateTime Started, TSessionData * SessionData,  TConfiguration * Configuration){  FCriticalSection = new TCriticalSection;  FConfiguration = Configuration;  FUI = UI;  FSessionData = SessionData;  FStarted = Started;  FFile = NULL;  FCurrentLogFileName = L"";  FCurrentFileName = L"";  FLogging = false;  FClosed = false;  FFailed = false;  FPendingActions = new TList();  FIndent = L"  ";  FInGroup = false;  FEnabled = true;}//---------------------------------------------------------------------------__fastcall TActionLog::~TActionLog(){  DebugAssert(FPendingActions->Count == 0);  delete FPendingActions;  FClosed = true;  ReflectSettings();  DebugAssert(FFile == NULL);  delete FCriticalSection;}//---------------------------------------------------------------------------void __fastcall TActionLog::Add(const UnicodeString & Line){  DebugAssert(FConfiguration);  if (FLogging)  {    TGuard Guard(FCriticalSection);    if (FFile == NULL)    {      OpenLogFile();    }    if (FFile != NULL)    {      try      {        UTF8String UtfLine = UTF8String(Line);        size_t Written =          fwrite(UtfLine.c_str(), 1, UtfLine.Length(), (FILE *)FFile);        if (Written != static_cast<size_t>(UtfLine.Length()))        {          throw ECRTExtException(L"");        }        #ifdef _DEBUG        #endif        Written =          fwrite("\n", 1, 1, (FILE *)FFile);        if (Written != 1)        {          throw ECRTExtException(L"");        }      }      catch (Exception &E)      {        FCriticalSection->Release();        // avoid endless loop when trying to close tags when closing log, when logging has failed        if (!FFailed)        {          FFailed = true;          // We failed logging, turn it off and notify user.          FConfiguration->LogActions = false;          if (FConfiguration->LogActionsRequired)          {            throw EFatal(&E, LoadStr(LOG_FATAL_ERROR));          }          else          {            try            {              throw ExtException(&E, LoadStr(LOG_GEN_ERROR));            }            catch (Exception &E)            {              if (FUI != NULL)              {                FUI->HandleExtendedException(&E);              }            }          }        }      }    }  }}//---------------------------------------------------------------------------void __fastcall TActionLog::AddIndented(const UnicodeString & Line){  Add(FIndent + Line);}//---------------------------------------------------------------------------void __fastcall TActionLog::AddFailure(TStrings * Messages){  AddIndented(L"<failure>");  AddMessages(L"  ", Messages);  AddIndented(L"</failure>");}//---------------------------------------------------------------------------void __fastcall TActionLog::AddFailure(Exception * E){  TStrings * Messages = ExceptionToMoreMessages(E);  if (Messages != NULL)  {    try    {      AddFailure(Messages);    }    __finally    {      delete Messages;    }  }}//---------------------------------------------------------------------------void __fastcall TActionLog::AddMessages(UnicodeString Indent, TStrings * Messages){  for (int Index = 0; Index < Messages->Count; Index++)  {    AddIndented(      FORMAT(Indent + L"<message>%s</message>", (XmlEscape(Messages->Strings[Index]))));  }}//---------------------------------------------------------------------------void __fastcall TActionLog::ReflectSettings(){  TGuard Guard(FCriticalSection);  bool ALogging =    !FClosed && FConfiguration->LogActions && Enabled;  if (ALogging && !FLogging)  {    FLogging = true;    Add(L"<?xml version=\"1.0\" encoding=\"UTF-8\"?>");    UnicodeString SessionName =      (FSessionData != NULL) ? XmlAttributeEscape(FSessionData->SessionName) : UnicodeString(L"nosession");    Add(FORMAT(L"<session xmlns=\"http://winscp.net/schema/session/1.0\" name=\"%s\" start=\"%s\">",      (SessionName, StandardTimestamp())));  }  else if (!ALogging && FLogging)  {    if (FInGroup)    {      EndGroup();    }    // do not try to close the file, if it has not been opened, to avoid recursion    if (FFile != NULL)    {      Add(L"</session>");    }    CloseLogFile();    FLogging = false;  }}//---------------------------------------------------------------------------void __fastcall TActionLog::CloseLogFile(){  if (FFile != NULL)  {    fclose((FILE *)FFile);    FFile = NULL;  }  FCurrentLogFileName = L"";  FCurrentFileName = L"";}//---------------------------------------------------------------------------void __fastcall TActionLog::OpenLogFile(){  try  {    DebugAssert(FFile == NULL);    DebugAssert(FConfiguration != NULL);    FCurrentLogFileName = FConfiguration->ActionsLogFileName;    FFile = OpenFile(FCurrentLogFileName, FStarted, FSessionData, false, FCurrentFileName);  }  catch (Exception & E)  {    // We failed logging to file, turn it off and notify user.    FCurrentLogFileName = L"";    FCurrentFileName = L"";    FConfiguration->LogActions = false;    if (FConfiguration->LogActionsRequired)    {      throw EFatal(&E, LoadStr(LOG_FATAL_ERROR));    }    else    {      try      {        throw ExtException(&E, LoadStr(LOG_GEN_ERROR));      }      catch (Exception & E)      {        if (FUI != NULL)        {          // not to deadlock with TSessionLog::ReflectSettings invoked by FConfiguration->LogFileName setter above          TUnguard Unguard(FCriticalSection);          FUI->HandleExtendedException(&E);        }      }    }  }}//---------------------------------------------------------------------------void __fastcall TActionLog::AddPendingAction(TSessionActionRecord * Action){  FPendingActions->Add(Action);}//---------------------------------------------------------------------------void __fastcall TActionLog::RecordPendingActions(){  while ((FPendingActions->Count > 0) &&         static_cast<TSessionActionRecord *>(FPendingActions->Items[0])->Record())  {    FPendingActions->Delete(0);  }}//---------------------------------------------------------------------------void __fastcall TActionLog::BeginGroup(UnicodeString Name){  DebugAssert(!FInGroup);  FInGroup = true;  DebugAssert(FIndent == L"  ");  AddIndented(FORMAT(L"<group name=\"%s\" start=\"%s\">",    (XmlAttributeEscape(Name), StandardTimestamp())));  FIndent = L"    ";}//---------------------------------------------------------------------------void __fastcall TActionLog::EndGroup(){  DebugAssert(FInGroup);  FInGroup = false;  DebugAssert(FIndent == L"    ");  FIndent = L"  ";  // this is called from ReflectSettings that in turn is called when logging fails,  // so do not try to close the group, if it has not been opened, to avoid recursion  if (FFile != NULL)  {    AddIndented(L"</group>");  }}//---------------------------------------------------------------------------void __fastcall TActionLog::SetEnabled(bool value){  if (Enabled != value)  {    FEnabled = value;    ReflectSettings();  }}
 |