Jeff Forcier
1560c4ab8a
Merge remote-tracking branch 'ewxrjk/issue34' into sftp-reordering-34
2014-02-10 17:59:52 -08:00
Jeff Forcier
e25c7c4bdf
Merge branch '1.9' into 1.10
2013-09-27 21:29:51 -07:00
Jeff Forcier
83f44878ea
Fixed a typo in the license header of most files
...
Conflicts:
paramiko/proxy.py
2013-09-27 21:29:18 -07:00
Jason R. Coombs
3cd7f585d0
Remove 'file_size' check from tests. The docstring indicates this parameter is to be passed to the callback, and there's no reason to think this parameter is relevant in affecting whether a useful stat object has been passed (especially when the 'confirm' parameter is explicitly supplied for that decision. This fixes #142 .
2013-03-04 08:46:39 -05:00
Jeff Forcier
8e697988af
Changelog + docs re #127
2013-02-27 15:56:09 -08:00
Jeff Forcier
2cbe383080
Apply put() version of #90
2012-11-29 16:16:35 -08:00
Eric Buehl
9c0d467667
allow uploading of files from an open file object
2012-11-29 16:09:47 -08:00
Jeff Forcier
1341e28882
Move SFTPClient.get() termination condition to loop end.
...
Ensures callback always executes even for zero-len files.
Fixes #90
2012-10-14 21:46:50 -07:00
Jeff Forcier
1a033dc596
safe type checking (isinstance instead of type-is)
...
Maintainer note: added changelog entry.
(cherry picked from commit 8917d83221
)
2012-09-23 16:19:40 -07:00
Richard Kettlewell
974294ad7d
Fix issue 34 (SFTPFile prefetch assumes response order matches requests)
...
SFTPFile._async_response gets a new 'num' parameter giving the request
number. This can be matched up with the return value of
SFTPClient._async_request() to retrieve data specific to that request.
The prefetch queue SFTPFile._prefetch_reads is replaced with the dict
_prefetch_extents, which maps request numbers to (offset,length)
tuples.
A lock is used to exclude the case where a response arrives in
_async_response before _prefetch_thread has updated it.
2011-08-29 15:50:35 +01:00
Robey Pointer
f67cea44d0
code style and fix test.
2010-04-13 18:52:29 -07:00
Larry Wright
b4ee844a3c
added functionality to skip verifying the file, which works around sftp servers that remove the file immediately after it's been closed.
2009-12-18 17:02:55 -06:00
Robey Pointer
931f71e627
bug 411099: chdir() isn't saving the cwd in a normalized way. added test.
2009-10-31 16:06:53 -07:00
Robey Pointer
b4220657be
oops.
2009-07-19 20:17:47 -07:00
Robey Pointer
0840d8dd28
patch from sofian brabez to fix hexdump logging in sftp_client.
2009-07-19 19:59:55 -07:00
Robey Pointer
e56b36648d
patch from jim wilcoxson: raise an error early if chdir will fail.
2009-07-19 19:47:53 -07:00
Robey Pointer
60c6e94e7d
fix my email address to be the current one.
2009-07-19 19:45:02 -07:00
Robey Pointer
fe35f44f2e
close the local/remote files in finally blocks in sftp get & put, so fds don't get lost. bug #379240
2009-07-19 15:19:10 -07:00
Robey Pointer
035766fab0
[project @ robey@lag.net-20080707002335-9fw0bd9tj7ndcueg]
...
clarify feature was added in 1.7.4
2008-07-06 17:23:35 -07:00
Robey Pointer
fbfd8126c8
[project @ robey@lag.net-20080706230815-v2ybqxm237zw0wa0]
...
add a callback method that can be used to track get/put progress in
SFTPClient. suggested by Phil Schwartz.
2008-07-06 16:08:15 -07:00
Robey Pointer
e8748645a3
[project @ robey@lag.net-20080706225842-25rg9uk9ksyxxbyf]
...
fix convoluted logging method
2008-07-06 15:58:42 -07:00
Robey Pointer
c60133d85b
[project @ robey@lag.net-20080706223720-l52qact0g0q5gkuz]
...
ack, somehow my previous commit ERASED this file!
i'm starting to lose my bazaar-fu from using git too much. :(
2008-07-06 15:37:20 -07:00
Robey Pointer
abf891af0b
[project @ robey@lag.net-20080706221605-t6ashnnjr1aurmn4]
...
SFTPClient.put() now returns the stats object it collected during
verification. suggested by Jude Venn.
2008-07-06 15:16:05 -07:00
Robey Pointer
305f5e09a5
[project @ robey@lag.net-20080604053906-vz5toqvlp5miqy1x]
...
merge deadlog bugfix from dwayne litzenberger.
2008-06-03 22:39:06 -07:00
Robey Pointer
50d63690ee
[project @ robey@lag.net-20080323023616-fpo17kr0qxxbgthv]
...
bug 200416:
don't create a new logger for every channel and every sftp client or server.
it causes python to leak lots of useless logger objects, because they never
go away. instead, log the channel # in the message, and use only a couple of
standard log nodes.
2008-03-22 19:36:16 -07:00
Robey Pointer
afa5e0594e
[project @ robey@lag.net-20070520225704-j1czjtrl2hu7t1pj]
...
add a get_channel() method to SFTPClient, to retrieve the underlying channel.
2007-05-20 15:57:04 -07:00
Robey Pointer
3229cd0f94
[project @ robey@lag.net-20070520225622-ozs9cguu8ipaxt85]
...
patch from wesley augur: expose the 'longname' field from listdir_attr().
2007-05-20 15:56:22 -07:00
Robey Pointer
83b335e10f
[project @ robey@lag.net-20070213191706-v8djxd4jiunb3his]
...
bump copyright year to 2007
2007-02-13 11:17:06 -08:00
Robey Pointer
31c26eafb9
[project @ robey@lag.net-20060911175604-bf2798fcebd62780]
...
trap EOF errors when reading a response, and translate into SSHException
2006-09-11 10:56:04 -07:00
Robey Pointer
4acb9589ce
[project @ robey@lag.net-20060908023959-de70f0675f25fa64]
...
fixes from mike barber for chdir and sftp attr __str__
2006-09-07 19:39:59 -07:00
Robey Pointer
c2b38a1fb8
[project @ robey@lag.net-20060823025610-adee7f6d9bd92725]
...
ok, ok, switch back to open()
2006-08-22 19:56:10 -07:00
Robey Pointer
05de66db6d
[project @ robey@lag.net-20060801182357-e030af9570314145]
...
use hexlify instead of home-grown hexify
2006-08-01 11:23:57 -07:00
Robey Pointer
4086a5cd35
[project @ robey@lag.net-20060729182801-e5e501844712bd85]
...
oops, forgot to import SSHException
2006-07-29 11:28:01 -07:00
Robey Pointer
d81758f1ff
[project @ robey@lag.net-20060627060810-93a5453df5ae4a62]
...
log mkdir mode when given
2006-06-26 23:08:10 -07:00
Robey Pointer
471876ff3e
[project @ robey@lag.net-20060530065858-6300e2d76304778c]
...
convert an EOFError into SSHException during sftp negotation
2006-05-29 23:58:58 -07:00
Robey Pointer
de1e072c73
[project @ robey@lag.net-20060507230153-dba6b2d664b5ef3f]
...
channel operations raise an exception on error now instead of returning a bool
2006-05-07 16:01:53 -07:00
Robey Pointer
4be91d1c4d
[project @ robey@lag.net-20060220031741-3227438ff1b03a29]
...
add SFTPClient.truncate. add chmod, chown, utime, and truncate to SFTPFile. and of course tests.
2006-02-19 19:17:41 -08:00
Robey Pointer
8446c0bda1
[project @ robey@lag.net-20060220005934-58d0df2920e799b5]
...
update copyright year
2006-02-19 16:59:34 -08:00
Robey Pointer
08c9efc86a
[project @ robey@lag.net-20060213181724-ba80fa329c5be7f4]
...
not all sftp servers obey the 'all filenames are utf8' requirement, so if both ascii and utf8 codecs fail, just return the filename as a byte string
2006-02-13 10:17:24 -08:00
Robey Pointer
97496845bb
[project @ robey@master-shake.local-20060210175613-e7a1fccdcc4e689c]
...
this del is also useless
2006-02-10 09:56:13 -08:00
Robey Pointer
c091dff994
[project @ robey@master-shake.local-20060131005629-3f1bfead54bd5283]
...
add more logging to sftp client
2006-01-30 16:56:29 -08:00
Robey Pointer
cb3008b402
[project @ robey@master-shake.local-20060115063008-4f68552398868788]
...
fix a bunch of pychecker warnings, some of which were actual (but unlikely) bugs
2006-01-14 22:30:08 -08:00
Robey Pointer
62a83e7d03
[project @ robey@ralph.lag.net-20051203043112-0091aa8e40980487]
...
serialize outgoing requests (duh) -- when prefetching multiple files, there may be several threads pumping out read requests
2005-12-02 20:31:12 -08:00
Robey Pointer
6de6dc72c6
[project @ Arch-1:robey@lag.net--2005-master-shake%paramiko--dev--1--patch-80]
...
add 'x' flag to open to allow O_EXCL behavior
2005-11-12 01:10:41 +00:00
Robey Pointer
f65edffbfb
[project @ Arch-1:robey@lag.net--2005-master-shake%paramiko--dev--1--patch-70]
...
add SFTPFile.prefetch() to allow pre-fetching a file that will be downloaded in full -- quick testing showed this could speed up downloads 3x or more
2005-10-24 06:19:56 +00:00
Robey Pointer
d42d6af12b
[project @ Arch-1:robey@lag.net--2005-master-shake%paramiko--dev--1--patch-68]
...
set errno for some errors
2005-10-22 06:35:57 +00:00
Robey Pointer
6eab0b3b4d
[project @ Arch-1:robey@lag.net--2005-master-shake%paramiko--dev--1--patch-65]
...
remove unnecessary shebangs, fix import lines to be explicit about imports from within paramiko, and a bit of whitespace cleanup
2005-10-13 18:52:59 +00:00
Robey Pointer
fb73c0ef7f
[project @ Arch-1:robey@lag.net--2005-master-shake%paramiko--dev--1--patch-60]
...
add file pipelining for writes
2005-09-25 09:11:23 +00:00
Robey Pointer
112b72511e
[project @ Arch-1:robey@lag.net--2005-master-shake%paramiko--dev--1--patch-56]
...
patch from nathaniel smith: fix SFTPClient.open() 'a' flag, and guard against multiple close() of the same file
2005-09-18 07:25:54 +00:00
Robey Pointer
eb60811594
[project @ Arch-1:robey@lag.net--2005-master-shake%paramiko--dev--1--patch-48]
...
can use up to 32k buffers here
2005-08-03 06:57:30 +00:00