68 lines
2.6 KiB
Python
Executable File
68 lines
2.6 KiB
Python
Executable File
#!.venv/bin/python
|
|
|
|
# Import necessary libraries
|
|
import logging
|
|
import asyncio
|
|
|
|
# Import custom modules for configuration and database connection
|
|
from utils.config import loader_send_data as setting
|
|
from utils.database import WorkflowFlags
|
|
from utils.csv.loaders import get_next_csv_atomic
|
|
from utils.orchestrator_utils import run_orchestrator, worker_context
|
|
from utils.database.loader_action import update_status, unlock
|
|
from utils.database.elab_query import get_data_as_csv
|
|
#from utils.ftp.elab_send import send_csv_to_customer
|
|
|
|
|
|
# Initialize the logger for this module
|
|
logger = logging.getLogger()
|
|
|
|
# Delay tra un processamento CSV e il successivo (in secondi)
|
|
ELAB_PROCESSING_DELAY = 0.2
|
|
# Tempo di attesa se non ci sono record da elaborare
|
|
NO_RECORD_SLEEP = 60
|
|
|
|
async def worker(worker_id: int, cfg: object, pool: object) -> None:
|
|
|
|
# Imposta il context per questo worker
|
|
worker_context.set(f"W{worker_id:02d}")
|
|
|
|
debug_mode = logging.getLogger().getEffectiveLevel() == logging.DEBUG
|
|
logger.info("Avviato")
|
|
|
|
while True:
|
|
try:
|
|
logger.info("Inizio elaborazione")
|
|
|
|
record = await get_next_csv_atomic(pool, cfg.dbrectable, WorkflowFlags.CSV_RECEIVED, WorkflowFlags.SENT_RAW_DATA)
|
|
|
|
if record:
|
|
id, unit_type, tool_type, unit_name, tool_name = [x.lower().replace(" ", "_") if isinstance(x, str) else x for x in record]
|
|
|
|
'''
|
|
if tool_elab_info['ftp_send']:
|
|
if not tool_elab_info["duedate"] or tool_elab_info["duedate"] in ('0000-00-00 00:00:00', '') or tool_elab_info["duedate"] > timestamp_matlab_elab:
|
|
if elab_csv := await get_data_as_csv(cfg, id, unit_name, tool_name, timestamp_matlab_elab, pool):
|
|
print(elab_csv)
|
|
#if await send_csv_to_customer(cfg, id, unit_name, tool_name, elab_csv, pool):
|
|
#await update_status(cfg, id, , pool)
|
|
#await update_status(cfg, id, , pool)
|
|
else:
|
|
logger.info(f"id {id} - {unit_name} - {tool_name} {tool_elab_info['duedate']}: ftp put didn't executed because due date reached.")
|
|
'''
|
|
|
|
else:
|
|
logger.info("Nessun record disponibile")
|
|
await asyncio.sleep(NO_RECORD_SLEEP)
|
|
|
|
except Exception as e:
|
|
logger.error(f"Errore durante l'esecuzione: {e}", exc_info=debug_mode)
|
|
await asyncio.sleep(1)
|
|
|
|
|
|
async def main():
|
|
"""Funzione principale che avvia il send_orchestrator."""
|
|
await run_orchestrator(setting.Config, worker)
|
|
|
|
if __name__ == "__main__":
|
|
asyncio.run(main()) |