You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@phoenix.apache.org by je...@apache.org on 2014/11/21 00:32:51 UTC

phoenix git commit: PHOENIX-1380: Potential null dereference in PerformanceLog#getFileOutputStream() (Alicia Ying Shu)

Repository: phoenix
Updated Branches:
  refs/heads/master d448417d9 -> 2d5acb4e9


PHOENIX-1380: Potential null dereference in PerformanceLog#getFileOutputStream() (Alicia Ying Shu)


Project: http://git-wip-us.apache.org/repos/asf/phoenix/repo
Commit: http://git-wip-us.apache.org/repos/asf/phoenix/commit/2d5acb4e
Tree: http://git-wip-us.apache.org/repos/asf/phoenix/tree/2d5acb4e
Diff: http://git-wip-us.apache.org/repos/asf/phoenix/diff/2d5acb4e

Branch: refs/heads/master
Commit: 2d5acb4e93edf8901952238c31fcf12892db8725
Parents: d448417
Author: Jeffrey Zhong <je...@apache.org>
Authored: Thu Nov 20 15:29:49 2014 -0800
Committer: Jeffrey Zhong <je...@apache.org>
Committed: Thu Nov 20 15:29:49 2014 -0800

----------------------------------------------------------------------
 .../apache/phoenix/logging/PerformanceLog.java  | 117 -------------------
 1 file changed, 117 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/phoenix/blob/2d5acb4e/phoenix-core/src/test/java/org/apache/phoenix/logging/PerformanceLog.java
----------------------------------------------------------------------
diff --git a/phoenix-core/src/test/java/org/apache/phoenix/logging/PerformanceLog.java b/phoenix-core/src/test/java/org/apache/phoenix/logging/PerformanceLog.java
deleted file mode 100644
index 0f7158e..0000000
--- a/phoenix-core/src/test/java/org/apache/phoenix/logging/PerformanceLog.java
+++ /dev/null
@@ -1,117 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.apache.phoenix.logging;
-
-import java.io.File;
-import java.io.FileNotFoundException;
-import java.io.FileOutputStream;
-import java.io.IOException;
-import java.text.DateFormat;
-import java.text.SimpleDateFormat;
-import java.util.Date;
-
-import org.apache.commons.lang.time.StopWatch;
-
-/**
- * Performance data logging  
- * 
- */
-public class PerformanceLog {
-	private StopWatch stopWatch = null;	
-	private static FileOutputStream fostream = null;
-
-	public PerformanceLog(String startMessage) throws IOException {
-		getStopWatch().start();
-		instanceLog("START: " + startMessage);
-	}
-	
-	public static void startLog() throws FileNotFoundException {
-		getFileOutputStream();
-	}
-	
-	public static void startLog(String fileName) throws FileNotFoundException {
-		getFileOutputStream(fileName);
-	}
-
-	public static void stopLog() throws FileNotFoundException, IOException {
-		getFileOutputStream().close();
-		fostream = null;
-	}
-
-	public void stopStopWatch() throws IOException {
-		getStopWatch().stop();
-		instanceLog("STOP");		
-	}
-	
-	public void stopStopWatch(String message) throws IOException {
-		getStopWatch().stop();
-		instanceLog("STOP: " + message);		
-	}
-	
-	/**
-	 * Log a message to persistent storage. Elapsed time since start is added.
-	 * @param message
-	 * @throws IOException
-	 */
-	public void instanceLog(String message) throws IOException {
-		long elapsedMs = getStopWatch().getTime();
-		String displayTime = elapsedMs < 1000 ? elapsedMs + " ms" : elapsedMs / 1000 + " sec";
-		message = getDateTime() + " (" + displayTime + ") : " + message + "\n";
-		System.out.println(message);
-		getFileOutputStream().write(message.getBytes());
-	}
-	
-	public static void log(String message) throws IOException {
-		message = getDateTime() + ": " + message + "\n";
-		System.out.println(message);
-		getFileOutputStream().write(message.getBytes());
-	}
-	
-	private static FileOutputStream getFileOutputStream() throws FileNotFoundException {
-		return getFileOutputStream(null);
-	}
-
-	private static FileOutputStream getFileOutputStream(String fileName) throws FileNotFoundException {
-		if (fostream == null) {
-			String folderName = "results";
-			File folder = new File(folderName);
-			if (!folder.exists()) {
-				folder.mkdir();
-			}
-			String generatedFileName = folderName
-					+ "/"
-					+ (fileName.endsWith("|") ? fileName.substring(0,
-							fileName.length() - 1) : fileName) + ".txt";
-			fostream = new FileOutputStream(generatedFileName);
-		}
-
-		return fostream;
-	}
-	
-	private StopWatch getStopWatch() {
-		if (stopWatch == null) {
-			stopWatch = new StopWatch();
-		}
-		return stopWatch;
-	}
-	
-	private final static String getDateTime() {
-	    DateFormat df = new SimpleDateFormat("yyyy-MM-dd_hh:mm:ss");
-	    return df.format(new Date());
-	}
-}