-
-
Notifications
You must be signed in to change notification settings - Fork 979
Expand file tree
/
Copy pathISftpSession.cs
More file actions
371 lines (322 loc) · 16.7 KB
/
ISftpSession.cs
File metadata and controls
371 lines (322 loc) · 16.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
using System;
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
using Renci.SshNet.Sftp.Responses;
namespace Renci.SshNet.Sftp
{
internal interface ISftpSession : ISubsystemSession
{
/// <summary>
/// Gets the SFTP protocol version.
/// </summary>
/// <value>
/// The SFTP protocol version.
/// </value>
uint ProtocolVersion { get; }
/// <summary>
/// Gets the remote working directory.
/// </summary>
/// <value>
/// The remote working directory.
/// </value>
string WorkingDirectory { get; }
/// <summary>
/// Changes the current working directory to the specified path.
/// </summary>
/// <param name="path">The new working directory.</param>
void ChangeDirectory(string path);
/// <summary>
/// Resolves a given path into an absolute path on the server.
/// </summary>
/// <param name="path">The path to resolve.</param>
/// <param name="getRealPath">Boolean determining whether to get the ral path.</param>
/// <returns>
/// The absolute path.
/// </returns>
string GetCanonicalPath(string path, bool getRealPath = true);
Task<string> GetCanonicalPathAsync(string path, CancellationToken cancellationToken);
/// <summary>
/// Performs SSH_FXP_FSTAT request.
/// </summary>
/// <param name="handle">The handle.</param>
/// <param name="nullOnError">if set to <c>true</c> returns <c>null</c> instead of throwing an exception.</param>
/// <returns>
/// File attributes
/// </returns>
SftpFileAttributes RequestFStat(byte[] handle, bool nullOnError);
Task<SftpFileAttributes> RequestFStatAsync(byte[] handle, CancellationToken cancellationToken);
/// <summary>
/// Performs SSH_FXP_STAT request.
/// </summary>
/// <param name="path">The path.</param>
/// <param name="nullOnError">if set to <c>true</c> returns null instead of throwing an exception.</param>
/// <returns>
/// File attributes.
/// </returns>
SftpFileAttributes RequestStat(string path, bool nullOnError = false);
/// <summary>
/// Performs SSH_FXP_STAT request.
/// </summary>
/// <param name="path">The path.</param>
/// <param name="callback">The <see cref="AsyncCallback"/> delegate that is executed when <see cref="BeginOpen(string, Flags, AsyncCallback, object)"/> completes.</param>
/// <param name="state">An object that contains any additional user-defined data.</param>
/// <returns>
/// A <see cref="SftpOpenAsyncResult"/> that represents the asynchronous call.
/// </returns>
SFtpStatAsyncResult BeginStat(string path, AsyncCallback callback, object state);
/// <summary>
/// Handles the end of an asynchronous read.
/// </summary>
/// <param name="asyncResult">An <see cref="SFtpStatAsyncResult"/> that represents an asynchronous call.</param>
/// <returns>
/// The file attributes.
/// </returns>
/// <exception cref="ArgumentNullException"><paramref name="asyncResult"/> is <c>null</c>.</exception>
SftpFileAttributes EndStat(SFtpStatAsyncResult asyncResult);
/// <summary>
/// Performs SSH_FXP_LSTAT request.
/// </summary>
/// <param name="path">The path.</param>
/// <returns>
/// File attributes
/// </returns>
SftpFileAttributes RequestLStat(string path);
/// <summary>
/// Performs SSH_FXP_LSTAT request.
/// </summary>
/// <param name="path">The path.</param>
/// <param name="callback">The <see cref="AsyncCallback"/> delegate that is executed when <see cref="BeginLStat(string, AsyncCallback, object)"/> completes.</param>
/// <param name="state">An object that contains any additional user-defined data.</param>
/// <returns>
/// A <see cref="SFtpStatAsyncResult"/> that represents the asynchronous call.
/// </returns>
SFtpStatAsyncResult BeginLStat(string path, AsyncCallback callback, object state);
/// <summary>
/// Handles the end of an asynchronous SSH_FXP_LSTAT request.
/// </summary>
/// <param name="asyncResult">An <see cref="SFtpStatAsyncResult"/> that represents an asynchronous call.</param>
/// <returns>
/// The file attributes.
/// </returns>
/// <exception cref="ArgumentNullException"><paramref name="asyncResult"/> is <c>null</c>.</exception>
SftpFileAttributes EndLStat(SFtpStatAsyncResult asyncResult);
/// <summary>
/// Performs SSH_FXP_MKDIR request.
/// </summary>
/// <param name="path">The path.</param>
void RequestMkDir(string path);
/// <summary>
/// Performs SSH_FXP_OPEN request.
/// </summary>
/// <param name="path">The path.</param>
/// <param name="flags">The flags.</param>
/// <param name="nullOnError">if set to <c>true</c> returns <c>null</c> instead of throwing an exception.</param>
/// <returns>File handle.</returns>
byte[] RequestOpen(string path, Flags flags, bool nullOnError = false);
Task<byte[]> RequestOpenAsync(string path, Flags flags, CancellationToken cancellationToken);
/// <summary>
/// Performs SSH_FXP_OPEN request.
/// </summary>
/// <param name="path">The path.</param>
/// <param name="flags">The flags.</param>
/// <param name="callback">The <see cref="AsyncCallback"/> delegate that is executed when <see cref="BeginOpen(string, Flags, AsyncCallback, object)"/> completes.</param>
/// <param name="state">An object that contains any additional user-defined data.</param>
/// <returns>
/// A <see cref="SftpOpenAsyncResult"/> that represents the asynchronous call.
/// </returns>
SftpOpenAsyncResult BeginOpen(string path, Flags flags, AsyncCallback callback, object state);
/// <summary>
/// Handles the end of an asynchronous read.
/// </summary>
/// <param name="asyncResult">An <see cref="SftpOpenAsyncResult"/> that represents an asynchronous call.</param>
/// <returns>
/// A <see cref="byte"/> array representing a file handle.
/// </returns>
/// <remarks>
/// If all available data has been read, the <see cref="EndOpen(SftpOpenAsyncResult)"/> method completes
/// immediately and returns zero bytes.
/// </remarks>
/// <exception cref="ArgumentNullException"><paramref name="asyncResult"/> is <c>null</c>.</exception>
byte[] EndOpen(SftpOpenAsyncResult asyncResult);
/// <summary>
/// Performs SSH_FXP_OPENDIR request.
/// </summary>
/// <param name="path">The path.</param>
/// <param name="nullOnError">if set to <c>true</c> returns null instead of throwing an exception.</param>
/// <returns>File handle.</returns>
byte[] RequestOpenDir(string path, bool nullOnError = false);
Task<byte[]> RequestOpenDirAsync(string path, CancellationToken cancellationToken);
/// <summary>
/// Performs posix-rename@openssh.com extended request.
/// </summary>
/// <param name="oldPath">The old path.</param>
/// <param name="newPath">The new path.</param>
void RequestPosixRename(string oldPath, string newPath);
/// <summary>
/// Performs SSH_FXP_READ request.
/// </summary>
/// <param name="handle">The handle.</param>
/// <param name="offset">The offset.</param>
/// <param name="length">The length.</param>
/// <returns>data array; null if EOF</returns>
byte[] RequestRead(byte[] handle, ulong offset, uint length);
/// <summary>
/// Begins an asynchronous read using a SSH_FXP_READ request.
/// </summary>
/// <param name="handle">The handle to the file to read from.</param>
/// <param name="offset">The offset in the file to start reading from.</param>
/// <param name="length">The number of bytes to read.</param>
/// <param name="callback">The <see cref="AsyncCallback"/> delegate that is executed when <see cref="BeginRead(byte[], ulong, uint, AsyncCallback, object)"/> completes.</param>
/// <param name="state">An object that contains any additional user-defined data.</param>
/// <returns>
/// A <see cref="SftpReadAsyncResult"/> that represents the asynchronous call.
/// </returns>
SftpReadAsyncResult BeginRead(byte[] handle, ulong offset, uint length, AsyncCallback callback, object state);
/// <summary>
/// Handles the end of an asynchronous read.
/// </summary>
/// <param name="asyncResult">An <see cref="SftpReadAsyncResult"/> that represents an asynchronous call.</param>
/// <returns>
/// A <see cref="byte"/> array representing the data read.
/// </returns>
/// <remarks>
/// If all available data has been read, the <see cref="EndRead(SftpReadAsyncResult)"/> method completes
/// immediately and returns zero bytes.
/// </remarks>
/// <exception cref="ArgumentNullException"><paramref name="asyncResult"/> is <c>null</c>.</exception>
byte[] EndRead(SftpReadAsyncResult asyncResult);
Task<byte[]> RequestReadAsync(byte[] handle, ulong offset, uint length, CancellationToken cancellationToken);
/// <summary>
/// Performs SSH_FXP_READDIR request.
/// </summary>
/// <param name="handle">The handle.</param>
/// <returns></returns>
KeyValuePair<string, SftpFileAttributes>[] RequestReadDir(byte[] handle);
Task<KeyValuePair<string, SftpFileAttributes>[]> RequestReadDirAsync(byte[] handle, CancellationToken cancellationToken);
/// <summary>
/// Performs SSH_FXP_REALPATH request.
/// </summary>
/// <param name="path">The path.</param>
/// <param name="callback">The <see cref="AsyncCallback"/> delegate that is executed when <see cref="BeginRealPath(string, AsyncCallback, object)"/> completes.</param>
/// <param name="state">An object that contains any additional user-defined data.</param>
/// <returns>
/// A <see cref="SftpRealPathAsyncResult"/> that represents the asynchronous call.
/// </returns>
SftpRealPathAsyncResult BeginRealPath(string path, AsyncCallback callback, object state);
/// <summary>
/// Handles the end of an asynchronous SSH_FXP_REALPATH request.
/// </summary>
/// <param name="asyncResult">An <see cref="SftpRealPathAsyncResult"/> that represents an asynchronous call.</param>
/// <returns>
/// The absolute path.
/// </returns>
/// <exception cref="ArgumentNullException"><paramref name="asyncResult"/> is <c>null</c>.</exception>
string EndRealPath(SftpRealPathAsyncResult asyncResult);
/// <summary>
/// Performs SSH_FXP_REMOVE request.
/// </summary>
/// <param name="path">The path.</param>
void RequestRemove(string path);
Task RequestRemoveAsync(string path, CancellationToken cancellationToken);
/// <summary>
/// Performs SSH_FXP_RENAME request.
/// </summary>
/// <param name="oldPath">The old path.</param>
/// <param name="newPath">The new path.</param>
void RequestRename(string oldPath, string newPath);
Task RequestRenameAsync(string oldPath, string newPath, CancellationToken cancellationToken);
/// <summary>
/// Performs SSH_FXP_RMDIR request.
/// </summary>
/// <param name="path">The path.</param>
void RequestRmDir(string path);
/// <summary>
/// Performs SSH_FXP_SETSTAT request.
/// </summary>
/// <param name="path">The path.</param>
/// <param name="attributes">The attributes.</param>
void RequestSetStat(string path, SftpFileAttributes attributes);
/// <summary>
/// Performs statvfs@openssh.com extended request.
/// </summary>
/// <param name="path">The path.</param>
/// <param name="nullOnError">if set to <c>true</c> [null on error].</param>
/// <returns></returns>
SftpFileSytemInformation RequestStatVfs(string path, bool nullOnError = false);
Task<SftpFileSytemInformation> RequestStatVfsAsync(string path, CancellationToken cancellationToken);
/// <summary>
/// Performs SSH_FXP_SYMLINK request.
/// </summary>
/// <param name="linkpath">The linkpath.</param>
/// <param name="targetpath">The targetpath.</param>
void RequestSymLink(string linkpath, string targetpath);
/// <summary>
/// Performs SSH_FXP_FSETSTAT request.
/// </summary>
/// <param name="handle">The handle.</param>
/// <param name="attributes">The attributes.</param>
void RequestFSetStat(byte[] handle, SftpFileAttributes attributes);
/// <summary>
/// Performs SSH_FXP_WRITE request.
/// </summary>
/// <param name="handle">The handle.</param>
/// <param name="serverOffset">The the zero-based offset (in bytes) relative to the beginning of the file that the write must start at.</param>
/// <param name="data">The buffer holding the data to write.</param>
/// <param name="offset">the zero-based offset in <paramref name="data" /> at which to begin taking bytes to write.</param>
/// <param name="length">The length (in bytes) of the data to write.</param>
/// <param name="wait">The wait event handle if needed.</param>
/// <param name="writeCompleted">The callback to invoke when the write has completed.</param>
void RequestWrite(byte[] handle,
ulong serverOffset,
byte[] data,
int offset,
int length,
AutoResetEvent wait,
Action<SftpStatusResponse> writeCompleted = null);
Task RequestWriteAsync(byte[] handle, ulong serverOffset, byte[] data, int offset, int length, CancellationToken cancellationToken);
/// <summary>
/// Performs SSH_FXP_CLOSE request.
/// </summary>
/// <param name="handle">The handle.</param>
void RequestClose(byte[] handle);
Task RequestCloseAsync(byte[] handle, CancellationToken cancellationToken);
/// <summary>
/// Performs SSH_FXP_CLOSE request.
/// </summary>
/// <param name="handle">The handle.</param>
/// <param name="callback">The <see cref="AsyncCallback"/> delegate that is executed when <see cref="BeginClose(byte[], AsyncCallback, object)"/> completes.</param>
/// <param name="state">An object that contains any additional user-defined data.</param>
/// <returns>
/// A <see cref="SftpCloseAsyncResult"/> that represents the asynchronous call.
/// </returns>
SftpCloseAsyncResult BeginClose(byte[] handle, AsyncCallback callback, object state);
/// <summary>
/// Handles the end of an asynchronous close.
/// </summary>
/// <param name="asyncResult">An <see cref="SftpCloseAsyncResult"/> that represents an asynchronous call.</param>
/// <exception cref="ArgumentNullException"><paramref name="asyncResult"/> is <c>null</c>.</exception>
void EndClose(SftpCloseAsyncResult asyncResult);
/// <summary>
/// Calculates the optimal size of the buffer to read data from the channel.
/// </summary>
/// <param name="bufferSize">The buffer size configured on the client.</param>
/// <returns>
/// The optimal size of the buffer to read data from the channel.
/// </returns>
uint CalculateOptimalReadLength(uint bufferSize);
/// <summary>
/// Calculates the optimal size of the buffer to write data on the channel.
/// </summary>
/// <param name="bufferSize">The buffer size configured on the client.</param>
/// <param name="handle">The file handle.</param>
/// <returns>
/// The optimal size of the buffer to write data on the channel.
/// </returns>
/// <remarks>
/// Currently, we do not take the remote window size into account.
/// </remarks>
uint CalculateOptimalWriteLength(uint bufferSize, byte[] handle);
ISftpFileReader CreateFileReader(byte[] handle, ISftpSession sftpSession, uint chunkSize, int maxPendingReads, long? fileSize);
}
}