2022-09-13 21:17:46 +00:00
|
|
|
import asyncio
|
|
|
|
import os
|
2022-09-14 17:32:32 +00:00
|
|
|
import random
|
2022-09-13 21:17:46 +00:00
|
|
|
|
|
|
|
# For key generation
|
|
|
|
import string
|
2022-09-16 16:09:49 +00:00
|
|
|
|
2022-10-01 13:46:45 +00:00
|
|
|
# For timing
|
|
|
|
import time
|
|
|
|
|
2022-09-16 16:09:49 +00:00
|
|
|
# Squash errors
|
|
|
|
import warnings
|
2022-09-14 17:32:32 +00:00
|
|
|
from concurrent.futures import ProcessPoolExecutor
|
2022-09-13 21:17:46 +00:00
|
|
|
|
|
|
|
# For timestamp processing
|
2022-09-14 17:32:32 +00:00
|
|
|
from datetime import datetime
|
|
|
|
from math import ceil
|
|
|
|
|
2022-09-16 16:09:49 +00:00
|
|
|
import orjson
|
2022-09-21 09:01:12 +00:00
|
|
|
import regex
|
2022-09-16 16:09:49 +00:00
|
|
|
|
2022-09-13 21:17:46 +00:00
|
|
|
# For 4chan message parsing
|
|
|
|
from bs4 import BeautifulSoup
|
2022-10-01 13:46:45 +00:00
|
|
|
|
|
|
|
# Tokenisation
|
|
|
|
# import spacy
|
|
|
|
from gensim.parsing.preprocessing import ( # stem_text,
|
|
|
|
preprocess_string,
|
|
|
|
remove_stopwords,
|
|
|
|
strip_multiple_whitespaces,
|
|
|
|
strip_non_alphanum,
|
|
|
|
strip_numeric,
|
|
|
|
strip_punctuation,
|
|
|
|
strip_short,
|
|
|
|
strip_tags,
|
|
|
|
)
|
2022-09-13 21:17:46 +00:00
|
|
|
from numpy import array_split
|
2022-09-16 16:09:49 +00:00
|
|
|
from polyglot.detect.base import logger as polyglot_logger
|
|
|
|
|
|
|
|
# For NLP
|
|
|
|
from polyglot.text import Text
|
|
|
|
from pycld2 import error as cld2_error
|
2022-09-14 17:32:32 +00:00
|
|
|
from siphashc import siphash
|
|
|
|
|
2022-09-16 16:09:49 +00:00
|
|
|
# For sentiment
|
|
|
|
from vaderSentiment.vaderSentiment import SentimentIntensityAnalyzer
|
|
|
|
|
2022-09-14 17:32:32 +00:00
|
|
|
import db
|
|
|
|
import util
|
|
|
|
|
|
|
|
# 4chan schema
|
|
|
|
from schemas.ch4_s import ATTRMAP
|
2022-09-13 21:17:46 +00:00
|
|
|
|
2022-10-01 13:46:45 +00:00
|
|
|
CUSTOM_FILTERS = [
|
|
|
|
lambda x: x.lower(),
|
|
|
|
strip_tags, #
|
|
|
|
strip_punctuation, #
|
|
|
|
strip_multiple_whitespaces,
|
|
|
|
strip_numeric,
|
|
|
|
remove_stopwords,
|
|
|
|
strip_short,
|
|
|
|
# stem_text,
|
|
|
|
strip_non_alphanum, #
|
|
|
|
]
|
2022-09-16 16:09:49 +00:00
|
|
|
|
2022-09-21 09:01:12 +00:00
|
|
|
RE_BAD_CHARS = regex.compile(r"[\p{Cc}\p{Cs}]+")
|
|
|
|
|
2022-09-16 16:09:49 +00:00
|
|
|
# Squash errors
|
|
|
|
polyglot_logger.setLevel("ERROR")
|
|
|
|
warnings.filterwarnings("ignore", category=UserWarning, module="bs4")
|
|
|
|
|
|
|
|
|
2022-10-01 13:46:45 +00:00
|
|
|
# TAGS = ["NOUN", "ADJ", "VERB", "ADV"]
|
|
|
|
# nlp = spacy.load("en_core_web_sm", disable=["parser", "ner"])
|
2022-09-16 16:09:49 +00:00
|
|
|
|
|
|
|
|
2022-09-13 21:17:46 +00:00
|
|
|
log = util.get_logger("process")
|
|
|
|
|
|
|
|
# Maximum number of CPU threads to use for post processing
|
2022-09-20 21:29:13 +00:00
|
|
|
CPU_THREADS = int(os.getenv("MONOLITH_PROCESS_THREADS", os.cpu_count()))
|
2022-09-13 21:17:46 +00:00
|
|
|
|
|
|
|
p = ProcessPoolExecutor(CPU_THREADS)
|
|
|
|
|
2022-09-14 17:32:32 +00:00
|
|
|
|
2022-09-13 21:17:46 +00:00
|
|
|
def get_hash_key():
|
|
|
|
hash_key = db.r.get("hashing_key")
|
|
|
|
if not hash_key:
|
|
|
|
letters = string.ascii_lowercase
|
|
|
|
hash_key = "".join(random.choice(letters) for i in range(16))
|
|
|
|
log.debug(f"Created new hash key: {hash_key}")
|
|
|
|
db.r.set("hashing_key", hash_key)
|
|
|
|
else:
|
|
|
|
hash_key = hash_key.decode("ascii")
|
|
|
|
log.debug(f"Decoded hash key: {hash_key}")
|
|
|
|
return hash_key
|
|
|
|
|
2022-09-14 17:32:32 +00:00
|
|
|
|
2022-09-13 21:17:46 +00:00
|
|
|
hash_key = get_hash_key()
|
|
|
|
|
2022-09-14 17:32:32 +00:00
|
|
|
|
|
|
|
@asyncio.coroutine
|
2022-09-13 21:17:46 +00:00
|
|
|
async def spawn_processing_threads(data):
|
2022-09-16 16:09:49 +00:00
|
|
|
len_data = len(data)
|
|
|
|
|
2022-09-14 17:32:32 +00:00
|
|
|
loop = asyncio.get_event_loop()
|
|
|
|
tasks = []
|
2022-09-16 16:09:49 +00:00
|
|
|
|
2022-09-30 06:22:22 +00:00
|
|
|
if len(data) < CPU_THREADS * 100:
|
2022-09-13 21:17:46 +00:00
|
|
|
split_data = [data]
|
|
|
|
else:
|
|
|
|
msg_per_core = int(len(data) / CPU_THREADS)
|
|
|
|
split_data = array_split(data, ceil(len(data) / msg_per_core))
|
2022-09-14 17:32:32 +00:00
|
|
|
for index, split in enumerate(split_data):
|
2022-09-30 06:22:22 +00:00
|
|
|
log.debug(f"Delegating processing of {len(split)} messages to thread {index}")
|
2022-09-21 09:01:12 +00:00
|
|
|
task = loop.run_in_executor(p, process_data, split)
|
2022-09-16 16:09:49 +00:00
|
|
|
tasks.append(task)
|
|
|
|
|
|
|
|
results = [await task for task in tasks]
|
2022-09-22 16:39:29 +00:00
|
|
|
log.debug(
|
|
|
|
(
|
|
|
|
f"Results from processing of {len_data} messages in "
|
|
|
|
f"{len(split_data)} threads: {len(results)}"
|
|
|
|
)
|
|
|
|
)
|
2022-09-14 17:32:32 +00:00
|
|
|
|
|
|
|
# Join the results back from the split list
|
|
|
|
flat_list = [item for sublist in results for item in sublist]
|
|
|
|
await db.store_kafka_batch(flat_list)
|
|
|
|
|
2022-09-22 16:39:29 +00:00
|
|
|
# log.debug(f"Finished processing {len_data} messages")
|
2022-09-13 21:17:46 +00:00
|
|
|
|
|
|
|
|
|
|
|
def process_data(data):
|
2022-09-16 16:09:49 +00:00
|
|
|
to_store = []
|
|
|
|
|
2022-10-01 13:46:45 +00:00
|
|
|
sentiment_time = 0.0
|
|
|
|
regex_time = 0.0
|
|
|
|
polyglot_time = 0.0
|
|
|
|
date_time = 0.0
|
|
|
|
nlp_time = 0.0
|
|
|
|
normalise_time = 0.0
|
|
|
|
hash_time = 0.0
|
|
|
|
normal2_time = 0.0
|
|
|
|
soup_time = 0.0
|
|
|
|
|
|
|
|
total_time = 0.0
|
|
|
|
|
2022-09-16 16:09:49 +00:00
|
|
|
# Initialise sentiment analyser
|
|
|
|
analyzer = SentimentIntensityAnalyzer()
|
|
|
|
for msg in data:
|
2022-10-01 13:46:45 +00:00
|
|
|
total_start = time.process_time()
|
2022-09-21 09:01:12 +00:00
|
|
|
# normalise fields
|
2022-10-01 13:46:45 +00:00
|
|
|
start = time.process_time()
|
2022-09-21 09:01:12 +00:00
|
|
|
for key, value in list(msg.items()):
|
|
|
|
if value is None:
|
|
|
|
del msg[key]
|
2022-10-01 13:46:45 +00:00
|
|
|
time_took = (time.process_time() - start) * 1000
|
|
|
|
normalise_time += time_took
|
2022-09-21 09:01:12 +00:00
|
|
|
|
|
|
|
# Remove invalid UTF-8 characters
|
|
|
|
# IRC and Discord
|
2022-10-01 13:46:45 +00:00
|
|
|
start = time.process_time()
|
2022-09-21 09:01:12 +00:00
|
|
|
if "msg" in msg:
|
|
|
|
msg["msg"] = RE_BAD_CHARS.sub("", msg["msg"])
|
|
|
|
|
|
|
|
# 4chan - since we change the attributes below
|
|
|
|
if "com" in msg:
|
2022-09-21 11:48:54 +00:00
|
|
|
msg["com"] = RE_BAD_CHARS.sub("", msg["com"])
|
2022-10-01 13:46:45 +00:00
|
|
|
time_took = (time.process_time() - start) * 1000
|
|
|
|
regex_time += time_took
|
2022-09-21 09:01:12 +00:00
|
|
|
|
2022-09-13 21:17:46 +00:00
|
|
|
if msg["src"] == "4ch":
|
|
|
|
board = msg["net"]
|
|
|
|
thread = msg["channel"]
|
2022-09-16 16:09:49 +00:00
|
|
|
|
2022-09-13 21:17:46 +00:00
|
|
|
# Calculate hash for post
|
2022-10-01 13:46:45 +00:00
|
|
|
start = time.process_time()
|
2022-09-16 16:09:49 +00:00
|
|
|
post_normalised = orjson.dumps(msg, option=orjson.OPT_SORT_KEYS)
|
2022-09-13 21:17:46 +00:00
|
|
|
hash = siphash(hash_key, post_normalised)
|
|
|
|
hash = str(hash)
|
|
|
|
redis_key = f"cache.{board}.{thread}.{msg['no']}"
|
|
|
|
key_content = db.r.get(redis_key)
|
|
|
|
if key_content:
|
|
|
|
key_content = key_content.decode("ascii")
|
|
|
|
if key_content == hash:
|
2022-09-16 16:09:49 +00:00
|
|
|
# This deletes the message since the append at the end won't be hit
|
2022-09-13 21:17:46 +00:00
|
|
|
continue
|
|
|
|
else:
|
2022-09-16 16:09:49 +00:00
|
|
|
msg["type"] = "update"
|
2022-09-13 21:17:46 +00:00
|
|
|
db.r.set(redis_key, hash)
|
2022-10-01 13:46:45 +00:00
|
|
|
time_took = (time.process_time() - start) * 1000
|
|
|
|
hash_time += time_took
|
|
|
|
|
|
|
|
start = time.process_time()
|
2022-09-16 16:09:49 +00:00
|
|
|
for key2, value in list(msg.items()):
|
2022-09-13 21:17:46 +00:00
|
|
|
if key2 in ATTRMAP:
|
2022-09-16 16:09:49 +00:00
|
|
|
msg[ATTRMAP[key2]] = msg[key2]
|
|
|
|
del msg[key2]
|
2022-10-01 13:46:45 +00:00
|
|
|
time_took = (time.process_time() - start) * 1000
|
|
|
|
normal2_time += time_took
|
2022-09-21 09:01:12 +00:00
|
|
|
|
2022-10-01 13:46:45 +00:00
|
|
|
start = time.process_time()
|
2022-09-16 16:09:49 +00:00
|
|
|
if "ts" in msg:
|
|
|
|
old_time = msg["ts"]
|
2022-09-13 21:17:46 +00:00
|
|
|
# '08/30/22(Tue)02:25:37'
|
|
|
|
time_spl = old_time.split(":")
|
|
|
|
if len(time_spl) == 3:
|
|
|
|
old_ts = datetime.strptime(old_time, "%m/%d/%y(%a)%H:%M:%S")
|
|
|
|
else:
|
|
|
|
old_ts = datetime.strptime(old_time, "%m/%d/%y(%a)%H:%M")
|
|
|
|
# new_ts = old_ts.isoformat()
|
|
|
|
new_ts = int(old_ts.timestamp())
|
2022-09-16 16:09:49 +00:00
|
|
|
msg["ts"] = new_ts
|
2022-09-14 17:32:32 +00:00
|
|
|
else:
|
2022-09-16 16:09:49 +00:00
|
|
|
raise Exception("No TS in msg")
|
2022-10-01 13:46:45 +00:00
|
|
|
time_took = (time.process_time() - start) * 1000
|
|
|
|
date_time += time_took
|
|
|
|
|
|
|
|
start = time.process_time()
|
2022-09-13 21:17:46 +00:00
|
|
|
if "msg" in msg:
|
2022-09-16 16:09:49 +00:00
|
|
|
soup = BeautifulSoup(msg["msg"], "html.parser")
|
|
|
|
msg_str = soup.get_text(separator="\n")
|
|
|
|
msg["msg"] = msg_str
|
2022-10-01 13:46:45 +00:00
|
|
|
time_took = (time.process_time() - start) * 1000
|
|
|
|
soup_time += time_took
|
2022-09-21 09:01:12 +00:00
|
|
|
|
2022-09-16 16:09:49 +00:00
|
|
|
# Annotate sentiment/NLP
|
|
|
|
if "msg" in msg:
|
2022-10-01 13:46:45 +00:00
|
|
|
# RE_BAD_CHARS.sub("", msg["msg"])
|
2022-09-16 16:09:49 +00:00
|
|
|
# Language
|
2022-10-01 13:46:45 +00:00
|
|
|
start = time.process_time()
|
2022-09-16 16:09:49 +00:00
|
|
|
text = Text(msg["msg"])
|
|
|
|
try:
|
|
|
|
lang_code = text.language.code
|
|
|
|
lang_name = text.language.name
|
|
|
|
msg["lang_code"] = lang_code
|
|
|
|
msg["lang_name"] = lang_name
|
|
|
|
except cld2_error as e:
|
|
|
|
log.error(f"Error detecting language: {e}")
|
|
|
|
# So below block doesn't fail
|
|
|
|
lang_code = None
|
2022-10-01 13:46:45 +00:00
|
|
|
time_took = (time.process_time() - start) * 1000
|
|
|
|
polyglot_time += time_took
|
2022-09-16 16:09:49 +00:00
|
|
|
|
|
|
|
# Blatant discrimination
|
|
|
|
if lang_code == "en":
|
|
|
|
# Sentiment
|
2022-10-01 13:46:45 +00:00
|
|
|
start = time.process_time()
|
2022-09-16 16:09:49 +00:00
|
|
|
vs = analyzer.polarity_scores(str(msg["msg"]))
|
|
|
|
addendum = vs["compound"]
|
|
|
|
msg["sentiment"] = addendum
|
2022-10-01 13:46:45 +00:00
|
|
|
time_took = (time.process_time() - start) * 1000
|
|
|
|
sentiment_time += time_took
|
|
|
|
|
|
|
|
# Tokens
|
|
|
|
start = time.process_time()
|
|
|
|
tokens = preprocess_string(msg["msg"], CUSTOM_FILTERS)
|
|
|
|
msg["tokens"] = tokens
|
|
|
|
# n = nlp(msg["msg"])
|
|
|
|
# for tag in TAGS:
|
|
|
|
# tag_name = tag.lower()
|
|
|
|
# tags_flag = [token.lemma_ for token in n if token.pos_ == tag]
|
|
|
|
# msg[f"words_{tag_name}"] = tags_flag
|
|
|
|
time_took = (time.process_time() - start) * 1000
|
|
|
|
nlp_time += time_took
|
2022-09-16 16:09:49 +00:00
|
|
|
|
|
|
|
# Add the mutated message to the return buffer
|
|
|
|
to_store.append(msg)
|
2022-10-01 13:46:45 +00:00
|
|
|
total_time += (time.process_time() - total_start) * 1000
|
|
|
|
log.debug("=====================================")
|
|
|
|
log.debug(f"Sentiment: {sentiment_time}")
|
|
|
|
log.debug(f"Regex: {regex_time}")
|
|
|
|
log.debug(f"Polyglot: {polyglot_time}")
|
|
|
|
log.debug(f"Date: {date_time}")
|
|
|
|
log.debug(f"NLP: {nlp_time}")
|
|
|
|
log.debug(f"Normalise: {normalise_time}")
|
|
|
|
log.debug(f"Hash: {hash_time}")
|
|
|
|
log.debug(f"Normal2: {normal2_time}")
|
|
|
|
log.debug(f"Soup: {soup_time}")
|
|
|
|
log.debug(f"Total: {total_time}")
|
|
|
|
log.debug("=====================================")
|
|
|
|
|
2022-09-16 16:09:49 +00:00
|
|
|
return to_store
|