All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.dongliu.apk.parser.struct.StringPoolHeader Maven / Gradle / Ivy

The newest version!
package net.dongliu.apk.parser.struct;

import net.dongliu.apk.parser.utils.Unsigned;

/**
 * String pool chunk header.
 *
 * @author dongliu
 */
public class StringPoolHeader extends ChunkHeader {
    public StringPoolHeader(int headerSize, long chunkSize) {
        super(ChunkType.STRING_POOL, headerSize, chunkSize);
    }

    // Number of style span arrays in the pool (number of uint32_t indices
    // follow the string indices).
    private int stringCount;
    // Number of style span arrays in the pool (number of uint32_t indices
    // follow the string indices).
    private int styleCount;

    // If set, the string index is sorted by the string values (based on strcmp16()).
    public static final int SORTED_FLAG = 1;
    // String pool is encoded in UTF-8
    public static final int UTF8_FLAG = 1 << 8;
    private long flags;

    // Index from header of the string data.
    private long stringsStart;
    // Index from header of the style data.
    private long stylesStart;

    public int getStringCount() {
        return stringCount;
    }

    public void setStringCount(long stringCount) {
        this.stringCount = Unsigned.ensureUInt(stringCount);
    }

    public int getStyleCount() {
        return styleCount;
    }

    public void setStyleCount(long styleCount) {
        this.styleCount = Unsigned.ensureUInt(styleCount);
    }

    public long getFlags() {
        return flags;
    }

    public void setFlags(long flags) {
        this.flags = flags;
    }

    public long getStringsStart() {
        return stringsStart;
    }

    public void setStringsStart(long stringsStart) {
        this.stringsStart = stringsStart;
    }

    public long getStylesStart() {
        return stylesStart;
    }

    public void setStylesStart(long stylesStart) {
        this.stylesStart = stylesStart;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy