/usr/lib/python2.7/dist-packages/libssh2/channel.py is in python-libssh2 1.0.0-1.2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | #
# pylibssh2 - python bindings for libssh2 library
#
# Copyright (C) 2010 Wallix Inc.
#
# This library is free software; you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published by the
# Free Software Foundation; either version 2.1 of the License, or (at your
# option) any later version.
#
# This library is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
# details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this library; if not, write to the Free Software Foundation, Inc.,
# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
"""
Abstraction for libssh2 L{Channel} object
"""
class ChannelException(Exception):
"""
Exception raised when L{Channel} actions fails.
"""
pass
class Channel(object):
"""
Channel object
"""
def __init__(self, _channel):
"""
Creates a new channel object with the given _channel.
@param _channel: low level channel object
@type _channel: L{_libssh2.Channel}
"""
self._channel = _channel
self.closed = False
self.flushed = False
def close(self):
"""
Closes the active channel.
@return: 0 on success or negative on failure
@rtype: int
"""
self.closed = True
return self._channel.close()
def eof(self):
"""
Checks if the remote host has sent a EOF status.
@return: 1 if the remote host has sent EOF otherwise 0
@rtype: int
"""
return self._channel.eof()
def execute(self, command):
"""
Executes command on the channel.
@param command: message data
@type command: str
@return: 0 on success or negative on failure
@rtype: int
"""
self.closed = True
return self._channel.execute(command)
def exit_status(self):
"""
Gets the exit code raised by the process running on the remote host.
@return: the exit status reported by remote host or 0 on failure
@rtype: int
"""
return self._channel.exit_status()
def flush(self):
"""
Flushs the read buffer on the channel.
@return: 0 on sucess or negative on failure
@rtype: int
"""
self.flushed = True
return self._channel.flush()
def poll(self, timeout, nfds):
"""
Polls for activity on the channel.
@param timeout: remaining timeout
@type timeout: int
@param nfds: number of fds to poll
@type nfds: int
@return: number of fds with interesting events or negative on failure
@rtype: int
"""
return self._channel.poll(timeout, nfds)
def poll_read(self, extended):
"""
Checks if data is available on the channel.
@param extended: if message channel datas is extended
@type extended: int
@return: 1 when data is available or 0 otherwise
@rtype: int
"""
return self._channel.poll_read(extended)
def pty(self, term="vt100"):
"""
Requests a pty with term type on the channel.
@param term: terminal emulation type (vt100, ansi, etc...)
@type term: str
@return: 0 on success or negative on failure
@rtype: int
"""
return self._channel.pty(term)
def pty_resize(self, width, height):
"""
Requests a pty resize of the channel with given width and height.
@param width: terminal width
@type width: int
@param height: terminal height
@type height: int
@return: 0 on success or negative on failure
@rtype: int
"""
return self._channel.pty_resize(width, height)
def read(self, size=4096):
"""
Reads size bytes on the channel.
@param size: size of the buffer storage
@type size: int
@return: bytes readed or negative on failure
@rtype: str
"""
return self._channel.read(size)
def send_eof(self):
"""
Sends EOF status on the channel to remote server.
@return: 0 on success or negative on failure
@rtype: int
"""
self._channel.send_eof()
def setblocking(self, mode=1):
"""
Sets blocking mode on the channel. Default mode is blocking.
@param mode: blocking (1) or non blocking (0) mode
@rtype: int
"""
return self._channel.setblocking(mode)
def setenv(self, name, value):
"""
Sets envrionment variable on the channel.
@param name: envrionment variable name
@type name: str
@param value: envrionment variable value
@type value: str
@return: 0 on success or negative on failure
@rtype: int
"""
return self._channel.setenv(name, value)
def shell(self):
"""
Requests a shell on the channel.
@return: 0 on success or negative on failure
@rtype: int
"""
return self._channel.shell()
def window_read(self, read_avail, window_size_initial):
"""
Checks the status of the read window on the channel.
@param read_avail: window limit to read
@type read_avail: int
@param window_size_initial: window initial size defined
@type window_size_initial: int
@return: the number of bytes which the remote end may send
without overflowing the window limit
@rtype: int
"""
return self._channel.window_read(read_avail, window_size_initial)
def write(self, message):
"""
Writes data on the channel.
@param message: data to write
@type message: str
@return: 0 on sucess or failure
@rtype: int
"""
return self._channel.write(message)
def x11_req(self, display):
"""
Requests a X11 Forwarding on the channel.
@param display: screen number
@param display: int
@return: 0 on success or negative on failure
@rtype: int
"""
return self._channel.x11_req(display)
|