All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.relique.jdbc.csv.SQLCountFunction Maven / Gradle / Ivy

There is a newer version: 1.0.43
Show newest version
/*
 *  CsvJdbc - a JDBC driver for CSV files
 *  Copyright (C) 2008  Mario Frasca
 *
 *  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., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 */
package org.relique.jdbc.csv;

import java.sql.SQLException;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util.Set;

class SQLCountFunction extends AggregateFunction
{
	HashSet distinctValues;
	Expression expression;
	int counter = 0;
	public SQLCountFunction(boolean isDistinct, Expression expression)
	{
		if (isDistinct)
			this.distinctValues = new HashSet();
		this.expression = expression;
	}
	public Object eval(Map env) throws SQLException
	{
		Integer retval;
		Object o = env.get(GROUPING_COLUMN_NAME);
		if (o != null)
		{
			/*
			 * The count is the number of rows grouped together
			 * by the GROUP BY clause.
			 */
			List groupRows = (List)o;
			if (this.distinctValues != null)
			{
				HashSet unique = new HashSet();
				for (int i = 0; i < groupRows.size(); i++)
				{
					o = expression.eval((Map)groupRows.get(i));
					if (o != null)
						unique.add(o);
				}
				retval = Integer.valueOf(unique.size());
			}
			else
			{
				int groupCounter = 0;
				if (expression instanceof AsteriskExpression)
				{
					groupCounter = groupRows.size();
				}
				else
				{
					for (int i = 0; i < groupRows.size(); i++)
					{
						o = expression.eval((Map)groupRows.get(i));
						if (o != null)
							groupCounter++;
					}
				}
				retval = Integer.valueOf(groupCounter);
			}
		}
		else
		{
			if (this.distinctValues != null)
				retval = Integer.valueOf(this.distinctValues.size());
			else
				retval = Integer.valueOf(counter);
		}
		return retval;
	}
	public String toString()
	{
		StringBuilder sb = new StringBuilder("COUNT(");
		if (distinctValues != null)
			sb.append("DISTINCT ");
		sb.append(expression);
		sb.append(")");
		return sb.toString();
	}
	public List usedColumns(Set availableColumns)
	{
		return new LinkedList();
	}
	public List aggregateColumns(Set availableColumns)
	{
		List result = new LinkedList();
		if (!(expression instanceof AsteriskExpression))
			result.addAll(expression.usedColumns(availableColumns));
		return result;
	}
	public List aggregateFunctions()
	{
		List result = new LinkedList();
		result.add(this);
		return result;
	}
	public void resetAggregateFunctions()
	{
		if (this.distinctValues != null)
			this.distinctValues.clear();
		this.counter = 0;
	}
	public void processRow(Map env) throws SQLException
	{
		if (expression instanceof AsteriskExpression)
		{
			counter++;
		}
		else
		{
			/*
			 * Only count non-null values.
			 */
			Object o = expression.eval(env);
			if (o != null)
			{
				counter++;
				if (distinctValues != null)
				{
					/*
					 * We want a count of DISTINCT values, so we have
					 * to keep a list of unique values.
					 */
					distinctValues.add(o);
				}
			}
		}
	}
}