blob: bc8d6daed2ca995be928ca52464f5765bb54cc89 [file] [log] [blame]
#!/usr/bin/env python
#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
#
import Queue
import time
from proton import Message
from proton.handlers import MessagingHandler
from proton.reactors import ApplicationEvent, Container
from db_common import Db
class Send(MessagingHandler):
def __init__(self, url):
super(Send, self).__init__()
self.url = url
self.delay = 0
self.sent = 0
self.records = Queue.Queue(maxsize=50)
def on_start(self, event):
self.container = event.container
self.db = Db("src_db", self.container.get_event_trigger())
self.sender = self.container.create_sender(self.url)
def on_records_loaded(self, event):
if self.records.empty() and event.subject == self.sent:
print "Exhausted available data, waiting to recheck..."
# check for new data after 5 seconds
self.container.schedule(time.time() + 5, link=self.sender, subject="data")
else:
self.send()
def request_records(self):
if not self.records.full():
self.db.load(self.records, event=ApplicationEvent("records_loaded", link=self.sender, subject=self.sent))
def on_credit(self, event):
self.send()
def send(self):
while self.sender.credit and not self.records.empty():
record = self.records.get(False)
id = record['id']
self.sender.send_msg(Message(id=id, durable=True, body=record['description']), tag=str(id))
self.sent += 1
print "sent message %s" % id
self.request_records()
def on_settled(self, event):
id = int(event.delivery.tag)
self.db.delete(id)
print "settled message %s" % id
def on_disconnected(self, event):
self.db.reset()
def on_timer(self, event):
if event.subject == "data":
print "Rechecking for data..."
self.request_records()
try:
Container(Send("localhost:5672/examples")).run()
except KeyboardInterrupt: pass