nova/vendor/Twisted-10.0.0/doc/conch/examples/demo_scroll.tac
2010-05-27 23:05:26 -07:00

101 lines
3.4 KiB
Python

# Copyright (c) 2001-2004 Twisted Matrix Laboratories.
# See LICENSE for details.
# You can run this .tac file directly with:
# twistd -ny demo_scroll.tac
"""Simple echo-ish server that uses the scroll-region.
This demo sets up two listening ports: one on 6022 which accepts ssh
connections; one on 6023 which accepts telnet connections. No login
for the telnet server is required; for the ssh server, \"username\" is
the username and \"password\" is the password.
The TerminalProtocol subclass defined here sets up a scroll-region occupying
most of the screen. It positions the cursor at the bottom of the screen and
then echos back printable input. When return is received, the line is
copied to the upper area of the screen (scrolling anything older up) and
clears the input line.
"""
import string
from twisted.python import log
from twisted.internet import protocol
from twisted.application import internet, service
from twisted.cred import checkers, portal
from twisted.conch.insults import insults
from twisted.conch.telnet import TelnetTransport, TelnetBootstrapProtocol
from twisted.conch.manhole_ssh import ConchFactory, TerminalRealm
class DemoProtocol(insults.TerminalProtocol):
"""Copies input to an upwards scrolling region.
"""
width = 80
height = 24
def connectionMade(self):
self.buffer = []
self.terminalSize(self.width, self.height)
# ITerminalListener
def terminalSize(self, width, height):
self.width = width
self.height = height
self.terminal.setScrollRegion(0, height - 1)
self.terminal.cursorPosition(0, height)
self.terminal.write('> ')
def unhandledControlSequence(self, seq):
log.msg("Client sent something weird: %r" % (seq,))
def keystrokeReceived(self, keyID, modifier):
if keyID == '\r':
self.terminal.cursorPosition(0, self.height - 2)
self.terminal.nextLine()
self.terminal.write(''.join(self.buffer))
self.terminal.cursorPosition(0, self.height - 1)
self.terminal.eraseToLineEnd()
self.terminal.write('> ')
self.buffer = []
elif keyID in list(string.printable):
self.terminal.write(keyID)
self.buffer.append(keyID)
def makeService(args):
checker = checkers.InMemoryUsernamePasswordDatabaseDontUse(username="password")
f = protocol.ServerFactory()
f.protocol = lambda: TelnetTransport(TelnetBootstrapProtocol,
insults.ServerProtocol,
args['protocolFactory'],
*args.get('protocolArgs', ()),
**args.get('protocolKwArgs', {}))
tsvc = internet.TCPServer(args['telnet'], f)
def chainProtocolFactory():
return insults.ServerProtocol(
args['protocolFactory'],
*args.get('protocolArgs', ()),
**args.get('protocolKwArgs', {}))
rlm = TerminalRealm()
rlm.chainedProtocolFactory = chainProtocolFactory
ptl = portal.Portal(rlm, [checker])
f = ConchFactory(ptl)
csvc = internet.TCPServer(args['ssh'], f)
m = service.MultiService()
tsvc.setServiceParent(m)
csvc.setServiceParent(m)
return m
application = service.Application("Scroll Region Demo App")
makeService({'protocolFactory': DemoProtocol,
'telnet': 6023,
'ssh': 6022}).setServiceParent(application)