rpc_client.py 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. #!/usr/bin/env python
  2. import pika
  3. import uuid
  4. class FibonacciRpcClient(object):
  5. def __init__(self):
  6. self.connection = pika.BlockingConnection(
  7. pika.ConnectionParameters(host='localhost'))
  8. self.channel = self.connection.channel()
  9. result = self.channel.queue_declare(queue='', exclusive=True)
  10. self.callback_queue = result.method.queue
  11. self.channel.basic_consume(
  12. queue=self.callback_queue,
  13. on_message_callback=self.on_response,
  14. auto_ack=True)
  15. def on_response(self, ch, method, props, body):
  16. if self.corr_id == props.correlation_id:
  17. self.response = body
  18. def call(self,n):
  19. self.response = None
  20. self.corr_id = str(uuid.uuid4())
  21. self.channel.basic_publish(
  22. exchange='',
  23. routing_key='rpc_queue',
  24. properties=pika.BasicProperties(
  25. reply_to=self.callback_queue,
  26. correlation_id=self.corr_id,
  27. ),
  28. body=str(n)
  29. )
  30. while self.response is None:
  31. self.connection.process_data_events()
  32. return int(self.response)
  33. fibonacci_rpc = FibonacciRpcClient()
  34. print(" [x] Requesting fib(30)")
  35. response = fibonacci_rpc.call(30)
  36. print(" [.] Got %r" % response)