use of es.inteco.labs.android.usb.device.exception.UsbCommandTransmissionException in project jmulticard by ctt-gob-es.
the class SmartCardUsbDevice method resetCCID.
/**
* Manda un reset al dispositivo CCID.
* @return ATR devuelto por el dispositivo
* @throws UsbDeviceException
* @throws NotAvailableUSBDeviceException
*/
public ATR resetCCID() throws UsbDeviceException, NotAvailableUSBDeviceException {
if (!isCardPresent()) {
// $NON-NLS-1$
throw new UsbDeviceException("No se ha detectado una tarjeta en el lector");
}
try {
// PowerOff
final UsbCommand powerOffCommand = UsbInstructionFactory.getInstance().getIccPowerOffCommand();
final UsbResponse powerOffResponse = getChannel().transmit(powerOffCommand);
if (!powerOffResponse.isOk()) {
// $NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
throw new UsbDeviceException("Imposible enviar PowerOff al terminal [" + HexUtils.hexify(new byte[] { powerOffResponse.getStatus() }, false) + "] - (" + HexUtils.hexify(new byte[] { powerOffResponse.getError() }, false) + ")");
}
// PowerOn
final UsbCommand powerOnCommand = UsbInstructionFactory.getInstance().getIccPowerOnCommand();
final UsbResponse powerOnResponse = getChannel().transmit(powerOnCommand);
if (powerOnResponse.isOk()) {
return new ATR(powerOnResponse.getDataBytes());
}
// $NON-NLS-1$
throw new UsbDeviceException("Imposible enviar PowerOn al terminal");
} catch (final UsbCommandTransmissionException e) {
throw new UsbDeviceException(e);
} catch (final UsbResponseException e) {
throw new UsbDeviceException(e);
} catch (final UsbSmartCardChannelException e) {
// Es necesario reconectar
if (this.flag_reconnect_channel++ < MAX_RECONNECT_CHANNEL_RETRIES) {
releaseChannel();
return resetCCID();
}
throw new UsbDeviceException(e);
}
}
use of es.inteco.labs.android.usb.device.exception.UsbCommandTransmissionException in project jmulticard by ctt-gob-es.
the class SmartCardChannel method usbRetrieveResponse.
/**
* Recoge la respuesta de un comando USB a través del Endpoint IN
* @param responseSize Tamaño de respuesta esperado
* @return Respuesta al comando USB
* @throws UsbCommandTransmissionException
*/
private byte[] usbRetrieveResponse(final int responseSize) throws UsbCommandTransmissionException {
final byte[] responseBuffer = new byte[responseSize];
final int dataTransferred = this.usbDeviceConnection.bulkTransfer(this.endPointIn, responseBuffer, responseBuffer.length, TIMEOUT_MS);
if (dataTransferred >= 0) {
return HexUtils.subArray(responseBuffer, 0, dataTransferred);
}
// $NON-NLS-1$ //$NON-NLS-2$
throw new UsbCommandTransmissionException("Error al recibir respuesta del comando [" + dataTransferred + "]");
}
use of es.inteco.labs.android.usb.device.exception.UsbCommandTransmissionException in project jmulticard by ctt-gob-es.
the class SmartCardUsbDevice method transmit.
/**
* Envía una APDU al dispositivo.
* @param apdu Comando APDU
* @return Respuesta al envío (APDU respuesta)
* @throws UsbDeviceException
* @throws NotAvailableUSBDeviceException
*/
public byte[] transmit(final byte[] apdu) throws UsbDeviceException, NotAvailableUSBDeviceException {
try {
final UsbCommand xfrBlock = UsbInstructionFactory.getInstance().getXfrBlockCommand(apdu);
final UsbResponse response = getChannel().transmit(xfrBlock);
if (response.isOk()) {
this.flag_transmit_retries = 0;
this.flag_reconnect_channel = 0;
return response.getDataBytes();
}
// $NON-NLS-1$
throw new UsbDeviceException("Error en la transmision de la APDU");
} catch (final UsbCommandTransmissionException e) {
// Es necesario reconectar
if (this.flag_transmit_retries++ < MAX_TRANSMIT_RETRIES) {
SystemClock.sleep(RETRY_TIMEOUT);
return transmit(apdu);
}
throw new UsbDeviceException(e);
} catch (final UsbResponseException e) {
throw new UsbDeviceException(e);
} catch (final UsbSmartCardChannelException e) {
if (this.flag_reconnect_channel++ < MAX_RECONNECT_CHANNEL_RETRIES) {
releaseChannel();
return transmit(apdu);
}
throw new UsbDeviceException(e);
}
}
Aggregations