Package net.i2p.data

Class DataStructureImpl

    • Constructor Detail

      • DataStructureImpl

        public DataStructureImpl()
    • Method Detail

      • toBase64

        public String toBase64()
        Description copied from interface: DataStructure
        render the structure into modified base 64 notation
        Specified by:
        toBase64 in interface DataStructure
        Returns:
        null on error
      • fromBase64

        public void fromBase64​(String data)
                        throws DataFormatException
        Description copied from interface: DataStructure
        Load the structure from the base 64 encoded data provided Warning - many classes will throw IllegalStateException if data is already set. Warning - many classes will throw IllegalArgumentException if data is the wrong size.
        Specified by:
        fromBase64 in interface DataStructure
        Throws:
        DataFormatException
      • calculateHash

        public Hash calculateHash()
        Description copied from interface: DataStructure
        Calculate the SHA256 value of this object (useful for a few scenarios)
        Specified by:
        calculateHash in interface DataStructure
        Returns:
        SHA256 hash, or null if there were problems (data format or io errors)
      • toByteArray

        public byte[] toByteArray()
        Specified by:
        toByteArray in interface DataStructure
        Returns:
        may be null if data is not set
      • fromByteArray

        public void fromByteArray​(byte[] data)
                           throws DataFormatException
        Description copied from interface: DataStructure
        Load the structure from the data provided Warning - many classes will throw IllegalStateException if data is already set. Warning - many classes will throw IllegalArgumentException if data is the wrong size.
        Specified by:
        fromByteArray in interface DataStructure
        Throws:
        DataFormatException
      • read

        protected int read​(InputStream in,
                           byte[] target)
                    throws IOException
        Repeated reads until the buffer is full or IOException is thrown
        Returns:
        number of bytes read (should always equal target.length)
        Throws:
        IOException