forked from jgyates/genmon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gensms_modem.py
178 lines (142 loc) · 5.67 KB
/
gensms_modem.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
#!/usr/bin/env python
#-------------------------------------------------------------------------------
# FILE: gensms_modem.py
# PURPOSE: genmon.py support program to allow SMS (txt messages)
# to be sent when the generator status changes. This program uses
# an expansion card to send SMS messages via cellular.
# AUTHOR: Jason G Yates
# DATE: 05-Apr-2016
#
# MODIFICATIONS:
#-------------------------------------------------------------------------------
import datetime, time, sys, signal, os, threading, socket
import atexit, getopt
try:
from genmonlib.mymodem import LTEPiHat
from genmonlib.mylog import SetupLogger
from genmonlib.mynotify import GenNotify
from genmonlib.mysupport import MySupport
from genmonlib.program_defaults import ProgramDefaults
except Exception as e1:
print("\n\nThis program requires the modules located in the genmonlib directory in the github repository.\n")
print("Please see the project documentation at https://github.com/jgyates/genmon.\n")
print("Error: " + str(e1))
sys.exit(2)
#---------- Signal Handler ----------------------------------------------------
def signal_handler(signal, frame):
try:
GenNotify.Close()
SMS.Close()
except:
pass
sys.exit(0)
#---------- OnRun -------------------------------------------------------------
def OnRun(Active):
if Active:
console.info("Generator Running")
SendNotice("Generator Running")
else:
console.info("Generator Running End")
#---------- OnRunManual -------------------------------------------------------
def OnRunManual(Active):
if Active:
console.info("Generator Running in Manual Mode")
SendNotice("Generator Running in Manual Mode")
else:
console.info("Generator Running in Manual Mode End")
#---------- OnExercise --------------------------------------------------------
def OnExercise(Active):
if Active:
console.info("Generator Exercising")
SendNotice("Generator Exercising")
else:
console.info("Generator Exercising End")
#---------- OnReady -----------------------------------------------------------
def OnReady(Active):
if Active:
console.info("Generator Ready")
SendNotice("Generator Ready")
else:
console.info("Generator Ready End")
#---------- OnOff -------------------------------------------------------------
def OnOff(Active):
if Active:
console.info("Generator Off")
SendNotice("Generator Off")
else:
console.info("Generator Off End")
#---------- OnManual ----------------------------------------------------------
def OnManual(Active):
if Active:
console.info("Generator Manual")
SendNotice("Generator Manual")
else:
console.info("Generator Manual End")
#---------- OnAlarm -----------------------------------------------------------
def OnAlarm(Active):
if Active:
console.info("Generator Alarm")
SendNotice("Generator Alarm")
else:
console.info("Generator Alarm End")
#---------- OnService ---------------------------------------------------------
def OnService(Active):
if Active:
console.info("Generator Service Due")
SendNotice("Generator Service Due")
else:
console.info("Generator Servcie Due End")
#---------- OnUtilityChange ---------------------------------------------------
def OnUtilityChange(Active):
if Active:
console.info("Utility Service is Down")
SendNotice("Utility Service is Down")
else:
SendNotice("Utility Service is Up")
console.info("Utility Service is Up")
#---------- SendNotice --------------------------------------------------------
def SendNotice(Message):
try:
SMS.SendMessage(Message)
except Exception as e1:
log.error("Error: " + str(e1))
console.error("Error: " + str(e1))
#------------------- Command-line interface for gengpio -----------------------#
if __name__=='__main__':
console, ConfigFilePath, address, port, loglocation, log = MySupport.SetupAddOnProgram("gensms_modem")
# Set the signal handler
signal.signal(signal.SIGINT, signal_handler)
try:
SMS = LTEPiHat(log = log, loglocation = loglocation, ConfigFilePath = ConfigFilePath)
if not SMS.InitComplete:
SMS.Close()
log.error("Modem Init FAILED!")
console.error("Modem Init FAILED!")
sys.exit(2)
except Exception as e1:
log.error("Error on modem init:" + str(e1))
console.error("Error modem init: " + str(e1))
sys.exit(1)
try:
GenNotify = GenNotify(
host = address,
port = port,
onready = OnReady,
onexercise = OnExercise,
onrun = OnRun,
onrunmanual = OnRunManual,
onalarm = OnAlarm,
onservice = OnService,
onoff = OnOff,
onmanual = OnManual,
onutilitychange = OnUtilityChange,
log = log,
loglocation = loglocation,
console = console)
SMSInfo = SMS.GetInfo(ReturnString = True)
log.error(SMSInfo)
while True:
time.sleep(1)
except Exception as e1:
log.error("Error: " + str(e1))
console.error("Error: " + str(e1))