Updates driver to send public ip address correctly
This commit is contained in:
13
POCloud/python-driver/config.txt
Normal file
13
POCloud/python-driver/config.txt
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
{
|
||||||
|
"files": {
|
||||||
|
"file3": "channel.py",
|
||||||
|
"file2": "utilities.py",
|
||||||
|
"file1": "tanktransfer.py",
|
||||||
|
"file5": "modbusMap.p",
|
||||||
|
"file4": "file_logger.py"
|
||||||
|
},
|
||||||
|
"deviceName": "tanktransfer",
|
||||||
|
"driverId": "0250",
|
||||||
|
"releaseVersion": "2",
|
||||||
|
"driverFileName": "tanktransfer.py"
|
||||||
|
}
|
||||||
@@ -1,12 +1,13 @@
|
|||||||
{
|
{
|
||||||
"name": "tanktransfer",
|
"name": "tanktransfer",
|
||||||
"driverFilename": "tanktransfer.py",
|
"driverFilename": "tanktransfer.py",
|
||||||
"driverId": "0000",
|
"driverId": "0250",
|
||||||
"additionalDriverFiles": [
|
"additionalDriverFiles": [
|
||||||
"utilities.py",
|
"utilities.py",
|
||||||
"persistence.py",
|
"channel.py",
|
||||||
"Channel.py"
|
"file_logger.py",
|
||||||
],
|
"modbusMap.p"
|
||||||
"version": 1,
|
],
|
||||||
|
"version": 2,
|
||||||
"s3BucketName": "tanktransfer"
|
"s3BucketName": "tanktransfer"
|
||||||
}
|
}
|
||||||
18
POCloud/python-driver/file_logger.py
Normal file
18
POCloud/python-driver/file_logger.py
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
"""Logging setup for tanktransfer"""
|
||||||
|
import logging
|
||||||
|
from logging.handlers import RotatingFileHandler
|
||||||
|
import sys
|
||||||
|
|
||||||
|
log_formatter = logging.Formatter('%(asctime)s %(levelname)s %(funcName)s(%(lineno)d) %(message)s')
|
||||||
|
log_file = './tanktransfer.log'
|
||||||
|
my_handler = RotatingFileHandler(log_file, mode='a', maxBytes=500*1024,
|
||||||
|
backupCount=2, encoding=None, delay=0)
|
||||||
|
my_handler.setFormatter(log_formatter)
|
||||||
|
my_handler.setLevel(logging.INFO)
|
||||||
|
filelogger = logging.getLogger('tanktransfer')
|
||||||
|
filelogger.setLevel(logging.INFO)
|
||||||
|
filelogger.addHandler(my_handler)
|
||||||
|
|
||||||
|
console_out = logging.StreamHandler(sys.stdout)
|
||||||
|
console_out.setFormatter(log_formatter)
|
||||||
|
filelogger.addHandler(console_out)
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -2,45 +2,29 @@
|
|||||||
|
|
||||||
import threading
|
import threading
|
||||||
import sys
|
import sys
|
||||||
from device_base import deviceBase
|
|
||||||
from Channel import Channel, read_tag, write_tag, BoolArrayChannels
|
|
||||||
from Maps import tanktransfer_map as maps
|
|
||||||
from Maps import reverse_map
|
|
||||||
import persistence
|
|
||||||
from random import randint
|
|
||||||
from utilities import get_public_ip_address
|
|
||||||
import json
|
import json
|
||||||
import time
|
import time
|
||||||
import logging
|
|
||||||
|
from device_base import deviceBase
|
||||||
|
from random import randint
|
||||||
|
from utilities import get_public_ip_address
|
||||||
|
from file_logger import filelogger as log
|
||||||
|
from channel import Channel, read_tag, write_tag
|
||||||
|
|
||||||
_ = None
|
_ = None
|
||||||
|
|
||||||
# LOGGING SETUP
|
log.info("tanktransfer startup")
|
||||||
from logging.handlers import RotatingFileHandler
|
|
||||||
|
|
||||||
log_formatter = logging.Formatter('%(asctime)s %(levelname)s %(funcName)s(%(lineno)d) %(message)s')
|
|
||||||
logFile = './tanktransfer.log'
|
|
||||||
my_handler = RotatingFileHandler(logFile, mode='a', maxBytes=500*1024, backupCount=2, encoding=None, delay=0)
|
|
||||||
my_handler.setFormatter(log_formatter)
|
|
||||||
my_handler.setLevel(logging.INFO)
|
|
||||||
logger = logging.getLogger('tanktransfer')
|
|
||||||
logger.setLevel(logging.INFO)
|
|
||||||
logger.addHandler(my_handler)
|
|
||||||
|
|
||||||
console_out = logging.StreamHandler(sys.stdout)
|
|
||||||
console_out.setFormatter(log_formatter)
|
|
||||||
logger.addHandler(console_out)
|
|
||||||
|
|
||||||
logger.info("tanktransfer startup")
|
|
||||||
|
|
||||||
# GLOBAL VARIABLES
|
# GLOBAL VARIABLES
|
||||||
|
WAIT_FOR_CONNECTION_SECONDS = 60
|
||||||
|
IP_CHECK_PERIOD = 60
|
||||||
|
WATCHDOG_ENABLE = True
|
||||||
|
WATCHDOG_CHECK_PERIOD = 60
|
||||||
WATCHDOG_SEND_PERIOD = 3600 # Seconds, the longest amount of time before sending the watchdog status
|
WATCHDOG_SEND_PERIOD = 3600 # Seconds, the longest amount of time before sending the watchdog status
|
||||||
PLC_IP_ADDRESS = "192.168.1.10"
|
PLC_IP_ADDRESS = "192.168.1.10"
|
||||||
CHANNELS = []
|
CHANNELS = []
|
||||||
|
|
||||||
# PERSISTENCE FILE
|
|
||||||
persist = persistence.load()
|
|
||||||
|
|
||||||
|
|
||||||
class start(threading.Thread, deviceBase):
|
class start(threading.Thread, deviceBase):
|
||||||
"""Start class required by Meshify."""
|
"""Start class required by Meshify."""
|
||||||
@@ -51,9 +35,14 @@ class start(threading.Thread, deviceBase):
|
|||||||
deviceBase.__init__(self, name=name, number=number, mac=mac, Q=Q, mcu=mcu, companyId=companyId, offset=offset, mqtt=mqtt, Nodes=Nodes)
|
deviceBase.__init__(self, name=name, number=number, mac=mac, Q=Q, mcu=mcu, companyId=companyId, offset=offset, mqtt=mqtt, Nodes=Nodes)
|
||||||
|
|
||||||
self.daemon = True
|
self.daemon = True
|
||||||
self.version = "1"
|
self.version = "2"
|
||||||
self.finished = threading.Event()
|
self.finished = threading.Event()
|
||||||
self.forceSend = False
|
self.forceSend = False
|
||||||
|
self.public_ip_address = ""
|
||||||
|
self.public_ip_address_last_checked = 0
|
||||||
|
self.watchdog = False
|
||||||
|
self.watchdog_last_checked = 0
|
||||||
|
self.watchdog_last_sent = 0
|
||||||
threading.Thread.start(self)
|
threading.Thread.start(self)
|
||||||
|
|
||||||
# this is a required function for all drivers, its goal is to upload some piece of data
|
# this is a required function for all drivers, its goal is to upload some piece of data
|
||||||
@@ -65,52 +54,60 @@ class start(threading.Thread, deviceBase):
|
|||||||
|
|
||||||
def run(self):
|
def run(self):
|
||||||
"""Actually run the driver."""
|
"""Actually run the driver."""
|
||||||
global persist
|
for i in range(0, WAIT_FOR_CONNECTION_SECONDS):
|
||||||
wait_sec = 60
|
print("tanktransfer driver will start in {} seconds".format(WAIT_FOR_CONNECTION_SECONDS - i))
|
||||||
for i in range(0, wait_sec):
|
|
||||||
print("tanktransfer driver will start in {} seconds".format(wait_sec - i))
|
|
||||||
time.sleep(1)
|
time.sleep(1)
|
||||||
logger.info("BOOM! Starting tanktransfer driver...")
|
log.info("BOOM! Starting tanktransfer driver...")
|
||||||
|
|
||||||
public_ip_address = get_public_ip_address()
|
self._check_watchdog()
|
||||||
self.sendtodbDev(1, 'public_ip_address', public_ip_address, 0, 'tanktransfer')
|
self._check_ip_address()
|
||||||
watchdog = self.tanktransfer_watchdog()
|
|
||||||
self.sendtodbDev(1, 'watchdog', watchdog, 0, 'tanktransfer')
|
self.nodes["tanktransfer_0199"] = self
|
||||||
watchdog_send_timestamp = time.time()
|
|
||||||
|
|
||||||
send_loops = 0
|
send_loops = 0
|
||||||
watchdog_loops = 0
|
|
||||||
watchdog_check_after = 5000
|
|
||||||
while True:
|
while True:
|
||||||
|
now = time.time()
|
||||||
if self.forceSend:
|
if self.forceSend:
|
||||||
logger.warning("FORCE SEND: TRUE")
|
log.warning("FORCE SEND: TRUE")
|
||||||
|
|
||||||
for c in CHANNELS:
|
for c in CHANNELS:
|
||||||
if c.read(self.forceSend):
|
if c.read(self.forceSend):
|
||||||
self.sendtodbDev(1, c.mesh_name, c.value, 0, 'tanktransfer')
|
self.sendtodbDev(1, c.mesh_name, c.value, 0, 'tanktransfer')
|
||||||
|
|
||||||
|
|
||||||
# print("tanktransfer driver still alive...")
|
# print("tanktransfer driver still alive...")
|
||||||
if self.forceSend:
|
if self.forceSend:
|
||||||
if send_loops > 2:
|
if send_loops > 2:
|
||||||
logger.warning("Turning off forceSend")
|
log.warning("Turning off forceSend")
|
||||||
self.forceSend = False
|
self.forceSend = False
|
||||||
send_loops = 0
|
send_loops = 0
|
||||||
else:
|
else:
|
||||||
send_loops += 1
|
send_loops += 1
|
||||||
|
|
||||||
watchdog_loops += 1
|
if WATCHDOG_ENABLE:
|
||||||
if (watchdog_loops >= watchdog_check_after):
|
if (now - self.watchdog_last_checked) > WATCHDOG_CHECK_PERIOD:
|
||||||
test_watchdog = self.tanktransfer_watchdog()
|
self._check_watchdog()
|
||||||
if not test_watchdog == watchdog or (time.time() - watchdog_send_timestamp) > WATCHDOG_SEND_PERIOD:
|
|
||||||
self.sendtodbDev(1, 'watchdog', test_watchdog, 0, 'tanktransfer')
|
|
||||||
watchdog = test_watchdog
|
|
||||||
|
|
||||||
test_public_ip = get_public_ip_address()
|
if (now - self.public_ip_address_last_checked) > IP_CHECK_PERIOD:
|
||||||
if not test_public_ip == public_ip_address:
|
self._check_ip_address()
|
||||||
self.sendtodbDev(1, 'public_ip_address', test_public_ip, 0, 'tanktransfer')
|
|
||||||
public_ip_address = test_public_ip
|
def _check_watchdog(self):
|
||||||
watchdog_loops = 0
|
"""Check the watchdog and send to Meshify if changed or stale."""
|
||||||
|
test_watchdog = self.tanktransfer_watchdog()
|
||||||
|
now = time.time()
|
||||||
|
self.watchdog_last_checked = now
|
||||||
|
if test_watchdog != self.watchdog or (now - self.watchdog_last_sent) > WATCHDOG_SEND_PERIOD:
|
||||||
|
self.sendtodbDev(1, 'watchdog', test_watchdog, 0, 'tanktransfer')
|
||||||
|
self.watchdog = test_watchdog
|
||||||
|
self.watchdog_last_sent = now
|
||||||
|
|
||||||
|
|
||||||
|
def _check_ip_address(self):
|
||||||
|
"""Check the public IP address and send to Meshify if changed."""
|
||||||
|
self.public_ip_address_last_checked = time.time()
|
||||||
|
test_public_ip = get_public_ip_address()
|
||||||
|
if not test_public_ip == self.public_ip_address:
|
||||||
|
self.sendtodbDev(1, 'public_ip_address', test_public_ip, 0, 'tanktransfer')
|
||||||
|
self.public_ip_address = test_public_ip
|
||||||
|
|
||||||
def tanktransfer_watchdog(self):
|
def tanktransfer_watchdog(self):
|
||||||
"""Write a random integer to the PLC and then 1 seconds later check that it has been decremented by 1."""
|
"""Write a random integer to the PLC and then 1 seconds later check that it has been decremented by 1."""
|
||||||
|
|||||||
Reference in New Issue
Block a user