forked from connectIOT/iottoolkit
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTestCreateFromJSON.py
109 lines (80 loc) · 5.17 KB
/
TestCreateFromJSON.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
'''
Created on July 26, 2013
Simplified weather sensor subscribe to broker with 2 endpoints
Creates second service to test object creation from JSON
@author: mjkoster
'''
from iottoolkit.core.SmartObject import SmartObject
from iottoolkit.core.Description import Description
from iottoolkit.core.ObservableProperty import ObservableProperty
from iottoolkit.core.Observers import Observers
from iottoolkit.core.PropertyOfInterest import PropertyOfInterest
from rdflib.term import Literal, URIRef
from rdflib.namespace import RDF, RDFS, XSD, OWL
from iottoolkit.interfaces.HttpObjectService import HttpObjectService
from iottoolkit.interfaces.CoapObjectService import CoapObjectService
from time import sleep
import sys
#workaround to register rdf JSON plugins
import rdflib
from rdflib.plugin import Serializer, Parser
rdflib.plugin.register('json-ld', Serializer, 'rdflib_jsonld.serializer', 'JsonLDSerializer')
rdflib.plugin.register('json-ld', Parser, 'rdflib_jsonld.parser', 'JsonLDParser')
rdflib.plugin.register('rdf-json', Serializer, 'rdflib_rdfjson.rdfjson_serializer', 'RdfJsonSerializer')
rdflib.plugin.register('rdf-json', Parser, 'rdflib_rdfjson.rdfjson_parser', 'RdfJsonParser')
if __name__ == '__main__' :
baseObject = HttpObjectService().baseObject # make an instance of the service, default object root and default port 8000
coapService = CoapObjectService(baseObject)
# create a second service port with an empty default base object to test create from JSON
HttpObjectService(port=8001)
# create the weather station resource template
baseObject.Description = baseObject.create({'resourceName':'Description',\
'resourceClass': 'Description'})
# emulate the .well-known/core interface
baseObject.create({'resourceName': '.well-known','resourceClass': 'SmartObject'},\
).create({'resourceName': 'core','resourceClass': 'LinkFormatProxy'})
# example description in simple link-format like concepts
baseObject.Description.set((URIRef('sensors/rhvWeather-01'), Literal('resourceClass'), Literal('SmartObject')))
baseObject.Description.set((URIRef('sensors/rhvWeather-01'), Literal('resourceType'), Literal('SensorSystem')))
baseObject.Description.set((URIRef('sensors/rhvWeather-01'), Literal('sensorType'), Literal('Weather')))
#
baseObject.Description.set((URIRef('sensors/rhvWeather-01/outdoor_temperature'), Literal('interfaceType'), Literal('sensor')))
baseObject.Description.set((URIRef('sensors/rhvWeather-01/outdoor_temperature'), Literal('resourceType'), Literal('temperature')))
baseObject.Description.set((URIRef('sensors/rhvWeather-01/outdoor_humidity'), Literal('interfaceType'), Literal('sensor')))
baseObject.Description.set((URIRef('sensors/rhvWeather-01/outdoor_humidity'), Literal('resourceType'), Literal('humidity')))
# sensors resource under the baseObject for all sensors
# top level object container for sensors, default class is SmartObject
sensors = baseObject.create({'resourceName': 'sensors', 'resourceClass': 'SmartObject'})
sensors.create({'resourceName':'Description',\
'resourceClass': 'Description'})
#weather resource under sensors for the weather sensor
# create a default class SmartObject for the weather sensor cluster
weather = sensors.create({'resourceName': 'rhvWeather-01', 'resourceClass': 'SmartObject'})
weather.create({'resourceName':'Description',\
'resourceClass': 'Description'})
# now create an Observable Property for each sensor output
outdoor_temperature = weather.create({'resourceName': 'outdoor_temperature',\
'resourceClass': 'ObservableProperty'})
outdoor_temperature.create({'resourceName':'Description',\
'resourceClass': 'Description'})
outdoor_temperature.Observers = outdoor_temperature.create({'resourceName':'Observers',\
'resourceClass': 'Observers'})
outdoor_temperature.Observers.create({'resourceName': 'mqttTestObserver',\
'resourceClass': 'mqttObserver',\
'connection': 'smartobjectservice.com',\
'pubTopic': ''})
outdoor_humidity = weather.create({'resourceName': 'outdoor_humidity',\
'resourceClass': 'ObservableProperty'})
outdoor_humidity.create({'resourceName':'Description',\
'resourceClass': 'Description'})
outdoor_humidity.Observers = outdoor_humidity.create({'resourceName':'Observers',\
'resourceClass': 'Observers'})
outdoor_humidity.Observers.create({'resourceName': 'mqttTestObserver',\
'resourceClass': 'mqttObserver',\
'connection': 'smartobjectservice.com',\
'pubTopic': ''})
try:
# register handlers etc.
while 1: sleep(1)
except KeyboardInterrupt: pass
print 'got KeyboardInterrupt'