15312bff2184fab777d10aaee3e4f5adf8f5fe37
[pti/o2.git] / o2ims / entrypoints / redis_eventconsumer.py
1 # Copyright (C) 2021 Wind River Systems, Inc.
2 #
3 #  Licensed under the Apache License, Version 2.0 (the "License");
4 #  you may not use this file except in compliance with the License.
5 #  You may obtain a copy of the License at
6 #
7 #      http://www.apache.org/licenses/LICENSE-2.0
8 #
9 #  Unless required by applicable law or agreed to in writing, software
10 #  distributed under the License is distributed on an "AS IS" BASIS,
11 #  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 #  See the License for the specific language governing permissions and
13 #  limitations under the License.
14
15 # import json
16 import redis
17
18 from o2ims import bootstrap, config
19 # from o2ims.domain import commands
20
21 from o2common.helper import o2logging
22 logger = o2logging.get_logger(__name__)
23
24 r = redis.Redis(**config.get_redis_host_and_port())
25
26
27 def main():
28     logger.info("Redis pubsub starting")
29     bus = bootstrap.bootstrap()
30     pubsub = r.pubsub(ignore_subscribe_messages=True)
31     pubsub.subscribe("dms_changed")
32
33     for m in pubsub.listen():
34         handle_dms_changed(m, bus)
35
36
37 def handle_dms_changed(m, bus):
38     logger.info("handling %s", m)
39     # data = json.loads(m["data"])
40     # cmd = commands.UpdateDms(ref=data["dmsid"])
41     # bus.handle(cmd)
42
43
44 if __name__ == "__main__":
45     main()