-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEndpoint.java
More file actions
395 lines (308 loc) · 11 KB
/
Endpoint.java
File metadata and controls
395 lines (308 loc) · 11 KB
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
/**
* Copyright (C) 2020, ControlThings Oy Ab
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may
* not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* @license Apache-2.0
*/
package mist.node;
import android.util.Log;
import org.bson.BsonBinaryWriter;
import org.bson.BsonWriter;
import org.bson.io.BasicOutputBuffer;
import addon.AddonException;
import wish.Peer;
/**
* Created by jan on 11/1/16.
*/
public class Endpoint {
private String TAG = "Endpoint";
private static final int MIST_TYPE_UNDEFINED = -1;
private static final int MIST_TYPE_BOOL = 0; /* a true/false value (BSON bool) */
private static final int MIST_TYPE_FLOAT = 1; /* A floating point value (actually a BSON double) */
private static final int MIST_TYPE_INT = 2; /* A 32-bit signed integer (BSON int32) */
private static final int MIST_TYPE_STRING = 3; /* A string, which can be MIST_STRING_EP_MAX_LEN bytes long at most */
private static final int MIST_TYPE_INVOKE = 4; /* An endpoint which represent a function you can call, "invoke" so to speak */
private String parent;
private String id;
private String epid;
private String label = "";
private int type = MIST_TYPE_UNDEFINED;
private String unit = "";
private boolean readable;
private boolean writable;
private boolean invokable;
private Readable readCb;
private Writable writeCb;
private Invokable invokeCb;
public Endpoint(String epid) {
/* Note: fullPath epid must be evaluated, id and parent field set accordingly */
this.epid = epid;
if (epid.lastIndexOf('.') == -1) {
id = epid;
parent = null;
}
else {
id = epid.substring(epid.lastIndexOf('.')+1);
parent = epid.substring(0, epid.lastIndexOf('.'));
}
}
public String getEpid() {
return epid;
}
public Endpoint setLabel(String label) {
this.label = label;
return this;
}
public String getLabel() {
return label;
}
private void setType(int type) {
Log.d(TAG, "setType: " + this.type + " " + type);
if (this.type != MIST_TYPE_UNDEFINED && this.type != type) {
throw new AddonException("Type is already set to: " + this.type + " trying to set it to: " + type );
}
this.type = type;
}
public Endpoint setUnit(String unit) {
this.unit = unit;
return this;
}
public String getUnit() {
return unit;
}
public Endpoint setRead(ReadableBool readableCb) {
setType(MIST_TYPE_BOOL);
readCb = readableCb;
readable = true;
return this;
}
public Endpoint setRead(ReadableInt readableCb) {
setType(MIST_TYPE_INT);
readCb = readableCb;
readable = true;
return this;
}
public Endpoint setRead(ReadableFloat readableCb) {
setType(MIST_TYPE_FLOAT);
readCb = readableCb;
readable = true;
return this;
}
public Endpoint setRead(ReadableString readableCb) {
setType(MIST_TYPE_STRING);
readCb = readableCb;
readable = true;
return this;
}
public Readable getReadCb() {
return readCb;
}
public boolean isReadable() {
return readable;
}
public Endpoint setWrite(WritableBool writableCb) {
setType(MIST_TYPE_BOOL);
writeCb = writableCb;
writable = true;
return this;
}
public Endpoint setWrite(WritableInt writableCb) {
setType(MIST_TYPE_INT);
writeCb = writableCb;
writable = true;
return this;
}
public Endpoint setWrite(WritableFloat writableCb) {
setType(MIST_TYPE_FLOAT);
writeCb = writableCb;
writable = true;
return this;
}
public Endpoint setWrite(WritableString writableCb) {
setType(MIST_TYPE_STRING);
writeCb = writableCb;
writable = true;
return this;
}
public Writable getWriteCb() {
return writeCb;
}
public boolean isWritable() {
return writable;
}
public Endpoint setInvoke(Invokable invokableCb) {
setType(MIST_TYPE_INVOKE); // FIXME this type must only be used for datatypes, must be refactored out from mist-c99
invokeCb = invokableCb;
invokable = true;
return this;
}
public Invokable getInvokeCb() {
return invokeCb;
}
public boolean isInvokable() {
return invokable;
}
public void changed() {
MistNode.getInstance().changed(epid);
}
private static class Response {
protected int requestId;
protected String epid;
public Response(String epid, int requestId) {
this.epid = epid;
this.requestId = requestId;
}
}
private static class Readable {
}
private static class ReadResponse extends Response{
public ReadResponse(String epid, int requestId) {
super(epid, requestId);
if (epid == null) {
error(453, "Response without epid");
return;
}
if (requestId == 0) {
error(453, "Response without requestId");
return;
}
}
public void error(int code, String msg) {
MistNode.getInstance().readError(epid, requestId, code, msg);
}
}
public static abstract class ReadableBool extends Readable {
public abstract void read(Peer peer, ReadableBoolResponse response);
}
public static class ReadableBoolResponse extends ReadResponse {
public ReadableBoolResponse(String epid, int requestId) {
super(epid, requestId);
}
public void send(boolean value) {
BasicOutputBuffer buffer = new BasicOutputBuffer();
BsonWriter writer = new BsonBinaryWriter(buffer);
writer.writeStartDocument();
writer.writeBoolean("data", value);
writer.writeEndDocument();
writer.flush();
MistNode.getInstance().readResponse(epid, requestId, buffer.toByteArray());
}
}
public static abstract class ReadableInt extends Readable {
public abstract void read(Peer peer, ReadableIntResponse response);
}
public static class ReadableIntResponse extends ReadResponse {
public ReadableIntResponse(String epid, int requestId) {
super(epid, requestId);
}
public void send(int value) {
BasicOutputBuffer buffer = new BasicOutputBuffer();
BsonWriter writer = new BsonBinaryWriter(buffer);
writer.writeStartDocument();
writer.writeInt32("data", value);
writer.writeEndDocument();
writer.flush();
MistNode.getInstance().readResponse(epid, requestId, buffer.toByteArray());
}
}
public static abstract class ReadableFloat extends Readable {
public abstract void read(Peer peer, ReadableFloatResponse response);
}
public static class ReadableFloatResponse extends ReadResponse {
public ReadableFloatResponse(String epid, int requestId) {
super(epid, requestId);
}
public void send(float value) {
BasicOutputBuffer buffer = new BasicOutputBuffer();
BsonWriter writer = new BsonBinaryWriter(buffer);
writer.writeStartDocument();
writer.writeDouble("data", value);
writer.writeEndDocument();
writer.flush();
MistNode.getInstance().readResponse(epid, requestId, buffer.toByteArray());
}
}
public static abstract class ReadableString extends Readable {
public abstract void read(Peer peer, ReadableStringResponse response);
}
public static class ReadableStringResponse extends ReadResponse {
public ReadableStringResponse(String epid, int requestId) {
super(epid, requestId);
}
public void send(String value) {
BasicOutputBuffer buffer = new BasicOutputBuffer();
BsonWriter writer = new BsonBinaryWriter(buffer);
writer.writeStartDocument();
writer.writeString("data", value);
writer.writeEndDocument();
writer.flush();
MistNode.getInstance().readResponse(epid, requestId, buffer.toByteArray());
}
}
private static class Writable {
}
public static abstract class WritableBool extends Writable {
public abstract void write(boolean value, Peer peer, WriteResponse response);
}
public static abstract class WritableInt extends Writable {
public abstract void write(int value, Peer peer, WriteResponse response);
}
public static abstract class WritableFloat extends Writable {
public abstract void write(float value, Peer peer, WriteResponse response);
}
public static abstract class WritableString extends Writable {
public abstract void write(String value, Peer peer, WriteResponse response);
}
public static class WriteResponse extends Response {
public WriteResponse(String epid, int requestId) {
super(epid, requestId);
if (epid == null) {
error(454, "Response without epid");
return;
}
if (requestId == 0) {
error(454, "Response without requestId");
return;
}
}
public void send() {
MistNode.getInstance().writeResponse(epid, requestId);
}
public void error(int code, String msg) {
MistNode.getInstance().writeError(epid, requestId, code, msg);
}
}
public static abstract class Invokable {
public abstract void invoke(byte[] args, Peer peer, InvokeResponse response);
}
public static class InvokeResponse extends Response {
public InvokeResponse(String epid, int requestId) {
super(epid, requestId);
if (epid == null) {
error(455, "Response without epid");
return;
}
if (requestId == 0) {
error(455, "Response without requestId");
return;
}
}
public void send(byte[] response) {
/* Note: the response will be wrapped to a document named 'data' on the JNI side
* FIXME this should be modified so that all the send()s of would work the same - either wrap in 'data' on this side, or on the JNI side. */
MistNode.getInstance().invokeResponse(epid, requestId, response);
}
public void error(int code, String msg) {
MistNode.getInstance().invokeError(epid, requestId, code, msg);
}
}
public Endpoint add() {
MistNode.getInstance().addEndpoint(this);
return this;
}
}