alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Scala example source code file (PESection.java)

This example Scala source code file (PESection.java) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - Scala tags/keywords

address, flags, io, pefile, pesection, pesection, real, section, size, size, string, string, virtual, virtual

The Scala PESection.java source code

/*
 * System.Reflection-like API for acces to .NET assemblies (DLL & EXE)
 */


package ch.epfl.lamp.compiler.msil.util;

import ch.epfl.lamp.compiler.msil.PEFile;

import java.io.PrintStream;

/** Describes a section from a PE/COFF file
 *
 * @author Nikolay Mihaylov
 * @version 1.0
 */
public final class PESection {

    private final PEFile file;
    private final long sectionStart;

    public final String name;
    public final int virtAddr;
    public final int virtSize;
    public final int realAddr;
    public final int realSize;
    public final int flags;

    private static final byte[] buf = new byte[8];

    public PESection(PEFile file) {
	this.file = file;
	sectionStart = file.pos();
	file.read(buf);
 	int i;
 	for(i = 7; (i >= 0) && (0 == buf[i]); i--);
 	name = new String(buf, 0, i + 1);
	virtSize = file.readInt();
	virtAddr = file.readInt();
	realSize = file.readInt();
	realAddr = file.readInt();
	file.skip(3 * PEFile.INT_SIZE);
	flags = file.readInt();
    }


    public void dump(PrintStream out) {
	out.println("Section name:    " + name +
		   " (name.length=" + name.length() + ")");
	out.println("Virtual Address: 0x" + PEFile.int2hex(virtAddr));
	out.println("Virtual Size:    0x" + PEFile.int2hex(virtSize));
	out.println("Real Address:    0x" + PEFile.int2hex(realAddr));
	out.println("Real Size:       0x" + PEFile.int2hex(realSize));
	out.println("Flags:           0x" + PEFile.int2hex(flags));
    }

} // class PESection

Other Scala examples (source code examples)

Here is a short list of links related to this Scala PESection.java source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.