Last active
August 29, 2015 14:09
-
-
Save jbearden0/3fe35e1641361966f0c9 to your computer and use it in GitHub Desktop.
Example of a simple bidirectional python AMP server
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# python count_server.py | |
from sys import stdout, exit | |
from decimal import Decimal | |
from datetime import datetime | |
from twisted.internet import reactor | |
from twisted.internet.protocol import Factory | |
from twisted.internet.endpoints import TCP4ServerEndpoint | |
from twisted.protocols import amp | |
from twisted.python.log import startLogging, err, msg | |
class Count(amp.Command): | |
arguments = [('n', amp.Integer())] | |
response = [('oki', amp.Integer()), | |
('oks', amp.String()), | |
('oku', amp.Unicode()), | |
('okb', amp.Boolean()), | |
('okf', amp.Float()), | |
('okd', amp.Decimal()), | |
('okt', amp.DateTime()), | |
('okl1', amp.ListOf(amp.Integer())), | |
('okl2', amp.ListOf(amp.ListOf(amp.String()))), | |
('okla', amp.AmpList([('a', amp.Integer()), | |
('b', amp.Unicode())]))] | |
class Counter(amp.AMP): | |
@Count.responder | |
def count(self, n): | |
print 'received:', n | |
n += 1 | |
maxcount = 11 | |
if (n < maxcount): | |
print 'sending:', n | |
d = self.callRemote(Count, n=n) | |
d.addCallback(lambda resp: msg("response:", resp)) | |
d.addErrback(err, 'callRemote failed') | |
else: | |
reactor.stop() | |
return { 'oki': 1, 'oks': '2', 'oku': u'3', 'okb': True, | |
'okf': 5.123, 'okd': Decimal('3') / Decimal('4'), | |
'okt': datetime.now(amp.utc), | |
'okl1': [4, 5, 6], | |
'okl2': [['str01','str02'], ['str03','str04','str05']], | |
'okla': [{'a': 7, 'b': u'hello'}, {'a': 9, 'b': u'goodbye'}] | |
} | |
def connectionLost(self, reason): | |
print 'Client closed connection!' | |
def main(): | |
startLogging(stdout) | |
factory = Factory() | |
factory.protocol = Counter | |
endpoint = TCP4ServerEndpoint(reactor, 7113) | |
endpoint.listen(factory) | |
reactor.run() | |
if __name__ == '__main__': | |
import count_server | |
raise SystemExit(count_server.main()) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment