2018-05-04 13:53:29 +02:00
|
|
|
#!/usr/bin/env python3
|
2016-02-03 10:33:42 +01:00
|
|
|
# -*-coding:UTF-8 -*
|
|
|
|
"""
|
2021-04-02 09:52:05 +02:00
|
|
|
The Template Module
|
|
|
|
======================
|
|
|
|
|
|
|
|
This module is a template for Template for new modules
|
2021-06-08 16:46:36 +02:00
|
|
|
|
2016-02-03 10:33:42 +01:00
|
|
|
"""
|
|
|
|
|
2021-04-02 09:52:05 +02:00
|
|
|
##################################
|
|
|
|
# Import External packages
|
|
|
|
##################################
|
2021-06-08 16:46:36 +02:00
|
|
|
import os
|
|
|
|
import sys
|
2016-02-03 10:33:42 +01:00
|
|
|
import time
|
2021-04-02 09:52:05 +02:00
|
|
|
|
2021-06-08 16:46:36 +02:00
|
|
|
sys.path.append(os.environ['AIL_BIN'])
|
2021-04-02 09:52:05 +02:00
|
|
|
##################################
|
|
|
|
# Import Project packages
|
|
|
|
##################################
|
2021-06-08 16:46:36 +02:00
|
|
|
from modules.abstract_module import AbstractModule
|
2016-02-03 10:33:42 +01:00
|
|
|
|
|
|
|
|
2021-04-02 09:52:05 +02:00
|
|
|
class Template(AbstractModule):
|
|
|
|
"""
|
|
|
|
Template module for AIL framework
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
super(Template, self).__init__()
|
|
|
|
|
2021-06-08 16:46:36 +02:00
|
|
|
# Pending time between two computation (computeNone) in seconds
|
2021-04-02 09:52:05 +02:00
|
|
|
self.pending_seconds = 10
|
|
|
|
|
2021-06-08 16:46:36 +02:00
|
|
|
# Send module state to logs
|
|
|
|
self.redis_logger.info(f'Module {self.module_name} initialized')
|
|
|
|
|
2021-04-02 09:52:05 +02:00
|
|
|
|
|
|
|
def computeNone(self):
|
|
|
|
"""
|
|
|
|
Compute when no message in queue
|
|
|
|
"""
|
|
|
|
self.redis_logger.debug("No message in queue")
|
|
|
|
|
|
|
|
|
|
|
|
def compute(self, message):
|
|
|
|
"""
|
|
|
|
Compute a message in queue
|
|
|
|
"""
|
|
|
|
self.redis_logger.debug("Compute message in queue")
|
|
|
|
|
2016-02-03 10:33:42 +01:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2021-06-08 16:46:36 +02:00
|
|
|
|
2021-04-02 09:52:05 +02:00
|
|
|
module = Template()
|
|
|
|
module.run()
|