-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.py
3015 lines (2680 loc) · 104 KB
/
app.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
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
from flask import Flask, request, jsonify, abort
import json
from threading import Thread
import time
from datetime import datetime
import xmlrpc.client
import heapq
import requests
from flasgger import Swagger
app = Flask(__name__)
swagger = Swagger(app)
list_of_valid_requests = []
sm1_execution_rpc = None
mm1_execution_rpc = None
ov1_execution_rpc = None
vgr1_execution_rpc = None
hbw1_execution_rpc = None
wt1_execution_rpc = None
heap_queue_sm1_execution = []
heap_queue_vgr1_execution = []
heap_queue_hbw1_execution = []
heap_queue_ov1_execution = []
heap_queue_mm1_execution = []
heap_queue_wt1_execution = []
sm1_getter_setter_rpc = None
mm1_getter_setter_rpc = None
ov1_getter_setter_rpc = None
vgr1_getter_setter_rpc = None
hbw1_getter_setter_rpc = None
wt1_getter_setter_rpc = None
heap_queue_sm1_getter_setter = []
heap_queue_vgr1_getter_setter = []
heap_queue_hbw1_getter_setter = []
heap_queue_ov1_getter_setter = []
heap_queue_mm1_getter_setter = []
heap_queue_wt1_getter_setter = []
"""
#####################################################################
#####################################################################
################## Initializing Web Server and Queue ################
#####################################################################
#####################################################################
"""
@app.errorhandler(400)
def bad_request(e):
return jsonify(error=str(e)), 400
@app.errorhandler(404)
def bad_request(e):
return jsonify(error=str(e)), 404
@app.errorhandler(417)
def precondition_not_fulfilled(e):
return jsonify(error=str(e)), 417
@app.before_request
def before_request():
if request.url == "http://127.0.0.1:5000/favicon.ico":
print(request.url + " was called")
return
if request.url == "http://127.0.0.1:5000/apidocs/":
return
if request.url == "http://localhost:5000/apidocs/":
return
if request.url == "http://192.168.0.5:5000/apidocs/":
return
if "/flasgger_static/" in request.url:
return
if "apispec" in request.url:
return
path = request.path
path_split = path.split("/")
machine = path_split[1]
task = path_split[2]
dt = datetime.now()
request.datetime = dt
if request.args.get('machine'):
machine_and_factory = request.args.get('machine')
tmp_arr = machine_and_factory.split("_")
factory = tmp_arr[1]
request.factory = factory
else:
abort(404, 'No Machine is passed')
# lower values in the priority queue are preferred over larger ones
if request.args.get("prio"):
priority = request.args.get("prio")
else:
priority = 3
if task == "status_of_light_barrier" or \
task == "get_amount_of_stored_workpieces" or \
task == "state_of_machine" or \
task == "set_motor_speed" or \
task == "reset_all_motor_speeds" or \
task == "get_motor_speed" or \
task == "check_position" or \
task == "get_slot_number_of_workpiece_by_color" or \
task == "detect_color" or \
task == "has_capacitive_sensor_registered_workpiece":
if factory == "1":
if machine == "sm":
heapq.heappush(heap_queue_sm1_getter_setter, (priority, dt, request, path))
elif machine == "vgr":
heapq.heappush(heap_queue_vgr1_getter_setter, (priority, dt, request, path))
elif machine == "hbw":
heapq.heappush(heap_queue_hbw1_getter_setter, (priority, dt, request, path))
elif machine == "ov":
heapq.heappush(heap_queue_ov1_getter_setter, (priority, dt, request, path))
elif machine == "mm":
heapq.heappush(heap_queue_mm1_getter_setter, (priority, dt, request, path))
elif machine == "mps":
heapq.heappush(heap_queue_wt1_getter_setter, (priority, dt, request, path))
elif machine == "wt":
heapq.heappush(heap_queue_wt1_getter_setter, (priority, dt, request, path))
else:
if factory == "1":
if machine == "sm":
heapq.heappush(heap_queue_sm1_execution, (priority, dt, request, path))
elif machine == "vgr":
heapq.heappush(heap_queue_vgr1_execution, (priority, dt, request, path))
elif machine == "hbw":
heapq.heappush(heap_queue_hbw1_execution, (priority, dt, request, path))
elif machine == "ov":
heapq.heappush(heap_queue_ov1_execution, (priority, dt, request, path))
elif machine == "mm":
heapq.heappush(heap_queue_mm1_execution, (priority, dt, request, path))
elif machine == "mps":
heapq.heappush(heap_queue_wt1_execution, (priority, dt, request, path))
elif machine == "wt":
heapq.heappush(heap_queue_wt1_execution, (priority, dt, request, path))
def create_json(req, *args):
end_dt = datetime.now()
process_dt = end_dt - req.datetime
str_start_dt = req.datetime.strftime("%d-%b-%Y (%H:%M:%S.%f)")
str_end_dt = end_dt.strftime("%d-%b-%Y (%H:%M:%S.%f)")
json_output = {
"link": req.base_url,
"start_time": str_start_dt,
"end_time": str_end_dt,
"process_time": str(process_dt),
"attributes": args
}
return json_output
def check_heap_queue_sm1_execution(req):
"""
Checks whether the given request is at the first position of the queue. This is executed until it is the case.
:param req: Request
:return: Nothing
"""
tmp = True
while tmp:
if req.datetime == heap_queue_sm1_execution[0][1] and req.path == heap_queue_sm1_execution[0][3]:
tmp = False
def pop_heap_queue_sm1_execution():
"""
Checks whether the given request is at the first position of the queue. This is executed until it is the case.
:return: Nothing
"""
heapq.heappop(heap_queue_sm1_execution)
def check_heap_queue_vgr1_execution(req):
"""
Checks whether the given request is at the first position of the queue. This is executed until it is the case.
:param req: Request
:return: Nothing
"""
tmp = True
while tmp:
if req.datetime == heap_queue_vgr1_execution[0][1] and req.path == heap_queue_vgr1_execution[0][3]:
tmp = False
def pop_heap_queue_vgr1_execution():
"""
Checks whether the given request is at the first position of the queue. This is executed until it is the case.
:return: Nothing
"""
heapq.heappop(heap_queue_vgr1_execution)
def check_heap_queue_hbw1_execution(req):
"""
Checks whether the given request is at the first position of the queue. This is executed until it is the case.
:param req: Request
:return: Nothing
"""
tmp = True
while tmp:
if req.datetime == heap_queue_hbw1_execution[0][1] and req.path == heap_queue_hbw1_execution[0][3]:
tmp = False
def pop_heap_queue_hbw1_execution():
"""
Checks whether the given request is at the first position of the queue. This is executed until it is the case.
:return: Nothing
"""
heapq.heappop(heap_queue_hbw1_execution)
def check_heap_queue_ov1_execution(req):
"""
Checks whether the given request is at the first position of the queue. This is executed until it is the case.
:param req: Request
:return: Nothing
"""
tmp = True
while tmp:
if req.datetime == heap_queue_ov1_execution[0][1] and req.path == heap_queue_ov1_execution[0][3]:
tmp = False
def pop_heap_queue_ov1_execution():
"""
Checks whether the given request is at the first position of the queue. This is executed until it is the case.
:return: Nothing
"""
heapq.heappop(heap_queue_ov1_execution)
def check_heap_queue_wt1_execution(req):
"""
Checks whether the given request is at the first position of the queue. This is executed until it is the case.
:param req: Request
:return: Nothing
"""
tmp = True
while tmp:
if req.datetime == heap_queue_wt1_execution[0][1] and req.path == heap_queue_wt1_execution[0][3]:
tmp = False
def pop_heap_queue_wt1_execution():
"""
Checks whether the given request is at the first position of the queue. This is executed until it is the case.
:return: Nothing
"""
heapq.heappop(heap_queue_wt1_execution)
def check_heap_queue_mm1_execution(req):
"""
Checks whether the given request is at the first position of the queue. This is executed until it is the case.
:param req: Request
:return: Nothing
"""
tmp = True
while tmp:
if req.datetime == heap_queue_mm1_execution[0][1] and req.path == heap_queue_mm1_execution[0][3]:
tmp = False
def pop_heap_queue_mm1_execution():
"""
Checks whether the given request is at the first position of the queue. This is executed until it is the case.
:return: Nothing
"""
heapq.heappop(heap_queue_mm1_execution)
def check_heap_queue_sm1_getter_setter(req):
"""
Checks whether the given request is at the first position of the queue. This is executed until it is the case.
:param req: Request
:return: Nothing
"""
tmp = True
while tmp:
if req.datetime == heap_queue_sm1_getter_setter[0][1] and req.path == heap_queue_sm1_getter_setter[0][3]:
tmp = False
def pop_heap_queue_sm1_getter_setter():
"""
Checks whether the given request is at the first position of the queue. This is executed until it is the case.
:return: Nothing
"""
heapq.heappop(heap_queue_sm1_getter_setter)
def check_heap_queue_vgr1_getter_setter(req):
"""
Checks whether the given request is at the first position of the queue. This is executed until it is the case.
:param req: Request
:return: Nothing
"""
tmp = True
while tmp:
if req.datetime == heap_queue_vgr1_getter_setter[0][1] and req.path == heap_queue_vgr1_getter_setter[0][3]:
tmp = False
def pop_heap_queue_vgr1_getter_setter():
"""
Checks whether the given request is at the first position of the queue. This is executed until it is the case.
:return: Nothing
"""
heapq.heappop(heap_queue_vgr1_getter_setter)
def check_heap_queue_hbw1_getter_setter(req):
"""
Checks whether the given request is at the first position of the queue. This is executed until it is the case.
:param req: Request
:return: Nothing
"""
tmp = True
while tmp:
if req.datetime == heap_queue_hbw1_getter_setter[0][1] and req.path == heap_queue_hbw1_getter_setter[0][3]:
tmp = False
def pop_heap_queue_hbw1_getter_setter():
"""
Checks whether the given request is at the first position of the queue. This is executed until it is the case.
:return: Nothing
"""
heapq.heappop(heap_queue_hbw1_getter_setter)
def check_heap_queue_ov1_getter_setter(req):
"""
Checks whether the given request is at the first position of the queue. This is executed until it is the case.
:param req: Request
:return: Nothing
"""
tmp = True
while tmp:
if req.datetime == heap_queue_ov1_getter_setter[0][1] and req.path == heap_queue_ov1_getter_setter[0][3]:
tmp = False
def pop_heap_queue_ov1_getter_setter():
"""
Checks whether the given request is at the first position of the queue. This is executed until it is the case.
:return: Nothing
"""
heapq.heappop(heap_queue_ov1_getter_setter)
def check_heap_queue_wt1_getter_setter(req):
"""
Checks whether the given request is at the first position of the queue. This is executed until it is the case.
:param req: Request
:return: Nothing
"""
tmp = True
while tmp:
if req.datetime == heap_queue_wt1_getter_setter[0][1] and req.path == heap_queue_wt1_getter_setter[0][3]:
tmp = False
def pop_heap_queue_wt1_getter_setter():
"""
Checks whether the given request is at the first position of the queue. This is executed until it is the case.
:return: Nothing
"""
heapq.heappop(heap_queue_wt1_getter_setter)
def check_heap_queue_mm1_getter_setter(req):
"""
Checks whether the given request is at the first position of the queue. This is executed until it is the case.
:param req: Request
:return: Nothing
"""
tmp = True
while tmp:
if req.datetime == heap_queue_mm1_getter_setter[0][1] and req.path == heap_queue_mm1_getter_setter[0][3]:
tmp = False
def pop_heap_queue_mm1_getter_setter():
"""
Checks whether the given request is at the first position of the queue. This is executed until it is the case.
:return: Nothing
"""
heapq.heappop(heap_queue_mm1_getter_setter)
"""
#####################################################################
#####################################################################
################## Sorting Machine ##################################
################## Execution Webservices ############################
#####################################################################
#####################################################################
"""
@app.route("/sm/sort")
def sm_sort() -> [None, json]:
"""
Starts the entire sorting machine process once.
---
parameters:
- name: machine
in: path
type: string
required: true
description: sm_1
- name: start
in: path
type: string
required: true
description: initial
- name: predefined_ejection_location
in: path
type: string
required: true
description: none
description:
Starts the entire sorting machine process once. **/sm/sort?machine=sm_1&start=initial&predefined_ejection_location=none**
[Example URL](http://192.168.0.5:5000/sm/sort?machine=sm_1&start=initial&predefined_ejection_location=none)
responses:
200:
description: JSON
"""
if request.factory == "1":
check_heap_queue_sm1_execution(request)
try:
position = sm1_execution_rpc.sort(
str(request.args.get('start')),
bool(request.args.get('use_nfc')),
str(request.args.get('predefined_ejection_location'))
)
except xmlrpc.client.Fault as rpc_error:
pop_heap_queue_sm1_execution()
abort(400, f"The machine controller of the addressed machine encountered an error: {rpc_error.faultString}")
pop_heap_queue_sm1_execution()
else:
abort(404, "Please make sure that the value of the parameter for the machine is 1")
args = {"sink": position}
if request and request.method == "GET":
return jsonify(create_json(request,args))
else:
abort(404)
"""
#####################################################################
#####################################################################
################## Sorting Machine ##################################
############ Getter and Setter Webservices ##########################
#####################################################################
#####################################################################
"""
@app.route('/sm/state_of_machine')
def sm_state_of_machine() -> [None, json]:
"""
Indicates the state of a machine
---
parameters:
- name: machine
in: path
type: string
required: true
description: sm_1
description:
Indicates the state of a machine **sm/state_of_machine?machine=sm_1**
[Example URL](http://192.168.0.5:5000/sm/state_of_machine?machine=sm_1)
responses:
200:
description: JSON
"""
state = None
if request.factory == "1":
check_heap_queue_sm1_getter_setter(request)
try:
state = sm1_getter_setter_rpc.state_of_machine(1)
except xmlrpc.client.Fault as rpc_error:
pop_heap_queue_sm1_getter_setter()
abort(400, f"The machine controller of the addressed machine encountered an error: {rpc_error.faultString}")
pop_heap_queue_sm1_getter_setter()
else:
abort(404, "Please make sure that the value of the parameter for the machine is 1")
args = {"state": state}
if request and request.method == "GET":
return jsonify(create_json(request, args))
else:
abort(404)
@app.route('/sm/status_of_light_barrier')
def sm_status_of_light_barrier() -> [None, json]:
"""
Indicates whether a light barrier is broken through or not.
---
parameters:
- name: machine
in: path
type: string
required: true
description: sm_1
- name: lb
in: path
type: integer
required: true
description: Number of light barrier in SM
description:
URL **sm/status_of_light_barrier?machine=sm_1&lb=1**
[Example Link](http://192.168.0.5:5000/sm/status_of_light_barrier?machine=sm_1&lb=1)
responses:
200:
description: JSON
"""
status = None
if request.factory == "1" and request.args.get('lb'):
check_heap_queue_sm1_getter_setter(request)
try:
status = sm1_getter_setter_rpc.status_of_light_barrier(int(request.args.get('lb')))
except xmlrpc.client.Fault as rpc_error:
pop_heap_queue_sm1_getter_setter()
abort(400, f"The machine controller of the addressed machine encountered an error: {rpc_error.faultString}")
pop_heap_queue_sm1_getter_setter()
else:
abort(404, "Please make sure that the value of the parameter for the machine is 1")
args = {"interrupted": status}
if request and request.method == "GET":
return jsonify(create_json(request, args))
else:
abort(404)
@app.route('/sm/get_motor_speed')
def sm_get_motor_speed() -> [None, json]:
"""
Gets the motor speed for the specified motor
---
parameters:
- name: machine
in: path
type: string
required: true
description: sm_1
- name: motor
in: path
type: integer
required: true
description: Number of motor
description:
URL **sm/get_motor_speed?machine=sm_1&motor=1**
[Example Link](http://192.168.0.5:5000/sm/get_motor_speed?machine=sm_1&motor=1)
responses:
200:
description: JSON
"""
motor_speed = None
if request.factory == "1" and request.args.get('motor'):
check_heap_queue_sm1_getter_setter(request)
try:
motor_speed = sm1_getter_setter_rpc.get_motor_speed(int(request.args.get('motor')))
except xmlrpc.client.Fault as rpc_error:
pop_heap_queue_sm1_getter_setter()
abort(400, f"The machine controller of the addressed machine encountered an error: {rpc_error.faultString}")
pop_heap_queue_sm1_getter_setter()
else:
abort(404, "Please make sure that the value of the parameter for the machine is 1")
args = {"motor_speed": motor_speed}
if request and request.method == "GET":
return jsonify(create_json(request, args))
else:
abort(404)
@app.route('/sm/set_motor_speed')
def sm_set_motor_speed() -> [None, json]:
"""
Sets the motor speed for the specified motor
---
parameters:
- name: machine
in: path
type: string
required: true
description: sm_1
- name: motor
in: path
type: integer
required: true
description: Number of motor
- name: speed
in: path
type: integer
required: true
description: Motor speed
description:
URL **sm/set_motor_speed?machine=sm_1&motor=1&speed=400**
[Example Link](http://192.168.0.5:5000/sm/set_motor_speed?machine=sm_1&motor=1&speed=400)
responses:
200:
description: JSON
"""
if request.factory == "1" and request.args.get('motor') and request.args.get('speed'):
check_heap_queue_sm1_getter_setter(request)
try:
sm1_getter_setter_rpc.set_motor_speed(int(request.args.get('motor')), int(request.args.get('speed')))
except xmlrpc.client.Fault as rpc_error:
pop_heap_queue_sm1_getter_setter()
abort(400, f"The machine controller of the addressed machine encountered an error: {rpc_error.faultString}")
pop_heap_queue_sm1_getter_setter()
else:
abort(404, "Please make sure that the value of the parameter for the machine is 1")
if request and request.method == "GET":
return jsonify(create_json(request))
else:
abort(404)
@app.route('/sm/reset_all_motor_speeds')
def sm_reset_all_motor_speeds() -> [None, json]:
"""
Resets all the motor speeds for the specified machine
---
parameters:
- name: machine
in: path
type: string
required: true
description: sm_1
description:
Indicates the state of a machine **sm/reset_all_motor_speeds?machine=sm_1**
[Example Link](http://192.168.0.5:5000/sm/reset_all_motor_speeds?machine=sm_1)
responses:
200:
description: JSON
"""
if request.factory == "1":
check_heap_queue_sm1_getter_setter(request)
try:
sm1_getter_setter_rpc.reset_all_motor_speeds()
except xmlrpc.client.Fault as rpc_error:
pop_heap_queue_sm1_getter_setter()
abort(400, f"The machine controller of the addressed machine encountered an error: {rpc_error.faultString}")
pop_heap_queue_sm1_getter_setter()
else:
abort(404, "Please make sure that the value of the parameter for the machine is 1")
if request and request.method == "GET":
return jsonify(create_json(request))
else:
abort(404)
"""
#####################################################################
#####################################################################
#### MULTI PROCESSING STATION - MILLING MACHINE #####################
################## Execution Webservices ############################
#####################################################################
#####################################################################
"""
@app.route('/mm/calibrate')
def mm_calibrate() -> [None, json]:
"""
Calibrates the turntable. The turntable only moves to the starting position.
However, since "calibrate" was always used, this is also done for usability reasons.
---
parameters:
- name: machine
in: path
type: string
required: true
description: mm_1
description:
URL **mm/calibrate?machine=mm_1**
[Example Link](http://192.168.0.5:5000/mm/calibrate?machine=mm_1)
responses:
200:
description: JSON
"""
if request.factory == "1":
check_heap_queue_mm1_execution(request)
try:
mm1_execution_rpc.calibrate()
except xmlrpc.client.Fault as rpc_error:
pop_heap_queue_mm1_execution()
abort(400, f"The machine controller of the addressed machine encountered an error: {rpc_error.faultString}")
pop_heap_queue_mm1_execution()
else:
abort(404)
if request and request.method == "GET":
return jsonify(create_json(request))
else:
abort(404, "Please make sure that the value of the parameter for the machine is 1")
@app.route('/mm/mill')
def mm_mill() -> [None, json]:
"""
Starts milling.
---
parameters:
- name: machine
in: path
type: string
required: true
description: mm_1
- name: time
in: path
type: integer
required: false
description: time
- name: start
in: path
type: string
required: true
description: Start Position
- name: end
in: path
type: string
required: true
description: End Position
description: >
If the workpiece moves to the milling machine, mills and then moves to the ejection position,
pushes the workpiece onto the conveyor belt, starts it for 10 seconds and then returns to the initial position.
**mm/mill?machine=mm_1&time=10&start=initial&end=ejection**
[Example Link](http://192.168.0.5:5000/mm/mill?machine=mm_1&time=10&start=initial&end=ejection)
responses:
200:
description: JSON
"""
if request.factory == "1" and request.args.get('start') and request.args.get('end'):
time_to_mill = request.args.get('time')
check_heap_queue_mm1_execution(request)
try:
mm1_execution_rpc.mill(
request.args.get('start'), request.args.get('end'),
int(time_to_mill) if time_to_mill is not None else 2)
except xmlrpc.client.Fault as rpc_error:
pop_heap_queue_mm1_execution()
abort(400, f"The machine controller of the addressed machine encountered an error: {rpc_error.faultString}")
pop_heap_queue_mm1_execution()
else:
abort(404, "Please make sure that the value of the parameter for the machine is 1")
if request and request.method == "GET":
return jsonify(create_json(request))
else:
abort(404)
@app.route('/mm/move_from_to')
def mm_move_from_to() -> [None, json]:
"""
Moves the turntable to the specified position.
---
parameters:
- name: machine
in: path
type: string
required: true
description: mm_1
- name: start
in: path
type: string
required: true
description: Start Position
- name: end
in: path
type: string
required: true
description: End Position
description: >
If the workpiece moves to the milling machine, mills and then moves to the ejection position,
pushes the workpiece onto the conveyor belt, starts it for 10 seconds and then returns to the initial position.
**mm/move_from_to?machine=mm_1&start=initial&end=ejection**
[Example Link](http://192.168.0.5:5000/mm/move_from_to?machine=mm_1&start=initial&end=ejection)
responses:
200:
description: JSON
"""
if request.factory == "1" and request.args.get('start') and request.args.get('end'):
check_heap_queue_mm1_execution(request)
try:
mm1_execution_rpc.move_from_to(request.args.get('start'), request.args.get('end'))
except xmlrpc.client.Fault as rpc_error:
pop_heap_queue_mm1_execution()
abort(400, f"The machine controller of the addressed machine encountered an error: {rpc_error.faultString}")
pop_heap_queue_mm1_execution()
else:
abort(404, "Please make sure that the value of the parameter for the machine is 1")
if request and request.method == "GET":
return jsonify(create_json(request))
else:
abort(404)
@app.route('/mm/transport_from_to')
def mm_transport_from_to() -> [None, json]:
"""
Transports the workpiece on the turntable to the specified position.
---
parameters:
- name: machine
in: path
type: string
required: true
description: mm_1
- name: start
in: path
type: string
required: true
description: Start Position
- name: end
in: path
type: string
required: true
description: End Position
description: >
Transports the workpiece on the turntable to the specified position.
**mm/transport_from_to?machine=mm_1&start=initial&end=ejection**
[Example Link](http://192.168.0.5:5000/mm/transport_from_to?machine=mm_1&start=initial&end=ejection)
responses:
200:
description: JSON
"""
if request.factory == "1" and request.args.get('start') and request.args.get('end'):
check_heap_queue_mm1_execution(request)
try:
mm1_execution_rpc.transport_from_to(request.args.get('start'), request.args.get('end'))
except xmlrpc.client.Fault as rpc_error:
pop_heap_queue_mm1_execution()
abort(400, f"The machine controller of the addressed machine encountered an error: {rpc_error.faultString}")
pop_heap_queue_mm1_execution()
else:
abort(404, "Please make sure that the value of the parameter for the machine is 1")
if request and request.method == "GET":
return jsonify(create_json(request))
else:
abort(404)
"""
#####################################################################
#####################################################################
#### MULTI PROCESSING STATION - MILLING MACHINE #####################
############ Getter and Setter Webservices ##########################
#####################################################################
#####################################################################
"""
@app.route('/mm/state_of_machine')
def mm_state_of_machine() -> [None, json]:
"""
Indicates the state of a machine.
---
parameters:
- name: machine
in: path
type: string
required: true
description: mm_1
description: >
URL **mm/transport_from_to?machine=mm_1&start=initial&end=ejection**
[Example Link](http://192.168.0.5:5000/mm/state_of_machine?machine=mm_1)
responses:
200:
description: JSON
"""
state = None
if request.factory == "1":
check_heap_queue_mm1_getter_setter(request)
try:
state = mm1_getter_setter_rpc.state_of_machine(1)
except xmlrpc.client.Fault as rpc_error:
pop_heap_queue_mm1_getter_setter()
abort(400, f"The machine controller of the addressed machine encountered an error: {rpc_error.faultString}")
pop_heap_queue_mm1_getter_setter()
else:
abort(404, "Please make sure that the value of the parameter for the machine is 1")
args = {"state": state}
if request and request.method == "GET":
return jsonify(create_json(request, args))
else:
abort(404)
@app.route('/mm/status_of_light_barrier')
def mm_status_of_light_barrier() -> [None, json]:
"""
Indicates whether a light barrier is broken through or not.
---
parameters:
- name: machine
in: path
type: string
required: true
description: mm_1
- name: lb
in: path
type: integer
required: false
description: number of light barrier
description: >
URL **mm/status_of_light_barrier?machine=mm_1&lb=4**
[Example Link](http://192.168.0.5:5000/mm/status_of_light_barrier?machine=mm_1&lb=4)
responses:
200:
description: JSON
"""
status = None
if request.factory == "1" and request.args.get('lb'):
check_heap_queue_mm1_getter_setter(request)
try:
status = mm1_getter_setter_rpc.status_of_light_barrier(int(request.args.get('lb')))
except xmlrpc.client.Fault as rpc_error:
pop_heap_queue_mm1_getter_setter()
abort(400, f"The machine controller of the addressed machine encountered an error: {rpc_error.faultString}")
pop_heap_queue_mm1_getter_setter()
else:
abort(404, "Please make sure that the value of the parameter for the machine is 1")
args = {"interrupted": status}
if request and request.method == "GET":
return jsonify(create_json(request, args))
else:
abort(404)
@app.route('/mm/get_motor_speed')
def mm_get_motor_speed() -> [None, json]:
"""
Gets the motor speed for the specified motor
---
parameters:
- name: machine
in: path
type: string
required: true
description: mm_1
- name: motor
in: path
type: integer
required: true
description: number of motor
description: >
URL **mm/status_of_light_barrier?machine=mm_1&lb=4**
[Example Link](http://192.168.0.5:5000/mm/get_motor_speed?machine=mm_1&motor=1)
responses:
200:
description: JSON
"""
motor_speed = None
if request.factory == "1" and request.args.get('motor'):
check_heap_queue_mm1_getter_setter(request)
try:
motor_speed = mm1_getter_setter_rpc.get_motor_speed(int(request.args.get('motor')))
except xmlrpc.client.Fault as rpc_error:
pop_heap_queue_mm1_getter_setter()
abort(400, f"The machine controller of the addressed machine encountered an error: {rpc_error.faultString}")
pop_heap_queue_mm1_getter_setter()