Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vmj-qt
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kulya
vmj-qt
Commits
b62860d4
Commit
b62860d4
authored
Apr 08, 2015
by
Saul Ibarra
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Refactor file transfers
They are now handled in the middleware.
parent
d1add4a7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
73 additions
and
185 deletions
+73
-185
sessions.py
blink/sessions.py
+73
-185
No files found.
blink/sessions.py
View file @
b62860d4
...
@@ -5,7 +5,6 @@ __all__ = ['ClientConference', 'ConferenceDialog', 'AudioSessionModel', 'AudioSe
...
@@ -5,7 +5,6 @@ __all__ = ['ClientConference', 'ConferenceDialog', 'AudioSessionModel', 'AudioSe
import
bisect
import
bisect
import
cPickle
as
pickle
import
cPickle
as
pickle
import
hashlib
import
os
import
os
import
re
import
re
import
string
import
string
...
@@ -17,7 +16,6 @@ from collections import defaultdict, deque
...
@@ -17,7 +16,6 @@ from collections import defaultdict, deque
from
datetime
import
datetime
,
timedelta
from
datetime
import
datetime
,
timedelta
from
itertools
import
chain
,
count
from
itertools
import
chain
,
count
from
operator
import
attrgetter
from
operator
import
attrgetter
from
threading
import
Event
from
PyQt4
import
uic
from
PyQt4
import
uic
from
PyQt4.QtCore
import
Qt
,
QAbstractListModel
,
QByteArray
,
QEasingCurve
,
QEvent
,
QMimeData
,
QModelIndex
,
QObject
,
QPointF
,
QProcess
,
QPropertyAnimation
,
QRect
,
QRectF
,
QSize
,
QTimer
,
QUrl
,
pyqtSignal
from
PyQt4.QtCore
import
Qt
,
QAbstractListModel
,
QByteArray
,
QEasingCurve
,
QEvent
,
QMimeData
,
QModelIndex
,
QObject
,
QPointF
,
QProcess
,
QPropertyAnimation
,
QRect
,
QRectF
,
QSize
,
QTimer
,
QUrl
,
pyqtSignal
...
@@ -28,7 +26,6 @@ from application.notification import IObserver, NotificationCenter, Notification
...
@@ -28,7 +26,6 @@ from application.notification import IObserver, NotificationCenter, Notification
from
application.python
import
Null
,
limit
from
application.python
import
Null
,
limit
from
application.python.types
import
MarkerType
,
Singleton
from
application.python.types
import
MarkerType
,
Singleton
from
application.python.weakref
import
weakobjectmap
from
application.python.weakref
import
weakobjectmap
from
application.system
import
makedirs
,
unlink
from
eventlib.proc
import
spawn
from
eventlib.proc
import
spawn
from
zope.interface
import
implements
from
zope.interface
import
implements
...
@@ -47,7 +44,7 @@ from sipsimple.threading import run_in_thread, run_in_twisted_thread
...
@@ -47,7 +44,7 @@ from sipsimple.threading import run_in_thread, run_in_twisted_thread
from
blink.configuration.settings
import
BlinkSettings
from
blink.configuration.settings
import
BlinkSettings
from
blink.resources
import
ApplicationData
,
Resources
from
blink.resources
import
ApplicationData
,
Resources
from
blink.screensharing
import
ScreensharingWindow
,
VNCClient
,
ServerDefault
from
blink.screensharing
import
ScreensharingWindow
,
VNCClient
,
ServerDefault
from
blink.util
import
call_later
,
call_in_gui_thread
,
run_in_gui_thread
from
blink.util
import
call_later
,
run_in_gui_thread
from
blink.widgets.buttons
import
LeftSegment
,
MiddleSegment
,
RightSegment
from
blink.widgets.buttons
import
LeftSegment
,
MiddleSegment
,
RightSegment
from
blink.widgets.labels
import
Status
from
blink.widgets.labels
import
Status
from
blink.widgets.color
import
ColorHelperMixin
,
ColorUtils
,
cache_result
,
background_color_key
from
blink.widgets.color
import
ColorHelperMixin
,
ColorUtils
,
cache_result
,
background_color_key
...
@@ -3556,12 +3553,13 @@ class FileTransfer(object):
...
@@ -3556,12 +3553,13 @@ class FileTransfer(object):
self
.
_file_selector
=
None
self
.
_file_selector
=
None
self
.
_error
=
False
self
.
_error
=
False
self
.
_finished
=
False
self
.
_reason
=
None
self
.
_reason
=
None
self
.
_finished
=
False
self
.
_stream_ended
=
False
def
__getstate__
(
self
):
def
__getstate__
(
self
):
state
=
dict
(
id
=
self
.
id
,
direction
=
self
.
direction
,
state
=
self
.
state
,
filename
=
self
.
filename
,
_error
=
self
.
_error
,
_
finished
=
self
.
_finished
,
_
reason
=
self
.
_reason
)
state
=
dict
(
id
=
self
.
id
,
direction
=
self
.
direction
,
state
=
self
.
state
,
filename
=
self
.
filename
,
_error
=
self
.
_error
,
_reason
=
self
.
_reason
)
return
(
self
.
account
.
id
,
self
.
contact
.
name
,
self
.
contact_uri
.
uri
,
state
)
return
self
.
account
.
id
,
self
.
contact
.
name
,
self
.
contact_uri
.
uri
,
state
def
__setstate__
(
self
,
state
):
def
__setstate__
(
self
,
state
):
from
blink.contacts
import
URIUtils
from
blink.contacts
import
URIUtils
...
@@ -3575,10 +3573,7 @@ class FileTransfer(object):
...
@@ -3575,10 +3573,7 @@ class FileTransfer(object):
self
.
account
=
account_manager
.
default_account
self
.
account
=
account_manager
.
default_account
self
.
contact
,
self
.
contact_uri
=
URIUtils
.
find_contact
(
contact_uri
,
display_name
=
contact_name
)
self
.
contact
,
self
.
contact_uri
=
URIUtils
.
find_contact
(
contact_uri
,
display_name
=
contact_name
)
if
self
.
direction
==
'outgoing'
:
if
self
.
direction
==
'outgoing'
:
self
.
_stop_event
=
Event
()
self
.
_uri
=
self
.
_normalize_uri
(
contact_uri
)
self
.
_uri
=
self
.
_normalize_uri
(
contact_uri
)
else
:
self
.
_local_hash
=
hashlib
.
sha1
()
def
init_incoming
(
self
,
contact
,
contact_uri
,
session
,
stream
):
def
init_incoming
(
self
,
contact
,
contact_uri
,
session
,
stream
):
assert
self
.
state
is
None
assert
self
.
state
is
None
...
@@ -3593,17 +3588,7 @@ class FileTransfer(object):
...
@@ -3593,17 +3588,7 @@ class FileTransfer(object):
self
.
stream
=
stream
self
.
stream
=
stream
self
.
_file_selector
=
stream
.
file_selector
self
.
_file_selector
=
stream
.
file_selector
self
.
_local_hash
=
hashlib
.
sha1
()
self
.
filename
=
self
.
_file_selector
.
name
settings
=
BlinkSettings
()
directory
=
settings
.
transfers_directory
.
normalized
makedirs
(
directory
)
filename
=
os
.
path
.
basename
(
self
.
_file_selector
.
name
)
for
name
in
UniqueFilenameGenerator
.
generate
(
os
.
path
.
join
(
directory
,
filename
)):
if
not
os
.
path
.
exists
(
name
)
and
not
os
.
path
.
exists
(
name
+
self
.
tmp_file_suffix
):
self
.
filename
=
name
break
self
.
_file_selector
.
fd
=
open
(
self
.
filename
+
self
.
tmp_file_suffix
,
'wb+'
)
self
.
state
=
'connecting'
self
.
state
=
'connecting'
notification_center
=
NotificationCenter
()
notification_center
=
NotificationCenter
()
...
@@ -3620,11 +3605,9 @@ class FileTransfer(object):
...
@@ -3620,11 +3605,9 @@ class FileTransfer(object):
self
.
contact
=
contact
self
.
contact
=
contact
self
.
contact_uri
=
contact_uri
self
.
contact_uri
=
contact_uri
self
.
_stop_event
=
Event
()
self
.
_uri
=
self
.
_normalize_uri
(
contact_uri
.
uri
)
self
.
_uri
=
self
.
_normalize_uri
(
contact_uri
.
uri
)
self
.
_file_selector
=
FileSelector
.
for_file
(
filename
.
encode
(
sys
.
getfilesystemencoding
()),
hash
=
None
)
self
.
_file_selector
=
FileSelector
.
for_file
(
filename
)
self
.
filename
=
filename
self
.
filename
=
filename
self
.
state
=
'initialized'
self
.
state
=
'initialized'
...
@@ -3633,18 +3616,36 @@ class FileTransfer(object):
...
@@ -3633,18 +3616,36 @@ class FileTransfer(object):
def
connect
(
self
):
def
connect
(
self
):
assert
self
.
direction
==
'outgoing'
and
self
.
state
in
(
'initialized'
,
'ended'
)
assert
self
.
direction
==
'outgoing'
and
self
.
state
in
(
'initialized'
,
'ended'
)
notification_center
=
NotificationCenter
()
if
self
.
state
==
'ended'
:
if
self
.
state
==
'ended'
:
# Reinitialize to retry
# Reinitialize to retry
self
.
_error
=
False
self
.
_error
=
False
self
.
_finished
=
False
self
.
_reason
=
None
self
.
_reason
=
None
self
.
_stop_event
.
clear
()
self
.
_finished
=
False
self
.
_file_selector
=
FileSelector
.
for_file
(
self
.
filename
.
encode
(
sys
.
getfilesystemencoding
()),
hash
=
None
)
self
.
_stream_ended
=
False
# TODO: remember hash and mtime to avoid re-computing hash -Saul
self
.
_file_selector
=
FileSelector
.
for_file
(
self
.
filename
)
self
.
state
=
'initialized'
self
.
state
=
'initialized'
notification_center
=
NotificationCenter
()
notification_center
.
post_notification
(
'FileTransferWillRetry'
,
self
)
notification_center
.
post_notification
(
'FileTransferWillRetry'
,
self
)
# TODO: use a pool of threads -Saul
self
.
_calculate_hash
()
settings
=
SIPSimpleSettings
()
if
isinstance
(
self
.
account
,
Account
):
if
self
.
account
.
sip
.
outbound_proxy
is
not
None
:
uri
=
SIPURI
(
host
=
self
.
account
.
sip
.
outbound_proxy
.
host
,
port
=
self
.
account
.
sip
.
outbound_proxy
.
port
,
parameters
=
{
'transport'
:
self
.
account
.
sip
.
outbound_proxy
.
transport
})
elif
self
.
account
.
sip
.
always_use_my_proxy
:
uri
=
SIPURI
(
host
=
self
.
account
.
id
.
domain
)
else
:
uri
=
self
.
_uri
else
:
uri
=
self
.
_uri
lookup
=
DNSLookup
()
notification_center
.
add_observer
(
self
,
sender
=
lookup
)
lookup
.
lookup_sip_proxy
(
uri
,
settings
.
sip
.
transport_list
)
self
.
state
=
'connecting/dns_lookup'
def
end
(
self
):
def
end
(
self
):
assert
self
.
state
is
not
None
assert
self
.
state
is
not
None
...
@@ -3657,7 +3658,7 @@ class FileTransfer(object):
...
@@ -3657,7 +3658,7 @@ class FileTransfer(object):
assert
self
.
direction
==
'outgoing'
assert
self
.
direction
==
'outgoing'
self
.
_error
=
True
self
.
_error
=
True
self
.
_reason
=
'Cancelled'
self
.
_reason
=
'Cancelled'
self
.
_
stop_event
.
set
()
self
.
_
terminate
()
def
_get_state
(
self
):
def
_get_state
(
self
):
return
self
.
__dict__
[
'state'
]
return
self
.
__dict__
[
'state'
]
...
@@ -3705,90 +3706,6 @@ class FileTransfer(object):
...
@@ -3705,90 +3706,6 @@ class FileTransfer(object):
stream
=
property
(
_get_stream
,
_set_stream
)
stream
=
property
(
_get_stream
,
_set_stream
)
del
_get_stream
,
_set_stream
del
_get_stream
,
_set_stream
@
run_in_thread
(
'file-transfer'
)
def
_process_received_chunk
(
self
,
data
):
if
data
is
not
None
:
try
:
self
.
_file_selector
.
fd
.
write
(
data
)
except
EnvironmentError
,
e
:
self
.
_error
=
True
self
.
_reason
=
str
(
e
)
call_in_gui_thread
(
self
.
end
)
else
:
self
.
_local_hash
.
update
(
data
)
else
:
if
not
self
.
_finished
and
not
self
.
_error
:
self
.
_error
=
True
self
.
_reason
=
'Cancelled'
self
.
_terminate
()
@
run_in_thread
(
'file-hash'
)
def
_calculate_hash
(
self
):
hash
=
hashlib
.
sha1
()
pos
=
0
progress
=
0
size
=
self
.
_file_selector
.
size
if
size
==
0
:
self
.
_error
=
True
self
.
_reason
=
'Empty file'
self
.
_terminate
()
return
chunk_size
=
limit
(
size
/
100
,
min
=
65536
,
max
=
1048576
)
self
.
state
=
'connecting/hashing'
notification_center
=
NotificationCenter
()
notification_center
.
post_notification
(
'FileTransferHashProgress'
,
sender
=
self
,
data
=
NotificationData
(
progress
=
0
))
while
not
self
.
_stop_event
.
is_set
():
try
:
content
=
self
.
_file_selector
.
fd
.
read
(
chunk_size
)
except
EnvironmentError
,
e
:
self
.
_error
=
True
self
.
_reason
=
str
(
e
)
self
.
_terminate
()
return
if
not
content
:
break
hash
.
update
(
content
)
pos
+=
len
(
content
)
progress
=
int
(
pos
*
100
/
size
)
notification_center
.
post_notification
(
'FileTransferHashProgress'
,
sender
=
self
,
data
=
NotificationData
(
progress
=
progress
))
else
:
self
.
_terminate
()
return
self
.
_file_selector
.
fd
.
seek
(
0
)
self
.
_file_selector
.
hash
=
hash
self
.
_start_outgoing_session
()
@
run_in_gui_thread
def
_start_outgoing_session
(
self
):
if
self
.
_stop_event
.
is_set
():
self
.
_terminate
()
return
settings
=
SIPSimpleSettings
()
if
isinstance
(
self
.
account
,
Account
):
if
self
.
account
.
sip
.
outbound_proxy
is
not
None
:
uri
=
SIPURI
(
host
=
self
.
account
.
sip
.
outbound_proxy
.
host
,
port
=
self
.
account
.
sip
.
outbound_proxy
.
port
,
parameters
=
{
'transport'
:
self
.
account
.
sip
.
outbound_proxy
.
transport
})
elif
self
.
account
.
sip
.
always_use_my_proxy
:
uri
=
SIPURI
(
host
=
self
.
account
.
id
.
domain
)
else
:
uri
=
self
.
_uri
else
:
uri
=
self
.
_uri
lookup
=
DNSLookup
()
notification_center
=
NotificationCenter
()
notification_center
.
add_observer
(
self
,
sender
=
lookup
)
lookup
.
lookup_sip_proxy
(
uri
,
settings
.
sip
.
transport_list
)
self
.
state
=
'connecting/dns_lookup'
def
_normalize_uri
(
self
,
uri
):
def
_normalize_uri
(
self
,
uri
):
if
'@'
not
in
uri
:
if
'@'
not
in
uri
:
uri
+=
'@'
+
self
.
account
.
id
.
domain
uri
+=
'@'
+
self
.
account
.
id
.
domain
...
@@ -3796,43 +3713,18 @@ class FileTransfer(object):
...
@@ -3796,43 +3713,18 @@ class FileTransfer(object):
uri
=
'sip:'
+
uri
uri
=
'sip:'
+
uri
return
SIPURI
.
parse
(
str
(
uri
)
.
translate
(
None
,
'
\t
'
))
return
SIPURI
.
parse
(
str
(
uri
)
.
translate
(
None
,
'
\t
'
))
@
run_in_gui_thread
def
_terminate
(
self
):
def
_terminate
(
self
):
if
self
.
state
!=
'ending'
:
self
.
state
=
'ending'
# if the state is not ending already, simulate it
self
.
state
=
'ending'
reason
,
error
=
self
.
_reason
,
self
.
_error
if
self
.
_file_selector
is
not
None
and
self
.
_file_selector
.
fd
is
not
None
:
self
.
_file_selector
.
fd
.
close
()
self
.
_file_selector
.
fd
=
None
if
self
.
direction
==
'incoming'
:
filename
=
self
.
filename
+
self
.
tmp_file_suffix
if
error
:
unlink
(
filename
)
else
:
local_hash
=
'sha1:'
+
':'
.
join
(
re
.
findall
(
r'..'
,
self
.
_local_hash
.
hexdigest
()))
remote_hash
=
self
.
_file_selector
.
hash
.
lower
()
if
local_hash
==
remote_hash
:
tmp_name
=
filename
os
.
rename
(
tmp_name
,
self
.
filename
)
reason
=
'Completed (
%
s)'
%
FileSizeFormatter
.
format
(
self
.
_file_selector
.
size
)
else
:
error
=
True
reason
=
'File hash mismatch'
unlink
(
filename
)
self
.
sip_session
=
None
self
.
sip_session
=
None
self
.
stream
=
None
self
.
stream
=
None
state
=
SessionState
(
'ended'
)
state
=
SessionState
(
'ended'
)
state
.
reason
=
reason
state
.
reason
=
self
.
_
reason
state
.
error
=
error
state
.
error
=
self
.
_
error
self
.
state
=
state
self
.
state
=
state
notification_center
=
NotificationCenter
()
notification_center
=
NotificationCenter
()
notification_center
.
post_notification
(
'FileTransferDidEnd'
,
sender
=
self
,
data
=
NotificationData
(
reason
=
reason
,
error
=
error
))
notification_center
.
post_notification
(
'FileTransferDidEnd'
,
sender
=
self
,
data
=
NotificationData
(
reason
=
self
.
_reason
,
error
=
self
.
_
error
))
@
run_in_gui_thread
@
run_in_gui_thread
def
handle_notification
(
self
,
notification
):
def
handle_notification
(
self
,
notification
):
...
@@ -3841,17 +3733,14 @@ class FileTransfer(object):
...
@@ -3841,17 +3733,14 @@ class FileTransfer(object):
def
_NH_DNSLookupDidSucceed
(
self
,
notification
):
def
_NH_DNSLookupDidSucceed
(
self
,
notification
):
notification
.
center
.
remove_observer
(
self
,
sender
=
notification
.
sender
)
notification
.
center
.
remove_observer
(
self
,
sender
=
notification
.
sender
)
if
self
.
_stop_event
.
is_set
():
if
self
.
state
in
(
'ending'
,
'ended'
):
self
.
_terminate
()
return
return
routes
=
notification
.
data
.
result
routes
=
notification
.
data
.
result
if
not
routes
:
if
not
routes
:
self
.
_error
=
True
self
.
_error
=
True
self
.
_reason
=
'Destination not found'
self
.
_reason
=
'Destination not found'
self
.
_terminate
()
self
.
_terminate
()
return
return
self
.
sip_session
=
Session
(
self
.
account
)
self
.
sip_session
=
Session
(
self
.
account
)
registry
=
MediaStreamRegistry
()
registry
=
MediaStreamRegistry
()
cls
=
registry
.
get
(
'file-transfer'
)
cls
=
registry
.
get
(
'file-transfer'
)
...
@@ -3860,8 +3749,7 @@ class FileTransfer(object):
...
@@ -3860,8 +3749,7 @@ class FileTransfer(object):
def
_NH_DNSLookupDidFail
(
self
,
notification
):
def
_NH_DNSLookupDidFail
(
self
,
notification
):
notification
.
center
.
remove_observer
(
self
,
sender
=
notification
.
sender
)
notification
.
center
.
remove_observer
(
self
,
sender
=
notification
.
sender
)
if
self
.
_stop_event
.
is_set
():
if
self
.
state
in
(
'ending'
,
'ended'
):
self
.
_terminate
()
return
return
self
.
_error
=
True
self
.
_error
=
True
self
.
_reason
=
'DNS Lookup failed'
self
.
_reason
=
'DNS Lookup failed'
...
@@ -3893,48 +3781,50 @@ class FileTransfer(object):
...
@@ -3893,48 +3781,50 @@ class FileTransfer(object):
self
.
_reason
=
reason
self
.
_reason
=
reason
self
.
_terminate
()
self
.
_terminate
()
def
_NH_MediaStreamDidFail
(
self
,
notification
):
def
_NH_MediaStreamDidInitialize
(
self
,
notification
):
# In principle the Session will end itself because this is the only stream,
if
self
.
direction
==
'incoming'
:
# but lets be explicit about it -Saul
self
.
filename
=
os
.
path
.
splitext
(
notification
.
sender
.
file_selector
.
name
)[
0
]
def
_NH_MediaStreamDidNotInitialize
(
self
,
notification
):
self
.
_error
=
True
self
.
_reason
=
notification
.
data
.
reason
self
.
end
()
self
.
end
()
def
_NH_MediaStreamDidEnd
(
self
,
notification
):
def
_NH_MediaStreamDidEnd
(
self
,
notification
):
if
self
.
direction
==
'incoming'
:
self
.
_stream_ended
=
True
# Mark end of write operations
if
not
self
.
_finished
:
self
.
_process_received_chunk
(
None
)
if
self
.
direction
==
'outgoing'
:
elif
self
.
state
!=
'ended'
:
# In case of SIPSessionDidFail, _terminate() was already called -Saul
if
self
.
_finished
:
self
.
_error
=
False
self
.
_reason
=
'Completed (
%
s)'
%
FileSizeFormatter
.
format
(
self
.
_file_selector
.
size
)
else
:
self
.
_error
=
True
self
.
_error
=
True
self
.
_reason
=
'Cancelled'
self
.
_reason
=
'Interrupted'
self
.
_terminate
()
else
:
self
.
_terminate
()
self
.
_terminate
()
def
_NH_FileTransferStreamGotChunk
(
self
,
notification
):
def
_NH_FileTransferStreamHashProgress
(
self
,
notification
):
if
not
self
.
_error
:
progress
=
int
(
notification
.
data
.
processed
*
100
/
notification
.
data
.
total
)
self
.
_file_selector
.
size
=
notification
.
data
.
file_size
notification
.
center
.
post_notification
(
'FileTransferHashProgress'
,
sender
=
self
,
data
=
NotificationData
(
progress
=
progress
))
self
.
_process_received_chunk
(
notification
.
data
.
content
)
notification
.
center
.
post_notification
(
'FileTransferProgress'
,
sender
=
self
,
data
=
NotificationData
(
bytes
=
notification
.
data
.
transferred_bytes
,
total_bytes
=
notification
.
data
.
file_size
))
def
_NH_FileTransferStream
DidDeliverChunk
(
self
,
notification
):
def
_NH_FileTransferStream
Progress
(
self
,
notification
):
notification
.
center
.
post_notification
(
'FileTransferProgress'
,
sender
=
self
,
data
=
NotificationData
(
bytes
=
notification
.
data
.
transferred_bytes
,
notification
.
center
.
post_notification
(
'FileTransferProgress'
,
sender
=
self
,
data
=
NotificationData
(
bytes
=
notification
.
data
.
transferred_bytes
,
total_bytes
=
notification
.
data
.
file_size
))
total_bytes
=
notification
.
data
.
total_bytes
))
def
_NH_FileTransferStreamDidNotDeliverChunk
(
self
,
notification
):
def
_NH_FileTransferStreamDidFinishTransfer
(
self
,
notification
):
if
notification
.
data
.
chunk
.
size
>
0
:
self
.
_error
=
True
self
.
_reason
=
notification
.
data
.
reason
self
.
end
()
def
_NH_FileTransferStreamDidFinish
(
self
,
notification
):
self
.
_finished
=
True
if
self
.
direction
==
'incoming'
:
if
self
.
direction
==
'incoming'
:
call_later
(
3
,
self
.
end
)
# filename could have changed
self
.
filename
=
os
.
path
.
splitext
(
notification
.
sender
.
file_selector
.
name
)[
0
]
self
.
_finished
=
True
self
.
_error
=
notification
.
data
.
error
if
not
self
.
_error
:
self
.
_reason
=
'Completed (
%
s)'
%
FileSizeFormatter
.
format
(
self
.
_file_selector
.
size
)
else
:
else
:
self
.
end
()
self
.
_reason
=
notification
.
data
.
reason
if
self
.
_stream_ended
:
self
.
_terminate
()
else
:
if
self
.
direction
==
'incoming'
:
call_later
(
3
,
self
.
end
)
else
:
self
.
end
()
class
TransferStateLabel
(
QLabel
,
ColorHelperMixin
):
class
TransferStateLabel
(
QLabel
,
ColorHelperMixin
):
...
@@ -4123,13 +4013,13 @@ class FileTransferItemWidget(base_class, ui_class):
...
@@ -4123,13 +4013,13 @@ class FileTransferItemWidget(base_class, ui_class):
def
update_content
(
self
,
item
,
initial
=
False
):
def
update_content
(
self
,
item
,
initial
=
False
):
if
initial
:
if
initial
:
self
.
filename_label
.
setText
(
os
.
path
.
basename
(
item
.
filename
))
if
item
.
direction
==
'outgoing'
:
if
item
.
direction
==
'outgoing'
:
self
.
name_label
.
setText
(
u'To: '
+
item
.
name
)
self
.
name_label
.
setText
(
u'To: '
+
item
.
name
)
self
.
icon_label
.
setPixmap
(
self
.
pixmaps
.
outgoing_transfer
)
self
.
icon_label
.
setPixmap
(
self
.
pixmaps
.
outgoing_transfer
)
else
:
else
:
self
.
name_label
.
setText
(
u'From: '
+
item
.
name
)
self
.
name_label
.
setText
(
u'From: '
+
item
.
name
)
self
.
icon_label
.
setPixmap
(
self
.
pixmaps
.
incoming_transfer
)
self
.
icon_label
.
setPixmap
(
self
.
pixmaps
.
incoming_transfer
)
self
.
filename_label
.
setText
(
os
.
path
.
basename
(
item
.
filename
))
self
.
status_label
.
setText
(
item
.
status
)
self
.
status_label
.
setText
(
item
.
status
)
if
item
.
ended
:
if
item
.
ended
:
self
.
state_indicator
.
display_mode
=
self
.
state_indicator
.
InactiveDisplayMode
self
.
state_indicator
.
display_mode
=
self
.
state_indicator
.
InactiveDisplayMode
...
@@ -4213,10 +4103,7 @@ class FileTransferItem(object):
...
@@ -4213,10 +4103,7 @@ class FileTransferItem(object):
state
=
notification
.
data
.
new_state
state
=
notification
.
data
.
new_state
if
state
==
'connecting/dns_lookup'
:
if
state
==
'connecting/dns_lookup'
:
self
.
status
=
u'Looking up destination...'
self
.
status
=
u'Looking up destination...'
elif
state
==
'connecting/hashing'
:
self
.
status
=
u'Computing hash...'
elif
state
==
'connecting'
:
elif
state
==
'connecting'
:
self
.
progress
=
None
self
.
status
=
u'Connecting...'
self
.
status
=
u'Connecting...'
elif
state
==
'connecting/ringing'
:
elif
state
==
'connecting/ringing'
:
self
.
status
=
u'Ringing...'
self
.
status
=
u'Ringing...'
...
@@ -4228,6 +4115,7 @@ class FileTransferItem(object):
...
@@ -4228,6 +4115,7 @@ class FileTransferItem(object):
self
.
status
=
u'Ending...'
self
.
status
=
u'Ending...'
else
:
else
:
self
.
status
=
None
self
.
status
=
None
self
.
progress
=
None
self
.
widget
.
update_content
(
self
)
self
.
widget
.
update_content
(
self
)
notification
.
center
.
post_notification
(
'FileTransferItemDidChange'
,
sender
=
self
)
notification
.
center
.
post_notification
(
'FileTransferItemDidChange'
,
sender
=
self
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment