コード例 #1
0
ファイル: endpoints.py プロジェクト: 0004c/VTK
 def __init__(self, ready):
     """
     @param ready: A L{Deferred} which should be fired when
         I{serviceStarted} happens.
     """
     SSHConnection.__init__(self)
     self._ready = ready
コード例 #2
0
ファイル: endpoints.py プロジェクト: ShadowJonathan/twisted
 def __init__(self, ready):
     """
     @param ready: A L{Deferred} which should be fired when
         I{serviceStarted} happens.
     """
     SSHConnection.__init__(self)
     self._ready = ready
コード例 #3
0
 def __init__(self):
     """
     Adds a deferred here so client can add a callback when the SFTP client is ready.
     """
     SSHConnection.__init__(self)
     self._sftpClient = Deferred()
     self.sftpSession = SFTPSession()
コード例 #4
0
ファイル: ssh.py プロジェクト: veloutin/tilde
    def serviceStopped(self):
        for d, channel in self._pendingChannelsDeferreds:
            d.cancel()
        else:
            del self._pendingChannelsDeferreds[:]
        self._ready = False

        SSHConnection.serviceStopped(self)
コード例 #5
0
ファイル: ssh.py プロジェクト: veloutin/tilde
    def serviceStopped(self):
        for d, channel in self._pendingChannelsDeferreds:
            d.cancel()
        else:
            del self._pendingChannelsDeferreds[:]
        self._ready = False

        SSHConnection.serviceStopped(self)
コード例 #6
0
 def __init__(self, factory):
     """
     @param factory: The factory used to create the connection this service
         is running over to grant access to the C{connectionReady} attribute
         which is a L{Deferred} which will get fired when I{serviceStarted}
         happens.
     """
     SSHConnection.__init__(self)
     self._factory = factory
コード例 #7
0
ファイル: ssh.py プロジェクト: veloutin/tilde
    def serviceStarted(self):
        SSHConnection.serviceStarted(self)
        self._ready = True
        for d, channel in self._pendingChannelsDeferreds:
            self.openChannel(channel)
            d.callback(True)
        else:
            del self._pendingChannelsDeferreds[:]

        self.factory.server.connection = self
        self.factory.serverConnected.callback(self)
コード例 #8
0
ファイル: ssh.py プロジェクト: veloutin/tilde
    def serviceStarted(self):
        SSHConnection.serviceStarted(self)
        self._ready = True
        for d, channel in self._pendingChannelsDeferreds:
            self.openChannel(channel)
            d.callback(True)
        else:
            del self._pendingChannelsDeferreds[:]

        self.factory.server.connection = self
        self.factory.serverConnected.callback(self)
コード例 #9
0
 def test_cleanupConnectionNotImmediately(self):
     """
     L{_NewConnectionHelper.cleanupConnection} closes the transport cleanly
     if called with C{immediate} set to C{False}.
     """
     helper = _NewConnectionHelper(
         None, None, None, None, None, None, None, None, None, None)
     connection = SSHConnection()
     connection.transport = StringTransport()
     helper.cleanupConnection(connection, False)
     self.assertTrue(connection.transport.disconnecting)
コード例 #10
0
 def test_cleanupConnectionNotImmediately(self):
     """
     L{_NewConnectionHelper.cleanupConnection} closes the transport cleanly
     if called with C{immediate} set to C{False}.
     """
     helper = _NewConnectionHelper(None, None, None, None, None, None, None,
                                   None, None, None)
     connection = SSHConnection()
     connection.transport = StringTransport()
     helper.cleanupConnection(connection, False)
     self.assertTrue(connection.transport.disconnecting)
コード例 #11
0
    def test_cleanupConnectionImmediately(self):
        """
        L{_NewConnectionHelper.cleanupConnection} closes the transport with
        C{abortConnection} if called with C{immediate} set to C{True}.
        """
        class Abortable:
            aborted = False
            def abortConnection(self):
                """
                Abort the connection.
                """
                self.aborted = True

        helper = _NewConnectionHelper(
            None, None, None, None, None, None, None, None, None, None)
        connection = SSHConnection()
        connection.transport = SSHClientTransport()
        connection.transport.transport = Abortable()
        helper.cleanupConnection(connection, True)
        self.assertTrue(connection.transport.transport.aborted)
コード例 #12
0
    def startConnection(self, user):
        serviceStartedDeferred = defer.Deferred()
        connectionService = SSHConnection()
        def serviceStarted():
            self._connections[user] = connectionService
            serviceStartedDeferred.callback(connectionService)
        connectionService.serviceStarted = serviceStarted

        connectionLostDeferred = defer.Deferred()
        userAuthObject = self._getUserAuthObject(user, connectionService)
        sshClientFactory = SSHClientFactory(connectionLostDeferred,
                                            self._verifyHostKey, userAuthObject)

        def connectionEnded(reason):
            self._connections[user] = None
            serviceStartedDeferred.called or serviceStartedDeferred.errback(reason)
        connectionLostDeferred.addBoth(connectionEnded)
        connectionMadeDeferred = self.endpoint.connect(sshClientFactory)
        connectionMadeDeferred.addErrback(connectionEnded)

        return serviceStartedDeferred
コード例 #13
0
    def test_cleanupConnectionImmediately(self):
        """
        L{_NewConnectionHelper.cleanupConnection} closes the transport with
        C{abortConnection} if called with C{immediate} set to C{True}.
        """
        class Abortable:
            aborted = False

            def abortConnection(self):
                """
                Abort the connection.
                """
                self.aborted = True

        helper = _NewConnectionHelper(None, None, None, None, None, None, None,
                                      None, None, None)
        connection = SSHConnection()
        connection.transport = SSHClientTransport()
        connection.transport.transport = Abortable()
        helper.cleanupConnection(connection, True)
        self.assertTrue(connection.transport.transport.aborted)
コード例 #14
0
ファイル: sshprocess.py プロジェクト: sporsh/carnifex
    def startConnection(self, user):
        serviceStartedDeferred = defer.Deferred()
        connectionService = SSHConnection()
        def serviceStarted():
            self._connections[user] = connectionService
            serviceStartedDeferred.callback(connectionService)
        connectionService.serviceStarted = serviceStarted

        connectionLostDeferred = defer.Deferred()
        userAuthObject = self._getUserAuthObject(user, connectionService)
        sshClientFactory = SSHClientFactory(connectionLostDeferred,
                                            self._verifyHostKey, userAuthObject)

        def connectionEnded(reason):
            self._connections[user] = None
            serviceStartedDeferred.called or serviceStartedDeferred.errback(reason)
        connectionLostDeferred.addBoth(connectionEnded)
        connectionMadeDeferred = self.endpoint.connect(sshClientFactory)
        connectionMadeDeferred.addErrback(connectionEnded)

        return serviceStartedDeferred
コード例 #15
0
ファイル: ssh.py プロジェクト: veloutin/tilde
 def __init__(self, factory):
     SSHConnection.__init__(self)
     self.factory = factory
     self._pendingChannelsDeferreds = []
コード例 #16
0
ファイル: sshclient.py プロジェクト: boudewijn-tribler/gumby
 def __init__(self, command, env={}):
     SSHConnection.__init__(self)
     self.command_str = command
     self.env = env
     self.reason = None
コード例 #17
0
ファイル: ssh.py プロジェクト: ekohl/vncauthproxy
 def __init__(self, client):
     SSHConnection.__init__(self)
     self.client = client
コード例 #18
0
ファイル: sshclient.py プロジェクト: vladum/gumby
 def channelClosed(self, channel):
     SSHConnection.channelClosed(self, channel)
     self.reason = channel.reason
     self.transport.loseConnection()
コード例 #19
0
ファイル: sshclient.py プロジェクト: vladum/gumby
 def __init__(self, command):
     SSHConnection.__init__(self)
     self.command_str = command
     self.reason = None
コード例 #20
0
 def __init__(self, command):
     SSHConnection.__init__(self)
     self.command_str = command
     self.reason = None
コード例 #21
0
 def __init__(self, filename, stop_defer):
     SSHConnection.__init__(self)
     self.filename = filename
     self.stop_defer = stop_defer
コード例 #22
0
 def __init__(self, command, protocolFactory, commandConnected):
     SSHConnection.__init__(self)
     self._command = command
     self._protocolFactory = protocolFactory
     self._commandConnected = commandConnected
コード例 #23
0
 def __init__(self, command, protocolFactory, commandConnected):
     SSHConnection.__init__(self)
     self._command = command
     self._protocolFactory = protocolFactory
     self._commandConnected = commandConnected
コード例 #24
0
 def channelClosed(self, channel):
     SSHConnection.channelClosed(self, channel)
     self.reason = channel.reason
     self.transport.loseConnection()
コード例 #25
0
ファイル: ssh.py プロジェクト: veloutin/tilde
 def __init__(self, factory):
     SSHConnection.__init__(self)
     self.factory = factory
     self._pendingChannelsDeferreds = []
コード例 #26
0
 def __init__(self, client):
     SSHConnection.__init__(self)
     self.client = client