/******************************************************************************* * Copyright (c) 2000, 2008 QNX Software Systems and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * QNX Software Systems - Initial API and implementation *******************************************************************************/ package org.eclipse.cdt.utils.coff.parser; import java.io.IOException; import java.util.ArrayList; import org.eclipse.cdt.core.IBinaryParser.IBinaryArchive; import org.eclipse.cdt.core.IBinaryParser.IBinaryFile; import org.eclipse.cdt.core.IBinaryParser.IBinaryObject; import org.eclipse.cdt.utils.AR; import org.eclipse.cdt.utils.BinaryFile; import org.eclipse.cdt.utils.AR.ARHeader; import org.eclipse.core.runtime.IPath; /** */ public class PEBinaryArchive extends BinaryFile implements IBinaryArchive { ArrayList<IBinaryObject> children; public PEBinaryArchive(PEParser parser, IPath path) throws IOException { super(parser, path, IBinaryFile.ARCHIVE); new AR(path.toOSString()).dispose(); // check file type children = new ArrayList<IBinaryObject>(5); } /** * @see org.eclipse.cdt.core.IBinaryParser.IBinaryArchive#getObjects() */ public IBinaryObject[] getObjects() { if (hasChanged()) { children.clear(); AR ar = null; try { ar = new AR(getPath().toOSString()); AR.ARHeader[] headers = ar.getHeaders(); addArchiveMembers(headers, children); } catch (IOException e) { //e.printStackTrace(); } if (ar != null) { ar.dispose(); } children.trimToSize(); } return children.toArray(new IBinaryObject[0]); } /** * @param headers * @param children2 */ protected void addArchiveMembers(ARHeader[] headers, ArrayList<IBinaryObject> children2) { for (int i = 0; i < headers.length; i++) { IBinaryObject bin = new PEBinaryObject(getBinaryParser(), getPath(), headers[i]); children.add(bin); } } }