diff --git a/CHANGELOG.md b/CHANGELOG.md index ae0747d..58f6af5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +### Added +- `CalypsoCardSelection.prepareReadBinary` method. +- `CalypsoCardSelection.prepareReadCounter` method. +- `CalypsoCardSelection.preparePreOpenSecureSession` method (pre-open secure session variant). +### Upgraded +- "Calypsonet Terminal Reader API" to version `1.2.0` ## [1.6.0] - 2023-02-17 ### Added diff --git a/build.gradle.kts b/build.gradle.kts index ea38237..818f473 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -27,7 +27,7 @@ repositories { maven(url = "https://s01.oss.sonatype.org/content/repositories/snapshots") } dependencies { - implementation("org.calypsonet.terminal:calypsonet-terminal-reader-java-api:1.1.0") + implementation("org.calypsonet.terminal:calypsonet-terminal-reader-java-api:1.2.0") testImplementation("junit:junit:4.13.2") testImplementation("org.assertj:assertj-core:3.15.0") } diff --git a/gradle.properties b/gradle.properties index db59144..870b132 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,7 +1,7 @@ group = org.calypsonet.terminal title = Calypsonet Terminal Calypso API description = API defining the needed interfaces to manage Calypso cards -version = 1.6.1 +version = 1.7.0 javaSourceLevel = 1.6 javaTargetLevel = 1.6 diff --git a/src/main/java/org/calypsonet/terminal/calypso/CalypsoApiProperties.java b/src/main/java/org/calypsonet/terminal/calypso/CalypsoApiProperties.java index c4e0b58..b6bdc77 100644 --- a/src/main/java/org/calypsonet/terminal/calypso/CalypsoApiProperties.java +++ b/src/main/java/org/calypsonet/terminal/calypso/CalypsoApiProperties.java @@ -23,7 +23,7 @@ public class CalypsoApiProperties { * * @since 1.0.0 */ - public static final String VERSION = "1.6"; + public static final String VERSION = "1.7"; /** Private constructor */ private CalypsoApiProperties() {} diff --git a/src/main/java/org/calypsonet/terminal/calypso/card/CalypsoCardSelection.java b/src/main/java/org/calypsonet/terminal/calypso/card/CalypsoCardSelection.java index 677bb9a..11a41cf 100644 --- a/src/main/java/org/calypsonet/terminal/calypso/card/CalypsoCardSelection.java +++ b/src/main/java/org/calypsonet/terminal/calypso/card/CalypsoCardSelection.java @@ -13,6 +13,7 @@ import org.calypsonet.terminal.calypso.GetDataTag; import org.calypsonet.terminal.calypso.SelectFileControl; +import org.calypsonet.terminal.calypso.WriteAccessLevel; import org.calypsonet.terminal.reader.selection.spi.CardSelection; /** @@ -226,13 +227,13 @@ public interface CalypsoCardSelection extends CardSelection { CalypsoCardSelection prepareReadRecordFile(byte sfi, int recordNumber); /** - * Adds a command APDU to read a single record from the indicated EF. + * Adds an APDU command to read a single record from the indicated Linear or Cyclic EF. * *
Once this command is processed, the result is available in {@link CalypsoCard} if the - * requested file and record exist in the file structure of the card (best effort behavior). + * requested file and record exist in the file structure of the card (best-effort mode). * - *
Caution: the resulting APDU command must be compliant with PRIME revision 3 cards. - * Therefore, the command may be rejected by some earlier revision cards. + *
Caution: the resulting APDU command is compliant with PRIME revision 3 cards. Therefore, the + * command may be rejected by some earlier revision cards. * * @param sfi The SFI of the EF to read * @param recordNumber The record number to read. @@ -242,40 +243,62 @@ public interface CalypsoCardSelection extends CardSelection { */ CalypsoCardSelection prepareReadRecord(byte sfi, int recordNumber); - // /** - // * Adds an APDU command to attempt a secure session pre-opening. For cards that support this - // * feature, this optimizes exchanges with the card in the case of deterministic secure - // sessions - // * that can be executed in a single step. - // * - // *
The use of this method or one of the following methods is a prerequisite for the use of - // the - // * {@link CardTransactionManager#processPreOpenedSecureSession()} method: - // * - // *
The secure session opening which will be done by {@link - // * CardTransactionManager#processPreOpenedSecureSession()} will use the same parameters (same - // * {@link WriteAccessLevel}, no record reading). - // * - // * @param writeAccessLevel The write access level. - // * @return The object instance. - // * @throws IllegalArgumentException If writeAccessLevel is null. - // * @throws IllegalStateException If "Pre-Open" command is already prepared. - // * @see #preparePreOpenSecureSession(WriteAccessLevel, byte, int) - // * @see CardTransactionManager#preparePreOpenSecureSession(WriteAccessLevel) - // * @see CardTransactionManager#preparePreOpenSecureSession(WriteAccessLevel, byte, int) - // * @see CardTransactionManager#processPreOpenedSecureSession() - // * @since 1.6.0 - // */ - // CalypsoCardSelection preparePreOpenSecureSession(WriteAccessLevel writeAccessLevel); + /** + * Adds one or multiple APDU commands to read all or part of the indicated Binary EF. + * + *
Once this command is processed, the result is available in {@link CalypsoCard} if the + * requested file exist in the file structure of the card and if the offset and number of bytes to + * read are valid (best-effort mode). + * + *
Caution: the resulting APDU command is compliant with PRIME revision 3 cards. Therefore, the + * command may be rejected by some earlier revision cards. + * + * @param sfi The SFI of the EF. + * @param offset The offset (0 indicates the first byte). + * @param nbBytesToRead The number of bytes to read. + * @return The current instance. + * @throws IllegalArgumentException If one of the provided argument is out of range. + * @since 1.7.0 + */ + CalypsoCardSelection prepareReadBinary(byte sfi, int offset, int nbBytesToRead); + + /** + * Adds an APDU command to read a part of a record of the indicated EF, which should be a counter + * file. + * + *
The record will be read up to the counter location indicated in parameter.
+ * Thus, all previous counters will also be read.
+ *
+ *
Once this command is processed, the result is available in {@link CalypsoCard} if the + * requested file and the counter number exist in the file structure of the card (best-effort + * mode). + * + *
Caution: the resulting APDU command is compliant with PRIME revision 3 cards. Therefore, the + * command may be rejected by some earlier revision cards. + * + * @param sfi The SFI of the EF. + * @param nbCountersToRead The number of counters to read. + * @return The current instance. + * @throws IllegalArgumentException If one of the provided argument is out of range. + * @since 1.7.0 + */ + CalypsoCardSelection prepareReadCounter(byte sfi, int nbCountersToRead); + + /** + * Adds an APDU command to attempt a secure session pre-opening. For cards that support this + * feature, this optimizes future exchanges with the card in the case of secure sessions intended + * to be executed in a single step. + * + *
Caution: the resulting APDU command is compliant with PRIME revision 3 cards supporting the + * extended mode. Therefore, the command may be rejected by some earlier revision cards. + * + * @param writeAccessLevel The write access level. + * @return The object instance. + * @throws IllegalArgumentException If writeAccessLevel is null. + * @throws IllegalStateException If "Pre-Open" command is already prepared. + * @since 1.7.0 + */ + CalypsoCardSelection preparePreOpenSecureSession(WriteAccessLevel writeAccessLevel); /** * Navigation options through the different applications contained in the card according to the