org.grouplens.lenskit.util.table.TableImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lenskit-eval Show documentation
Show all versions of lenskit-eval Show documentation
Facilities for evaluating recommender algorithms.
/*
* LensKit, an open source recommender systems toolkit.
* Copyright 2010-2014 LensKit Contributors. See CONTRIBUTORS.md.
* Work on LensKit has been funded by the National Science Foundation under
* grants IIS 05-34939, 08-08692, 08-12148, and 10-17697.
*
* This program 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 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 General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License along with
* this program; if not, write to the Free Software Foundation, Inc., 51
* Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
package org.grouplens.lenskit.util.table;
import com.google.common.base.Preconditions;
import com.google.common.base.Predicate;
import com.google.common.collect.Iterables;
import com.google.common.collect.Lists;
import javax.annotation.Nonnull;
import javax.annotation.concurrent.Immutable;
import java.util.AbstractList;
import java.util.ArrayList;
import java.util.Iterator;
/**
* In-memory table implementation.
*
* @author GroupLens Research
*/
@Immutable
class TableImpl extends AbstractList implements Table {
private ArrayList rows;
private final TableLayout layout;
/**
* Construct a new table. This constructor should only be called from
* {@link TableBuilder}.
*
* @param layout The table layout.
* @param rws The table rows. Each row must have the same layout.
*/
TableImpl(TableLayout layout, Iterable rws) {
super();
rows = Lists.newArrayList(rws);
this.layout = layout;
}
/**
* Filter the table with the given matching data.
*
* @param col The name of the column
* @param data The data in the column to match
* @return A new table that has "data" in "col"
*/
@Override
public TableImpl filter(final String col, final Object data) {
Predicate pred = new Predicate() {
@Override
public boolean apply(Row input) {
return data.equals(input.value(col));
}
};
Iterable filtered = Iterables.filter(this.rows, pred);
return new TableImpl(layout, filtered);
}
@Override
public int size() {
return rows.size();
}
@Override @Nonnull
public Iterator iterator() {
return rows.iterator();
}
@Override
public Row get(int i) {
return rows.get(i);
}
@Override
public ColumnImpl column(String col) {
return new ColumnImpl(this, layout.columnIndex(col), col);
}
@Override
public ColumnImpl column(int idx) {
Preconditions.checkElementIndex(idx, layout.getColumnCount(), "column");
return new ColumnImpl(this, idx, layout.getColumns().get(idx));
}
@Override
public TableLayout getLayout() {
return layout;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy