forked from michieldwitte/CoAPthon3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
collectclient.py
141 lines (125 loc) · 4.08 KB
/
collectclient.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
#!/usr/bin/env python
import getopt
import json
import socket
import sys
from coapthon.client.helperclient import HelperClient
from coapthon.utils import parse_uri
__author__ = 'Giacomo Tanganelli'
client = None
def usage(): # pragma: no cover
print("Command:\tcollectclient.py -c ")
print("Options:")
print("\t-c, --config=\t\tConfig file")
def client_callback(response):
print("Callback")
def client_callback_observe(response): # pragma: no cover
global client
print("Callback_observe")
print((response.pretty_print()))
check = True
while check:
chosen = eval(input("Stop observing? [y/N]: "))
if chosen != "" and not (chosen == "n" or chosen == "N" or chosen == "y" or chosen == "Y"):
print("Unrecognized choose.")
continue
elif chosen == "y" or chosen == "Y":
while True:
rst = eval(input("Send RST message? [Y/n]: "))
if rst != "" and not (rst == "n" or rst == "N" or rst == "y" or rst == "Y"):
print("Unrecognized choose.")
continue
elif rst == "" or rst == "y" or rst == "Y":
client.cancel_observing(response, True)
else:
client.cancel_observing(response, False)
check = False
break
else:
break
def main(): # pragma: no cover
global client
config = None
try:
opts, args = getopt.getopt(sys.argv[1:], "hc:", ["help", "config="])
except getopt.GetoptError as err:
# print help information and exit:
print((str(err))) # will print something like "option -a not recognized"
usage()
sys.exit(2)
for o, a in opts:
if o in ("-c", "--config"):
config = a
elif o in ("-h", "--help"):
usage()
sys.exit()
else:
usage()
sys.exit(2)
if config is None:
print("Config file must be specified")
usage()
sys.exit(2)
config = open(config, "r")
config = json.load(config)
for n in config["nodes"]:
path = "coap://"+n["ip"]+":"+str(n["port"])+"/radio"
host, port, path = parse_uri(path)
try:
tmp = socket.gethostbyname(host)
host = tmp
except socket.gaierror:
pass
client = HelperClient(server=(host, port))
response = client.get(path)
print((response.pretty_print()))
client.stop()
# if op == "OBSERVE":
# if path is None:
# print "Path cannot be empty for a GET request"
# usage()
# sys.exit(2)
# client.observe(path, client_callback_observe)
#
# elif op == "DELETE":
# if path is None:
# print "Path cannot be empty for a DELETE request"
# usage()
# sys.exit(2)
# response = client.delete(path)
# print response.pretty_print()
# client.stop()
# elif op == "POST":
# if path is None:
# print "Path cannot be empty for a POST request"
# usage()
# sys.exit(2)
# if payload is None:
# print "Payload cannot be empty for a POST request"
# usage()
# sys.exit(2)
# response = client.post(path, payload)
# print response.pretty_print()
# client.stop()
# elif op == "PUT":
# if path is None:
# print "Path cannot be empty for a PUT request"
# usage()
# sys.exit(2)
# if payload is None:
# print "Payload cannot be empty for a PUT request"
# usage()
# sys.exit(2)
# response = client.put(path, payload)
# print response.pretty_print()
# client.stop()
# elif op == "DISCOVER":
# response = client.discover()
# print response.pretty_print()
# client.stop()
# else:
# print "Operation not recognized"
# usage()
# sys.exit(2)
if __name__ == '__main__': # pragma: no cover
main()