-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAPIv3.py
432 lines (336 loc) · 11.1 KB
/
APIv3.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
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
import serial
import time
import os
import logging
import threading
import pymysql
# --------- SETTINGS
timeForControl = 2 #Isı ve Koordinat kontrollerinin zaman aralığı (saniye)
maxQueue = 5 # Maksimum bekletilebilecek komut sayısı
controlQueue = 0 # Beklenen kontrol sırası (0 olarak bırakılmalı)
# ---------- Constans Variables
printQueue = 0 # Bekleyen komut sayısı (0 olarak bırakılmalı)
maxControlQueue = 10 # Maksimum beklenecek kontrol
printLine = 0 # toplam yazdırılacak satır sayısı
printedLine = 0 # yazdırılmış satır sayısı
printFile = "" # yazdırılacak dosyanın konumu
lines = [] # yazdırılacak dosya
printStarted = False # yazdırma işlemi program tarafından başlatıldı mı
controllerThreadWorking = False
printThreadWorking = False
printReaderThreadWorking = False
# ------------------------
logging.basicConfig(filename='kayitlar.log', level=logging.DEBUG)
arduino = serial.Serial('/dev/ttyUSB0', 115200, timeout=.1)
time.sleep(1)
print("")
print("----------------------------------------")
print("-- Welcome to Printer API")
print("-- Developed by Ranork for ARGESTA Engineering")
print("-- ")
print("-- PID: " + str(os.getpid()))
print("----------------------------------------")
print("")
db = pymysql.connect(host='localhost',
user='pyt',
password='pytpass',
db='ARG',
autocommit=True)
cursor = db.cursor()
# Define MySQL Connection
def mysqlConn():
global db
global cursor
db = pymysql.connect(host='localhost',
user='pyt',
password='pytpass',
db='ARG',
autocommit=True)
cursor = db.cursor()
mysqlConn()
now = int(time.time())
print("Database connected.")
sql = "Delete From ArdCmd;"
cursor.execute(sql)
print("Command queue cleared.")
sql = "UPDATE OPT SET OptVal = '" + str(os.getpid()) + "' Where OptID = 'APIProcID';"
cursor.execute(sql)
print("PID Saved.")
print("")
# No Returns
def commandSend (command):
sendcmd = command + "\n"
sendcmdbyte = bytes(sendcmd, 'utf-8')
arduino.write(sendcmdbyte)
print(">> " + command)
logging.debug(">> " + command)
# Returns Answer as a String
def readArduino ():
global printQueue
global controlQueue
global db
global arduino
y = True
cevap = ""
while y:
data = arduino.readline()[:-1]
data = data.decode('utf-8')
if data != "":
cevap = data
print("<< " + cevap)
if "ok" in cevap and printQueue > 0:
printQueue -= 1
else:
y = False
if "T:" in cevap and "B:" in cevap:
ETempA = cevap.find("T:") + 2
ETempZ = cevap.find("B:") - 1
ETempCurrent, ETempTarget = cevap[ETempA:ETempZ].replace(" ", "").split("/")
BTempA = cevap.find("B:") + 2
BTempZ = cevap.find("@:") - 1
BTempCurrent, BTempTarget = cevap[BTempA:BTempZ].replace(" ", "").split("/")
if str(ETempTarget) == "0.00":
ETempTarget = "Kapali"
if str(BTempTarget) == "0.00":
BTempTarget = "Kapali"
if float(ETempCurrent) < 0:
ETempCurrent = 0
if float(BTempCurrent) < 0:
BTempCurrent = 0
sql = "UPDATE ArdGosterge SET ETemp = '" + str(ETempCurrent) + "', ETar = '" + str(
ETempTarget) + \
"', BTemp = '" + str(BTempCurrent) + "', BTar = '" + str(BTempTarget) + "' WHERE ID = 1"
time.sleep(0.3)
cursor.execute(sql)
if controlQueue > 1:
controlQueue -= 1
elif "Error:" in cevap:
arduino.close()
arduino.open()
return cevap
# No Returns
def controlTemp ():
global controlQueue
if controlQueue < maxQueue:
commandSend("M105")
readArduino()
controlQueue += 1
else:
print("Arduino will be reseted after 10 seconds.")
time.sleep(10)
arduino.close()
arduino.open()
print("Arduino Reset")
time.sleep(5)
controlQueue = 0
# No Returns
def controlCoordinates ():
commandSend("M114")
y = True
cevap = ""
counterA = 0
while y:
data = arduino.readline()[:-1]
data = data.decode('utf-8')
counterA += 1
if data.startswith('X:'):
cevap = data
print("<< " + cevap)
y = False
elif counterA >= 10:
y = False
if counterA >= 10:
return None
Countst = cevap.find("C") - 1
XkoorA = cevap[:Countst].find("X:") + 2
XKoorZ = cevap[:Countst].find("Y:") - 1
Xkoor = cevap[XkoorA:XKoorZ]
YkoorA = cevap[:Countst].find("Y:") + 2
YKoorZ = cevap[:Countst].find("Z:") - 1
Ykoor = cevap[YkoorA:YKoorZ]
ZkoorA = cevap[:Countst].find("Z:") + 2
ZKoorZ = cevap[:Countst].find("E:") - 1
Zkoor = cevap[ZkoorA:ZKoorZ]
sql = "UPDATE ArdGosterge SET Koor_X = '" + str(Xkoor) + "', Koor_Y = '" + str(Ykoor) + "', Koor_Z = '" + \
str(Zkoor) + "' WHERE ID=1;"
cursor.execute(sql)
# No Returns
def sendManuelCommands ():
global db
sql = "SELECT cmd,ID FROM ArdCmd WHERE sended = 0;"
cmd = ""
cmdID = ""
try:
cursor.execute(sql)
results = cursor.fetchall()
for row in results:
if row[0] != "":
cmd = row[0]
commandSend(cmd)
readArduino()
if row[1] != "":
cmdID = row[1]
sql = "UPDATE ArdCmd SET sended = 1 WHERE ID = " + str(cmdID) + ";"
cursor.execute(sql)
except TypeError as e:
print("SQL ERROR #S02")
print(e)
# Returns True False
def isPrinting ():
global db
sql = "SELECT OptVal FROM OPT WHERE OptID = 'Printing';"
Printing = ""
try:
time.sleep(1)
cursor.execute(sql)
results = cursor.fetchall()
for row in results:
Printing = row[0]
except TypeError as e:
print("SQL ERROR #S01")
print(e)
if Printing == "False":
return False
elif Printing == "True":
return True
# 01tarts printing queue
def startPrint():
global controllerThreadWorking
global printThreadWorking
global printStarted
global lines
sql = "SELECT OptVal From OPT Where OptID = 'PrintFileLoc'"
printFile = ""
try:
cursor.execute(sql)
results = cursor.fetchall()
for row in results:
printFile = row[0]
except:
asda = ""
print(">> PRINT JOB STARTING | File: " + printFile)
logging.debug("Print Job Started! -- " + printFile)
printLine = sum(1 for line in open(printFile))
time.sleep(2)
sql = "UPDATE OPT SET OptVal = '" + str(printLine) + "' WHERE OptID = 'PrintLine'"
cursor.execute(sql)
sql = "UPDATE OPT SET OptVal = '20' WHERE OptID = 'PrintedLine'"
cursor.execute(sql)
f = open(printFile, 'r')
lines = f.readlines()
f.close()
printStarted = True
# Print Threadlerini çalıştır manual controlleri kapa
controllerThreadWorking = False
time.sleep(3)
printThreadWorking = True
# # # # # THREADS # # # # #
# Controller !!! Thread NOT WORKING !!!
# def _generalcontroller():
# global db
# global cursor
#
# while True:
# if controllerThreadWorking:
# controlTemp()
# controlCoordinates()
# sendManuelCommands()
#
# time.sleep(timeForControl)
# Print state controller
def _printState():
global controllerThreadWorking
global printThreadWorking
global printReaderThreadWorking
global printedLine
global printQueue
while True:
if (printThreadWorking and printedLine < 30) or (printedLine%100 == 0 and printedLine > 0):
print("Print State Controller is Waiting")
time.sleep(5)
elif isPrinting():
if printThreadWorking == False:
startPrint()
print("Print job detected. File line count: " + str(len(lines)))
else:
if printThreadWorking:
print("Print job is canceled.")
# Print threadini iptal et
printThreadWorking = False
printReaderThreadWorking = False
time.sleep(2)
commandSend("G28XY")
printedLine = 0
printQueue = 0
print("Arduino will be reseted after 10 seconds.")
time.sleep(10)
arduino.close()
arduino.open()
print("Arduino Reset")
time.sleep(5)
else:
print("There is not any Print Job")
if th_printReader.is_alive() == False:
th_printReader.run()
sendManuelCommands()
controlTemp()
sendManuelCommands()
controlCoordinates()
sendManuelCommands()
time.sleep(timeForControl)
# Print thread
def _print():
global printedLine
global printQueue
global printReaderThreadWorking
global db
while True:
while printThreadWorking:
if printLine <= printedLine:
guncelSatir = lines[printedLine]
if printedLine % 100 == 0 or printedLine <= 15:
time.sleep(0.3)
sql = "UPDATE OPT SET OptVal = '" + str(printedLine) + "' Where OptID = 'PrintedLine'"
try:
cursor.execute(sql)
except:
print("SQL Reconnect called!")
mysqlConn()
if printedLine % 10000 == 0:
printQueue = 0
if guncelSatir.startswith(";") or guncelSatir == "" or len(guncelSatir) <= 3:
printedLine += 1
else:
if printReaderThreadWorking == False:
printReaderThreadWorking = True
printQueue = 1
time.sleep(1)
elif printQueue <= maxQueue:
commandSend(guncelSatir)
print("[ " + str(printedLine) + " ] Q: " + str(printQueue) + " / " + str(maxQueue))
printedLine += 1
printQueue += 1
# Print reader thread (controlling the queue)
def _printReader():
global printQueue
while True:
if printReaderThreadWorking:
cevap = readArduino()
# if "ok" in cevap and printQueue > 0:
# print("printQueue -1")
# printQueue -= 1
# # # # # ------- # # # # #
# th_controller = threading.Thread(target=_generalcontroller)
th_print = threading.Thread(target=_print)
th_printStater = threading.Thread(target=_printState)
th_printReader = threading.Thread(target=_printReader)
# Read marlin describe lines
starterline = 0
while starterline <= 20:
readArduino()
starterline += 1
controllerThreadWorking = True
th_printStater.start()
# th_controller.start()
th_print.start()
th_printReader.start()