-
Notifications
You must be signed in to change notification settings - Fork 5
/
linky.py
executable file
·288 lines (237 loc) · 12 KB
/
linky.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# __author__ = "Hervé Le Roy"
# __licence__ = "GNU General Public License v3.0"
# Python 3, pré-requis : pip install PyYAML pySerial influxdb-client
# TODO:
# * Ajouter un thread séparé pour Linky
# * Afficher des informations depuis le thread principal
# * Tester plusieurs scénarios d'erreurs InfluxDB (iptables sur serveur, arrêt du serveur)
import logging
import queue
import signal
import termios
import threading
import time
from datetime import datetime
import serial
import yaml
from influxdb_client import InfluxDBClient, Point
from influxdb_client.client.exceptions import InfluxDBError
from influxdb_client.client.write_api import SYNCHRONOUS, PointSettings
from influxdb_client.rest import ApiException
from urllib3 import Retry
from urllib3.exceptions import HTTPError
DEFAULT_KEYS = ('ISOUSC', 'BASE', 'IINST',)
DEFAULT_CHECKSUM_METHOD = 1
START_FRAME = b'\x02' # STX, Start of Text
STOP_FRAME = b'\x03' # ETX, End of Text
def _handler(signum, frame):
logging.info('Programme interrompu par CTRL+C')
raise SystemExit(0)
def _send_frames_to_influx():
"""Ecrit les mesures dans un bucket InfluxDB."""
logging.debug(f'Thread d\'envoi vers InfluxDB démarré')
while True:
# Récupère une trame dans la file d'attente
frame = frame_queue.get()
ftime = frame.pop('TIME')
record = []
for measure, value in frame.items():
point = Point(measure).field('value', value).time(ftime)
record.append(point)
# Envoie vers InfluxDB et ré-essaie en boucle tant que cela ne fonctionne pas
logging.info(f'Ecriture dans InfluxDB')
written = False
x = 0
while not written:
try:
write_client.write(bucket=influxdb_bucket, record=record)
written = True
except ApiException as exc:
if exc.status == 404:
logging.error(f'Le bucket {influxdb_bucket} n\'existe pas')
elif exc.status == 403:
logging.error(f'Permissions insufissantes pour écrire dans {influxdb_bucket}')
else:
logging.error(f'Erreur lors de l\'écriture dans {influxdb_bucket}')
except InfluxDBError as exc:
logging.error(f'Erreur InfluxDB', exc_info=True)
except (OSError, HTTPError) as exc:
logging.error(f'Serveur injoignable', exc_info=True)
finally:
if not written:
# Attends de plus en plus longtemps
sleep = 2 ** x
logging.error(f'Nouvel essai dans {sleep} seconde(s)')
time.sleep(2 ** x)
# Mais pas trop quand même. max = 2**10 secondes, soit environ 17 minutes
if x < 10:
x += 1
frame_queue.task_done()
def _checksum(key, val, separator, checksum):
"""Vérifie la somme de contrôle du groupe d'information. Réf Enedis-NOI-CPT_02E, page 19."""
data = f'{key}{separator}{val}'
if linky_checksum_method == 2:
data += separator
s = sum([ord(c) for c in data])
s = (s & 0x3F) + 0x20
return (checksum == chr(s))
def linky():
# Ouverture du port série
try:
baudrate = 1200 if linky_legacy_mode else 9600
logging.info(
f'Ouverture du port série {raspberry_stty_port} à {baudrate} Bd')
with serial.Serial(port=raspberry_stty_port,
baudrate=baudrate,
parity=serial.PARITY_EVEN,
stopbits=serial.STOPBITS_ONE,
bytesize=serial.SEVENBITS,
timeout=1) as ser:
# Boucle pour partir sur un début de trame
logging.info('Attente d\'une première trame...')
line = ser.readline()
while START_FRAME not in line: # Recherche du caractère de début de trame, c'est-à-dire STX 0x02
line = ser.readline()
# Initialisation d'une trame vide
frame = dict()
# Boucle infinie
while True:
# -------------------------------------------------------------------------------------------------------------
# | Etendue d'un groupe d'information |
# -------------------------------------------------------------------------------------------------------------
# | LF (0x0A) | Champ 'étiquette' | Séparateur* | Champ 'donnée' | Séparateur* | Champ 'contrôle' | CR (0x0D) |
# -------------------------------------------------------------------------------------------------------------
# | Etendue checksum mode n°1 | |
# -------------------------------------------------------------------------------------------------------------
# | Etendue checksum mode n°2 | |
# -------------------------------------------------------------------------------------------------------------
#
# *Le séparateur peut être SP (0x20) ou HT (0x09)
try:
# Lecture de la première ligne de la première trame
line = ser.readline()
# Décodage ASCII et nettoyage du retour à la ligne
line_str = line.decode('ascii').rstrip()
logging.debug(f'Groupe d\'information brut : {line_str}')
# Récupération de la somme de contrôle (qui est le dernier caractère de la ligne)
checksum = line_str[-1]
# Identification du séparateur en vigueur (espace ou tabulation)
separator = line_str[-2]
# Position du séparateur entre le champ étiquette et le champ données
pos = line_str.find(separator)
# Extraction de l'étiquette
key = line_str[0:pos]
# Extraction de la donnée
val = line_str[pos+1:-2]
# Est-ce une étiquette qui nous intéresse ?
if key in linky_keys:
# Vérification de la somme de contrôle
if _checksum(key, val, separator, checksum):
# Ajout de la valeur
frame[key] = int(val)
else:
logging.debug(
f'Somme de contrôle erronée pour {key}')
# Si caractère de fin de trame dans la ligne, on écrit les données dans InfluxDB
if STOP_FRAME in line:
num_keys = len(frame)
logging.info(f'Trame reçue ({num_keys} étiquettes traités)')
# Horodatage de la trame reçue
frame['TIME'] = datetime.utcnow().strftime("%Y-%m-%dT%H:%M:%SZ")
# Ajout à la queue d'envoi vers InfluxDB
if influxdb_send_data:
frame_queue.put(frame)
# On réinitialise une nouvelle trame
frame = dict()
except Exception as e:
logging.error(f'Une exception s\'est produite : {e}', exc_info=True)
logging.error(f'Etiquette : {key} Donnée : {val}')
except termios.error:
logging.error('Erreur lors de la configuration du port série')
if raspberry_stty_port == '/dev/ttyS0':
logging.error('Essayez d\'utiliser /dev/ttyAMA0 plutôt que /dev/ttyS0')
raise SystemExit(1)
except serial.SerialException as exc:
if exc.errno == 13:
logging.error('Erreur de permission sur le port série')
logging.error('Avez-vous ajouté l\'utilisateur au groupe dialout ?')
logging.error(' $ sudo usermod -G dialout $USER')
logging.error(
'Vous devez vous déconnecter de votre session puis vous reconnecter pour que les droits prennent effet.')
else:
logging.error(f'Erreur lors de l\'ouverture du port série : {exc}')
raise SystemExit(1)
if __name__ == '__main__':
# Creation du logger
logging.basicConfig(level=logging.INFO, format='%(levelname)s: %(message)s')
logging.info('Démarrage Linky Téléinfo')
# Capture élégamment une interruption par CTRL+C
signal.signal(signal.SIGINT, _handler)
# Lecture du fichier de configuration
try:
with open("config.yml", "r") as f:
cfg = yaml.load(f, Loader=yaml.SafeLoader)
except FileNotFoundError:
logging.error('Il manque le fichier de configuration config.yml')
raise SystemExit(1)
except yaml.YAMLError as exc:
if hasattr(exc, 'problem_mark'):
mark = exc.problem_mark
logging.error('Le fichier de configuration comporte une erreur de syntaxe')
logging.error(f'La position de l\'erreur semble être en ligne {mark.line+1} colonne {mark.column+1}')
raise SystemExit(1)
except (OSError, IOError):
logging.error('Erreur de lecture du fichier config.yml. Vérifiez les permissions ?')
raise SystemExit(1)
except Exception:
logging.critical('Erreur lors de la lecture du fichier de configuration', exc_info=True)
raise SystemExit(1)
try:
debug = cfg.get('debug', False)
linky_location = cfg['linky']['location']
linky_legacy_mode = cfg['linky']['legacy_mode']
linky_checksum_method = cfg['linky'].get('checksum_method', DEFAULT_CHECKSUM_METHOD)
linky_keys = cfg['linky'].get('keys', DEFAULT_KEYS)
raspberry_stty_port = cfg['raspberry']['stty_port']
influxdb_send_data = cfg['influxdb']['send_data']
if influxdb_send_data:
influxdb_url = cfg['influxdb']['url']
influxdb_bucket = cfg['influxdb']['bucket']
influxdb_token = cfg['influxdb']['token']
influxdb_org = cfg['influxdb']['org']
except KeyError as exc:
logging.error(f'Erreur : il manque la clé {exc} dans le fichier de configuration')
raise SystemExit(1)
except Exception:
logging.critical('Erreur lors de la lecture du fichier de configuration', exc_info=True)
raise SystemExit(1)
# Configuration du logger en mode debug
if debug:
logging.getLogger().setLevel(logging.DEBUG)
# Création d'une queue FIFO pour stocker les données
frame_queue = queue.Queue()
write_client = None
if influxdb_send_data:
# Connexion à InfluxDB
try:
logging.info(f'Connexion à {influxdb_url}')
retries = Retry(connect=4, read=2, redirect=5, backoff_factor=0.5)
influx_client = InfluxDBClient(url=influxdb_url,
token=influxdb_token,
org=influxdb_org,
retries=retries)
except InfluxDBError as exc:
logging.error(f'Erreur de connexion à InfluxDB: {exc}')
raise SystemExit(1)
# Obtention du client d'API en écriture
point_settings = PointSettings()
point_settings.add_default_tag('location', linky_location)
write_client = influx_client.write_api(write_options=SYNCHRONOUS, point_settings=point_settings)
# Démarrage du thread d'envoi vers InfluxDB
logging.debug(f'Démarrage du thread d\'envoi vers InfluxDB')
send_thread = threading.Thread(target=_send_frames_to_influx, daemon=True)
send_thread.start()
# Lance la boucle infinie de lecture de la téléinfo
linky()