Package org.apache.harmony.unpack200

Source Code of org.apache.harmony.unpack200.FileBands

/*
*  Licensed to the Apache Software Foundation (ASF) under one or more
*  contributor license agreements.  See the NOTICE file distributed with
*  this work for additional information regarding copyright ownership.
*  The ASF licenses this file to You under the Apache License, Version 2.0
*  (the "License"); you may not use this file except in compliance with
*  the License.  You may obtain a copy of the License at
*
*     http://www.apache.org/licenses/LICENSE-2.0
*
*  Unless required by applicable law or agreed to in writing, software
*  distributed under the License is distributed on an "AS IS" BASIS,
*  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*  See the License for the specific language governing permissions and
*  limitations under the License.
*/
package org.apache.harmony.unpack200;

import java.io.IOException;
import java.io.InputStream;

import org.apache.harmony.pack200.Codec;
import org.apache.harmony.pack200.Pack200Exception;

/**
* Parses the file band headers (not including the actual bits themselves). At
* the end of this parse call, the input stream will be positioned at the start
* of the file_bits themselves, and there will be Sum(file_size) bits remaining
* in the stream with BYTE1 compression. A decent implementation will probably
* just stream the bytes out to the reconstituted Jar rather than caching them.
*/
public class FileBands extends BandSet {

    private byte[][] fileBits;

    private long[] fileModtime;

    private String[] fileName;

    private long[] fileOptions;

    private long[] fileSize;

    private final String[] cpUTF8;

    private InputStream in;

    /**
     * @param segment
     */
    public FileBands(Segment segment) {
        super(segment);
        this.cpUTF8 = segment.getCpBands().getCpUTF8();
    }

    /*
     * (non-Javadoc)
     *
     * @see org.apache.harmony.unpack200.BandSet#unpack(java.io.InputStream)
     */
    public void read(InputStream in) throws IOException, Pack200Exception {
        int numberOfFiles = header.getNumberOfFiles();
        SegmentOptions options = header.getOptions();

        fileName = parseReferences("file_name", in, Codec.UNSIGNED5,
                numberOfFiles, cpUTF8);
        fileSize = parseFlags("file_size", in, numberOfFiles, Codec.UNSIGNED5,
                options.hasFileSizeHi());
        if (options.hasFileModtime()) {
            fileModtime = decodeBandLong("file_modtime", in, Codec.DELTA5,
                    numberOfFiles);
        } else {
            fileModtime = new long[numberOfFiles];
        }
        if (options.hasFileOptions()) {
            fileOptions = decodeBandLong("file_options", in, Codec.UNSIGNED5,
                    numberOfFiles);
        } else {
            fileOptions = new long[numberOfFiles];
        }
        this.in = in; // store for use by processFileBits(), which is called
        // later
    }

    // TODO: stream the file bits directly somehow
    public void processFileBits() throws IOException, Pack200Exception {
        // now read in the bytes
        int numberOfFiles = header.getNumberOfFiles();
        fileBits = new byte[numberOfFiles][];
        for (int i = 0; i < numberOfFiles; i++) {
            int size = (int) fileSize[i];
            // TODO This breaks if file_size > 2^32. Probably an array is
            // not the right choice, and we should just serialize it here?
            fileBits[i] = new byte[size];
            int read = in.read(fileBits[i]);
            if (size != 0 && read < size) {
                throw new Pack200Exception("Expected to read " + size
                        + " bytes but read " + read);
            }
        }
    }

    public void unpack() {

    }

    public byte[][] getFileBits() {
        return fileBits;
    }

    public long[] getFileModtime() {
        return fileModtime;
    }

    public String[] getFileName() {
        return fileName;
    }

    public long[] getFileOptions() {
        return fileOptions;
    }

    public long[] getFileSize() {
        return fileSize;
    }

}
TOP

Related Classes of org.apache.harmony.unpack200.FileBands

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.