forked from skjolber/external-nfc-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Acr1255UReader.java
588 lines (491 loc) · 17.3 KB
/
Acr1255UReader.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
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
package com.skjolberg.nfc.acs;
import android.os.IBinder;
import android.os.Parcel;
import android.os.RemoteException;
import com.skjolberg.nfc.acs.remote.IAcr1255UReaderControl;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
public class Acr1255UReader extends AcrReader {
private static final String TAG = Acr1255UReader.class.getName();
public static final int LED_1_GREEN = 1;
public static final int LED_1_RED = 2;
public static final int LED_2_BLUE = 4;
public static final int LED_2_RED = 8;
private static final int ICC_ACTIVATION_STATUS_LED = 1 << 0;
private static final int PICC_POLLING_STATUS_LED = 1 << 1;
// bit 2 RFU
// bit 3 RFU
private static final int CARD_INSERTION_AND_REMOVAL_EVENTS_BUZZER = 1 << 4;
private static final int CONTACTLESS_CHIP_RESET_INDICATION_BUZZER = 1 << 5;
private static final int EXCLUSIVE_MODE_STATUS_BUZZER = 1 << 6;
private static final int LED_CARD_OPERATION_BLINK = 1 << 7;
private static final int POLL_ISO14443_TYPE_A = 1;
private static final int POLL_ISO14443_TYPE_B = 1 << 1;
private static final int POLL_FELICA_212K = 1 << 2;
private static final int POLL_FELICA_424K = 1 << 3;
private static final int POLL_TOPAZ = 1 << 4;
private static final int RATE_106K = 0;
private static final int RATE_212K = 1;
private static final int RATE_424K = 2;
private static final byte PICC_POWER_OFF = 0x00;
private static final byte PICC_IDLE = 0x01;
private static final byte PICC_READY = 0x02;
private static final byte PICC_SELECTED = 0x03;
private static final byte PICC_ACTIVE = 0x04;
private static final byte BLUETOOTH_TRANSMISSION_POWER_DISTANCE_3M = 0x00;
private static final byte BLUETOOTH_TRANSMISSION_POWER_DISTANCE_7M = 0x01;
private static final byte BLUETOOTH_TRANSMISSION_POWER_DISTANCE_17M = 0x02;
private static final byte BLUETOOTH_TRANSMISSION_POWER_DISTANCE_25M = 0x03;
public static int serializeBehaviour(AcrDefaultLEDAndBuzzerBehaviour... types) {
int operation = 0;
for(AcrDefaultLEDAndBuzzerBehaviour type : types) {
if(type == AcrDefaultLEDAndBuzzerBehaviour.ICC_ACTIVATION_STATUS_LED) {
operation |= ICC_ACTIVATION_STATUS_LED;
} else if(type == AcrDefaultLEDAndBuzzerBehaviour.PICC_POLLING_STATUS_LED) {
operation |= PICC_POLLING_STATUS_LED;
} else if(type == AcrDefaultLEDAndBuzzerBehaviour.CARD_INSERTION_AND_REMOVAL_EVENTS_BUZZER) {
operation |= CARD_INSERTION_AND_REMOVAL_EVENTS_BUZZER;
} else if(type == AcrDefaultLEDAndBuzzerBehaviour.CONTACTLESS_CHIP_RESET_INDICATION_BUZZER) {
operation |= CONTACTLESS_CHIP_RESET_INDICATION_BUZZER;
} else if(type == AcrDefaultLEDAndBuzzerBehaviour.EXCLUSIVE_MODE_STATUS_BUZZER) {
operation |= EXCLUSIVE_MODE_STATUS_BUZZER;
} else if(type == AcrDefaultLEDAndBuzzerBehaviour.CARD_OPERATION_BLINK_LED) {
operation |= LED_CARD_OPERATION_BLINK;
} else {
throw new IllegalArgumentException("Behaviour " + type + " not supported");
}
}
return operation;
}
public static List<AcrDefaultLEDAndBuzzerBehaviour> parseBehaviour(int operation) {
List<AcrDefaultLEDAndBuzzerBehaviour> behaviours = new ArrayList<AcrDefaultLEDAndBuzzerBehaviour>();
if((operation & ICC_ACTIVATION_STATUS_LED) != 0) {
behaviours.add(AcrDefaultLEDAndBuzzerBehaviour.ICC_ACTIVATION_STATUS_LED);
}
if((operation & PICC_POLLING_STATUS_LED) != 0) {
behaviours.add(AcrDefaultLEDAndBuzzerBehaviour.PICC_POLLING_STATUS_LED);
}
if((operation & CARD_INSERTION_AND_REMOVAL_EVENTS_BUZZER) != 0) {
behaviours.add(AcrDefaultLEDAndBuzzerBehaviour.CARD_INSERTION_AND_REMOVAL_EVENTS_BUZZER);
}
if((operation & CONTACTLESS_CHIP_RESET_INDICATION_BUZZER) != 0) {
behaviours.add(AcrDefaultLEDAndBuzzerBehaviour.CONTACTLESS_CHIP_RESET_INDICATION_BUZZER);
}
if((operation & EXCLUSIVE_MODE_STATUS_BUZZER) != 0) {
behaviours.add(AcrDefaultLEDAndBuzzerBehaviour.EXCLUSIVE_MODE_STATUS_BUZZER);
}
if((operation & LED_CARD_OPERATION_BLINK) != 0) {
behaviours.add(AcrDefaultLEDAndBuzzerBehaviour.CARD_OPERATION_BLINK_LED);
}
return behaviours;
}
protected IAcr1255UReaderControl readerControl;
public Acr1255UReader(String name, IAcr1255UReaderControl readerControl) {
this.name = name;
this.readerControl = readerControl;
}
public String getFirmware() throws AcrReaderException {
byte[] response;
try {
response = readerControl.getFirmware();
} catch (RemoteException e) {
throw new AcrReaderException(e);
}
return readString(response);
}
public String getSerialNumber() throws AcrReaderException {
byte[] response;
try {
response = readerControl.getSerialNumber();
} catch (RemoteException e) {
throw new AcrReaderException(e);
}
return readString(response);
}
public List<AcrPICC> getPICC() {
byte[] response;
try {
response = readerControl.getPICC();
} catch (RemoteException e) {
throw new AcrReaderException(e);
}
int operation = readInteger(response);
ArrayList<AcrPICC> values = new ArrayList<AcrPICC>();
if((operation & POLL_ISO14443_TYPE_B) != 0) {
values.add(AcrPICC.POLL_ISO14443_TYPE_B);
}
if((operation & POLL_ISO14443_TYPE_A) != 0) {
values.add(AcrPICC.POLL_ISO14443_TYPE_A);
}
if((operation & POLL_FELICA_424K) != 0) {
values.add(AcrPICC.POLL_FELICA_424K);
}
if((operation & POLL_FELICA_212K) != 0) {
values.add(AcrPICC.POLL_FELICA_212K);
}
if((operation & POLL_TOPAZ) != 0) {
values.add(AcrPICC.POLL_TOPAZ);
}
return values;
}
public boolean setPICC(AcrPICC ... types) {
int picc = 0;
for(AcrPICC type : types) {
switch(type) {
case POLL_ISO14443_TYPE_A:{
picc |= Acr1255UReader.POLL_ISO14443_TYPE_A;
break;
}
case POLL_ISO14443_TYPE_B: {
picc |= Acr1255UReader.POLL_ISO14443_TYPE_B;
break;
}
case POLL_FELICA_424K: {
picc |= Acr1255UReader.POLL_FELICA_424K;
break;
}
case POLL_FELICA_212K: {
picc |= Acr1255UReader.POLL_FELICA_212K;
break;
}
case POLL_TOPAZ: {
picc |= Acr1255UReader.POLL_TOPAZ;
break;
}
default : {
throw new IllegalArgumentException("Unexpected PICC " + type);
}
}
}
byte[] response;
try {
response = readerControl.setPICC(picc);
} catch (RemoteException e) {
throw new AcrReaderException(e);
}
return readBoolean(response);
}
@Override
public int describeContents() {
return 0;
}
@Override
public void writeToParcel(Parcel dest, int flags) {
dest.writeString(name);
dest.writeStrongBinder(readerControl.asBinder());
}
public static final Creator<Acr1255UReader> CREATOR =
new Creator<Acr1255UReader>() {
@Override
public Acr1255UReader createFromParcel(Parcel in) {
String name = in.readString();
IBinder binder = in.readStrongBinder();
IAcr1255UReaderControl iin = IAcr1255UReaderControl.Stub.asInterface(binder);
return new Acr1255UReader(name, iin);
}
@Override
public Acr1255UReader[] newArray(int size) {
return new Acr1255UReader[size];
}
};
@Override
public byte[] control(int slotNum, int controlCode, byte[] command) {
byte[] response;
try {
response = readerControl.control(slotNum, controlCode, command);
} catch (RemoteException e) {
throw new AcrReaderException(e);
}
return readByteArray(response);
}
@Override
public byte[] transmit(int slotNum, byte[] command) {
byte[] response;
try {
response = readerControl.transmit(slotNum, command);
} catch (RemoteException e) {
throw new AcrReaderException(e);
}
return readByteArray(response);
}
public List<Set<AcrLED>> getLEDs() {
byte[] response;
try {
response = readerControl.getLEDs();
} catch (RemoteException e) {
throw new AcrReaderException(e);
}
int operation = response[0] & 0xFF;
Set<AcrLED> first = new HashSet<AcrLED>();
Set<AcrLED> second = new HashSet<AcrLED>();
if((operation & LED_1_GREEN) != 0) {
first.add(AcrLED.GREEN);
}
if((operation & LED_1_RED) != 0) {
first.add(AcrLED.RED);
}
if((operation & LED_2_BLUE) != 0) {
second.add(AcrLED.BLUE);
}
if((operation & LED_2_RED) != 0) {
second.add(AcrLED.RED);
}
return Arrays.asList(first, second);
}
public boolean setLEDs(Set<AcrLED> first, Set<AcrLED> second) {
byte[] response;
try {
int operation = 0;
for(AcrLED type : first) {
if(type == AcrLED.GREEN) {
operation |= LED_1_GREEN;
} else if(type == AcrLED.RED) {
operation |= LED_1_RED;
} else {
throw new IllegalArgumentException("LED " + type + " not supported for LED #1");
}
}
for(AcrLED type : second) {
if(type == AcrLED.BLUE) {
operation |= LED_2_BLUE;
} else if(type == AcrLED.RED) {
operation |= LED_2_RED;
} else {
throw new IllegalArgumentException("LED " + type + " not supported for LED #2");
}
}
response = readerControl.setLEDs(operation);
} catch (RemoteException e) {
throw new AcrReaderException(e);
}
return readBoolean(response);
}
public List<AcrAutomaticPICCPolling> getAutomaticPICCPolling() {
byte[] response;
try {
response = readerControl.getAutomaticPICCPolling();
} catch (RemoteException e) {
throw new AcrReaderException(e);
}
return AcrAutomaticPICCPolling.parse(readInteger(response));
}
public boolean setAutomaticPICCPolling(AcrAutomaticPICCPolling ... types) {
byte[] response;
try {
response = readerControl.setAutomaticPICCPolling(AcrAutomaticPICCPolling.serialize(types));
} catch (RemoteException e) {
throw new AcrReaderException(e);
}
return readBoolean(response);
}
public List<AcrDefaultLEDAndBuzzerBehaviour> getDefaultLEDAndBuzzerBehaviour() {
byte[] response;
try {
response = readerControl.getDefaultLEDAndBuzzerBehaviour();
} catch (RemoteException e) {
throw new AcrReaderException(e);
}
return parseBehaviour(readInteger(response));
}
public boolean setDefaultLEDAndBuzzerBehaviour(AcrDefaultLEDAndBuzzerBehaviour ... types) {
byte[] response;
try {
int operation = serializeBehaviour(types);
response = readerControl.setDefaultLEDAndBuzzerBehaviour(operation);
} catch (RemoteException e) {
throw new AcrReaderException(e);
}
return readBoolean(response);
}
public boolean setAutoPPS(AcrCommunicationSpeed tx, AcrCommunicationSpeed rx) {
byte[] response;
try {
byte[] speed = new byte[2];
if(tx == AcrCommunicationSpeed.RATE_106_Kbps) {
speed[0] = RATE_106K;
} else if(tx == AcrCommunicationSpeed.RATE_212_Kbps) {
speed[0] = RATE_212K;
} else if(tx == AcrCommunicationSpeed.RATE_424_Kbps) {
speed[0] = RATE_424K;
} else throw new IllegalArgumentException("Unexpected rate " + tx);
if(rx == AcrCommunicationSpeed.RATE_106_Kbps) {
speed[1] = RATE_106K;
} else if(rx == AcrCommunicationSpeed.RATE_212_Kbps) {
speed[1] = RATE_212K;
} else if(rx == AcrCommunicationSpeed.RATE_424_Kbps) {
speed[1] = RATE_424K;
} else throw new IllegalArgumentException("Unexpected rate " + rx);
response = readerControl.setAutoPPS(speed);
} catch (RemoteException e) {
throw new AcrReaderException(e);
}
return readBoolean(response);
}
/**
* Read Auto PPS.
*
* @return list of Max Tx Speed, Current Tx Speed, Max Rx Speed, Current Rx Speed
*/
public List<AcrCommunicationSpeed> getAutoPPS() {
byte[] response;
try {
response = readerControl.getAutoPPS();
} catch (RemoteException e) {
throw new AcrReaderException(e);
}
byte[] resultByteArray = readByteArray(response);
List<AcrCommunicationSpeed> list = new ArrayList<AcrCommunicationSpeed>();
for(byte b : resultByteArray) {
list.add(parse(b));
}
return list;
}
private AcrCommunicationSpeed parse(byte b) {
if(b == RATE_106K) {
return AcrCommunicationSpeed.RATE_106_Kbps;
} else if(b == RATE_212K) {
return AcrCommunicationSpeed.RATE_212_Kbps;
} else if(b == RATE_424K) {
return AcrCommunicationSpeed.RATE_424_Kbps;
} else throw new IllegalArgumentException("Unexpected communication speed " + Integer.toHexString(0xFF & b));
}
public boolean setAntennaField(boolean on) {
byte[] response;
try {
response = readerControl.setAntennaField(on);
} catch (RemoteException e) {
throw new AcrReaderException(e);
}
return readBoolean(response);
}
public AcrAntennaFieldStatus getAntennaFieldStatus() {
byte[] response;
try {
response = readerControl.getAntennaFieldStatus();
} catch (RemoteException e) {
throw new AcrReaderException(e);
}
byte status = readByte(response);
switch(status) {
case PICC_POWER_OFF : {
return AcrAntennaFieldStatus.PICC_POWER_OFF;
}
case PICC_IDLE : {
return AcrAntennaFieldStatus.PICC_IDLE;
}
case PICC_READY: {
return AcrAntennaFieldStatus.PICC_READY;
}
case PICC_SELECTED: {
return AcrAntennaFieldStatus.PICC_SELECTED;
}
case PICC_ACTIVE : {
return AcrAntennaFieldStatus.PICC_ACTIVE;
}
}
throw new IllegalArgumentException("Unknown antenna field status " + Integer.toHexString(status & 0xFF));
}
public AcrBluetoothTransmissionPower getBluetoothTransmissionPower() {
byte[] response;
try {
response = readerControl.getBluetoothTransmissionPower();
} catch (RemoteException e) {
throw new AcrReaderException(e);
}
byte status = readByte(response);
switch(status) {
case BLUETOOTH_TRANSMISSION_POWER_DISTANCE_3M : {
return AcrBluetoothTransmissionPower.DISTANCE_3M;
}
case BLUETOOTH_TRANSMISSION_POWER_DISTANCE_7M : {
return AcrBluetoothTransmissionPower.DISTANCE_7M;
}
case BLUETOOTH_TRANSMISSION_POWER_DISTANCE_17M: {
return AcrBluetoothTransmissionPower.DISTANCE_17M;
}
case BLUETOOTH_TRANSMISSION_POWER_DISTANCE_25M: {
return AcrBluetoothTransmissionPower.DISTANCE_25M;
}
}
throw new IllegalArgumentException("Unknown bluetooth transmission power " + Integer.toHexString(status & 0xFF));
}
public boolean setBluetoothTransmissionPower(AcrBluetoothTransmissionPower distance) {
byte code;
switch(distance) {
case DISTANCE_3M: {
code = BLUETOOTH_TRANSMISSION_POWER_DISTANCE_3M;
break;
}
case DISTANCE_7M: {
code = BLUETOOTH_TRANSMISSION_POWER_DISTANCE_7M;
break;
}
case DISTANCE_17M: {
code = BLUETOOTH_TRANSMISSION_POWER_DISTANCE_17M;
break;
}
case DISTANCE_25M: {
code = BLUETOOTH_TRANSMISSION_POWER_DISTANCE_25M;
break;
}
default : {
throw new IllegalArgumentException("Unknown distance " + distance);
}
}
byte[] response;
try {
response = readerControl.setBluetoothTransmissionPower(code);
} catch (RemoteException e) {
throw new AcrReaderException(e);
}
return readBoolean(response);
}
/**
*
*/
public boolean setSleepModeOption(int seconds) {
byte option;
switch(seconds) {
case 60: {
option = 0x00;
break;
}
case 90: {
option = 0x01;
break;
}
case 120: {
option = 0x02;
break;
}
case 180: {
option = 0x03;
break;
}
case -1: {
option = 0x04;
break;
}
default : {
throw new IllegalArgumentException("Unsupported sleep time " + seconds + " seconds");
}
}
/*
00h = 60 seconds
01h = 90 seconds
02h = 120 seconds
03h = 180 seconds
04h = No Sleep
*/
byte[] response;
try {
response = readerControl.setSleepModeOption(option);
} catch (RemoteException e) {
throw new AcrReaderException(e);
}
return readBoolean(response);
}
}