org.apache.phoenix.pherf.result.ResultManager Maven / Gradle / Ivy
The newest version!
/*
* 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.pherf.result;
import org.apache.phoenix.pherf.PherfConstants;
import org.apache.phoenix.pherf.result.file.ResultFileDetails;
import org.apache.phoenix.pherf.result.impl.CSVFileResultHandler;
import org.apache.phoenix.pherf.result.impl.XMLResultHandler;
import org.apache.phoenix.pherf.rules.RulesApplier;
import org.apache.phoenix.util.InstanceResolver;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.util.ArrayList;
import java.util.List;
public class ResultManager {
private static final Logger LOGGER = LoggerFactory.getLogger(ResultManager.class);
private final List resultHandlers;
private final ResultUtil util;
private static final List defaultHandlers;
private static final List minimalHandlers;
static {
defaultHandlers = new ArrayList<>();
XMLResultHandler xmlResultHandler = new XMLResultHandler();
xmlResultHandler.setResultFileDetails(ResultFileDetails.XML);
defaultHandlers.add(xmlResultHandler);
ResultHandler handlerAgg = new CSVFileResultHandler();
handlerAgg.setResultFileDetails(ResultFileDetails.CSV_AGGREGATE_PERFORMANCE);
defaultHandlers.add(handlerAgg);
ResultHandler handlerDet = new CSVFileResultHandler();
handlerDet.setResultFileDetails(ResultFileDetails.CSV_DETAILED_PERFORMANCE);
defaultHandlers.add(handlerDet);
}
static {
minimalHandlers = new ArrayList<>();
ResultHandler cvsHandler = new CSVFileResultHandler();
cvsHandler.setResultFileDetails(ResultFileDetails.CSV_AGGREGATE_PERFORMANCE);
minimalHandlers.add(cvsHandler);
}
public ResultManager(String fileNameSeed) {
this(fileNameSeed, true);
}
@SuppressWarnings("unchecked")
public ResultManager(String fileNameSeed, boolean writeRuntimeResults) {
this(fileNameSeed, writeRuntimeResults ?
InstanceResolver.get(ResultHandler.class, defaultHandlers) :
InstanceResolver.get(ResultHandler.class, minimalHandlers));
}
public ResultManager(String fileNameSeed, List resultHandlers) {
this.resultHandlers = resultHandlers;
util = new ResultUtil();
for (ResultHandler resultHandler : resultHandlers) {
if (resultHandler.getResultFileName() == null) {
resultHandler.setResultFileName(fileNameSeed);
}
}
}
public synchronized void write(DataModelResult result) throws Exception {
write(result, null);
}
/**
* Write out the result to each writer in the pool
*
* @param result {@link DataModelResult}
* @throws Exception
*/
public synchronized void write(DataModelResult result, RulesApplier ruleApplier) throws Exception {
try {
util.ensureBaseResultDirExists();
final DataModelResult dataModelResultCopy = new DataModelResult(result);
for (ResultHandler handler : resultHandlers) {
util.write(handler, dataModelResultCopy, ruleApplier);
}
} finally {
for (ResultHandler handler : resultHandlers) {
try {
if (handler != null) {
handler.flush();
handler.close();
}
} catch (Exception e) {
e.printStackTrace();
}
}
}
}
public synchronized void write(List dataModelResults) throws Exception {
write(dataModelResults, null);
}
/**
* Write a combined set of results for each result in the list.
*
* @param dataModelResults {@code List }
* @throws Exception
*/
public synchronized void write(List dataModelResults, RulesApplier rulesApplier) throws Exception {
util.ensureBaseResultDirExists();
CSVFileResultHandler detailsCSVWriter = null;
try {
detailsCSVWriter = new CSVFileResultHandler();
detailsCSVWriter.setResultFileDetails(ResultFileDetails.CSV_DETAILED_PERFORMANCE);
detailsCSVWriter.setResultFileName(PherfConstants.COMBINED_FILE_NAME);
for (DataModelResult dataModelResult : dataModelResults) {
util.write(detailsCSVWriter, dataModelResult, rulesApplier);
}
} finally {
if (detailsCSVWriter != null) {
detailsCSVWriter.flush();
detailsCSVWriter.close();
}
}
}
/**
* Allows for flushing all the {@link org.apache.phoenix.pherf.result.ResultHandler}
*/
public synchronized void flush(){
for (ResultHandler handler : resultHandlers) {
try {
handler.flush();
} catch (Exception e) {
e.printStackTrace();
LOGGER.warn("Could not flush handler: "
+ handler.getResultFileName() + " : " + e.getMessage());
}
}
}
public List getResultHandlers() {
return resultHandlers;
}
}