| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- using System;
- using System.Text;
- using Renci.SshNet.Sftp.Responses;
- namespace Renci.SshNet.Sftp.Requests
- {
- internal class SftpOpenRequest : SftpRequest
- {
- private byte[] _fileName;
- private byte[] _attributes;
- private readonly Action<SftpHandleResponse> _handleAction;
- public override SftpMessageTypes SftpMessageType
- {
- get { return SftpMessageTypes.Open; }
- }
- public string Filename
- {
- get { return Encoding.GetString(_fileName, 0, _fileName.Length); }
- private set { _fileName = Encoding.GetBytes(value); }
- }
- public Flags Flags { get; private set; }
- public SftpFileAttributes Attributes
- {
- get { return SftpFileAttributes.FromBytes(_attributes); }
- private set { _attributes = value.GetBytes(); }
- }
- public Encoding Encoding { get; private set; }
- /// <summary>
- /// Gets the size of the message in bytes.
- /// </summary>
- /// <value>
- /// The size of the messages in bytes.
- /// </value>
- protected override int BufferCapacity
- {
- get
- {
- var capacity = base.BufferCapacity;
- capacity += 4; // FileName length
- capacity += _fileName.Length; // FileName
- capacity += 4; // Flags
- capacity += _attributes.Length; // Attributes
- return capacity;
- }
- }
- public SftpOpenRequest(uint protocolVersion, uint requestId, string fileName, Encoding encoding, Flags flags, Action<SftpHandleResponse> handleAction, Action<SftpStatusResponse> statusAction)
- : this(protocolVersion, requestId, fileName, encoding, flags, SftpFileAttributes.Empty, handleAction, statusAction)
- {
- }
- private SftpOpenRequest(uint protocolVersion, uint requestId, string fileName, Encoding encoding, Flags flags, SftpFileAttributes attributes, Action<SftpHandleResponse> handleAction, Action<SftpStatusResponse> statusAction)
- : base(protocolVersion, requestId, statusAction)
- {
- Encoding = encoding;
- Filename = fileName;
- Flags = flags;
- Attributes = attributes;
- _handleAction = handleAction;
- }
- protected override void LoadData()
- {
- base.LoadData();
- throw new NotSupportedException();
- }
- protected override void SaveData()
- {
- base.SaveData();
- WriteBinaryString(_fileName);
- Write((uint) Flags);
- Write(_attributes);
- }
- public override void Complete(SftpResponse response)
- {
- var handleResponse = response as SftpHandleResponse;
- if (handleResponse != null)
- {
- _handleAction(handleResponse);
- }
- else
- {
- base.Complete(response);
- }
- }
- }
- }
|