com.googlecode.d2j.dex.writer.item.HeadItem Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle Show documentation
Show all versions of gradle Show documentation
fakeradnroid gradle builder
/*
* dex2jar - Tools to work with android .dex and java .class files
* Copyright (c) 2009-2013 Panxiaobo
*
* Licensed 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 com.googlecode.d2j.dex.writer.item;
import com.googlecode.d2j.dex.writer.io.DataOut;
public class HeadItem extends BaseItem {
public static final int V035 = 0x00353330;
public static final int V036 = 0x00363330;
public int version = V035;
public SectionItem mapSection;
public SectionItem stringIdSection;
public SectionItem typeIdSection;
public SectionItem protoIdSection;
public SectionItem fieldIdSection;
public SectionItem methodIdSection;
public SectionItem classDefSection;
public int fileSize = -1;
public void write(DataOut out) {
out.uint("magic", 0x0A786564);
out.uint("version", version);
out.skip4("checksum");
out.skip("signature", 20);
out.uint("file_size", fileSize);
out.uint("head_size", 0x70);
out.uint("endian_tag", 0x12345678);
out.skip("link_size,link_off", 8);
out.uint("map_off", mapSection.items.size() == 0 ? 0 : mapSection.offset);
out.uint("string_ids_size", stringIdSection.items.size());
out.uint("string_ids_off", stringIdSection.items.size() == 0 ? 0 : stringIdSection.offset);
out.uint("type_ids_size", typeIdSection.items.size());
out.uint("type_ids_off", typeIdSection.items.size() == 0 ? 0 : typeIdSection.offset);
out.uint("proto_ids_size", protoIdSection.items.size());
out.uint("proto_ids_off", protoIdSection.items.size() == 0 ? 0 : protoIdSection.offset);
out.uint("field_ids_size", fieldIdSection.items.size());
out.uint("field_ids_off", fieldIdSection.items.size() == 0 ? 0 : fieldIdSection.offset);
out.uint("method_ids_size", methodIdSection.items.size());
out.uint("method_ids_off", methodIdSection.items.size() == 0 ? 0 : methodIdSection.offset);
out.uint("class_defs_size", classDefSection.items.size());
out.uint("class_defs_off", classDefSection.items.size() == 0 ? 0 : classDefSection.offset);
out.uint("data_size", fileSize - mapSection.offset); // every thing after map is data section
out.uint("data_off", mapSection.offset);// map is the first in data section
}
@Override
public int place(int offset) {
return offset + 0x70;
}
}