📄 dataentrywriterfactory.java
字号:
/* $Id: DataEntryWriterFactory.java,v 1.2 2004/08/15 12:39:30 eric Exp $ * * ProGuard -- shrinking, optimization, and obfuscation of Java class files. * * Copyright (c) 2002-2004 Eric Lafortune (eric@graphics.cornell.edu) * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the Free * Software Foundation; either version 2 of the License, or (at your option) * any later version. * * This program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */package proguard;import proguard.io.*;import proguard.util.*;import java.io.*;/** * This class can create DataEntryWriter instances based on class paths. The * writers will wrap the output in the proper jars, wars, ears, and zips. * * @author Eric Lafortune */public class DataEntryWriterFactory{ /** * Creates a DataEntryWriter that can write to the given class path entries. * * @param classPath the output class path. * @param fromIndex the start index in the class path. * @param toIndex the end index in the class path. * @return a DataEntryWriter for writing to the given class path entries. */ public static DataEntryWriter createDataEntryWriter(ClassPath classPath, int fromIndex, int toIndex) { DataEntryWriter writer = null; // Create a chain of writers, one for each class path entry. for (int index = toIndex - 1; index >= fromIndex; index--) { ClassPathEntry entry = classPath.get(index); writer = createClassPathEntryWriter(entry, writer); } return writer; } /** * Creates a DataEntryWriter that can write to the given class path entry, * or delegate to another DataEntryWriter if its filters don't match. */ private static DataEntryWriter createClassPathEntryWriter(ClassPathEntry classPathEntry, DataEntryWriter alternativeWriter) { String entryName = classPathEntry.getName(); boolean isJar = entryName.endsWith(".jar"); boolean isWar = entryName.endsWith(".war"); boolean isEar = entryName.endsWith(".ear"); boolean isZip = entryName.endsWith(".zip"); String filter = classPathEntry.getFilter(); String jarFilter = classPathEntry.getJarFilter(); String warFilter = classPathEntry.getWarFilter(); String earFilter = classPathEntry.getEarFilter(); String zipFilter = classPathEntry.getZipFilter(); System.out.println("Preparing output " + (isJar ? "jar" : isWar ? "war" : isWar ? "ear" : isZip ? "zip" : "directory") + " [" + classPathEntry.getName() + "]" + (filter != null || jarFilter != null || warFilter != null || earFilter != null || zipFilter != null ? " (filtered)" : "")); DataEntryWriter writer = new DirectoryWriter(new File(entryName), isJar || isWar || isEar || isZip); // Set up the filtered jar writers. writer = wrapInJarWriter(writer, isZip, zipFilter, ".zip", isJar || isWar || isEar); writer = wrapInJarWriter(writer, isEar, earFilter, ".ear", isJar || isWar); writer = wrapInJarWriter(writer, isWar, warFilter, ".war", isJar); writer = wrapInJarWriter(writer, isJar, jarFilter, ".jar", false); // Add a filter, if specified. writer = filter != null? new FilteredDataEntryWriter( new DataEntryNameFilter( new FileNameListMatcher(filter)), writer) : writer; // Let the writer cascade, if specified. return alternativeWriter != null ? new CascadingDataEntryWriter(writer, alternativeWriter) : writer; } /** * Wraps the given DataEntryWriter in a JarWriter, filtering if necessary. */ private static DataEntryWriter wrapInJarWriter(DataEntryWriter writer, boolean isJar, String jarFilter, String jarExtension, boolean dontWrap) { // Zip up jars, if necessary. DataEntryWriter jarWriter = dontWrap ? (DataEntryWriter)new ParentDataEntryWriter(writer) : (DataEntryWriter)new JarWriter(writer, null, ProGuard.VERSION); // Add a filter, if specified. DataEntryWriter filteredJarWriter = jarFilter != null? new FilteredDataEntryWriter( new DataEntryParentFilter( new DataEntryNameFilter( new FileNameListMatcher(jarFilter))), jarWriter) : jarWriter; // Only zip up jars, unless the output is a jar file itself. return new FilteredDataEntryWriter( new DataEntryParentFilter( new DataEntryNameFilter( new ExtensionMatcher(jarExtension))), filteredJarWriter, isJar ? jarWriter : writer); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -