WinMain.cpp 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170
  1. //---------------------------------------------------------------------------
  2. #include <vcl.h>
  3. #pragma hdrstop
  4. #include <CoreMain.h>
  5. #include <TextsWin.h>
  6. #include <TextsCore.h>
  7. #include <HelpWin.h>
  8. #include "CustomScpExplorer.h"
  9. #include "TerminalManager.h"
  10. #include "NonVisual.h"
  11. #include "Glyphs.h"
  12. #include "ProgParams.h"
  13. #include "Setup.h"
  14. #include "WinConfiguration.h"
  15. #include "GUITools.h"
  16. #include "Tools.h"
  17. #include "WinApi.h"
  18. #include <DateUtils.hpp>
  19. //---------------------------------------------------------------------------
  20. #pragma package(smart_init)
  21. //---------------------------------------------------------------------------
  22. void __fastcall GetLoginData(UnicodeString SessionName, TOptions * Options,
  23. TObjectList * DataList, UnicodeString & DownloadFile, bool NeedSession, TForm * LinkedForm)
  24. {
  25. bool DefaultsOnly = false;
  26. UnicodeString FolderOrWorkspaceName = DecodeUrlChars(SessionName);
  27. if (StoredSessions->IsFolder(FolderOrWorkspaceName) ||
  28. StoredSessions->IsWorkspace(FolderOrWorkspaceName))
  29. {
  30. StoredSessions->GetFolderOrWorkspace(FolderOrWorkspaceName, DataList);
  31. }
  32. else
  33. {
  34. TSessionData * SessionData =
  35. StoredSessions->ParseUrl(SessionName, Options, DefaultsOnly,
  36. &DownloadFile);
  37. DataList->Add(SessionData);
  38. if (DataList->Count == 1)
  39. {
  40. TSessionData * SessionData = DebugNotNull(dynamic_cast<TSessionData *>(DataList->Items[0]));
  41. if (SessionData->SaveOnly)
  42. {
  43. Configuration->Usage->Inc(L"CommandLineSessionSave");
  44. TSessionData * SavedSession = DoSaveSession(SessionData, NULL, true, NULL);
  45. if (SavedSession == NULL)
  46. {
  47. Abort();
  48. }
  49. WinConfiguration->LastStoredSession = SavedSession->Name;
  50. DataList->Clear();
  51. }
  52. else if (!SessionData->PuttyProtocol.IsEmpty())
  53. {
  54. // putty does not support resolving environment variables in session settings
  55. // though it's hardly of any use here.
  56. SessionData->ExpandEnvironmentVariables();
  57. OpenSessionInPutty(GUIConfiguration->PuttyPath, SessionData);
  58. Abort();
  59. }
  60. }
  61. }
  62. if (DefaultsOnly && !NeedSession)
  63. {
  64. // No URL specified on command-line and no explicit command-line parameter
  65. // that requires session was specified => noop
  66. DataList->Clear();
  67. }
  68. else if ((DataList->Count == 0) ||
  69. !dynamic_cast<TSessionData *>(DataList->Items[0])->CanLogin ||
  70. DefaultsOnly)
  71. {
  72. // Note that GetFolderOrWorkspace never returns sites that !CanLogin,
  73. // so we should not get here with more then one site.
  74. // Though we should be good, if we ever do.
  75. // We get here when:
  76. // - we need session for explicit command-line operation
  77. // - after we handle "save" URL.
  78. // - the specified session does not contain enough information to login [= not even hostname]
  79. DebugAssert(DataList->Count <= 1);
  80. if (!DoLoginDialog(StoredSessions, DataList, LinkedForm))
  81. {
  82. Abort();
  83. }
  84. }
  85. }
  86. //---------------------------------------------------------------------------
  87. void __fastcall Upload(TTerminal * Terminal, TStrings * FileList, bool UseDefaults)
  88. {
  89. UnicodeString TargetDirectory;
  90. TGUICopyParamType CopyParam = GUIConfiguration->DefaultCopyParam;
  91. TargetDirectory = UnixIncludeTrailingBackslash(Terminal->CurrentDirectory);
  92. std::unique_ptr<TSessionData> Data(Terminal->SessionData->Clone());
  93. Terminal->FillSessionDataForCode(Data.get());
  94. int Options = coDisableQueue;
  95. int CopyParamAttrs = Terminal->UsableCopyParamAttrs(0).Upload;
  96. if (UseDefaults ||
  97. DoCopyDialog(true, false, FileList, TargetDirectory, &CopyParam, Options,
  98. CopyParamAttrs, Data.get(), NULL))
  99. {
  100. Terminal->CopyToRemote(FileList, TargetDirectory, &CopyParam, 0, NULL);
  101. }
  102. }
  103. //---------------------------------------------------------------------------
  104. void __fastcall Download(TTerminal * Terminal, const UnicodeString FileName,
  105. bool UseDefaults)
  106. {
  107. TRemoteFile * File = NULL;
  108. try
  109. {
  110. Terminal->ExceptionOnFail = true;
  111. try
  112. {
  113. Terminal->ReadFile(FileName, File);
  114. }
  115. __finally
  116. {
  117. Terminal->ExceptionOnFail = false;
  118. }
  119. File->FullFileName = FileName;
  120. UnicodeString LocalDirectory = ExpandFileName(Terminal->SessionData->LocalDirectory);
  121. if (LocalDirectory.IsEmpty())
  122. {
  123. LocalDirectory = GetPersonalFolder();
  124. }
  125. UnicodeString TargetDirectory = IncludeTrailingBackslash(LocalDirectory);
  126. TGUICopyParamType CopyParam = GUIConfiguration->DefaultCopyParam;
  127. UnicodeString DisplayName = File->FileName;
  128. bool CustomDisplayName =
  129. !File->DisplayName.IsEmpty() &&
  130. (File->DisplayName != DisplayName);
  131. if (CustomDisplayName)
  132. {
  133. DisplayName = File->DisplayName;
  134. }
  135. UnicodeString FriendyFileName = UnixIncludeTrailingBackslash(UnixExtractFilePath(FileName)) + DisplayName;
  136. std::unique_ptr<TStrings> FileListFriendly(new TStringList());
  137. FileListFriendly->AddObject(FriendyFileName, File);
  138. int Options = coDisableQueue;
  139. int CopyParamAttrs = Terminal->UsableCopyParamAttrs(0).Download;
  140. if (UseDefaults ||
  141. DoCopyDialog(false, false, FileListFriendly.get(), TargetDirectory, &CopyParam,
  142. Options, CopyParamAttrs, NULL, NULL))
  143. {
  144. if (CustomDisplayName)
  145. {
  146. // Set only now, so that it is not redundantly displayed on the copy dialog.
  147. // We should escape the * and ?'s.
  148. CopyParam.FileMask = DisplayName;
  149. }
  150. std::unique_ptr<TStrings> FileList(new TStringList());
  151. FileList->AddObject(FileName, File);
  152. Terminal->CopyToLocal(FileList.get(), TargetDirectory, &CopyParam, 0, NULL);
  153. }
  154. UnicodeString Directory = UnixExtractFilePath(FileName);
  155. Terminal->AutoReadDirectory = true;
  156. Terminal->ChangeDirectory(Directory);
  157. }
  158. __finally
  159. {
  160. delete File;
  161. }
  162. }
  163. //---------------------------------------------------------------------------
  164. void __fastcall Edit(TCustomScpExplorerForm * ScpExplorer, TStrings * FileList)
  165. {
  166. ScpExplorer->StandaloneEdit(FileList->Strings[0]);
  167. Abort();
  168. }
  169. //---------------------------------------------------------------------------
  170. void __fastcall SynchronizeDirectories(TTerminal * Terminal,
  171. TStrings * CommandParams,
  172. UnicodeString & LocalDirectory, UnicodeString & RemoteDirectory)
  173. {
  174. if (CommandParams->Count >= 1)
  175. {
  176. LocalDirectory = CommandParams->Strings[0];
  177. }
  178. else if (!Terminal->SessionData->LocalDirectory.IsEmpty())
  179. {
  180. LocalDirectory = ExpandFileName(Terminal->SessionData->LocalDirectory);
  181. }
  182. else
  183. {
  184. LocalDirectory = WinConfiguration->ScpExplorer.LastLocalTargetDirectory;
  185. }
  186. if (CommandParams->Count >= 2)
  187. {
  188. RemoteDirectory = CommandParams->Strings[1];
  189. }
  190. else
  191. {
  192. RemoteDirectory = Terminal->CurrentDirectory;
  193. }
  194. }
  195. //---------------------------------------------------------------------------
  196. void __fastcall FullSynchronize(TTerminal * Terminal, TCustomScpExplorerForm * ScpExplorer,
  197. TStrings * CommandParams, bool UseDefaults)
  198. {
  199. UnicodeString LocalDirectory;
  200. UnicodeString RemoteDirectory;
  201. SynchronizeDirectories(Terminal, CommandParams, LocalDirectory, RemoteDirectory);
  202. bool SaveMode = true;
  203. // bit ugly
  204. TSynchronizeMode Mode = (TSynchronizeMode)GUIConfiguration->SynchronizeMode;
  205. if (ScpExplorer->DoFullSynchronizeDirectories(LocalDirectory,
  206. RemoteDirectory, Mode, SaveMode, UseDefaults))
  207. {
  208. if (SaveMode)
  209. {
  210. GUIConfiguration->SynchronizeMode = Mode;
  211. }
  212. Terminal->CloseOnCompletion();
  213. }
  214. else
  215. {
  216. Abort();
  217. }
  218. }
  219. //---------------------------------------------------------------------------
  220. void __fastcall Synchronize(TTerminal * Terminal, TCustomScpExplorerForm * ScpExplorer,
  221. TStrings * CommandParams, bool UseDefaults)
  222. {
  223. UnicodeString LocalDirectory;
  224. UnicodeString RemoteDirectory;
  225. SynchronizeDirectories(Terminal, CommandParams, LocalDirectory, RemoteDirectory);
  226. // Undocumented syntax for "Start in New Window"
  227. if (CommandParams->Count >= 4)
  228. {
  229. GUIConfiguration->SynchronizeParams = StrToIntDef(CommandParams->Strings[2], -1);
  230. GUIConfiguration->SynchronizeOptions = StrToIntDef(CommandParams->Strings[3], -1);
  231. Configuration->DontSave();
  232. }
  233. ScpExplorer->DoSynchronizeDirectories(LocalDirectory, RemoteDirectory, UseDefaults);
  234. Abort();
  235. }
  236. //---------------------------------------------------------------------------
  237. void __fastcall ImportSitesIfAny()
  238. {
  239. if (!WinConfiguration->AutoImportedFromPuttyOrFilezilla)
  240. {
  241. bool AnyPuttySession = GUIConfiguration->AnyPuttySessionForImport(StoredSessions);
  242. bool AnyFilezillaSession = GUIConfiguration->AnyFilezillaSessionForImport(StoredSessions);
  243. if (AnyPuttySession || AnyFilezillaSession)
  244. {
  245. UnicodeString PuttySource = LoadStrPart(IMPORT_SESSIONS2, 2);
  246. UnicodeString FilezillaSource = LoadStrPart(IMPORT_SESSIONS2, 3);
  247. UnicodeString Source;
  248. if (AnyPuttySession && AnyFilezillaSession)
  249. {
  250. Source = FORMAT(LoadStrPart(IMPORT_SESSIONS2, 4), (PuttySource, FilezillaSource));
  251. }
  252. else if (AnyPuttySession)
  253. {
  254. Source = PuttySource;
  255. }
  256. else if (AnyFilezillaSession)
  257. {
  258. Source = FilezillaSource;
  259. }
  260. else
  261. {
  262. DebugFail();
  263. }
  264. UnicodeString Message = FORMAT(LoadStrPart(IMPORT_SESSIONS2, 1), (Source));
  265. if (MessageDialog(Message, qtConfirmation,
  266. qaYes | qaNo, HELP_IMPORT_SESSIONS) == qaYes)
  267. {
  268. DoImportSessionsDialog(NULL);
  269. }
  270. WinConfiguration->AutoImportedFromPuttyOrFilezilla = true;
  271. }
  272. }
  273. }
  274. //---------------------------------------------------------------------------
  275. void __fastcall Usage(UnicodeString Param)
  276. {
  277. while (!Param.IsEmpty())
  278. {
  279. UnicodeString Pair = CutToChar(Param, L',', true);
  280. if (!Pair.IsEmpty())
  281. {
  282. if (Pair[Pair.Length()] == L'+')
  283. {
  284. UnicodeString Key = Pair.SubString(1, Pair.Length() - 1).Trim();
  285. Configuration->Usage->Inc(Key);
  286. }
  287. else
  288. {
  289. UnicodeString Key = CutToChar(Pair, L':', true);
  290. Configuration->Usage->Set(Key, Pair.Trim());
  291. }
  292. }
  293. }
  294. }
  295. //---------------------------------------------------------------------------
  296. void __fastcall RecordWrapperVersions(UnicodeString ConsoleVersion, UnicodeString DotNetVersion)
  297. {
  298. TUpdatesConfiguration Updates = WinConfiguration->Updates;
  299. if (!DotNetVersion.IsEmpty())
  300. {
  301. Updates.DotNetVersion = DotNetVersion;
  302. }
  303. if (!ConsoleVersion.IsEmpty())
  304. {
  305. Updates.ConsoleVersion = ConsoleVersion;
  306. }
  307. WinConfiguration->Updates = Updates;
  308. if (Configuration->Storage == stNul)
  309. {
  310. Configuration->SetDefaultStorage();
  311. try
  312. {
  313. THierarchicalStorage * Storage = Configuration->CreateConfigStorage();
  314. try
  315. {
  316. Storage->AccessMode = smReadWrite;
  317. if (Storage->OpenSubKey(Configuration->ConfigurationSubKey, true) &&
  318. Storage->OpenSubKey(L"Interface\\Updates", true, true))
  319. {
  320. if (!DotNetVersion.IsEmpty())
  321. {
  322. Storage->WriteString(L"DotNetVersion", DotNetVersion);
  323. }
  324. if (!ConsoleVersion.IsEmpty())
  325. {
  326. Storage->WriteString(L"ConsoleVersion", ConsoleVersion);
  327. }
  328. }
  329. }
  330. __finally
  331. {
  332. delete Storage;
  333. }
  334. }
  335. __finally
  336. {
  337. Configuration->SetNulStorage();
  338. }
  339. }
  340. }
  341. //---------------------------------------------------------------------------
  342. static UnicodeString ColorToRGBStr(TColor Color)
  343. {
  344. int RGB = ColorToRGB(Color);
  345. int R = GetRValue(RGB);
  346. int G = GetGValue(RGB);
  347. int B = GetBValue(RGB);
  348. UnicodeString Result = FORMAT(L"%.2x%.2x%.2x", (R, G, B));
  349. return Result;
  350. }
  351. //---------------------------------------------------------------------------
  352. void __fastcall UpdateStaticUsage()
  353. {
  354. Configuration->Usage->Inc(L"Runs");
  355. Configuration->Usage->UpdateCurrentVersion();
  356. Configuration->Usage->Set(L"WindowsVersion", (WindowsVersionLong()));
  357. Configuration->Usage->Set(L"WindowsProductName", (WindowsProductName()));
  358. DWORD Type;
  359. GetWindowsProductType(Type);
  360. Configuration->Usage->Set(L"WindowsProductType", (static_cast<int>(Type)));
  361. Configuration->Usage->Set(L"Windows64", IsWin64());
  362. Configuration->Usage->Set(L"DefaultLocale",
  363. // See TGUIConfiguration::GetAppliedLocaleHex()
  364. IntToHex(static_cast<int>(GetDefaultLCID()), 4));
  365. Configuration->Usage->Set(L"Locale", WinConfiguration->AppliedLocaleHex);
  366. Configuration->Usage->Set(L"EncodingMultiByteAnsi", !TEncoding::Default->IsSingleByte);
  367. Configuration->Usage->Set(L"PixelsPerInch", Screen->PixelsPerInch);
  368. bool PixelsPerInchSystemDiffers = false;
  369. bool PixelsPerInchMonitorsDiffer = false;
  370. bool PixelsPerInchAxesDiffer = false;
  371. HINSTANCE ShCoreLibrary = LoadLibrary(L"shcore.dll");
  372. if (ShCoreLibrary != NULL)
  373. {
  374. GetDpiForMonitorProc GetDpiForMonitor =
  375. (GetDpiForMonitorProc)GetProcAddress(ShCoreLibrary, "GetDpiForMonitor");
  376. if (GetDpiForMonitor != NULL)
  377. {
  378. unsigned int PrimaryDpiX;
  379. unsigned int PrimaryDpiY;
  380. for (int Index = 0; Index < Screen->MonitorCount; Index++)
  381. {
  382. unsigned int DpiX;
  383. unsigned int DpiY;
  384. GetDpiForMonitor(Screen->Monitors[Index]->Handle, MDT_Default, &DpiX, &DpiY);
  385. if (DpiX != DpiY)
  386. {
  387. PixelsPerInchAxesDiffer = true;
  388. }
  389. if (Index == 0)
  390. {
  391. PrimaryDpiX = DpiX;
  392. PrimaryDpiY = DpiY;
  393. // PixelsPerInch is GetDeviceCaps(DC, LOGPIXELSY)
  394. if (DpiY != (unsigned int)Screen->PixelsPerInch)
  395. {
  396. PixelsPerInchSystemDiffers = true;
  397. }
  398. }
  399. else
  400. {
  401. if ((DpiX != PrimaryDpiX) ||
  402. (DpiY != PrimaryDpiY))
  403. {
  404. PixelsPerInchMonitorsDiffer = true;
  405. }
  406. }
  407. }
  408. }
  409. }
  410. if (PixelsPerInchSystemDiffers)
  411. {
  412. Configuration->Usage->Inc(L"PixelsPerInchSystemDiffered");
  413. }
  414. Configuration->Usage->Set(L"PixelsPerInchMonitorsDiffer", PixelsPerInchMonitorsDiffer);
  415. Configuration->Usage->Set(L"PixelsPerInchAxesDiffer", PixelsPerInchAxesDiffer);
  416. Configuration->Usage->Set(L"WorkAreaWidth", Screen->WorkAreaWidth);
  417. Configuration->Usage->Set(L"WorkAreaHeight", Screen->WorkAreaHeight);
  418. HDC DC = GetDC(NULL);
  419. int Planes = GetDeviceCaps(DC, PLANES);
  420. int BitsPixel = GetDeviceCaps(DC, BITSPIXEL);
  421. Configuration->Usage->Set(L"ColorDepth", Planes * BitsPixel);
  422. Configuration->Usage->Set(L"MonitorCount", Screen->MonitorCount);
  423. Configuration->Usage->Set(L"NotUseThemes", !UseThemes());
  424. Configuration->Usage->Set(L"ThemeDefaultFontSize", Application->DefaultFont->Size);
  425. Configuration->Usage->Set(L"ThemeIconFontSize", Screen->IconFont->Size);
  426. Configuration->Usage->Set(L"SysColorWindow", ColorToRGBStr(clWindow));
  427. Configuration->Usage->Set(L"SysColorBtnFace", ColorToRGBStr(clBtnFace));
  428. Configuration->Usage->Set(L"SysColorWindowText", ColorToRGBStr(clWindowText));
  429. UnicodeString ProgramsFolder;
  430. ::SpecialFolderLocation(CSIDL_PROGRAM_FILES, ProgramsFolder);
  431. ProgramsFolder = IncludeTrailingBackslash(ExpandFileName(ProgramsFolder));
  432. UnicodeString ExeName = ExpandFileName(Application->ExeName);
  433. bool InProgramFiles = AnsiSameText(ExeName.SubString(1, ProgramsFolder.Length()), ProgramsFolder);
  434. Configuration->Usage->Set(L"InProgramFiles", InProgramFiles);
  435. Configuration->Usage->Set(L"IsInstalled", IsInstalled());
  436. Configuration->Usage->Set(L"Wine", IsWine());
  437. Configuration->Usage->Set(L"NetFrameworkVersion", GetNetVersionStr());
  438. Configuration->Usage->Set(L"PowerShellVersion", GetPowerShellVersionStr());
  439. WinConfiguration->UpdateStaticUsage();
  440. }
  441. //---------------------------------------------------------------------------
  442. void __fastcall MaintenanceTask()
  443. {
  444. CoreMaintenanceTask();
  445. }
  446. //---------------------------------------------------------------------------
  447. typedef std::vector<HWND> THandles;
  448. typedef std::map<unsigned long, THandles> TProcesses;
  449. //---------------------------------------------------------------------------
  450. BOOL __stdcall EnumOtherInstances(HWND Handle, LPARAM AParam)
  451. {
  452. TProcesses & Processes = *reinterpret_cast<TProcesses *>(AParam);
  453. unsigned long ProcessId;
  454. if (GetWindowThreadProcessId(Handle, &ProcessId) != 0)
  455. {
  456. Processes[ProcessId].push_back(Handle);
  457. }
  458. return TRUE;
  459. }
  460. //---------------------------------------------------------------------------
  461. static bool __fastcall SendCopyDataMessage(HWND Window, TCopyDataMessage & Message)
  462. {
  463. COPYDATASTRUCT CopyData;
  464. CopyData.cbData = sizeof(Message);
  465. CopyData.lpData = &Message;
  466. LRESULT SendResult =
  467. SendMessage(Window, WM_COPYDATA,
  468. reinterpret_cast<WPARAM>(HInstance), reinterpret_cast<LPARAM>(&CopyData));
  469. bool Result = (SendResult > 0);
  470. return Result;
  471. }
  472. //---------------------------------------------------------------------------
  473. static void __fastcall FindOtherInstances(THandles & OtherInstances)
  474. {
  475. TProcesses Processes;
  476. // FindWindow is optimization (if there's no hidden window, no point enumerating all windows to find some)
  477. if ((FindWindow(HIDDEN_WINDOW_NAME, NULL) != NULL) &&
  478. EnumWindows(EnumOtherInstances, reinterpret_cast<LPARAM>(&Processes)))
  479. {
  480. TCopyDataMessage Message;
  481. Message.Command = TCopyDataMessage::MainWindowCheck;
  482. TProcesses::const_iterator ProcessI = Processes.begin();
  483. while (ProcessI != Processes.end())
  484. {
  485. HWND HiddenWindow = NULL;
  486. THandles::const_iterator WindowI = ProcessI->second.begin();
  487. while ((HiddenWindow == NULL) && (WindowI != ProcessI->second.end()))
  488. {
  489. wchar_t ClassName[1024];
  490. if (GetClassName(*WindowI, ClassName, LENOF(ClassName)) != 0)
  491. {
  492. NULL_TERMINATE(ClassName);
  493. if (wcscmp(ClassName, HIDDEN_WINDOW_NAME) == 0)
  494. {
  495. HiddenWindow = *WindowI;
  496. }
  497. }
  498. WindowI++;
  499. }
  500. if (HiddenWindow != NULL)
  501. {
  502. WindowI = ProcessI->second.begin();
  503. while (WindowI != ProcessI->second.end())
  504. {
  505. if (*WindowI != HiddenWindow) // optimization
  506. {
  507. if (SendCopyDataMessage(*WindowI, Message))
  508. {
  509. OtherInstances.push_back(*WindowI);
  510. break;
  511. }
  512. }
  513. WindowI++;
  514. }
  515. }
  516. ProcessI++;
  517. }
  518. }
  519. }
  520. //---------------------------------------------------------------------------
  521. bool __fastcall SendToAnotherInstance()
  522. {
  523. THandles OtherInstances;
  524. FindOtherInstances(OtherInstances);
  525. bool Result = false;
  526. THandles::const_iterator I = OtherInstances.begin();
  527. while (!Result && (I != OtherInstances.end()))
  528. {
  529. HWND Handle = *I;
  530. TCopyDataMessage Message;
  531. Message.Command = TCopyDataMessage::CommandCanCommandLine;
  532. if (SendCopyDataMessage(Handle, Message))
  533. {
  534. // Restore window, if minimized
  535. ShowWindow(Handle, SW_RESTORE);
  536. // bring it to foreground
  537. SetForegroundWindow(Handle);
  538. Message.Command = TCopyDataMessage::CommandCommandLine;
  539. wcsncpy(Message.CommandLine, CmdLine, LENOF(Message.CommandLine));
  540. NULL_TERMINATE(Message.CommandLine);
  541. Result = SendCopyDataMessage(Handle, Message);
  542. }
  543. I++;
  544. }
  545. return Result;
  546. }
  547. //---------------------------------------------------------------------------
  548. void __fastcall Refresh(const UnicodeString & Session, const UnicodeString & Path)
  549. {
  550. THandles OtherInstances;
  551. FindOtherInstances(OtherInstances);
  552. THandles::const_iterator I = OtherInstances.begin();
  553. while (I != OtherInstances.end())
  554. {
  555. HWND Handle = *I;
  556. TCopyDataMessage Message;
  557. Message.Command = TCopyDataMessage::RefreshPanel;
  558. wcsncpy(Message.Refresh.Session, Session.c_str(), LENOF(Message.Refresh.Session));
  559. NULL_TERMINATE(Message.Refresh.Session);
  560. wcsncpy(Message.Refresh.Path, Path.c_str(), LENOF(Message.Refresh.Path));
  561. NULL_TERMINATE(Message.Refresh.Path);
  562. SendCopyDataMessage(Handle, Message);
  563. I++;
  564. }
  565. }
  566. //---------------------------------------------------------------------------
  567. bool __fastcall ShowUpdatesIfAvailable()
  568. {
  569. TUpdatesConfiguration Updates = WinConfiguration->Updates;
  570. int CurrentCompoundVer = Configuration->CompoundVersion;
  571. bool NoPopup = true;
  572. bool Result =
  573. Updates.ShowOnStartup &&
  574. Updates.HaveValidResultsForVersion(CurrentCompoundVer) &&
  575. !Updates.Results.Disabled &&
  576. ((Updates.Results.Version > CurrentCompoundVer) || !Updates.Results.Message.IsEmpty()) &&
  577. !Updates.ShownResults;
  578. if (Result)
  579. {
  580. Configuration->Usage->Inc(L"UpdateStartup");
  581. Result = CheckForUpdates(true);
  582. if (Result)
  583. {
  584. Configuration->Usage->Inc(L"UpdateDownloadOpensStartup");
  585. }
  586. NoPopup = false;
  587. }
  588. else if (WinConfiguration->ShowTips)
  589. {
  590. int Days = DaysBetween(WinConfiguration->TipsShown, Now());
  591. if ((Days >= Updates.Results.TipsIntervalDays) &&
  592. (WinConfiguration->RunsSinceLastTip >= Updates.Results.TipsIntervalDays))
  593. {
  594. UnicodeString Tip = FirstUnshownTip();
  595. if (!Tip.IsEmpty())
  596. {
  597. AutoShowNewTip();
  598. NoPopup = false;
  599. }
  600. else
  601. {
  602. Configuration->Usage->Inc(L"TipsNoUnseen");
  603. }
  604. }
  605. }
  606. if (NoPopup)
  607. {
  608. WinConfiguration->RunsSinceLastTip = WinConfiguration->RunsSinceLastTip + 1;
  609. }
  610. return Result;
  611. }
  612. //---------------------------------------------------------------------------
  613. int __fastcall Execute()
  614. {
  615. DebugAssert(StoredSessions);
  616. TProgramParams * Params = TProgramParams::Instance();
  617. DebugAssert(Params);
  618. // do not flash message boxes on startup
  619. SetOnForeground(true);
  620. // let installer know, that some instance of application is running
  621. CreateMutex(NULL, False, AppName.c_str());
  622. bool OnlyInstance = (GetLastError() == 0);
  623. UpdateStaticUsage();
  624. UnicodeString KeyFile;
  625. if (Params->FindSwitch(L"PrivateKey", KeyFile))
  626. {
  627. WinConfiguration->DefaultKeyFile = KeyFile;
  628. }
  629. UnicodeString ConsoleVersion;
  630. UnicodeString DotNetVersion;
  631. Params->FindSwitch(L"Console", ConsoleVersion);
  632. Params->FindSwitch(L"DotNet", DotNetVersion);
  633. if (!ConsoleVersion.IsEmpty() || !DotNetVersion.IsEmpty())
  634. {
  635. RecordWrapperVersions(ConsoleVersion, DotNetVersion);
  636. }
  637. if (!DotNetVersion.IsEmpty())
  638. {
  639. Configuration->Usage->Inc(L"ConsoleDotNet");
  640. }
  641. UnicodeString SwitchValue;
  642. if (Params->FindSwitch(L"loglevel", SwitchValue))
  643. {
  644. int StarPos = SwitchValue.Pos(L"*");
  645. if (StarPos > 0)
  646. {
  647. bool LogSensitive = true;
  648. SwitchValue.Delete(StarPos, 1);
  649. if ((StarPos <= SwitchValue.Length()) &&
  650. (SwitchValue[StarPos] == L'-'))
  651. {
  652. LogSensitive = false;
  653. SwitchValue.Delete(StarPos, 1);
  654. }
  655. SwitchValue = SwitchValue.Trim();
  656. Configuration->TemporaryLogSensitive(LogSensitive);
  657. }
  658. int LogProtocol;
  659. if (!SwitchValue.IsEmpty() && TryStrToInt(SwitchValue, LogProtocol) && (LogProtocol >= 0))
  660. {
  661. Configuration->TemporaryLogProtocol(LogProtocol);
  662. }
  663. }
  664. if (Params->FindSwitch(LOGSIZE_SWITCH, SwitchValue))
  665. {
  666. int StarPos = SwitchValue.Pos(LOGSIZE_SEPARATOR);
  667. int LogMaxCount = 0;
  668. if (StarPos > 1)
  669. {
  670. if (!TryStrToInt(SwitchValue.SubString(1, StarPos - 1), LogMaxCount))
  671. {
  672. LogMaxCount = -1;
  673. }
  674. SwitchValue.Delete(1, StarPos);
  675. SwitchValue = SwitchValue.Trim();
  676. }
  677. __int64 LogMaxSize;
  678. if ((LogMaxCount >= 0) &&
  679. !SwitchValue.IsEmpty() &&
  680. TryStrToSize(SwitchValue, LogMaxSize))
  681. {
  682. Configuration->TemporaryLogMaxCount(LogMaxCount);
  683. Configuration->TemporaryLogMaxSize(LogMaxSize);
  684. }
  685. }
  686. TConsoleMode Mode = cmNone;
  687. if (Params->FindSwitch(L"help") || Params->FindSwitch(L"h") || Params->FindSwitch(L"?"))
  688. {
  689. Mode = cmHelp;
  690. }
  691. else if (Params->FindSwitch(L"batchsettings"))
  692. {
  693. Mode = cmBatchSettings;
  694. }
  695. else if (Params->FindSwitch(KEYGEN_SWITCH))
  696. {
  697. Mode = cmKeyGen;
  698. }
  699. else if (Params->FindSwitch(FINGERPRINTSCAN_SWITCH))
  700. {
  701. Mode = cmFingerprintScan;
  702. }
  703. // We have to check for /console only after the other options,
  704. // as the /console is always used when we are run by winscp.com
  705. // (ambiguous use to pass console version)
  706. else if (Params->FindSwitch(L"Console") || Params->FindSwitch(SCRIPT_SWITCH) ||
  707. Params->FindSwitch(COMMAND_SWITCH))
  708. {
  709. Mode = cmScripting;
  710. }
  711. if (Mode != cmNone)
  712. {
  713. return Console(Mode);
  714. }
  715. TTerminalManager * TerminalManager = NULL;
  716. GlyphsModule = NULL;
  717. NonVisualDataModule = NULL;
  718. TStrings * CommandParams = new TStringList;
  719. try
  720. {
  721. TerminalManager = TTerminalManager::Instance();
  722. HANDLE ResourceModule = GUIConfiguration->ChangeToDefaultResourceModule();
  723. try
  724. {
  725. GlyphsModule = new TGlyphsModule(Application);
  726. }
  727. __finally
  728. {
  729. GUIConfiguration->ChangeResourceModule(ResourceModule);
  730. }
  731. NonVisualDataModule = new TNonVisualDataModule(Application);
  732. // The default is 2.5s.
  733. // 20s is used by Office 2010 and Windows 10 Explorer.
  734. // Some applications use an infinite (Thunderbird, Firefox).
  735. // Overriden for some controls using THintInfo.HideTimeout
  736. Application->HintHidePause = 20000;
  737. HintWindowClass = __classid(TScreenTipHintWindow);
  738. UnicodeString IniFileName = Params->SwitchValue(INI_SWITCH);
  739. if (!IniFileName.IsEmpty())
  740. {
  741. UnicodeString IniFileNameExpanded = ExpandEnvironmentVariables(IniFileName);
  742. if (!FileExists(ApiPath(IniFileNameExpanded)))
  743. {
  744. // this should be displayed rather at the very beginning.
  745. // however for simplicity (GUI-only), we do it only here.
  746. MessageDialog(FMTLOAD(FILE_NOT_EXISTS, (IniFileNameExpanded)), qtError, qaOK);
  747. }
  748. }
  749. if (Params->FindSwitch(L"UninstallCleanup"))
  750. {
  751. MaintenanceTask();
  752. // The innosetup cannot skip UninstallCleanup run task for silent uninstalls,
  753. // workaround is that we create mutex in uninstaller, if it runs silent, and
  754. // ignore the UninstallCleanup, when the mutex exists.
  755. if ((OpenMutex(SYNCHRONIZE, false, L"WinSCPSilentUninstall") == NULL) &&
  756. (MessageDialog(MainInstructions(LoadStr(UNINSTALL_CLEANUP)), qtConfirmation,
  757. qaYes | qaNo, HELP_UNINSTALL_CLEANUP) == qaYes))
  758. {
  759. DoCleanupDialog(StoredSessions, Configuration);
  760. }
  761. }
  762. else if (Params->FindSwitch(L"RegisterForDefaultProtocols") ||
  763. Params->FindSwitch(L"RegisterAsUrlHandler")) // BACKWARD COMPATIBILITY
  764. {
  765. MaintenanceTask();
  766. if (CheckSafe(Params))
  767. {
  768. RegisterForDefaultProtocols();
  769. Configuration->DontSave();
  770. }
  771. }
  772. else if (Params->FindSwitch(L"UnregisterForProtocols"))
  773. {
  774. MaintenanceTask();
  775. if (CheckSafe(Params))
  776. {
  777. UnregisterForProtocols();
  778. Configuration->DontSave();
  779. }
  780. }
  781. else if (Params->FindSwitch(L"AddSearchPath"))
  782. {
  783. MaintenanceTask();
  784. if (CheckSafe(Params))
  785. {
  786. AddSearchPath(ExtractFilePath(Application->ExeName));
  787. Configuration->DontSave();
  788. }
  789. }
  790. else if (Params->FindSwitch(L"RemoveSearchPath"))
  791. {
  792. MaintenanceTask();
  793. if (CheckSafe(Params))
  794. {
  795. try
  796. {
  797. RemoveSearchPath(ExtractFilePath(Application->ExeName));
  798. }
  799. catch(...)
  800. {
  801. // ignore errors
  802. // (RemoveSearchPath is called always on uninstallation,
  803. // even if AddSearchPath was not used, so we would get the error
  804. // always for non-priviledged user)
  805. }
  806. Configuration->DontSave();
  807. }
  808. }
  809. else if (Params->FindSwitch(L"ImportSitesIfAny"))
  810. {
  811. MaintenanceTask();
  812. ImportSitesIfAny();
  813. }
  814. else if (Params->FindSwitch(L"Usage", SwitchValue))
  815. {
  816. MaintenanceTask();
  817. Usage(SwitchValue);
  818. }
  819. else if (Params->FindSwitch(L"Update"))
  820. {
  821. MaintenanceTask();
  822. CheckForUpdates(false);
  823. }
  824. else if (ShowUpdatesIfAvailable())
  825. {
  826. // noop
  827. }
  828. else if (Params->FindSwitch(L"Exit"))
  829. {
  830. // noop
  831. MaintenanceTask();
  832. Configuration->DontSave();
  833. }
  834. else if (Params->FindSwitch(L"MaintenanceTask"))
  835. {
  836. // Parameter /MaintenanceTask can be added to command-line when executing maintenance tasks
  837. // (e.g. from installer) just in case old version of WinSCP is called by mistake
  838. MaintenanceTask();
  839. Configuration->DontSave();
  840. }
  841. else
  842. {
  843. enum { pcNone, pcUpload, pcFullSynchronize, pcSynchronize, pcEdit, pcRefresh } ParamCommand;
  844. ParamCommand = pcNone;
  845. UnicodeString AutoStartSession;
  846. UnicodeString DownloadFile;
  847. bool UseDefaults = false;
  848. // do not check for temp dirs for service tasks (like RegisterAsUrlHandler)
  849. if (OnlyInstance &&
  850. WinConfiguration->TemporaryDirectoryCleanup)
  851. {
  852. TemporaryDirectoryCleanup();
  853. }
  854. WinConfiguration->CheckDefaultTranslation();
  855. if (!Params->Empty)
  856. {
  857. if (Params->FindSwitch(DEFAULTS_SWITCH) && CheckSafe(Params))
  858. {
  859. UseDefaults = true;
  860. }
  861. if (Params->FindSwitch(UPLOAD_SWITCH, CommandParams))
  862. {
  863. ParamCommand = pcUpload;
  864. if (CommandParams->Count == 0)
  865. {
  866. throw Exception(NO_UPLOAD_LIST_ERROR);
  867. }
  868. }
  869. if (Params->FindSwitch(UPLOAD_IF_ANY_SWITCH, CommandParams))
  870. {
  871. if (CommandParams->Count > 0)
  872. {
  873. ParamCommand = pcUpload;
  874. }
  875. }
  876. else if (Params->FindSwitch(L"Synchronize", CommandParams, 2))
  877. {
  878. ParamCommand = pcFullSynchronize;
  879. }
  880. else if (Params->FindSwitch(KEEP_UP_TO_DATE_SWITCH, CommandParams, 4))
  881. {
  882. ParamCommand = pcSynchronize;
  883. }
  884. else if (Params->FindSwitch(L"Edit", CommandParams, 1) &&
  885. (CommandParams->Count == 1))
  886. {
  887. ParamCommand = pcEdit;
  888. }
  889. else if (Params->FindSwitch(REFRESH_SWITCH, CommandParams, 1))
  890. {
  891. ParamCommand = pcRefresh;
  892. }
  893. }
  894. if (Params->ParamCount > 0)
  895. {
  896. AutoStartSession = Params->Param[1];
  897. Params->ParamsProcessed(1, 1);
  898. if ((ParamCommand == pcNone) &&
  899. (WinConfiguration->ExternalSessionInExistingInstance != OpenInNewWindow()) &&
  900. !Params->FindSwitch(NEWINSTANCE_SWICH) &&
  901. SendToAnotherInstance())
  902. {
  903. Configuration->Usage->Inc(L"SendToAnotherInstance");
  904. return 0;
  905. }
  906. UnicodeString CounterName;
  907. if (Params->FindSwitch(JUMPLIST_SWITCH))
  908. {
  909. CounterName = L"CommandLineJumpList";
  910. }
  911. else if (Params->FindSwitch(DESKTOP_SWITCH))
  912. {
  913. CounterName = L"CommandLineDesktop";
  914. }
  915. else if (Params->FindSwitch(SEND_TO_HOOK_SWITCH))
  916. {
  917. CounterName = L"CommandLineSendToHook";
  918. }
  919. else
  920. {
  921. CounterName = L"CommandLineSession2";
  922. }
  923. Configuration->Usage->Inc(CounterName);
  924. }
  925. else if (WinConfiguration->EmbeddedSessions && StoredSessions->Count)
  926. {
  927. AutoStartSession = StoredSessions->Sessions[0]->Name;
  928. }
  929. else
  930. {
  931. AutoStartSession = WinConfiguration->AutoStartSession;
  932. }
  933. if (ParamCommand == pcRefresh)
  934. {
  935. Refresh(AutoStartSession, (CommandParams->Count > 0 ? CommandParams->Strings[0] : UnicodeString()));
  936. return 0;
  937. }
  938. // from now flash message boxes on background
  939. SetOnForeground(false);
  940. bool NeedSession = (ParamCommand != pcNone);
  941. bool Retry;
  942. do
  943. {
  944. Retry = false;
  945. TObjectList * DataList = new TObjectList();
  946. try
  947. {
  948. GetLoginData(AutoStartSession, Params, DataList, DownloadFile, NeedSession, NULL);
  949. // GetLoginData now Aborts when session is needed and none is selected
  950. if (DebugAlwaysTrue(!NeedSession || (DataList->Count > 0)))
  951. {
  952. if (CheckSafe(Params))
  953. {
  954. UnicodeString LogFile;
  955. if (Params->FindSwitch(LOG_SWITCH, LogFile))
  956. {
  957. Configuration->TemporaryLogging(LogFile);
  958. }
  959. if (Params->FindSwitch(L"XmlLog", LogFile))
  960. {
  961. Configuration->TemporaryActionsLogging(LogFile);
  962. }
  963. }
  964. try
  965. {
  966. DebugAssert(!TerminalManager->ActiveTerminal);
  967. bool CanStart;
  968. if (DataList->Count > 0)
  969. {
  970. TTerminal * Terminal = TerminalManager->NewTerminals(DataList);
  971. if (!DownloadFile.IsEmpty())
  972. {
  973. Terminal->AutoReadDirectory = false;
  974. DownloadFile = UnixIncludeTrailingBackslash(Terminal->SessionData->RemoteDirectory) + DownloadFile;
  975. Terminal->SessionData->RemoteDirectory = L"";
  976. TManagedTerminal * ManagedTerminal = DebugNotNull(dynamic_cast<TManagedTerminal *>(Terminal));
  977. ManagedTerminal->StateData->RemoteDirectory = Terminal->SessionData->RemoteDirectory;
  978. }
  979. TerminalManager->ActiveTerminal = Terminal;
  980. CanStart = (TerminalManager->Count > 0);
  981. }
  982. else
  983. {
  984. DebugAssert(!NeedSession);
  985. CanStart = true;
  986. }
  987. if (!CanStart)
  988. {
  989. // do not prompt with login dialog, if connection of
  990. // auto-start session (typically from command line) failed
  991. if (AutoStartSession.IsEmpty())
  992. {
  993. Retry = true;
  994. }
  995. }
  996. else
  997. {
  998. // from now on, we do not support runtime interface change
  999. CustomWinConfiguration->CanApplyInterfaceImmediately = false;
  1000. TCustomScpExplorerForm * ScpExplorer = CreateScpExplorer();
  1001. CustomWinConfiguration->AppliedInterface = CustomWinConfiguration->Interface;
  1002. try
  1003. {
  1004. // moved inside try .. __finally, because it can fail as well
  1005. TerminalManager->ScpExplorer = ScpExplorer;
  1006. if ((ParamCommand != pcNone) || !DownloadFile.IsEmpty())
  1007. {
  1008. Configuration->Usage->Inc(L"CommandLineOperation");
  1009. }
  1010. if (ParamCommand == pcUpload)
  1011. {
  1012. Upload(TerminalManager->ActiveTerminal, CommandParams, UseDefaults);
  1013. }
  1014. else if (ParamCommand == pcFullSynchronize)
  1015. {
  1016. FullSynchronize(TerminalManager->ActiveTerminal, ScpExplorer,
  1017. CommandParams, UseDefaults);
  1018. }
  1019. else if (ParamCommand == pcSynchronize)
  1020. {
  1021. Synchronize(TerminalManager->ActiveTerminal, ScpExplorer,
  1022. CommandParams, UseDefaults);
  1023. }
  1024. else if (ParamCommand == pcEdit)
  1025. {
  1026. Edit(ScpExplorer, CommandParams);
  1027. }
  1028. else if (!DownloadFile.IsEmpty())
  1029. {
  1030. Download(TerminalManager->ActiveTerminal, DownloadFile,
  1031. UseDefaults);
  1032. }
  1033. Application->Run();
  1034. }
  1035. __finally
  1036. {
  1037. TerminalManager->ScpExplorer = NULL;
  1038. SAFE_DESTROY(ScpExplorer);
  1039. }
  1040. }
  1041. }
  1042. catch (Exception &E)
  1043. {
  1044. ShowExtendedException(&E);
  1045. }
  1046. }
  1047. }
  1048. __finally
  1049. {
  1050. delete DataList;
  1051. }
  1052. }
  1053. while (Retry);
  1054. }
  1055. }
  1056. __finally
  1057. {
  1058. delete NonVisualDataModule;
  1059. NonVisualDataModule = NULL;
  1060. ReleaseImagesModules();
  1061. delete GlyphsModule;
  1062. GlyphsModule = NULL;
  1063. TTerminalManager::DestroyInstance();
  1064. delete CommandParams;
  1065. }
  1066. return 0;
  1067. }