forked from MiniZinc/cpp-integration
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Message.java
449 lines (365 loc) · 11.9 KB
/
Message.java
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
package cpp;
import java.util.*;
public class Message {
public static final int PROFILER_PROTOCOL_VERSION = 3;
public enum NodeStatus {
SOLVED(0), // Node representing a solution
FAILED(1), // Node representing failure
BRANCH(2), // Node representing a branch
SKIPPED(3); // Skipped by backjumping
private final int value;
NodeStatus(int value) {
this.value = value;
}
public int getValue() {
return value;
}
public static NodeStatus fromValue(int value) {
for (NodeStatus status : values()) {
if (status.value == value) return status;
}
throw new IllegalArgumentException("Unknown NodeStatus value: " + value);
}
}
public enum MsgType {
NODE(0),
DONE(1),
START(2),
RESTART(3);
private final int value;
MsgType(int value) {
this.value = value;
}
public int getValue() {
return value;
}
public static MsgType fromValue(int value) {
for (MsgType type : values()) {
if (type.value == value) return type;
}
throw new IllegalArgumentException("Unknown MsgType value: " + value);
}
}
private MsgType type;
private int node;
private int parent;
private int restartCount;
private int alt;
private int kids;
private NodeStatus status;
private boolean haveLabel = false;
private String label;
private boolean haveNogood = false;
private String nogood;
private boolean haveInfo = false;
private String info;
private boolean haveVersion = false;
private int version;
public boolean isNode() {
return type == MsgType.NODE;
}
public boolean isDone() {
return type == MsgType.DONE;
}
public boolean isStart() {
return type == MsgType.START;
}
public boolean isRestart() {
return type == MsgType.RESTART;
}
public int getNodeUID() {
return node;
}
public void setNodeUID(int node) {
this.node = node;
}
public int getParentUID() {
return parent;
}
public void setParentUID(int parent) {
this.parent = parent;
}
public int getRestartCount() {
return restartCount;
}
public void setRestartCount(int restartCount) {
this.restartCount = restartCount;
}
public int getAlt() {
return alt;
}
public void setAlt(int alt) {
this.alt = alt;
}
public int getKids() {
return kids;
}
public void setKids(int kids) {
this.kids = kids;
}
public NodeStatus getStatus() {
return status;
}
public void setStatus(NodeStatus status) {
this.status = status;
}
public void setLabel(String label) {
haveLabel = true;
this.label = label;
}
public void setInfo(String info) {
haveInfo = true;
this.info = info;
}
public void setNogood(String nogood) {
haveNogood = true;
this.nogood = nogood;
}
public void setVersion(int version) {
haveVersion = true;
this.version = version;
}
public boolean hasVersion() {
return haveVersion;
}
public int getVersion() {
return version;
}
public boolean hasLabel() {
return haveLabel;
}
public String getLabel() {
return label;
}
public boolean hasNogood() {
return haveNogood;
}
public String getNogood() {
return nogood;
}
public boolean hasInfo() {
return haveInfo;
}
public String getInfo() {
return info;
}
public void setType(MsgType type) {
this.type = type;
}
public MsgType getType() {
return type;
}
public void reset() {
haveLabel = false;
haveNogood = false;
haveInfo = false;
haveVersion = false;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("Message{");
sb.append("type=").append(type);
if (isNode()) {
sb.append(", node=").append(node);
sb.append(", parent=").append(parent);
sb.append(", restartCount=").append(restartCount);
sb.append(", alt=").append(alt);
sb.append(", kids=").append(kids);
sb.append(", status=").append(status);
}
if (haveLabel) {
sb.append(", label='").append(label).append('\'');
}
if (haveNogood) {
sb.append(", nogood='").append(nogood).append('\'');
}
if (haveInfo) {
sb.append(", info='").append(info).append('\'');
}
if (haveVersion) {
sb.append(", version=").append(version);
}
sb.append('}');
return sb.toString();
}
public static class MessageMarshalling {
private enum Field {
LABEL(0),
NOGOOD(1),
INFO(2),
VERSION(3);
private final int value;
Field(int value) {
this.value = value;
}
public int getValue() {
return value;
}
public static Field fromValue(int value) {
for (Field field : values()) {
if (field.value == value) return field;
}
throw new IllegalArgumentException("Unknown Field value: " + value);
}
}
private final Message msg = new Message();
private static void serializeType(List<Byte> data, MsgType f) {
data.add((byte) f.getValue());
}
private static void serializeField(List<Byte> data, Field f) {
data.add((byte) f.getValue());
}
private static void serialize(List<Byte> data, int i) {
data.add((byte) ((i >> 24) & 0xFF));
data.add((byte) ((i >> 16) & 0xFF));
data.add((byte) ((i >> 8) & 0xFF));
data.add((byte) (i & 0xFF));
}
private static void serialize(List<Byte> data, NodeStatus s) {
data.add((byte) s.getValue());
}
private static void serialize(List<Byte> data, String s) {
serialize(data, s.length());
for (char c : s.toCharArray()) {
data.add((byte) c);
}
}
private static MsgType deserializeMsgType(ListIterator<Byte> it) {
return MsgType.fromValue(it.next());
}
private static Field deserializeField(ListIterator<Byte> it) {
return Field.fromValue(it.next());
}
private static int deserializeInt(ListIterator<Byte> it) {
int b1 = Byte.toUnsignedInt(it.next());
int b2 = Byte.toUnsignedInt(it.next());
int b3 = Byte.toUnsignedInt(it.next());
int b4 = Byte.toUnsignedInt(it.next());
return (b1 << 24) | (b2 << 16) | (b3 << 8) | b4;
}
private static NodeStatus deserializeStatus(ListIterator<Byte> it) {
return NodeStatus.fromValue(it.next());
}
private static String deserializeString(ListIterator<Byte> it) {
int size = deserializeInt(it);
StringBuilder result = new StringBuilder(size);
for (int i = 0; i < size; i++) {
result.append((char) (byte) it.next());
}
return result.toString();
}
public Message makeNode(int node, int parent, int restartCount, int alt, int kids, NodeStatus status) {
msg.reset();
msg.setType(MsgType.NODE);
msg.setNodeUID(node);
msg.setParentUID(parent);
msg.setRestartCount(restartCount);
msg.setAlt(alt);
msg.setKids(kids);
msg.setStatus(status);
return msg;
}
public void makeStart(String info) {
msg.reset();
msg.setType(MsgType.START);
msg.setVersion(PROFILER_PROTOCOL_VERSION);
msg.setInfo(info);
}
public void makeRestart(String info) {
msg.reset();
msg.setType(MsgType.RESTART);
msg.setInfo(info);
}
public void makeDone() {
msg.reset();
msg.setType(MsgType.DONE);
}
public Message getMessage() {
return msg;
}
public List<Byte> serialize() {
List<Byte> data = new ArrayList<>();
// int dataSize = 1 + (msg.isNode() ? 4 * 8 + 1 : 0) +
// (msg.hasLabel() ? 1 + 4 + msg.getLabel().length() : 0) +
// (msg.hasNogood() ? 1 + 4 + msg.getNogood().length() : 0) +
// (msg.hasInfo() ? 1 + 4 + msg.getInfo().length() : 0);
// data.ensureCapacity(dataSize);
serializeType(data, msg.getType());
if (msg.isNode()) {
int n_uid = msg.getNodeUID();
serialize(data, n_uid);
serialize(data, msg.getRestartCount());
serialize(data, 0); // thread id
int p_uid = msg.getParentUID();
serialize(data, p_uid);
serialize(data, msg.getRestartCount());
serialize(data, 0); // thread id
serialize(data, msg.getAlt());
serialize(data, msg.getKids());
serialize(data, msg.getStatus());
}
if (msg.hasVersion()) {
serializeField(data, Field.VERSION);
serialize(data, msg.getVersion());
}
if (msg.hasLabel()) {
serializeField(data, Field.LABEL);
serialize(data, msg.getLabel());
}
if (msg.hasNogood()) {
serializeField(data, Field.NOGOOD);
serialize(data, msg.getNogood());
}
if (msg.hasInfo()) {
serializeField(data, Field.INFO);
serialize(data, msg.getInfo());
}
return data;
}
public void deserialize(byte[] data, int size) {
ListIterator<Byte> it = toByteList(data).listIterator();
msg.setType(deserializeMsgType(it));
if (msg.isNode()) {
int nid = deserializeInt(it);
msg.setNodeUID(nid);
deserializeInt(it); // restartCount
deserializeInt(it); // thread id
nid = deserializeInt(it);
msg.setParentUID(nid);
deserializeInt(it); // restartCount
deserializeInt(it); // thread id
msg.setAlt(deserializeInt(it));
msg.setKids(deserializeInt(it));
msg.setStatus(deserializeStatus(it));
}
msg.reset();
while (it.hasNext()) {
Field f = deserializeField(it);
switch (f) {
case VERSION:
msg.setVersion(deserializeInt(it));
break;
case LABEL:
msg.setLabel(deserializeString(it));
break;
case NOGOOD:
msg.setNogood(deserializeString(it));
break;
case INFO:
msg.setInfo(deserializeString(it));
break;
default:
break;
}
}
}
private List<Byte> toByteList(byte[] bytes) {
List<Byte> byteList = new ArrayList<>(bytes.length);
for (byte b : bytes) {
byteList.add(b);
}
return byteList;
}
}
}