Class Decoder

    • Method Detail

      • setColnames

        public void setColnames​(String[] colnames)
      • getColnames

        public String[] getColnames()
      • decode

        public abstract FrameBlock decode​(MatrixBlock in,
                                          FrameBlock out)
        Block decode API converting a matrix block into a frame block.
        Parameters:
        in - input matrix block
        out - output frame block
        Returns:
        returns given output frame block for convenience
      • subRangeDecoder

        public Decoder subRangeDecoder​(int colStart,
                                       int colEnd,
                                       int dummycodedOffset)
        Returns a new Decoder that only handles a sub range of columns. The sub-range refers to the columns after decoding.
        Parameters:
        colStart - the start index of the sub-range (1-based, inclusive)
        colEnd - the end index of the sub-range (1-based, exclusive)
        dummycodedOffset - the offset of dummycoded segments before colStart
        Returns:
        a decoder of the same type, just for the sub-range
      • updateIndexRanges

        public void updateIndexRanges​(long[] beginDims,
                                      long[] endDims)
        Update index-ranges to after decoding. Note that only Dummycoding changes the ranges.
        Parameters:
        beginDims - the begin indexes before encoding
        endDims - the end indexes before encoding
      • initMetaData

        public abstract void initMetaData​(FrameBlock meta)
      • writeExternal

        public void writeExternal​(ObjectOutput os)
                           throws IOException
        Redirects the default java serialization via externalizable to our default hadoop writable serialization for efficient broadcast/rdd serialization.
        Specified by:
        writeExternal in interface Externalizable
        Parameters:
        os - object output
        Throws:
        IOException - if IOException occurs
      • readExternal

        public void readExternal​(ObjectInput in)
                          throws IOException
        Redirects the default java serialization via externalizable to our default hadoop writable serialization for efficient broadcast/rdd deserialization.
        Specified by:
        readExternal in interface Externalizable
        Parameters:
        in - object input
        Throws:
        IOException - if IOException occur