| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734 |
- using System;
- using System.Collections.Generic;
- using System.IO;
- using System.Reflection;
- using System.Globalization;
- using System.Runtime.InteropServices;
- using System.Threading;
- using System.Xml;
- using Microsoft.Win32;
- using System.Diagnostics;
- namespace WinSCP
- {
- [Guid("38649D44-B839-4F2C-A9DC-5D45EEA4B5E9")]
- [ComVisible(true)]
- public enum SynchronizationMode
- {
- Local = 0,
- Remote = 1,
- Both = 2,
- }
- [Guid("3F770EC1-35F5-4A7B-A000-46A2F7A213D8")]
- [ComVisible(true)]
- [Flags]
- public enum SynchronizationCriteria
- {
- None = 0x00,
- Time = 0x01,
- Size = 0x02,
- Either = Time | Size,
- }
- public delegate void OutputDataReceivedEventHandler(object sender, OutputDataReceivedEventArgs e);
- public delegate void FileTransferredEventHandler(object sender, TransferEventArgs e);
- public delegate void FileTransferProgressEventHandler(object sender, FileTransferProgressEventArgs e);
- public delegate void FailedEventHandler(object sender, FailedEventArgs e);
- [Guid("56FFC5CE-3867-4EF0-A3B5-CFFBEB99EA35")]
- [ClassInterface(Constants.ClassInterface)]
- [ComVisible(true)]
- [ComSourceInterfaces(typeof(ISessionEvents))]
- public sealed class Session : IDisposable, IReflect
- {
- public string ExecutablePath { get { return _executablePath; } set { CheckNotOpened(); _executablePath = value; } }
- public string AdditionalExecutableArguments { get { return _additionalExecutableArguments; } set { CheckNotOpened(); _additionalExecutableArguments = value; } }
- public bool DefaultConfiguration { get { return _defaultConfiguration; } set { CheckNotOpened(); _defaultConfiguration = value; } }
- public bool DisableVersionCheck { get { return _disableVersionCheck; } set { CheckNotOpened(); _disableVersionCheck = value; } }
- public string IniFilePath { get { return _iniFilePath; } set { CheckNotOpened(); _iniFilePath = value; } }
- public TimeSpan ReconnectTime { get { return _reconnectTime; } set { CheckNotOpened(); _reconnectTime = value; } }
- public int ReconnectTimeInMilliseconds { get { return Tools.TimeSpanToMilliseconds(ReconnectTime); } set { ReconnectTime = Tools.MillisecondsToTimeSpan(value); } }
- public string DebugLogPath { get { CheckNotDisposed(); return Logger.LogPath; } set { CheckNotDisposed(); Logger.LogPath = value; } }
- public int DebugLogLevel { get { CheckNotDisposed(); return Logger.LogLevel; } set { CheckNotDisposed(); Logger.LogLevel = value; } }
- public string SessionLogPath { get { return _sessionLogPath; } set { CheckNotOpened(); _sessionLogPath = value; } }
- public string XmlLogPath { get { return _xmlLogPath; } set { CheckNotOpened(); _xmlLogPath = value; } }
- #if DEBUG
- public bool GuardProcessWithJob { get { return GuardProcessWithJobInternal; } set { GuardProcessWithJobInternal = value; } }
- public bool TestHandlesClosed { get { return TestHandlesClosedInternal; } set { TestHandlesClosedInternal = value; } }
- #endif
- public string HomePath { get { CheckOpened(); return _homePath; } }
- public TimeSpan Timeout { get; set; }
- public StringCollection Output { get; private set; }
- public bool Opened { get { CheckNotDisposed(); return (_process != null); } }
- public event FileTransferredEventHandler FileTransferred;
- public event FailedEventHandler Failed;
- public event OutputDataReceivedEventHandler OutputDataReceived;
- public event FileTransferProgressEventHandler FileTransferProgress
- {
- add
- {
- using (Logger.CreateCallstackAndLock())
- {
- CheckNotOpened();
- _fileTransferProgress += value;
- }
- }
- remove
- {
- using (Logger.CreateCallstackAndLock())
- {
- CheckNotOpened();
- _fileTransferProgress -= value;
- }
- }
- }
- public Session()
- {
- Logger = new Logger();
- using (Logger.CreateCallstackAndLock())
- {
- Timeout = new TimeSpan(0, 1, 0);
- _reconnectTime = new TimeSpan(0, 2, 0); // keep in sync with TScript::OptionImpl
- Output = new StringCollection();
- _operationResults = new List<OperationResultBase>();
- _events = new List<Action>();
- _eventsEvent = new AutoResetEvent(false);
- _disposed = false;
- _defaultConfiguration = true;
- _logUnique = 0;
- _guardProcessWithJob = true;
- RawConfiguration = new Dictionary<string, string>();
- }
- }
- public void Dispose()
- {
- using (Logger.CreateCallstackAndLock())
- {
- _disposed = true;
- Cleanup();
- Logger.Dispose();
- if (_eventsEvent != null)
- {
- _eventsEvent.Close();
- _eventsEvent = null;
- }
- GC.SuppressFinalize(this);
- }
- }
- public void Abort()
- {
- using (Logger.CreateCallstack())
- {
- CheckOpened();
- _aborted = true;
- // double-check
- if (_process != null)
- {
- _process.Abort();
- }
- }
- }
- public void Open(SessionOptions sessionOptions)
- {
- using (Logger.CreateCallstackAndLock())
- {
- CheckNotDisposed();
- if (Opened)
- {
- throw new InvalidOperationException("Session is already opened");
- }
- try
- {
- SetupTempPath();
- _process = new ExeSessionProcess(this);
- _process.OutputDataReceived += ProcessOutputDataReceived;
- _process.Start();
- GotOutput();
- // setup batch mode
- WriteCommand("option batch on");
- WriteCommand("option confirm off");
- object reconnectTimeValue;
- if (ReconnectTime != TimeSpan.MaxValue)
- {
- reconnectTimeValue = (int)ReconnectTime.TotalSeconds;
- }
- else
- {
- reconnectTimeValue = "off";
- }
- string reconnectTimeCommand =
- string.Format(CultureInfo.InvariantCulture, "option reconnecttime {0}", reconnectTimeValue);
- WriteCommand(reconnectTimeCommand);
- string command;
- string log;
- SessionOptionsToOpenCommand(sessionOptions, out command, out log);
- WriteCommand(command, log);
- string logExplanation =
- string.Format(CultureInfo.CurrentCulture,
- "(response log file {0} was not created). This could indicate lack of write permissions to the log folder or problems starting WinSCP itself.",
- XmlLogPath);
- // Wait until the log file gets created or WinSCP terminates (in case of fatal error)
- do
- {
- if (_process.HasExited && !File.Exists(XmlLogPath))
- {
- string[] output = new string[Output.Count];
- Output.CopyTo(output, 0);
- Logger.WriteCounters();
- Logger.WriteProcesses();
- _process.WriteStatus();
- string exitCode = string.Format(CultureInfo.CurrentCulture, "{0}", _process.ExitCode);
- if (_process.ExitCode < 0)
- {
- exitCode = string.Format(CultureInfo.CurrentCulture, "{0} ({1:X})", exitCode, _process.ExitCode);
- }
- throw new SessionLocalException(this,
- string.Format(CultureInfo.CurrentCulture,
- "WinSCP process terminated with exit code {0} and output \"{1}\", without responding {2}",
- exitCode, string.Join(Environment.NewLine, output), logExplanation));
- }
- Thread.Sleep(50);
- CheckForTimeout(
- string.Format(CultureInfo.CurrentCulture,
- "WinSCP has not responded in time {0}",
- logExplanation));
- } while (!File.Exists(XmlLogPath));
- _logReader = new SessionLogReader(this);
- _logReader.WaitForNonEmptyElement("session", LogReadFlags.ThrowFailures);
- // special variant of ElementLogReader that throws when closing element (</session>) is encountered
- _reader = new SessionElementLogReader(_logReader);
- // Skip "open" command <group>
- using (ElementLogReader groupReader = _reader.WaitForGroupAndCreateLogReader())
- {
- ReadElement(groupReader, LogReadFlags.ThrowFailures);
- }
- WriteCommand("pwd");
- using (ElementLogReader groupReader = _reader.WaitForGroupAndCreateLogReader())
- using (ElementLogReader cwdReader = groupReader.WaitForNonEmptyElementAndCreateLogReader("cwd", LogReadFlags.ThrowFailures))
- {
- while (cwdReader.Read(0))
- {
- string value;
- if (cwdReader.GetEmptyElementValue("cwd", out value))
- {
- _homePath = value;
- }
- }
- groupReader.ReadToEnd(LogReadFlags.ThrowFailures);
- }
- }
- catch(Exception e)
- {
- Logger.WriteLine("Exception: {0}", e);
- Cleanup();
- throw;
- }
- }
- }
- public void Close()
- {
- using (Logger.CreateCallstackAndLock())
- {
- CheckOpened();
- Cleanup();
- }
- }
- public RemoteDirectoryInfo ListDirectory(string path)
- {
- using (Logger.CreateCallstackAndLock())
- {
- CheckOpened();
- WriteCommand(string.Format(CultureInfo.InvariantCulture, "ls -- \"{0}\"", Tools.ArgumentEscape(IncludeTrailingSlash(path))));
- RemoteDirectoryInfo result = new RemoteDirectoryInfo();
- using (ElementLogReader groupReader = _reader.WaitForGroupAndCreateLogReader())
- using (ElementLogReader lsReader = groupReader.WaitForNonEmptyElementAndCreateLogReader("ls", LogReadFlags.ThrowFailures))
- {
- if (lsReader.TryWaitForNonEmptyElement("files", 0))
- {
- using (ElementLogReader filesReader = lsReader.CreateLogReader())
- {
- while (filesReader.TryWaitForNonEmptyElement("file", 0))
- {
- RemoteFileInfo fileInfo = new RemoteFileInfo();
- using (ElementLogReader fileReader = filesReader.CreateLogReader())
- {
- while (fileReader.Read(0))
- {
- string value;
- if (fileReader.GetEmptyElementValue("filename", out value))
- {
- fileInfo.Name = value;
- }
- else
- {
- ReadFile(fileInfo, fileReader);
- }
- }
- result.AddFile(fileInfo);
- }
- }
- }
- groupReader.ReadToEnd(LogReadFlags.ThrowFailures);
- }
- else
- {
- // "files" not found, keep reading, we expect "failure"
- groupReader.ReadToEnd(LogReadFlags.ThrowFailures);
- // only if not "failure", throw "files" not found
- throw SessionLocalException.CreateElementNotFound(this, "files");
- }
- }
- return result;
- }
- }
- public TransferOperationResult PutFiles(string localPath, string remotePath, bool remove = false, TransferOptions options = null)
- {
- using (Logger.CreateCallstackAndLock())
- {
- if (options == null)
- {
- options = new TransferOptions();
- }
- CheckOpened();
- WriteCommand(
- string.Format(CultureInfo.InvariantCulture,
- "put {0} {1} -- \"{2}\" \"{3}\"",
- BooleanSwitch(remove, "delete"), options.ToSwitches(),
- Tools.ArgumentEscape(localPath), Tools.ArgumentEscape(remotePath)));
- TransferOperationResult result = new TransferOperationResult();
- using (ElementLogReader groupReader = _reader.WaitForGroupAndCreateLogReader())
- using (RegisterOperationResult(result))
- using (CreateProgressHandler())
- {
- TransferEventArgs args = null;
- bool mkdir = false;
- while (groupReader.Read(0))
- {
- if (groupReader.IsNonEmptyElement(TransferEventArgs.UploadTag))
- {
- AddTransfer(result, args);
- args = TransferEventArgs.Read(groupReader);
- mkdir = false;
- }
- else if (groupReader.IsNonEmptyElement(TransferEventArgs.MkDirTag))
- {
- AddTransfer(result, args);
- args = null;
- mkdir = true;
- // For now, silently ignoring results (even errors)
- // of mkdir operation, including future chmod/touch
- }
- else if (groupReader.IsNonEmptyElement(ChmodEventArgs.Tag))
- {
- if (!mkdir)
- {
- if (args == null)
- {
- throw new InvalidOperationException("Tag chmod before tag upload");
- }
- args.Chmod = ChmodEventArgs.Read(groupReader);
- }
- }
- else if (groupReader.IsNonEmptyElement(TouchEventArgs.Tag))
- {
- if (!mkdir)
- {
- if (args == null)
- {
- throw new InvalidOperationException("Tag touch before tag upload");
- }
- args.Touch = TouchEventArgs.Read(groupReader);
- }
- }
- }
- AddTransfer(result, args);
- }
- return result;
- }
- }
- private void AddTransfer(TransferOperationResult result, TransferEventArgs args)
- {
- if (args != null)
- {
- result.AddTransfer(args);
- RaiseFileTransferredEvent(args);
- }
- }
- public TransferOperationResult GetFiles(string remotePath, string localPath, bool remove = false, TransferOptions options = null)
- {
- using (Logger.CreateCallstackAndLock())
- {
- if (options == null)
- {
- options = new TransferOptions();
- }
- CheckOpened();
- WriteCommand(
- string.Format(CultureInfo.InvariantCulture, "get {0} {1} -- \"{2}\" \"{3}\"",
- BooleanSwitch(remove, "delete"), options.ToSwitches(),
- Tools.ArgumentEscape(remotePath), Tools.ArgumentEscape(localPath)));
- TransferOperationResult result = new TransferOperationResult();
- using (ElementLogReader groupReader = _reader.WaitForGroupAndCreateLogReader())
- using (RegisterOperationResult(result))
- using (CreateProgressHandler())
- {
- TransferEventArgs args = null;
- while (groupReader.Read(0))
- {
- if (groupReader.IsNonEmptyElement(TransferEventArgs.DownloadTag))
- {
- AddTransfer(result, args);
- args = TransferEventArgs.Read(groupReader);
- }
- else if (groupReader.IsNonEmptyElement(RemovalEventArgs.Tag))
- {
- // When "downloading and deleting" a folder,
- // we get "rm" tag without preceeding "download" tag.
- // So we use only the first "rm" tag after preceeding "download" tag,
- // silently ignoring the others
- if ((args != null) && (args.Removal == null))
- {
- args.Removal = RemovalEventArgs.Read(groupReader);
- }
- }
- }
- AddTransfer(result, args);
- }
- return result;
- }
- }
- public RemovalOperationResult RemoveFiles(string path)
- {
- using (Logger.CreateCallstackAndLock())
- {
- CheckOpened();
- WriteCommand(string.Format(CultureInfo.InvariantCulture, "rm -- \"{0}\"", Tools.ArgumentEscape(path)));
- RemovalOperationResult result = new RemovalOperationResult();
- using (ElementLogReader groupReader = _reader.WaitForGroupAndCreateLogReader())
- using (RegisterOperationResult(result))
- {
- while (groupReader.Read(0))
- {
- if (groupReader.IsNonEmptyElement(RemovalEventArgs.Tag))
- {
- result.AddRemoval(RemovalEventArgs.Read(groupReader));
- }
- }
- }
- return result;
- }
- }
- public SynchronizationResult SynchronizeDirectories(
- SynchronizationMode mode, string localPath, string remotePath,
- bool removeFiles, bool mirror = false, SynchronizationCriteria criteria = SynchronizationCriteria.Time,
- TransferOptions options = null)
- {
- using (Logger.CreateCallstackAndLock())
- {
- if (options == null)
- {
- options = new TransferOptions();
- }
- CheckOpened();
- if (removeFiles && (mode == SynchronizationMode.Both))
- {
- throw new ArgumentException("Cannot delete files in synchronization mode Both");
- }
- if (mirror && (mode == SynchronizationMode.Both))
- {
- throw new ArgumentException("Cannot mirror files in synchronization mode Both");
- }
- if ((criteria != SynchronizationCriteria.Time) && (mode == SynchronizationMode.Both))
- {
- throw new ArgumentException("Only Time criteria is allowed in synchronization mode Both");
- }
- string modeName;
- switch (mode)
- {
- case SynchronizationMode.Local:
- modeName = "local";
- break;
- case SynchronizationMode.Remote:
- modeName = "remote";
- break;
- case SynchronizationMode.Both:
- modeName = "both";
- break;
- default:
- throw new ArgumentOutOfRangeException("mode");
- }
- string criteriaName;
- switch (criteria)
- {
- case SynchronizationCriteria.None:
- criteriaName = "none";
- break;
- case SynchronizationCriteria.Time:
- criteriaName = "time";
- break;
- case SynchronizationCriteria.Size:
- criteriaName = "size";
- break;
- case SynchronizationCriteria.Either:
- criteriaName = "either";
- break;
- default:
- throw new ArgumentOutOfRangeException("criteria");
- }
- WriteCommand(
- string.Format(CultureInfo.InvariantCulture,
- "synchronize {0} {1} {2} {3} -criteria=\"{4}\" -- \"{5}\" \"{6}\"",
- modeName,
- BooleanSwitch(removeFiles, "delete"),
- BooleanSwitch(mirror, "mirror"),
- options.ToSwitches(),
- criteriaName,
- Tools.ArgumentEscape(localPath), Tools.ArgumentEscape(remotePath)));
- return ReadSynchronizeDirectories();
- }
- }
- private SynchronizationResult ReadSynchronizeDirectories()
- {
- using (Logger.CreateCallstack())
- {
- SynchronizationResult result = new SynchronizationResult();
- using (ElementLogReader groupReader = _reader.WaitForGroupAndCreateLogReader())
- using (RegisterOperationResult(result))
- using (CreateProgressHandler())
- {
- bool transferIsUpload = false;
- TransferEventArgs transfer = null;
- while (groupReader.Read(0))
- {
- bool transferWillBeUpload;
- if ((transferWillBeUpload = groupReader.IsNonEmptyElement(TransferEventArgs.UploadTag)) ||
- groupReader.IsNonEmptyElement(TransferEventArgs.DownloadTag))
- {
- AddSynchronizationTransfer(result, transferIsUpload, transfer);
- transfer = TransferEventArgs.Read(groupReader);
- transferIsUpload = transferWillBeUpload;
- }
- else if (groupReader.IsNonEmptyElement(RemovalEventArgs.Tag))
- {
- result.AddRemoval(RemovalEventArgs.Read(groupReader));
- }
- else if (groupReader.IsNonEmptyElement(ChmodEventArgs.Tag))
- {
- if (transfer == null)
- {
- throw new InvalidOperationException("Tag chmod before tag download");
- }
- transfer.Chmod = ChmodEventArgs.Read(groupReader);
- }
- else if (groupReader.IsNonEmptyElement(TouchEventArgs.Tag))
- {
- if (transfer == null)
- {
- throw new InvalidOperationException("Tag touch before tag download");
- }
- transfer.Touch = TouchEventArgs.Read(groupReader);
- }
- }
- AddSynchronizationTransfer(result, transferIsUpload, transfer);
- }
- return result;
- }
- }
- public CommandExecutionResult ExecuteCommand(string command)
- {
- using (Logger.CreateCallstackAndLock())
- {
- CheckOpened();
- WriteCommand(string.Format(CultureInfo.InvariantCulture, "call {0}", command));
- CommandExecutionResult result = new CommandExecutionResult();
- // registering before creating group reader, so that
- // it is still registered, when group reader is read to the end in it's .Dispose();
- using (RegisterOperationResult(result))
- using (ElementLogReader groupReader = _reader.WaitForGroupAndCreateLogReader())
- using (ElementLogReader callReader = groupReader.WaitForNonEmptyElementAndCreateLogReader("call", LogReadFlags.ThrowFailures))
- {
- while (callReader.Read(0))
- {
- string value;
- if (callReader.GetEmptyElementValue("output", out value))
- {
- result.Output = value;
- }
- if (callReader.GetEmptyElementValue("erroroutput", out value))
- {
- result.ErrorOutput = value;
- }
- if (callReader.GetEmptyElementValue("exitcode", out value))
- {
- result.ExitCode = int.Parse(value, CultureInfo.InvariantCulture);
- }
- }
- }
- return result;
- }
- }
- public RemoteFileInfo GetFileInfo(string path)
- {
- using (Logger.CreateCallstackAndLock())
- {
- CheckOpened();
- return DoGetFileInfo(path);
- }
- }
- public bool FileExists(string path)
- {
- using (Logger.CreateCallstackAndLock())
- {
- CheckOpened();
- try
- {
- DoGetFileInfo(path);
- return true;
- }
- catch (SessionRemoteException)
- {
- return false;
- }
- }
- }
- public byte[] CalculateFileChecksum(string algorithm, string path)
- {
- using (Logger.CreateCallstack())
- {
- WriteCommand(string.Format(CultureInfo.InvariantCulture, "checksum -- \"{0}\" \"{1}\"", Tools.ArgumentEscape(algorithm), Tools.ArgumentEscape(path)));
- string hex = null;
- using (ElementLogReader groupReader = _reader.WaitForGroupAndCreateLogReader())
- using (ElementLogReader checksumReader = groupReader.WaitForNonEmptyElementAndCreateLogReader("checksum", LogReadFlags.ThrowFailures))
- {
- while (checksumReader.Read(0))
- {
- string value;
- if (checksumReader.GetEmptyElementValue("checksum", out value))
- {
- hex = value;
- }
- }
- groupReader.ReadToEnd(LogReadFlags.ThrowFailures);
- }
- int len = hex.Length;
- if ((len % 2) != 0)
- {
- string error = string.Format(CultureInfo.CurrentCulture, "Invalid string representation of checksum - {0}", hex);
- throw new SessionLocalException(this, error);
- }
- int count = len / 2;
- byte[] bytes = new byte[count];
- for (int i = 0; i < count; i++)
- {
- bytes[i] = Convert.ToByte(hex.Substring(i * 2, 2), 16);
- }
- return bytes;
- }
- }
- public void CreateDirectory(string path)
- {
- using (Logger.CreateCallstackAndLock())
- {
- CheckOpened();
- WriteCommand(string.Format(CultureInfo.InvariantCulture, "mkdir \"{0}\"", Tools.ArgumentEscape(path)));
- using (ElementLogReader groupReader = _reader.WaitForGroupAndCreateLogReader())
- using (ElementLogReader mkdirReader = groupReader.WaitForNonEmptyElementAndCreateLogReader(TransferEventArgs.MkDirTag, LogReadFlags.ThrowFailures))
- {
- ReadElement(mkdirReader, 0);
- groupReader.ReadToEnd(LogReadFlags.ThrowFailures);
- }
- }
- }
- public void MoveFile(string sourcePath, string targetPath)
- {
- using (Logger.CreateCallstackAndLock())
- {
- CheckOpened();
- WriteCommand(string.Format(CultureInfo.InvariantCulture, "mv \"{0}\" \"{1}\"", Tools.ArgumentEscape(sourcePath), Tools.ArgumentEscape(targetPath)));
- using (ElementLogReader groupReader = _reader.WaitForGroupAndCreateLogReader())
- using (ElementLogReader mvReader = groupReader.WaitForNonEmptyElementAndCreateLogReader("mv", LogReadFlags.ThrowFailures))
- {
- ReadElement(mvReader, 0);
- groupReader.ReadToEnd(LogReadFlags.ThrowFailures);
- }
- }
- }
- // This is not static method only to make it visible to COM
- public string EscapeFileMask(string fileMask)
- {
- if (fileMask == null)
- {
- throw new ArgumentNullException("fileMask");
- }
- int lastSlash = fileMask.LastIndexOf('/');
- string path = lastSlash > 0 ? fileMask.Substring(0, lastSlash + 1) : string.Empty;
- string mask = lastSlash > 0 ? fileMask.Substring(lastSlash + 1) : fileMask;
- mask = mask.Replace("[", "[[]").Replace("*", "[*]").Replace("?", "[?]");
- return path + mask;
- }
- public void AddRawConfiguration(string setting, string value)
- {
- RawConfiguration.Add(setting, value);
- }
- [ComRegisterFunction]
- private static void ComRegister(Type t)
- {
- string subKey = GetTypeLibKey(t);
- Assembly assembly = Assembly.GetAssembly(t);
- object[] attributes = assembly.GetCustomAttributes(typeof(GuidAttribute), false);
- if (attributes.Length == 0)
- {
- throw new InvalidOperationException(string.Format(CultureInfo.CurrentCulture, "Cannot find {0} attribute for assembly {1}", typeof(GuidAttribute), assembly));
- }
- GuidAttribute guidAttribute = (GuidAttribute)attributes[0];
- Registry.ClassesRoot.CreateSubKey(subKey).SetValue(null, guidAttribute.Value);
- }
- [ComUnregisterFunction]
- private static void ComUnregister(Type t)
- {
- string subKey = GetTypeLibKey(t);
- Registry.ClassesRoot.DeleteSubKey(subKey, false);
- }
- private void ReadFile(RemoteFileInfo fileInfo, CustomLogReader fileReader)
- {
- using (Logger.CreateCallstack())
- {
- string value;
- if (fileReader.GetEmptyElementValue("type", out value))
- {
- fileInfo.FileType = value[0];
- }
- else if (fileReader.GetEmptyElementValue("size", out value))
- {
- fileInfo.Length = long.Parse(value, CultureInfo.InvariantCulture);
- }
- else if (fileReader.GetEmptyElementValue("modification", out value))
- {
- fileInfo.LastWriteTime = XmlConvert.ToDateTime(value, XmlDateTimeSerializationMode.Local);
- }
- else if (fileReader.GetEmptyElementValue("permissions", out value))
- {
- fileInfo.FilePermissions = FilePermissions.CreateReadOnlyFromText(value);
- }
- else if (fileReader.GetEmptyElementValue("owner", out value))
- {
- fileInfo.Owner = value;
- }
- else if (fileReader.GetEmptyElementValue("group", out value))
- {
- fileInfo.Group = value;
- }
- }
- }
- internal static string BooleanSwitch(bool flag, string name)
- {
- return flag ? string.Format(CultureInfo.InvariantCulture, "-{0}", name) : null;
- }
- internal static string BooleanSwitch(bool flag, string onName, string offName)
- {
- return flag ? string.Format(CultureInfo.InvariantCulture, "-{0}", onName) : string.Format(CultureInfo.InvariantCulture, "-{0}", offName);
- }
- private void AddSynchronizationTransfer(SynchronizationResult result, bool transferIsUpload, TransferEventArgs transfer)
- {
- if (transfer != null)
- {
- if (transferIsUpload)
- {
- result.AddUpload(transfer);
- }
- else
- {
- result.AddDownload(transfer);
- }
- RaiseFileTransferredEvent(transfer);
- }
- }
- private static string IncludeTrailingSlash(string path)
- {
- if (!string.IsNullOrEmpty(path) && !path.EndsWith("/", StringComparison.Ordinal))
- {
- path += '/';
- }
- return path;
- }
- private void Cleanup()
- {
- using (Logger.CreateCallstack())
- {
- if (_process != null)
- {
- Logger.WriteLine("Terminating process");
- try
- {
- try
- {
- WriteCommand("exit");
- _process.Close();
- }
- finally
- {
- _process.Dispose();
- _process = null;
- }
- }
- catch (Exception e)
- {
- Logger.WriteLine("Process cleanup Exception: {0}", e);
- }
- }
- Logger.WriteLine("Disposing log readers");
- if (_reader != null)
- {
- _reader.Dispose();
- _reader = null;
- }
- if (_logReader != null)
- {
- _logReader.Dispose();
- _logReader = null;
- }
- // Cleanup log file
- if ((XmlLogPath != null) && File.Exists(XmlLogPath))
- {
- Logger.WriteLine("Deleting XML log file [{0}]", XmlLogPath);
- try
- {
- File.Delete(XmlLogPath);
- }
- catch (DirectoryNotFoundException e)
- {
- Logger.WriteLine("XML log cleanup DirectoryNotFoundException: {0}", e);
- }
- catch (IOException e)
- {
- Logger.WriteLine("XML log cleanup IOException: {0}", e);
- }
- catch (UnauthorizedAccessException e)
- {
- Logger.WriteLine("XML log cleanup UnauthorizedAccessException: {0}", e);
- }
- _xmlLogPath = null;
- }
- }
- }
- private void WriteCommand(string command)
- {
- WriteCommand(command, command);
- }
- private void WriteCommand(string command, string log)
- {
- Logger.WriteLine("Command: [{0}]", log);
- _process.ExecuteCommand(command);
- GotOutput();
- }
- private static void ReadElement(CustomLogReader reader, LogReadFlags flags)
- {
- while (reader.Read(flags))
- {
- }
- }
- private void SessionOptionsToOpenCommand(SessionOptions sessionOptions, out string command, out string log)
- {
- using (Logger.CreateCallstack())
- {
- if (sessionOptions.WebdavSecure)
- {
- if (sessionOptions.Protocol != Protocol.Webdav)
- {
- throw new ArgumentException("SessionOptions.WebdavSecure is set, but SessionOptions.Protocol is not Protocol.Webdav.");
- }
- }
- string head;
- switch (sessionOptions.Protocol)
- {
- case Protocol.Sftp:
- head = "sftp://";
- break;
- case Protocol.Scp:
- head = "scp://";
- break;
- case Protocol.Ftp:
- head = "ftp://";
- break;
- case Protocol.Webdav:
- if (!sessionOptions.WebdavSecure)
- {
- head = "http://";
- }
- else
- {
- head = "https://";
- }
- break;
- default:
- throw new ArgumentException(string.Format(CultureInfo.CurrentCulture, "{0} is not supported", sessionOptions.Protocol));
- }
- bool hasUsername = !string.IsNullOrEmpty(sessionOptions.UserName);
- if (hasUsername)
- {
- head += UriEscape(sessionOptions.UserName);
- }
- string url = head;
- string logUrl = head;
- if (sessionOptions.SecurePassword != null)
- {
- if (!hasUsername)
- {
- throw new ArgumentException("SessionOptions.Password is set, but SessionOptions.UserName is not.");
- }
- url += ":" + UriEscape(sessionOptions.Password);
- logUrl += ":***";
- }
- string tail = string.Empty;
- if (hasUsername)
- {
- tail += "@";
- }
- if (string.IsNullOrEmpty(sessionOptions.HostName))
- {
- throw new ArgumentException("SessionOptions.HostName is not set.");
- }
- // We should wrap IPv6 literals to square brackets, instead of URL-encoding them,
- // but it works anyway...
- tail += UriEscape(sessionOptions.HostName);
- if (sessionOptions.PortNumber != 0)
- {
- tail += ":" + sessionOptions.PortNumber.ToString(CultureInfo.InvariantCulture);
- }
- if (!string.IsNullOrEmpty(sessionOptions.WebdavRoot))
- {
- if (sessionOptions.Protocol != Protocol.Webdav)
- {
- throw new ArgumentException("SessionOptions.WebdavRoot is set, but SessionOptions.Protocol is not Protocol.Webdav.");
- }
- tail += sessionOptions.WebdavRoot;
- }
- url += tail;
- logUrl += tail;
- string arguments = SessionOptionsToOpenSwitches(sessionOptions);
- Tools.AddRawParameters(ref arguments, sessionOptions.RawSettings, "-rawsettings");
- if (!string.IsNullOrEmpty(arguments))
- {
- arguments = " " + arguments;
- }
- // Switches should (and particularly the -rawsettings MUST) come after the URL
- command = "open \"" + Tools.ArgumentEscape(url) + "\"" + arguments;
- log = "open \"" + Tools.ArgumentEscape(logUrl) + "\"" + arguments;
- }
- }
- private string SessionOptionsToOpenSwitches(SessionOptions sessionOptions)
- {
- using (Logger.CreateCallstack())
- {
- List<string> switches = new List<string>();
- if (!string.IsNullOrEmpty(sessionOptions.SshHostKeyFingerprint) ||
- sessionOptions.GiveUpSecurityAndAcceptAnySshHostKey)
- {
- if (!sessionOptions.IsSsh)
- {
- throw new ArgumentException("SessionOptions.SshHostKeyFingerprint or SessionOptions.GiveUpSecurityAndAcceptAnySshHostKey is set, but SessionOptions.Protocol is neither Protocol.Sftp nor Protocol.Scp.");
- }
- string sshHostKeyFingerprint = sessionOptions.SshHostKeyFingerprint;
- if (sessionOptions.GiveUpSecurityAndAcceptAnySshHostKey)
- {
- Logger.WriteLine("WARNING! Giving up security and accepting any key as configured");
- sshHostKeyFingerprint = AddStarToList(sshHostKeyFingerprint);
- }
- switches.Add(FormatSwitch("hostkey", sshHostKeyFingerprint));
- }
- else
- {
- if (sessionOptions.IsSsh && DefaultConfiguration)
- {
- throw new ArgumentException("SessionOptions.Protocol is Protocol.Sftp or Protocol.Scp, but SessionOptions.SshHostKeyFingerprint is not set.");
- }
- }
- if (!string.IsNullOrEmpty(sessionOptions.SshPrivateKeyPath))
- {
- if (!sessionOptions.IsSsh)
- {
- throw new ArgumentException("SessionOptions.SshPrivateKeyPath is set, but SessionOptions.Protocol is neither Protocol.Sftp nor Protocol.Scp.");
- }
- switches.Add(FormatSwitch("privatekey", sessionOptions.SshPrivateKeyPath));
- }
- if (!string.IsNullOrEmpty(sessionOptions.SshPrivateKeyPassphrase))
- {
- if (string.IsNullOrEmpty(sessionOptions.SshPrivateKeyPath))
- {
- throw new ArgumentException("SessionOptions.SshPrivateKeyPassphrase is set, but sessionOptions.SshPrivateKeyPath is not.");
- }
- switches.Add(FormatSwitch("passphrase", sessionOptions.SshPrivateKeyPassphrase));
- }
- if (sessionOptions.FtpSecure != FtpSecure.None)
- {
- if (sessionOptions.Protocol != Protocol.Ftp)
- {
- throw new ArgumentException("SessionOptions.FtpSecure is not FtpSecure.None, but SessionOptions.Protocol is not Protocol.Ftp.");
- }
- switch (sessionOptions.FtpSecure)
- {
- case FtpSecure.Implicit:
- switches.Add(FormatSwitch("implicit"));
- break;
- case FtpSecure.Explicit: // and ExplicitTls
- switches.Add(FormatSwitch("explicit"));
- break;
- #pragma warning disable 618
- case FtpSecure.ExplicitSsl:
- #pragma warning restore 618
- switches.Add(FormatSwitch("explicitssl"));
- break;
- default:
- throw new ArgumentException(string.Format(CultureInfo.CurrentCulture, "{0} is not supported", sessionOptions.FtpSecure));
- }
- }
- if (!string.IsNullOrEmpty(sessionOptions.TlsHostCertificateFingerprint) ||
- sessionOptions.GiveUpSecurityAndAcceptAnyTlsHostCertificate)
- {
- if ((sessionOptions.FtpSecure == FtpSecure.None) && !sessionOptions.WebdavSecure)
- {
- throw new ArgumentException("SessionOptions.TlsHostCertificateFingerprint or SessionOptions.GiveUpSecurityAndAcceptAnyTlsHostCertificate is set, neither SessionOptions.FtpSecure nor SessionOptions.WebdavSecure is enabled.");
- }
- string tlsHostCertificateFingerprint = sessionOptions.TlsHostCertificateFingerprint;
- if (sessionOptions.GiveUpSecurityAndAcceptAnyTlsHostCertificate)
- {
- Logger.WriteLine("WARNING! Giving up security and accepting any certificate as configured");
- tlsHostCertificateFingerprint = AddStarToList(tlsHostCertificateFingerprint);
- }
- switches.Add(FormatSwitch("certificate", tlsHostCertificateFingerprint));
- }
- if (sessionOptions.Protocol == Protocol.Ftp)
- {
- switches.Add(FormatSwitch("passive", (sessionOptions.FtpMode == FtpMode.Passive)));
- }
- switches.Add(FormatSwitch("timeout", (int)sessionOptions.Timeout.TotalSeconds));
- return string.Join(" ", switches.ToArray());
- }
- }
- private static string AddStarToList(string list)
- {
- return (string.IsNullOrEmpty(list) ? string.Empty : list + ";") + "*";
- }
- private RemoteFileInfo DoGetFileInfo(string path)
- {
- using (Logger.CreateCallstack())
- {
- WriteCommand(string.Format(CultureInfo.InvariantCulture, "stat -- \"{0}\"", Tools.ArgumentEscape(path)));
- RemoteFileInfo fileInfo = new RemoteFileInfo();
- using (ElementLogReader groupReader = _reader.WaitForGroupAndCreateLogReader())
- using (ElementLogReader statReader = groupReader.WaitForNonEmptyElementAndCreateLogReader("stat", LogReadFlags.ThrowFailures))
- {
- while (statReader.Read(0))
- {
- string value;
- if (statReader.GetEmptyElementValue("filename", out value))
- {
- fileInfo.Name = value;
- }
- else if (statReader.IsNonEmptyElement("file"))
- {
- using (ElementLogReader fileReader = statReader.CreateLogReader())
- {
- while (fileReader.Read(0))
- {
- ReadFile(fileInfo, fileReader);
- }
- }
- }
- }
- groupReader.ReadToEnd(LogReadFlags.ThrowFailures);
- }
- return fileInfo;
- }
- }
- internal static string FormatSwitch(string key)
- {
- return string.Format(CultureInfo.InvariantCulture, "-{0}", key);
- }
- internal static string FormatSwitch(string key, string value)
- {
- return string.Format(CultureInfo.InvariantCulture, "-{0}=\"{1}\"", key, Tools.ArgumentEscape(value));
- }
- internal static string FormatSwitch(string key, int value)
- {
- return string.Format(CultureInfo.InvariantCulture, "-{0}={1}", key, value.ToString(CultureInfo.InvariantCulture));
- }
- internal static string FormatSwitch(string key, bool value)
- {
- return FormatSwitch(key, (value ? 1 : 0));
- }
- private static string UriEscape(string s)
- {
- return Uri.EscapeDataString(s);
- }
- internal void GotOutput()
- {
- _lastOutput = DateTime.Now;
- }
- private void ProcessOutputDataReceived(object sender, OutputDataReceivedEventArgs e)
- {
- Logger.WriteLine("Scheduling output: [{0}]", e.Data);
- Output.InternalAdd(e.Data);
- if (Output.Count > 1000)
- {
- Output.InternalRemoveFirst();
- }
- GotOutput();
- ScheduleEvent(() => RaiseOutputDataReceived(e.Data));
- }
- private void ScheduleEvent(Action action)
- {
- lock (_events)
- {
- _events.Add(action);
- _eventsEvent.Set();
- }
- }
- internal void CheckForTimeout(string additional = null)
- {
- if (DateTime.Now - _lastOutput > Timeout)
- {
- string message = "Timeout waiting for WinSCP to respond";
- if (additional != null)
- {
- message += " - " + additional;
- }
- throw new TimeoutException(message);
- }
- if (_aborted)
- {
- throw new SessionLocalException(this, "Aborted.");
- }
- }
- private void RaiseFileTransferredEvent(TransferEventArgs args)
- {
- Logger.WriteLine("FileTransferredEvent: [{0}]", args.FileName);
- if (FileTransferred != null)
- {
- FileTransferred(this, args);
- }
- }
- internal void RaiseFailed(SessionRemoteException e)
- {
- Logger.WriteLine("Failed: [{0}]", e);
- if (Failed != null)
- {
- Failed(this, new FailedEventArgs { Error = e });
- }
- foreach (OperationResultBase operationResult in _operationResults)
- {
- operationResult.AddFailure(e);
- }
- }
- private void CheckNotDisposed()
- {
- if (_disposed)
- {
- throw new InvalidOperationException("Object is disposed");
- }
- if (_aborted)
- {
- throw new InvalidOperationException("Session was aborted");
- }
- }
- private void CheckOpened()
- {
- if (!Opened)
- {
- throw new InvalidOperationException("Session is not opened");
- }
- }
- private void CheckNotOpened()
- {
- if (Opened)
- {
- throw new InvalidOperationException("Session is already opened");
- }
- }
- private void RaiseOutputDataReceived(string data)
- {
- Logger.WriteLine("Output: [{0}]", data);
- if (OutputDataReceived != null)
- {
- OutputDataReceived(this, new OutputDataReceivedEventArgs(data));
- }
- }
- internal void DispatchEvents(int interval)
- {
- DateTime start = DateTime.Now;
- while (_eventsEvent.WaitOne(interval, false))
- {
- lock (_events)
- {
- foreach (Action action in _events)
- {
- action();
- }
- _events.Clear();
- }
- interval -= (int) (DateTime.Now - start).TotalMilliseconds;
- if (interval < 0)
- {
- break;
- }
- start = DateTime.Now;
- }
- }
- private IDisposable RegisterOperationResult(OperationResultBase operationResult)
- {
- _operationResults.Add(operationResult);
- return new OperationResultGuard(this, operationResult);
- }
- internal void UnregisterOperationResult(OperationResultBase operationResult)
- {
- _operationResults.Remove(operationResult);
- }
- internal bool WantsProgress
- {
- get
- {
- return (_fileTransferProgress != null);
- }
- }
- private IDisposable CreateProgressHandler()
- {
- using (Logger.CreateCallstack())
- {
- _progressHandling++;
- return new ProgressHandler(this);
- }
- }
- internal void DisableProgressHandling()
- {
- using (Logger.CreateCallstack())
- {
- if (_progressHandling <= 0)
- {
- throw new InvalidOperationException("Progress handling not enabled");
- }
- // make sure we process all pending progress events
- DispatchEvents(0);
- _progressHandling--;
- }
- }
- internal void ProcessProgress(FileTransferProgressEventArgs args)
- {
- ScheduleEvent(() => Progress(args));
- }
- private void Progress(FileTransferProgressEventArgs args)
- {
- if ((_progressHandling >= 0) && WantsProgress)
- {
- _fileTransferProgress(this, args);
- }
- }
- private void SetupTempPath()
- {
- using (Logger.CreateCallstack())
- {
- if (!string.IsNullOrEmpty(_xmlLogPath))
- {
- bool exists = File.Exists(_xmlLogPath);
- Logger.WriteLine("Configured temporary file: {0} - Exists [{1}]", _xmlLogPath, exists);
- if (exists)
- {
- throw new SessionLocalException(this, string.Format(CultureInfo.CurrentCulture, "Configured temporary file {0} already exists", _xmlLogPath));
- }
- }
- else
- {
- string path = Path.GetTempPath();
- Logger.WriteLine("Temporary folder: {0}", path);
- string process = Process.GetCurrentProcess().Id.ToString("X4", CultureInfo.InvariantCulture);
- string instance = GetHashCode().ToString("X8", CultureInfo.InvariantCulture);
- string filename;
- bool exists;
- do
- {
- string uniqueStr = (_logUnique > 0 ? "." + _logUnique.ToString(CultureInfo.InvariantCulture) : string.Empty);
- ++_logUnique;
- filename = Path.Combine(path, "wscp" + process + "." + instance + uniqueStr + ".tmp");
- exists = File.Exists(filename);
- Logger.WriteLine("Temporary file [{0}] - Exists [{1}]", filename, exists);
- }
- while (exists);
- _xmlLogPath = filename;
- }
- }
- }
- private static string GetTypeLibKey(Type t)
- {
- return "CLSID\\{" + t.GUID.ToString().ToUpperInvariant() + "}\\TypeLib";
- }
- FieldInfo IReflect.GetField(string name, BindingFlags bindingAttr)
- {
- using (Logger.CreateCallstack())
- {
- Logger.WriteLine("Name [{0}]", name);
- FieldInfo result = GetType().GetField(name, bindingAttr);
- Logger.WriteLine("Result [{0}]", result != null ? result.Name : "null");
- return result;
- }
- }
- FieldInfo[] IReflect.GetFields(BindingFlags bindingAttr)
- {
- using (Logger.CreateCallstack())
- {
- FieldInfo[] result = GetType().GetFields(bindingAttr);
- Logger.WriteLine("Fields [{0}]", result.Length);
- return result;
- }
- }
- MemberInfo[] IReflect.GetMember(string name, BindingFlags bindingAttr)
- {
- using (Logger.CreateCallstack())
- {
- Logger.WriteLine("Name [{0}]", name);
- MemberInfo[] result = GetType().GetMember(name, bindingAttr);
- Logger.WriteLine("Result [{0}]", result.Length);
- return result;
- }
- }
- MemberInfo[] IReflect.GetMembers(BindingFlags bindingAttr)
- {
- using (Logger.CreateCallstack())
- {
- MemberInfo[] result = GetType().GetMembers(bindingAttr);
- Logger.WriteLine("Result [{0}]", result.Length);
- return result;
- }
- }
- MethodInfo IReflect.GetMethod(string name, BindingFlags bindingAttr)
- {
- using (Logger.CreateCallstack())
- {
- Logger.WriteLine("Name [{0}]", name);
- MethodInfo result = GetType().GetMethod(name, bindingAttr);
- Logger.WriteLine("Result [{0}]", result != null ? result.Name : "null");
- return result;
- }
- }
- MethodInfo IReflect.GetMethod(string name, BindingFlags bindingAttr, Binder binder, Type[] types, ParameterModifier[] modifiers)
- {
- using (Logger.CreateCallstack())
- {
- Logger.WriteLine("Name [{0}]", name);
- MethodInfo result = GetType().GetMethod(name, bindingAttr, binder, types, modifiers);
- Logger.WriteLine("Result [{0}]", result != null ? result.Name : "null");
- return result;
- }
- }
- MethodInfo[] IReflect.GetMethods(BindingFlags bindingAttr)
- {
- using (Logger.CreateCallstack())
- {
- MethodInfo[] result = GetType().GetMethods(bindingAttr);
- Logger.WriteLine("Result [{0}]", result.Length);
- return result;
- }
- }
- PropertyInfo[] IReflect.GetProperties(BindingFlags bindingAttr)
- {
- using (Logger.CreateCallstack())
- {
- PropertyInfo[] result = GetType().GetProperties(bindingAttr);
- Logger.WriteLine("Result [{0}]", result.Length);
- return result;
- }
- }
- PropertyInfo IReflect.GetProperty(string name, BindingFlags bindingAttr, Binder binder, Type returnType, Type[] types, ParameterModifier[] modifiers)
- {
- using (Logger.CreateCallstack())
- {
- Logger.WriteLine("Name [{0}]", name);
- PropertyInfo result = GetType().GetProperty(name, bindingAttr, binder, returnType, types, modifiers);
- Logger.WriteLine("Result [{0}]", result != null ? result.Name : "null");
- return result;
- }
- }
- PropertyInfo IReflect.GetProperty(string name, BindingFlags bindingAttr)
- {
- using (Logger.CreateCallstack())
- {
- Logger.WriteLine("Name [{0}]", name);
- PropertyInfo result = GetType().GetProperty(name, bindingAttr);
- Logger.WriteLine("Result [{0}]", result != null ? result.Name : "null");
- return result;
- }
- }
- object IReflect.InvokeMember(string name, BindingFlags invokeAttr, Binder binder, object target, object[] args, ParameterModifier[] modifiers, CultureInfo culture, string[] namedParameters)
- {
- using (Logger.CreateCallstack())
- {
- object result;
- try
- {
- if (Logger.Logging)
- {
- Logger.WriteLine("Name [{0}]", name);
- Logger.WriteLine("BindingFlags [{0}]", invokeAttr);
- Logger.WriteLine("Binder [{0}]", binder);
- Logger.WriteLine("Target [{0}]", target);
- if (args != null)
- {
- Logger.WriteLine("Args [{0}] [{1}]", args.Length, modifiers != null ? modifiers.Length.ToString(CultureInfo.InvariantCulture) : "null");
- for (int i = 0; i < args.Length; ++i)
- {
- Logger.WriteLine("Arg [{0}] [{1}] [{1}] [{2}]", i, args[i], (args[i] != null ? args[i].GetType().ToString() : "null"), (modifiers != null ? modifiers[i].ToString() : "null"));
- }
- }
- Logger.WriteLine("Culture [{0}]", culture);
- if (namedParameters != null)
- {
- foreach (string namedParameter in namedParameters)
- {
- Logger.WriteLine("NamedParameter [{0}]", namedParameter);
- }
- }
- }
- Type type = target.GetType();
- // RuntimeType.InvokeMember below calls into Binder.BindToMethod (Binder is OleAutBinder)
- // that fails to match method, if integer value is provided to enum argument
- // (SynchronizeDirectories with its SynchronizationMode and SynchronizationCriteria).
- // This does not happen if we do not implement IReflect, though no idea why.
- // So as a workaround we check, if the method has no overloads (what is always true for Session),
- // and call the only instance directly.
- // Calling MethodInfo.Invoke with int values for enum arguments works.
- // Only as a fallback, we call InvokeMember (what is currently actually used only when
- // the method with given name does not exist at all)
- MethodInfo method = null;
- PropertyInfo property = null;
- // would be way too difficult to implement the below involving named arguments
- if (namedParameters == null)
- {
- try
- {
- BindingFlags bindingFlags = invokeAttr | BindingFlags.Instance | BindingFlags.Public;
- method = type.GetMethod(name, bindingFlags);
- if (method != null)
- {
- // MethodInfo.Invoke does not fill-in optional arguments (contrary to RuntimeType.InvokeMember)
- ParameterInfo[] parameters = method.GetParameters();
- if (args.Length < parameters.Length)
- {
- Logger.WriteLine("Provided less parameters [{0}] than defined [{1}]", args.Length, parameters.Length);
- object[] args2 = new object[parameters.Length];
- for (int i = 0; i < parameters.Length; i++)
- {
- if (i < args.Length)
- {
- args2[i] = args[i];
- }
- else
- {
- if (!parameters[i].IsOptional)
- {
- Logger.WriteLine("Parameter [{0}] of [{1}] is not optional", i, method);
- args2 = null;
- break;
- }
- else
- {
- Logger.WriteLine("Adding default value [{0}] for optional parameter [{1}]", parameters[i].DefaultValue, i);
- args2[i] = parameters[i].DefaultValue;
- }
- }
- }
- if (args2 != null)
- {
- args = args2;
- }
- }
- }
- else if (args.Length == 1) // sanity check
- {
- property = type.GetProperty(name, bindingFlags);
- }
- }
- catch (AmbiguousMatchException e)
- {
- Logger.WriteLine("Unexpected ambiguous match [{0}]", e.Message);
- }
- }
- if (method != null)
- {
- Logger.WriteLine("Invoking unambiguous method [{0}]", method);
- result = method.Invoke(target, invokeAttr, binder, args, culture);
- }
- else if (property != null)
- {
- Logger.WriteLine("Setting unambiguous property [{0}]", property);
- property.SetValue(target, args[0], invokeAttr, binder, null, culture);
- result = null;
- }
- else
- {
- Logger.WriteLine("Invoking ambiguous/non-existing method 2 [{0}]", name);
- result = type.InvokeMember(name, invokeAttr, binder, target, args, modifiers, culture, namedParameters);
- }
- Logger.WriteLine("Result [{0}] [{1}]", result, (result != null ? result.GetType().ToString() : "null"));
- }
- catch (Exception e)
- {
- Logger.WriteLine("Error [{0}]", e);
- throw;
- }
- return result;
- }
- }
- Type IReflect.UnderlyingSystemType
- {
- get { return GetType(); }
- }
- internal const string Namespace = "http://winscp.net/schema/session/1.0";
- internal Logger Logger { get; private set; }
- internal bool GuardProcessWithJobInternal { get { return _guardProcessWithJob; } set { CheckNotOpened(); _guardProcessWithJob = value; } }
- internal bool TestHandlesClosedInternal { get; set; }
- internal Dictionary<string, string> RawConfiguration { get; private set; }
- private ExeSessionProcess _process;
- private DateTime _lastOutput;
- private ElementLogReader _reader;
- private SessionLogReader _logReader;
- private readonly IList<OperationResultBase> _operationResults;
- private delegate void Action();
- private readonly IList<Action> _events;
- private AutoResetEvent _eventsEvent;
- private bool _disposed;
- private string _executablePath;
- private string _additionalExecutableArguments;
- private bool _defaultConfiguration;
- private bool _disableVersionCheck;
- private string _iniFilePath;
- private TimeSpan _reconnectTime;
- private string _sessionLogPath;
- private bool _aborted;
- private int _logUnique;
- private string _xmlLogPath;
- private FileTransferProgressEventHandler _fileTransferProgress;
- private int _progressHandling;
- private bool _guardProcessWithJob;
- private string _homePath;
- }
- }
|