⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 copybuggysource.java

📁 A static analysis tool to find bugs in Java programs
💻 JAVA
字号:
/* * FindBugs - Find bugs in Java programs * Copyright (C) 2003-2005 William Pugh * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. *  * This library 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 * Lesser General Public License for more details. *  * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */package edu.umd.cs.findbugs.workflow;import java.io.File;import java.io.FileOutputStream;import java.io.IOException;import java.io.InputStream;import java.io.OutputStream;import java.util.HashSet;import java.util.Iterator;import org.apache.bcel.generic.GETSTATIC;import org.dom4j.DocumentException;import edu.umd.cs.findbugs.BugAnnotation;import edu.umd.cs.findbugs.BugCollection;import edu.umd.cs.findbugs.BugInstance;import edu.umd.cs.findbugs.ClassAnnotation;import edu.umd.cs.findbugs.DetectorFactoryCollection;import edu.umd.cs.findbugs.PackageMemberAnnotation;import edu.umd.cs.findbugs.Project;import edu.umd.cs.findbugs.SortedBugCollection;import edu.umd.cs.findbugs.SourceLineAnnotation;import edu.umd.cs.findbugs.ba.SourceFinder;/** * Java main application to compute update a historical bug collection with * results from another build/analysis. *  * @author William Pugh */public class CopyBuggySource {	/**	 * 	 */	private static final String USAGE = "Usage: <cmd> "			+ "  <bugs.xml> <destinationSrcDir>";	public static void main(String[] args) throws IOException,			DocumentException {		DetectorFactoryCollection.instance();		if (args.length != 2) {			System.out.println(USAGE);			return;		}		Project project = new Project();		BugCollection origCollection;		origCollection = new SortedBugCollection();		origCollection.readXML(args[0], project);		File src = new File(args[1]);		byte buf[] = new byte[4096];		if (!src.isDirectory())			throw new IllegalArgumentException(args[1]					+ " is not a source directory");		SourceFinder sourceFinder = new SourceFinder();		sourceFinder.setSourceBaseList(project.getSourceDirList());		HashSet<String> copied = new HashSet<String>();		for (BugInstance bug : origCollection.getCollection()) {			for (Iterator<BugAnnotation> i = bug.annotationIterator(); i					.hasNext();) {				BugAnnotation ann = i.next();				SourceLineAnnotation sourceAnnotation;				if (ann instanceof PackageMemberAnnotation)					sourceAnnotation = ((PackageMemberAnnotation) ann)							.getSourceLines();				else if (ann instanceof SourceLineAnnotation)					sourceAnnotation = (SourceLineAnnotation) ann;				else					continue;				if (sourceAnnotation == null)					continue;				String fullName;				String packageName = sourceAnnotation.getPackageName();				String sourceFile = sourceAnnotation.getSourceFile();				if (packageName == "")					fullName = sourceFile;				else					fullName = packageName.replace('.', File.separatorChar)							+ File.separatorChar + sourceFile;				if (copied.add(fullName)) {					File file = new File(src, fullName);					if (file.exists()) {						System.out.println(file + " already exists");						continue;					}					File parent = file.getParentFile();					parent.mkdirs();					InputStream in = null;					OutputStream out = null;					try {						in = sourceFinder.openSource(packageName, sourceFile);						out = new FileOutputStream(file);						while (true) {							int sz = in.read(buf);							if (sz < 0)								break;							out.write(buf, 0, sz);						}						System.out.println("Copied " + file);					} catch (IOException e) {						System.out.println("Problem copying " + file);						e.printStackTrace(System.out);					} finally {						close(in);						close(out);					}				}			}		}	}	public static void close(InputStream in) {		try {			if (in != null)				in.close();		} catch (IOException e) {		}	}	public static void close(OutputStream out) {		try {			if (out != null)				out.close();		} catch (IOException e) {		}	}}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -