blob: 8b4490d0c2824d604f2a1036c7fd0c58629fec34 [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.
#
from proton.handlers import MessagingHandler
from proton.reactors import ApplicationEvent, Container
from db_common import Db
class Recv(MessagingHandler):
def __init__(self, url):
super(Recv, self).__init__(auto_accept=False)
self.url = url
self.delay = 0
# TODO: load last tag from db
self.last_id = None
def on_start(self, event):
self.db = Db("dst_db", event.container.get_event_trigger())
event.container.create_receiver(self.url)
def on_record_inserted(self, event):
self.accept(event.delivery)
def on_message(self, event):
id = int(event.message.id)
if (not self.last_id) or id > self.last_id:
self.last_id = id
self.db.insert(id, event.message.body, ApplicationEvent("record_inserted", delivery=event.delivery))
print "inserted message %s" % id
else:
self.accept(event.delivery)
try:
Container(Recv("localhost:5672/examples")).run()
except KeyboardInterrupt: pass