/** * AnalyzerBeans * Copyright (C) 2014 Neopost - Customer Information Management * * This copyrighted material is made available to anyone wishing to use, modify, * copy, or redistribute it subject to the terms and conditions of the GNU * Lesser General Public License, as published by the Free Software Foundation. * * 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 Lesser General Public License * for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this distribution; if not, write to: * Free Software Foundation, Inc. * 51 Franklin Street, Fifth Floor * Boston, MA 02110-1301 USA */ package org.eobjects.analyzer.job.runner; import org.eobjects.analyzer.job.AnalysisJob; import org.eobjects.analyzer.job.AnalyzerJob; import org.apache.metamodel.schema.Table; final class AnalysisJobMetricsImpl implements AnalysisJobMetrics { private final AnalysisJob _job; private final RowProcessingPublishers _publishers; public AnalysisJobMetricsImpl(AnalysisJob job, RowProcessingPublishers publishers) { _job = job; _publishers = publishers; } @Override public AnalysisJob getAnalysisJob() { return _job; } @Override public AnalyzerMetrics getAnalyzerMetrics(AnalyzerJob analyzerJob) { Table table = getRowProcessingTable(analyzerJob); RowProcessingMetrics rowProcessingMetrics = getRowProcessingMetrics(table); return new AnalyzerMetricsImpl(rowProcessingMetrics, analyzerJob); } @Override public Table[] getRowProcessingTables() { return _publishers.getTables(); } @Override public RowProcessingMetrics getRowProcessingMetrics(Table table) { final RowProcessingPublisher publisher = _publishers.getRowProcessingPublisher(table); if (publisher == null) { return null; } return publisher.getRowProcessingMetrics(); } @Override public Table getRowProcessingTable(AnalyzerJob analyzerJob) { Table[] tables = _publishers.getTables(analyzerJob); if (tables == null || tables.length == 0) { return null; } // this should always work for analyzers, since they only pertain to a // single table return tables[0]; } }