-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgaragectrl.py
170 lines (126 loc) · 4.06 KB
/
garagectrl.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
#!/usr/bin/env python3
import os
import json
import sys
import traceback
import RPi.GPIO as GPIO
import datetime as dt
import asyncio
import sys
import aiobotocore
import botocore.exceptions
from dotenv import load_dotenv
load_dotenv()
# Set up GPIO
GPIO.setwarnings(False)
GPIO.setmode(GPIO.BCM)
GPIO.setup(24, GPIO.OUT)
GPIO.output(24, GPIO.HIGH)
GPIO.setup(25, GPIO.OUT)
GPIO.output(25, GPIO.HIGH)
QUEUE_URL = os.getenv('QUEUE_URL')
S3_BUCKET = os.getenv('S3_BUCKET')
# from https://fredrikaverpil.github.io/2017/06/20/async-and-await-with-subprocesses/
async def run_command(*args):
"""Run command in subprocess.
Example from:
http://asyncio.readthedocs.io/en/latest/subprocess.html
"""
# Create subprocess
process = await asyncio.create_subprocess_exec(
*args, stdout=asyncio.subprocess.PIPE, stderr=asyncio.subprocess.PIPE
)
# Status
print("Started: %s, pid=%s" % (args, process.pid), flush=True)
# Wait for the subprocess to finish
stdout, stderr = await process.communicate()
# Progress
if process.returncode == 0:
print(
"Done: %s, pid=%s"
% (args, process.pid),
flush=True,
)
else:
print(
"Failed: %s, pid=%s"
% (args, process.pid),
flush=True,
)
# Result
result = stdout
# Return stdout
return result
async def takeAndStorePicture(session, name):
async with session.create_client('s3') as s3:
result = await run_command(*['fswebcam', '-q', '--rotate', '180', '-r', '640x360', '--jpeg', '80', '--timestamp', '%D %T (%Z)', '-'])
upload = await s3.put_object(
Body=result,
Key=name,
Bucket=S3_BUCKET,
ACL='public-read'
)
print("Uploaded: " + name)
print(upload)
async def handleMessage(session, msg):
if msg == 'photo':
await takeAndStorePicture(session, 'after.jpg')
else:
asyncio.ensure_future(takeAndStorePicture(session, 'before.jpg'))
await relayOnOff(msg)
await asyncio.sleep(15)
asyncio.ensure_future(takeAndStorePicture(session, 'after.jpg'))
async def relayOnOff(side):
if side == 'left':
channel = 24
if side == 'right':
channel = 25
GPIO.output(channel, GPIO.LOW)
await asyncio.sleep(2)
GPIO.output(channel, GPIO.HIGH)
async def handle(session, client, message):
try:
print("Message handle:" + message["Body"])
j = json.loads(message["Body"])
await handleMessage(session, j['Message'])
# Need to remove msg from queue or else it'll reappear
await client.delete_message(
QueueUrl=QUEUE_URL,
ReceiptHandle=message['ReceiptHandle']
)
print("Message finished:" + message["Body"])
except Exception:
traceback.print_exc(file=sys.stdout)
raise
async def go(loop):
# Boto should get credentials from ~/.aws/credentials or the environment
session = aiobotocore.get_session()
async with session.create_client('sqs') as client:
print('Pulling messages off the queue')
while True:
try:
# This loop wont spin really fast as there is
# essentially a sleep in the receive_message call
response = await client.receive_message(
QueueUrl=QUEUE_URL,
WaitTimeSeconds=20,
)
if 'Messages' in response:
for message in response['Messages']:
print("Message received:" + message["Body"])
asyncio.ensure_future(handle(session, client, message))
else:
print('No messages in queue')
except KeyboardInterrupt:
break
print('Finished')
def main():
try:
loop = asyncio.get_event_loop()
loop.run_until_complete(go(loop))
except KeyboardInterrupt:
pass
GPIO.cleanup()
sys.exit(0)
if __name__ == '__main__':
main()