-
Notifications
You must be signed in to change notification settings - Fork 80
/
counter.js
277 lines (276 loc) · 9.61 KB
/
counter.js
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
/********************************************************************************
* Copyright (c) 2022 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0, or the W3C Software Notice and
* Document License (2015-05-13) which is available at
* https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document.
*
* SPDX-License-Identifier: EPL-2.0 OR W3C-20150513
********************************************************************************/
// This is an example Thing script.
// It has a count property that can be incremented or decremented via actions and its changes are reported via events.
// It also has two properties that return an image. The SVG property is also influenced by the increment and decrement actions.
// Features
// * basic properties, actions, events
// * local/global uriVariables
// * multi-language
// * image contentTypes for properties (Note: the contentType applies to all forms of the property)
// * links with entry containing rel and sizes
let count;
let lastChange;
WoT.produce({
title: "Counter",
titles: {
en: "Counter",
de: "Zähler",
it: "Contatore",
},
description: "Counter example Thing",
descriptions: {
en: "Counter example Thing",
de: "Zähler Beispiel Ding",
it: "Contatore di esempio",
},
support: "https://github.com/eclipse-thingweb/node-wot/",
links: [
{
href: "https://www.thingweb.io/img/favicon/favicon.png",
sizes: "16x14",
rel: "icon",
},
],
"@context": [
"https://www.w3.org/2019/wot/td/v1",
"https://www.w3.org/2022/wot/td/v1.1",
{
iot: "http://example.org/iot",
},
],
uriVariables: {
step: {
type: "integer",
minimum: 1,
maximum: 250,
},
},
properties: {
count: {
title: "Count",
titles: {
en: "Count",
de: "Zähler",
it: "Valore",
},
type: "integer",
description: "Current counter value",
descriptions: {
en: "Current counter value",
de: "Derzeitiger Zählerwert",
it: "Valore attuale del contatore",
},
"iot:Custom": "example annotation",
observable: true,
readOnly: true,
},
countAsImage: {
description: "Current counter value as SVG image",
descriptions: {
en: "Current counter value as SVG image",
de: "Aktueller Zählerwert als SVG-Bild",
it: "Valore attuale del contatore come immagine SVG",
},
observable: false,
readOnly: true,
uriVariables: {
fill: {
type: "string",
},
},
forms: [
{
contentType: "image/svg+xml",
},
],
},
redDotImage: {
description: "Red dot image as PNG",
descriptions: {
en: "Red dot image as PNG",
de: "Rotes Punktbild als PNG",
it: "Immagine punto rosso come PNG",
},
observable: false,
readOnly: true,
forms: [
{
contentType: "image/png;base64",
},
],
},
lastChange: {
title: "Last change",
titles: {
en: "Last change",
de: "Letzte Zählerwertänderung",
it: "Ultima modifica",
},
type: "string",
description: "Last change of counter value",
descriptions: {
en: "Last change of counter value",
de: "Letzte Änderung",
it: "Ultima modifica del valore",
},
observable: true,
readOnly: true,
},
},
actions: {
increment: {
title: "Increment",
titles: {
en: "Increment",
de: "Erhöhen",
it: "Incrementa",
},
description: "Increment counter value",
descriptions: {
en: "Increment counter value",
de: "Zählerwert erhöhen",
it: "Incrementa il valore del contatore",
},
},
decrement: {
title: "Decrement",
titles: {
en: "Decrement",
de: "Verringern",
it: "Decrementa",
},
description: "Decrementing counter value",
descriptions: {
en: "Decrementing counter value",
de: "Zählerwert verringern",
it: "Decrementare il valore del contatore",
},
},
reset: {
title: "Reset",
titles: {
en: "Reset",
de: "Zurücksetzen",
it: "Reset",
},
description: "Resetting counter value",
descriptions: {
en: "Resetting counter value",
de: "Zählerwert zurücksetzen",
it: "Resettare il valore del contatore",
},
},
},
events: {
change: {
title: "Changed",
titles: {
en: "Changed",
de: "Geändert",
it: "Valore modificato",
},
description: "Change event",
descriptions: {
en: "Change event",
de: "Änderungsereignis",
it: "Valore modificato",
},
},
},
})
.then((thing) => {
console.log("Produced " + thing.getThingDescription().title);
// init property values
count = 0;
lastChange = new Date().toISOString();
// set property handlers (using async-await)
thing.setPropertyReadHandler("count", async () => count);
thing.setPropertyReadHandler("lastChange", async () => lastChange);
thing.setPropertyReadHandler("countAsImage", async (options) => {
let fill = "black";
if (options && typeof options === "object" && "uriVariables" in options) {
console.log("options = " + JSON.stringify(options));
if (options.uriVariables && "fill" in options.uriVariables) {
const uriVariables = options.uriVariables;
fill = uriVariables.fill;
}
}
return (
"<svg xmlns='http://www.w3.org/2000/svg' height='30' width='200'>" +
"<text x='0' y='15' fill='" +
fill +
"'>" +
count +
"</text>" +
"</svg>"
);
});
thing.setPropertyReadHandler(
"redDotImage",
async () =>
"iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAHElEQVQI12P4//8/w38GIAXDIBKE0DHxgljNBAAO9TXL0Y4OHwAAAABJRU5ErkJggg=="
);
// set action handlers (using async-await)
thing.setActionHandler("increment", async (params, options) => {
let step = 1;
if (options && typeof options === "object" && "uriVariables" in options) {
console.log("options = " + JSON.stringify(options));
if (options.uriVariables && "step" in options.uriVariables) {
const uriVariables = options.uriVariables;
step = uriVariables.step;
}
}
const newValue = count + step;
console.log("Incrementing count from " + count + " to " + newValue + " (with step " + step + ")");
count = newValue;
lastChange = new Date().toISOString();
thing.emitEvent("change", count);
thing.emitPropertyChange("count");
return undefined;
});
thing.setActionHandler("decrement", async (params, options) => {
let step = 1;
if (options && typeof options === "object" && "uriVariables" in options) {
console.log("options = " + JSON.stringify(options));
if (options.uriVariables && "step" in options.uriVariables) {
const uriVariables = options.uriVariables;
step = uriVariables.step;
}
}
const newValue = count - step;
console.log("Decrementing count from " + count + " to " + newValue + " (with step " + step + ")");
count = newValue;
lastChange = new Date().toISOString();
thing.emitEvent("change", count);
thing.emitPropertyChange("count");
return undefined;
});
thing.setActionHandler("reset", async (params, options) => {
console.log("Resetting count");
count = 0;
lastChange = new Date().toISOString();
thing.emitEvent("change", count);
thing.emitPropertyChange("count");
return undefined;
});
// expose the thing
thing.expose().then(() => {
console.info(thing.getThingDescription().title + " ready");
});
})
.catch((e) => {
console.log(e);
});