2018-05-04 13:53:29 +02:00
|
|
|
#!/usr/bin/env python3
|
2014-08-11 11:04:09 +02:00
|
|
|
# -*-coding:UTF-8 -*
|
|
|
|
|
|
|
|
"""
|
|
|
|
The ZMQ_Sub_Indexer Module
|
|
|
|
============================
|
|
|
|
|
|
|
|
The ZMQ_Sub_Indexer modules is fetching the list of files to be processed
|
|
|
|
and index each file with a full-text indexer (Whoosh until now).
|
|
|
|
|
|
|
|
"""
|
2021-04-02 09:52:05 +02:00
|
|
|
##################################
|
|
|
|
# Import External packages
|
|
|
|
##################################
|
2014-08-14 17:55:18 +02:00
|
|
|
import time
|
2017-04-19 16:37:04 +02:00
|
|
|
import shutil
|
2014-08-11 11:04:09 +02:00
|
|
|
import os
|
2017-03-14 10:37:31 +01:00
|
|
|
from os.path import join, getsize
|
2021-04-02 09:52:05 +02:00
|
|
|
from whoosh.index import create_in, exists_in, open_dir
|
|
|
|
from whoosh.fields import Schema, TEXT, ID
|
|
|
|
|
2014-08-11 11:04:09 +02:00
|
|
|
|
2021-04-02 09:52:05 +02:00
|
|
|
##################################
|
|
|
|
# Import Project packages
|
|
|
|
##################################
|
|
|
|
from module.abstract_module import AbstractModule
|
|
|
|
from packages import Paste
|
2014-08-29 19:37:56 +02:00
|
|
|
from Helper import Process
|
2014-08-11 11:04:09 +02:00
|
|
|
|
2021-04-02 09:52:05 +02:00
|
|
|
|
|
|
|
class Indexer(AbstractModule):
|
|
|
|
"""
|
|
|
|
Indexer module for AIL framework
|
|
|
|
"""
|
|
|
|
|
|
|
|
# Time to wait in seconds between two index's size variable compute
|
|
|
|
TIME_WAIT = 60*15 # sec
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
"""
|
|
|
|
Init Instance
|
|
|
|
"""
|
|
|
|
super(Indexer, self).__init__()
|
|
|
|
|
|
|
|
# Indexer configuration - index dir and schema setup
|
|
|
|
self.baseindexpath = join(os.environ['AIL_HOME'],
|
|
|
|
self.process.config.get("Indexer", "path"))
|
|
|
|
self.indexRegister_path = join(os.environ['AIL_HOME'],
|
|
|
|
self.process.config.get("Indexer", "register"))
|
|
|
|
self.indexertype = self.process.config.get("Indexer", "type")
|
|
|
|
self.INDEX_SIZE_THRESHOLD = self.process.config.getint(
|
|
|
|
"Indexer", "index_max_size")
|
|
|
|
|
|
|
|
self.indexname = None
|
|
|
|
self.schema = None
|
|
|
|
self.ix = None
|
|
|
|
|
|
|
|
if self.indexertype == "whoosh":
|
|
|
|
self.schema = Schema(title=TEXT(stored=True), path=ID(stored=True,
|
|
|
|
unique=True),
|
|
|
|
content=TEXT)
|
|
|
|
if not os.path.exists(self.baseindexpath):
|
|
|
|
os.mkdir(self.baseindexpath)
|
|
|
|
|
|
|
|
# create the index register if not present
|
|
|
|
time_now = int(time.time())
|
|
|
|
if not os.path.isfile(self.indexRegister_path): # index are not organised
|
|
|
|
self.redis_logger.debug("Indexes are not organized")
|
|
|
|
self.redis_logger.debug(
|
|
|
|
"moving all files in folder 'old_index' ")
|
|
|
|
# move all files to old_index folder
|
|
|
|
self.move_index_into_old_index_folder()
|
|
|
|
self.redis_logger.debug("Creating new index")
|
|
|
|
# create all_index.txt
|
|
|
|
with open(self.indexRegister_path, 'w') as f:
|
|
|
|
f.write(str(time_now))
|
|
|
|
# create dir
|
|
|
|
os.mkdir(join(self.baseindexpath, str(time_now)))
|
|
|
|
|
|
|
|
with open(self.indexRegister_path, "r") as f:
|
|
|
|
allIndex = f.read()
|
|
|
|
allIndex = allIndex.split() # format [time1\ntime2]
|
|
|
|
allIndex.sort()
|
|
|
|
|
|
|
|
try:
|
|
|
|
self.indexname = allIndex[-1].strip('\n\r')
|
|
|
|
except IndexError as e:
|
|
|
|
self.indexname = time_now
|
|
|
|
|
|
|
|
self.indexpath = join(self.baseindexpath, str(self.indexname))
|
|
|
|
if not exists_in(self.indexpath):
|
|
|
|
self.ix = create_in(self.indexpath, self.schema)
|
|
|
|
else:
|
|
|
|
self.ix = open_dir(self.indexpath)
|
|
|
|
|
|
|
|
self.last_refresh = time_now
|
|
|
|
|
|
|
|
|
|
|
|
def compute(self, message):
|
2014-08-14 17:55:18 +02:00
|
|
|
try:
|
2021-04-02 09:52:05 +02:00
|
|
|
PST = Paste.Paste(message)
|
2014-08-14 17:55:18 +02:00
|
|
|
docpath = message.split(" ", -1)[-1]
|
2014-08-11 11:04:09 +02:00
|
|
|
paste = PST.get_p_content()
|
2021-04-02 17:20:03 +02:00
|
|
|
self.redis_logger.debug(f"Indexing - {self.indexname}: {docpath}")
|
2017-03-14 10:37:31 +01:00
|
|
|
|
2021-04-02 09:52:05 +02:00
|
|
|
# Avoid calculating the index's size at each message
|
|
|
|
if(time.time() - self.last_refresh > self.TIME_WAIT):
|
|
|
|
self.last_refresh = time.time()
|
|
|
|
if self.check_index_size() >= self.INDEX_SIZE_THRESHOLD*(1000*1000):
|
2017-03-15 11:51:35 +01:00
|
|
|
timestamp = int(time.time())
|
2021-04-02 17:20:03 +02:00
|
|
|
self.redis_logger.debug(f"Creating new index {timestamp}")
|
2021-04-02 09:52:05 +02:00
|
|
|
self.indexpath = join(self.baseindexpath, str(timestamp))
|
|
|
|
self.indexname = str(timestamp)
|
|
|
|
# update all_index
|
|
|
|
with open(self.indexRegister_path, "a") as f:
|
2017-08-24 16:43:42 +02:00
|
|
|
f.write('\n'+str(timestamp))
|
2021-04-02 09:52:05 +02:00
|
|
|
# create new dir
|
|
|
|
os.mkdir(self.indexpath)
|
|
|
|
self.ix = create_in(self.indexpath, self.schema)
|
2017-03-14 10:37:31 +01:00
|
|
|
|
2021-04-02 09:52:05 +02:00
|
|
|
if self.indexertype == "whoosh":
|
|
|
|
indexwriter = self.ix.writer()
|
2014-08-14 17:55:18 +02:00
|
|
|
indexwriter.update_document(
|
2018-04-16 14:50:04 +02:00
|
|
|
title=docpath,
|
|
|
|
path=docpath,
|
|
|
|
content=paste)
|
2014-08-11 11:04:09 +02:00
|
|
|
indexwriter.commit()
|
2021-04-02 09:52:05 +02:00
|
|
|
|
2014-08-11 11:04:09 +02:00
|
|
|
except IOError:
|
2021-04-02 17:20:03 +02:00
|
|
|
self.redis_logger.debug(f"CRC Checksum Failed on: {PST.p_path}")
|
2021-04-02 09:52:05 +02:00
|
|
|
self.redis_logger.error('Duplicate;{};{};{};CRC Checksum Failed'.format(
|
2014-08-19 19:07:07 +02:00
|
|
|
PST.p_source, PST.p_date, PST.p_name))
|
2021-04-02 09:52:05 +02:00
|
|
|
|
|
|
|
def check_index_size(self):
|
|
|
|
"""
|
|
|
|
return in bytes
|
|
|
|
"""
|
|
|
|
the_index_name = join(self.baseindexpath, self.indexname)
|
|
|
|
cur_sum = 0
|
|
|
|
for root, dirs, files in os.walk(the_index_name):
|
|
|
|
cur_sum += sum(getsize(join(root, name)) for name in files)
|
|
|
|
|
|
|
|
return cur_sum
|
|
|
|
|
|
|
|
|
|
|
|
def move_index_into_old_index_folder(self):
|
|
|
|
for cur_file in os.listdir(self.baseindexpath):
|
|
|
|
if not cur_file == "old_index":
|
|
|
|
shutil.move(join(self.baseindexpath, cur_file), join(
|
|
|
|
join(self.baseindexpath, "old_index"), cur_file))
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
|
|
|
|
module = Indexer()
|
|
|
|
module.run()
|