]> git.proxmox.com Git - ceph.git/blame - ceph/src/jaegertracing/thrift/tutorial/py.twisted/PythonServer.py
buildsys: switch source download to quincy
[ceph.git] / ceph / src / jaegertracing / thrift / tutorial / py.twisted / PythonServer.py
CommitLineData
f67539c2
TL
1#!/usr/bin/env python
2
3#
4# Licensed to the Apache Software Foundation (ASF) under one
5# or more contributor license agreements. See the NOTICE file
6# distributed with this work for additional information
7# regarding copyright ownership. The ASF licenses this file
8# to you under the Apache License, Version 2.0 (the
9# "License"); you may not use this file except in compliance
10# with the License. You may obtain a copy of the License at
11#
12# http://www.apache.org/licenses/LICENSE-2.0
13#
14# Unless required by applicable law or agreed to in writing,
15# software distributed under the License is distributed on an
16# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17# KIND, either express or implied. See the License for the
18# specific language governing permissions and limitations
19# under the License.
20#
21
22import glob
23import sys
24sys.path.append('gen-py.twisted')
25sys.path.insert(0, glob.glob('../../lib/py/build/lib*')[0])
26
27from tutorial import Calculator
28from tutorial.ttypes import InvalidOperation, Operation
29
30from shared.ttypes import SharedStruct
31
32from zope.interface import implements
33from twisted.internet import reactor
34
35from thrift.transport import TTwisted
36from thrift.protocol import TBinaryProtocol
37
38
39class CalculatorHandler:
40 implements(Calculator.Iface)
41
42 def __init__(self):
43 self.log = {}
44
45 def ping(self):
46 print('ping()')
47
48 def add(self, n1, n2):
49 print('add(%d,%d)' % (n1, n2))
50 return n1 + n2
51
52 def calculate(self, logid, work):
53 print('calculate(%d, %r)' % (logid, work))
54
55 if work.op == Operation.ADD:
56 val = work.num1 + work.num2
57 elif work.op == Operation.SUBTRACT:
58 val = work.num1 - work.num2
59 elif work.op == Operation.MULTIPLY:
60 val = work.num1 * work.num2
61 elif work.op == Operation.DIVIDE:
62 if work.num2 == 0:
63 x = InvalidOperation()
64 x.whatOp = work.op
65 x.why = 'Cannot divide by 0'
66 raise x
67 val = work.num1 / work.num2
68 else:
69 x = InvalidOperation()
70 x.whatOp = work.op
71 x.why = 'Invalid operation'
72 raise x
73
74 log = SharedStruct()
75 log.key = logid
76 log.value = '%d' % (val)
77 self.log[logid] = log
78
79 return val
80
81 def getStruct(self, key):
82 print('getStruct(%d)' % (key))
83 return self.log[key]
84
85 def zip(self):
86 print('zip()')
87
88
89if __name__ == '__main__':
90 handler = CalculatorHandler()
91 processor = Calculator.Processor(handler)
92 pfactory = TBinaryProtocol.TBinaryProtocolFactory()
93 server = reactor.listenTCP(
94 9090,
95 TTwisted.ThriftServerFactory(processor, pfactory),
96 interface="127.0.0.1")
97 reactor.run()