View Javadoc
1   package org.djutils.serialization.serializers;
2   
3   import org.djunits.unit.Unit;
4   import org.djutils.serialization.DisplayType;
5   import org.djutils.serialization.EndianUtil;
6   import org.djutils.serialization.SerializationException;
7   import org.djutils.serialization.SerializationUnits;
8   
9   /**
10   * Serializer for Djunits arrays and matrices.
11   * <p>
12   * Copyright (c) 2019-2024 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br>
13   * BSD-style license. See <a href="https://djutils.org/docs/current/djutils/licenses.html">DJUTILS License</a>.
14   * </p>
15   * @author <a href="https://www.tudelft.nl/averbraeck">Alexander Verbraeck</a>
16   * @author <a href="https://www.tudelft.nl/staff/p.knoppers/">Peter Knoppers</a>
17   * @param <U> the unit type
18   * @param <T> The object type to (de)serialize
19   */
20  public abstract class ArrayOrMatrixWithUnitSerializer<U extends Unit<U>, T> extends BasicSerializer<T>
21  {
22      /** Number of dimension; 1 for array, 2 for matrix. */
23      private final int numberOfDimensions;
24  
25      /**
26       * Construct a new serializer for Djunits arrays or matrices.
27       * @param type byte; the field type (returned by the <code>fieldType</code> method)
28       * @param dataClassName String; returned by the dataClassName method
29       * @param numberOfDimensions int; should be 1 for array serializer and 2 for matrix serializer
30       */
31      public ArrayOrMatrixWithUnitSerializer(final byte type, final String dataClassName, final int numberOfDimensions)
32      {
33          super(type, dataClassName);
34          this.numberOfDimensions = numberOfDimensions;
35      }
36  
37      @Override
38      public final int sizeWithPrefix(final T object) throws SerializationException
39      {
40          return 1 + size(object);
41      }
42  
43      @Override
44      public final void serializeWithPrefix(final T object, final byte[] buffer, final Pointer pointer,
45              final EndianUtil endianUtil) throws SerializationException
46      {
47          buffer[pointer.getAndIncrement(1)] = fieldType();
48          serialize(object, buffer, pointer, endianUtil);
49      }
50  
51      @Override
52      public final int getNumberOfDimensions()
53      {
54          return this.numberOfDimensions;
55      }
56  
57      /**
58       * Code a unit, including MoneyUnits.
59       * @param unit U; the unit to code in the byte array
60       * @param message byte[]; the byte array
61       * @param pointer Pointer; the start pointer in the byte array
62       * @param endianUtil EndianUtil; encoder to use for multi-byte values
63       */
64      protected void encodeUnit(final U unit, final byte[] message, final Pointer pointer, final EndianUtil endianUtil)
65      {
66          SerializationUnits unitType = SerializationUnits.getUnitType(unit);
67          message[pointer.getAndIncrement(1)] = unitType.getCode();
68          DisplayType displayType = DisplayType.getDisplayType(unit);
69          message[pointer.getAndIncrement(1)] = displayType.getByteCode();
70      }
71  
72      /**
73       * Retrieve and decode a DJUNITS unit.
74       * @param buffer byte[]; the encoded data
75       * @param pointer Pointer; position in the encoded data where the unit is to be decoded from
76       * @param endianUtil EndianUtil; decoder for multi-byte values
77       * @return Unit
78       */
79      @SuppressWarnings("unchecked")
80      protected U getUnit(final byte[] buffer, final Pointer pointer, final EndianUtil endianUtil)
81      {
82          SerializationUnits unitType = SerializationUnits.getUnitType(buffer[pointer.getAndIncrement(1)]);
83          DisplayType displayType = DisplayType.getDisplayType(unitType, 0 + buffer[pointer.getAndIncrement(1)]);
84          return (U) displayType.getDjunitsType();
85      }
86  
87  }