aboutsummaryrefslogtreecommitdiff
path: root/org.jacoco.agent
diff options
context:
space:
mode:
authorEvgeny Mandrikov <mandrikov@gmail.com>2012-08-30 22:13:04 +0600
committerEvgeny Mandrikov <mandrikov@gmail.com>2012-08-30 22:13:04 +0600
commite69ba4dbb015949c5d84ba7bbb0b53efac28bb23 (patch)
tree44cbe6d78216fcb3c37c0aca1dc7ed3fc09906fa /org.jacoco.agent
parenta888d873ac20357a4a11029bc84c5c4b48e394a3 (diff)
downloadjacoco-e69ba4dbb015949c5d84ba7bbb0b53efac28bb23.tar.gz
Fix EOLs
Diffstat (limited to 'org.jacoco.agent')
-rw-r--r--org.jacoco.agent/src/org/jacoco/agent/AgentJar.java258
1 files changed, 129 insertions, 129 deletions
diff --git a/org.jacoco.agent/src/org/jacoco/agent/AgentJar.java b/org.jacoco.agent/src/org/jacoco/agent/AgentJar.java
index a77c1a43..ca82f9e3 100644
--- a/org.jacoco.agent/src/org/jacoco/agent/AgentJar.java
+++ b/org.jacoco.agent/src/org/jacoco/agent/AgentJar.java
@@ -1,129 +1,129 @@
-/*******************************************************************************
- * Copyright (c) 2009, 2012 Mountainminds GmbH & Co. KG and Contributors
- * 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:
- * Marc R. Hoffmann - initial API and implementation
- *
- *******************************************************************************/
-package org.jacoco.agent;
-
-import java.io.Closeable;
-import java.io.File;
-import java.io.FileOutputStream;
-import java.io.IOException;
-import java.io.InputStream;
-import java.io.OutputStream;
-import java.net.URL;
-
-/**
- * API to access the agent JAR file as a resource. While the agent is a JAR file
- * it is considered as a plain resource that must be configured for the
- * application under test (target JVM). The agent JAR does not provide any
- * public Java API.
- */
-public final class AgentJar {
-
- /**
- * Name of the agent JAR file resource within this bundle.
- */
- private static final String RESOURCE = "/jacocoagent.jar";
-
- private AgentJar() {
- }
-
- /**
- * Returns a URL pointing to the JAR file.
- *
- * @return URL of the JAR file
- */
- public static URL getResource() {
- final URL url = AgentJar.class.getResource(RESOURCE);
- if (url == null) {
- throw new AssertionError(ERRORMSG);
- }
- return url;
- }
-
- /**
- * Returns the content of the JAR file as a stream.
- *
- * @return content of the JAR file
- */
- public static InputStream getResourceAsStream() {
- final InputStream stream = AgentJar.class.getResourceAsStream(RESOURCE);
- if (stream == null) {
- throw new AssertionError(ERRORMSG);
- }
- return stream;
- }
-
- /**
- * Extract the JaCoCo agent JAR and put it into a temporary location. This
- * file should be deleted on exit, but may not if the VM is terminated
- *
- * @return Location of the Agent Jar file in the local file system. The file
- * should exist and be readable.
- * @throws IOException
- * Unable to unpack agent jar
- */
- public static File extractToTempLocation() throws IOException {
- final File agentJar = File.createTempFile("jacocoagent", ".jar");
- agentJar.deleteOnExit();
-
- extractTo(agentJar);
-
- return agentJar;
- }
-
- /**
- * Extract the JaCoCo agent JAR and put it into the specified location.
- *
- * @param destination
- * Location to write JaCoCo Agent Jar to. Must be writeable
- * @throws IOException
- * Unable to unpack agent jar
- */
- public static void extractTo(File destination) throws IOException {
- InputStream inputJarStream = getResourceAsStream();
- OutputStream outputJarStream = null;
-
- try {
-
- outputJarStream = new FileOutputStream(destination);
-
- final byte[] buffer = new byte[8192];
-
- int bytesRead;
- while ((bytesRead = inputJarStream.read(buffer)) != -1) {
- outputJarStream.write(buffer, 0, bytesRead);
- }
- } finally {
- safeClose(inputJarStream);
- safeClose(outputJarStream);
- }
- }
-
- /**
- * Close a stream ignoring any error
- *
- * @param closeable
- * stream to be closed
- */
- private static void safeClose(Closeable closeable) {
- try {
- if (closeable != null) {
- closeable.close();
- }
- } catch (IOException e) {
- }
- }
-
- private static final String ERRORMSG = String.format(
- "The resource %s has not been found. Please see "
- + "/org.jacoco.agent/README.TXT for details.", RESOURCE);
-
-}
+/*******************************************************************************
+ * Copyright (c) 2009, 2012 Mountainminds GmbH & Co. KG and Contributors
+ * 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:
+ * Marc R. Hoffmann - initial API and implementation
+ *
+ *******************************************************************************/
+package org.jacoco.agent;
+
+import java.io.Closeable;
+import java.io.File;
+import java.io.FileOutputStream;
+import java.io.IOException;
+import java.io.InputStream;
+import java.io.OutputStream;
+import java.net.URL;
+
+/**
+ * API to access the agent JAR file as a resource. While the agent is a JAR file
+ * it is considered as a plain resource that must be configured for the
+ * application under test (target JVM). The agent JAR does not provide any
+ * public Java API.
+ */
+public final class AgentJar {
+
+ /**
+ * Name of the agent JAR file resource within this bundle.
+ */
+ private static final String RESOURCE = "/jacocoagent.jar";
+
+ private AgentJar() {
+ }
+
+ /**
+ * Returns a URL pointing to the JAR file.
+ *
+ * @return URL of the JAR file
+ */
+ public static URL getResource() {
+ final URL url = AgentJar.class.getResource(RESOURCE);
+ if (url == null) {
+ throw new AssertionError(ERRORMSG);
+ }
+ return url;
+ }
+
+ /**
+ * Returns the content of the JAR file as a stream.
+ *
+ * @return content of the JAR file
+ */
+ public static InputStream getResourceAsStream() {
+ final InputStream stream = AgentJar.class.getResourceAsStream(RESOURCE);
+ if (stream == null) {
+ throw new AssertionError(ERRORMSG);
+ }
+ return stream;
+ }
+
+ /**
+ * Extract the JaCoCo agent JAR and put it into a temporary location. This
+ * file should be deleted on exit, but may not if the VM is terminated
+ *
+ * @return Location of the Agent Jar file in the local file system. The file
+ * should exist and be readable.
+ * @throws IOException
+ * Unable to unpack agent jar
+ */
+ public static File extractToTempLocation() throws IOException {
+ final File agentJar = File.createTempFile("jacocoagent", ".jar");
+ agentJar.deleteOnExit();
+
+ extractTo(agentJar);
+
+ return agentJar;
+ }
+
+ /**
+ * Extract the JaCoCo agent JAR and put it into the specified location.
+ *
+ * @param destination
+ * Location to write JaCoCo Agent Jar to. Must be writeable
+ * @throws IOException
+ * Unable to unpack agent jar
+ */
+ public static void extractTo(File destination) throws IOException {
+ InputStream inputJarStream = getResourceAsStream();
+ OutputStream outputJarStream = null;
+
+ try {
+
+ outputJarStream = new FileOutputStream(destination);
+
+ final byte[] buffer = new byte[8192];
+
+ int bytesRead;
+ while ((bytesRead = inputJarStream.read(buffer)) != -1) {
+ outputJarStream.write(buffer, 0, bytesRead);
+ }
+ } finally {
+ safeClose(inputJarStream);
+ safeClose(outputJarStream);
+ }
+ }
+
+ /**
+ * Close a stream ignoring any error
+ *
+ * @param closeable
+ * stream to be closed
+ */
+ private static void safeClose(Closeable closeable) {
+ try {
+ if (closeable != null) {
+ closeable.close();
+ }
+ } catch (IOException e) {
+ }
+ }
+
+ private static final String ERRORMSG = String.format(
+ "The resource %s has not been found. Please see "
+ + "/org.jacoco.agent/README.TXT for details.", RESOURCE);
+
+}