mirror of
https://github.com/ail-project/ail-framework.git
synced 2024-11-10 08:38:28 +00:00
3886d1b834
* the port for the logging is 6380 * use os.environ properly * fix typos
66 lines
1.9 KiB
Python
Executable file
66 lines
1.9 KiB
Python
Executable file
#!/usr/bin/env python2
|
|
# -*-coding:UTF-8 -*
|
|
"""
|
|
The ZMQ_PubSub_Lines Module
|
|
============================
|
|
|
|
This module is consuming the Redis-list created by the ZMQ_PubSub_Tokenize_Q
|
|
Module.
|
|
|
|
It tokenize the content of the paste and publish the result in the following
|
|
format:
|
|
channel_name+' '+/path/of/the/paste.gz+' '+tokenized_word+' '+scoring
|
|
|
|
..seealso:: Paste method (_get_top_words)
|
|
|
|
..note:: Module ZMQ_Something_Q and ZMQ_Something are closely bound, always put
|
|
the same Subscriber name in both of them.
|
|
|
|
Requirements
|
|
------------
|
|
|
|
*Need running Redis instances. (Redis)
|
|
*Need the ZMQ_PubSub_Tokenize_Q Module running to be able to work properly.
|
|
|
|
"""
|
|
import time
|
|
from packages import Paste
|
|
from pubsublogger import publisher
|
|
|
|
import Helper
|
|
|
|
if __name__ == "__main__":
|
|
publisher.port = 6380
|
|
publisher.channel = "Script"
|
|
|
|
config_section = 'PubSub_Longlines'
|
|
config_channel = 'channel_1'
|
|
subscriber_name = 'tokenize'
|
|
|
|
h = Helper.Redis_Queues(config_section, config_channel, subscriber_name)
|
|
|
|
# Publisher
|
|
pub_config_section = 'PubSub_Words'
|
|
pub_config_channel = 'channel_0'
|
|
h.zmq_pub(pub_config_section, pub_config_channel)
|
|
|
|
# LOGGING #
|
|
publisher.info("Tokeniser subscribed to channel {}".format(h.sub_channel))
|
|
|
|
while True:
|
|
message = h.redis_rpop()
|
|
print message
|
|
if message is not None:
|
|
paste = Paste.Paste(message.split(" ", -1)[-1])
|
|
for word, score in paste._get_top_words().items():
|
|
if len(word) >= 4:
|
|
h.zmq_pub_send('{} {} {}'.format(paste.p_path, word,
|
|
score))
|
|
else:
|
|
if h.redis_queue_shutdown():
|
|
print "Shutdown Flag Up: Terminating"
|
|
publisher.warning("Shutdown Flag Up: Terminating.")
|
|
break
|
|
publisher.debug("Tokeniser is idling 10s")
|
|
time.sleep(10)
|
|
print "sleepin"
|