CaseInsensitiveTable.java

  1. /*
  2.  *
  3.  * The DbUnit Database Testing Framework
  4.  * Copyright (C)2002-2004, DbUnit.org
  5.  *
  6.  * This library is free software; you can redistribute it and/or
  7.  * modify it under the terms of the GNU Lesser General Public
  8.  * License as published by the Free Software Foundation; either
  9.  * version 2.1 of the License, or (at your option) any later version.
  10.  *
  11.  * This library is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  14.  * Lesser General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU Lesser General Public
  17.  * License along with this library; if not, write to the Free Software
  18.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  19.  *
  20.  */

  21. package org.dbunit.dataset;

  22. import org.slf4j.Logger;
  23. import org.slf4j.LoggerFactory;

  24. /**
  25.  * @author Manuel Laflamme
  26.  * @version $Revision$
  27.  * @since Mar 27, 2002
  28.  * @deprecated All IDataSet implementations are case insensitive since DbUnit 1.5
  29.  */
  30. public class CaseInsensitiveTable implements ITable
  31. {

  32.     /**
  33.      * Logger for this class
  34.      */
  35.     private static final Logger logger = LoggerFactory.getLogger(CaseInsensitiveTable.class);

  36.     private final ITable _table;

  37.     public CaseInsensitiveTable(ITable table)
  38.     {
  39.         _table = table;
  40.     }

  41.     private String getInternalColumnName(String columnName)
  42.             throws DataSetException
  43.     {
  44.         logger.debug("getInternalColumnName(columnName={}) - start", columnName);

  45.         Column[] columns = _table.getTableMetaData().getColumns();

  46.         for (int i = 0; i < columns.length; i++)
  47.         {
  48.             Column column = columns[i];
  49.             if (columnName.equalsIgnoreCase(column.getColumnName()))
  50.             {
  51.                 return column.getColumnName();
  52.             }
  53.         }

  54.         throw new NoSuchColumnException(_table.getTableMetaData().getTableName(), columnName);
  55.     }

  56.     ////////////////////////////////////////////////////////////////////////////
  57.     // ITable interface

  58.     public ITableMetaData getTableMetaData()
  59.     {
  60.         return _table.getTableMetaData();
  61.     }

  62.     public int getRowCount()
  63.     {
  64.         return _table.getRowCount();
  65.     }

  66.     public Object getValue(int row, String column) throws DataSetException
  67.     {
  68.         if(logger.isDebugEnabled())
  69.             logger.debug("getValue(row={}, columnName={}) - start", Integer.toString(row), column);

  70.         return _table.getValue(row, getInternalColumnName(column));
  71.     }
  72. }