JADE is an API for decoding and encoding ASTERIX messages. The following categories are planned to be implemented:
ASTERIX is the EUROCONTROL Standard for the exchange of Surveillance related data. ASTERIX provides a structured approach to a message format to be applied in the exchange of surveillance related information for various applications. Managed by the ASTERIX Maintenance Group (AMG) with its multinational participation, it ensures a common data representation, thereby facilitating the exchange of surveillance data in an international context. ASTERIX also defines a structured approach to the encoding of surveillance data. Categories group the information related to a specific application. They consist of a number of data items which are defined in the ASTERIX documents down to the bit-level.
The test jade application can receive 4 argumens:
Examples:
// in this example, we want to decode categories 62, 65
AsterixDecoder asterixDecoder = new AsterixDecoder(62,65);
// asterix data is represented as byte array
byte[] asterixRawBlock = rawQueue.take();
// decode the byte array and obtain the asterix data blocks
List<AsterixDataBlock> dataBlocks = asterixDecoder.decode(
asterixRawBlock,
0,
asterixRawBlock.length
);
// process data blocks and extract individual records
for (AsterixDataBlock asterixDataBlock : dataBlocks) {
List<AsterixRecord> asterixRecords = asterixDataBlock.getRecords();
for (AsterixRecord record : asterixRecords) {
// get category of record
int cat = record.getCategory();
if(cat == 62){
// after we know the category, we can access the specific record info
Cat062Record cat062Record = record.getCat062Record();
int trackNb = cat062Record.getItem040().getTrackNb();
}
}
}
In order to keep this library flexible, custom implementations for RE and SP fields can be attached to the Asterix Decoder object in your own code.
In order to implement a custom reserved AsterixField, you first need to create a new class and inherit ReservedAsterixField. Then, you have to add implementations for the encode and decode methods, like in the example bellow.
public class SomeCustomReservedFiled extends ReservedAsterixField {
@Override
public int decode(byte[] input, int offset, int inputLength) {
//TODO: add custom logic
}
@Override
public byte[] encode() {
//TODO: add custom logic
}
}
Then, you need to create a custom factory for the new custom fields.
public class SomeCustomAsterixFieldFactory implements ReservedFieldFactory {
@Override
public ReservedAsterixField createSpField() {
//The SP field will contain the new custom field
return new SomeCustomReservedFiled();
}
@Override
public ReservedAsterixField createReField() {
//We leave the default implementation
return new ReservedAsterixField();
}
}
Finally, we have to attach the custom factory to the Asterix Decoder using the attachCustomReservedFieldFactory method. The custom factory shall be attached to a given category. This way, different factories can be assigned to various categories.
AsterixDecoder decoder = new AsterixDecoder(62);
decoder.attachCustomReservedFieldFactory(62, new SomeCustomAsterixFieldFactory());
...
List<AsterixDataBlock> dataBlocks = asterixDecoder.decode(...);
You can include JADE in your app using Maven.
...
<repositories>
<repository>
<id>jlg-maven-repository</id>
<url>http://maven.jlg.ro</url>
</repository>
</repositories>
...
...
<dependency>
<groupId>jlg-consulting</groupId>
<artifactId>jade</artifactId>
<version>0.9.31</version>
</dependency>
...