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

com.netflix.astyanax.cql.reads.model.CqlRowListImpl Maven / Gradle / Ivy

package com.netflix.astyanax.cql.reads.model;

import java.util.ArrayList;
import java.util.Collection;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;

import com.datastax.driver.core.ResultSet;
import com.google.common.base.Function;
import com.google.common.collect.Lists;
import com.netflix.astyanax.Serializer;
import com.netflix.astyanax.cql.schema.CqlColumnFamilyDefinitionImpl;
import com.netflix.astyanax.cql.util.CqlTypeMapping;
import com.netflix.astyanax.model.ColumnFamily;
import com.netflix.astyanax.model.Row;
import com.netflix.astyanax.model.Rows;

/**
 * Impl for {@link Rows} that parses the {@link ResultSet} from java driver and translates back to Astyanax Rows. 
 * Note that if your schema has a clustering key, then each individual row from the result set is a unique column, 
 * and all result set rows with the same partition key map to a unique Astyanax row. 
 * 
 * @author poberai
 *
 * @param 
 * @param 
 */
public class CqlRowListImpl implements Rows {

	private final List>   rows;
	private final Map> lookup;

	private final ColumnFamily cf;
	private final CqlColumnFamilyDefinitionImpl cfDef; 
	
	public CqlRowListImpl() {
		this.rows = new ArrayList>();
		this.lookup = new HashMap>();
		
		this.cf = null;
		this.cfDef = null;
	}
	
	public CqlRowListImpl(List> newRows) {
		this.rows = new ArrayList>();
		this.rows.addAll(newRows);
		this.lookup = new HashMap>();
		for (Row row : this.rows) {
			this.lookup.put(row.getKey(), row);
		}
		this.cf = null;
		this.cfDef = null;
	}

	public CqlRowListImpl(List resultRows, ColumnFamily cf) {
		
		this.rows = new ArrayList>();
		this.lookup = new HashMap>();
		
		this.cf = cf;
		this.cfDef = (CqlColumnFamilyDefinitionImpl) cf.getColumnFamilyDefinition();
		
		Serializer keySerializer = cf.getKeySerializer();
		K prevKey = null; 
		List tempList = new ArrayList();
		
		for (com.datastax.driver.core.Row row : resultRows) {
			
			K rowKey = (K) CqlTypeMapping.getDynamicColumn(row, keySerializer, 0, cf);
			
			if (prevKey == null || prevKey.equals(rowKey)) {
				tempList.add(row);
			} else {
			
				// we found a set of contiguous rows that match with the same row key
				addToResultRows(tempList);
				tempList = new ArrayList();
				tempList.add(row);
			}
			prevKey = rowKey;
		}
		// flush the final list
		if (tempList.size() > 0) {
			addToResultRows(tempList);
		}
		
		for (Row row : rows) {
			this.lookup.put(row.getKey(),  row);
		}
	}

	private void addToResultRows(List rowList) {

		if (cfDef.getClusteringKeyColumnDefinitionList().size() == 0 || cfDef.getRegularColumnDefinitionList().size() > 1) {
			for (com.datastax.driver.core.Row row : rowList) {
				this.rows.add(new CqlRowImpl(row, cf));
			}
		} else {
			this.rows.add(new CqlRowImpl(rowList, cf));
		}
	}
	
	@Override
	public Iterator> iterator() {
		return rows.iterator();
	}

	@Override
	public Row getRow(K key) {
		return lookup.get(key);
	}

	@Override
	public int size() {
		return rows.size();
	}

	@Override
	public boolean isEmpty() {
		return rows.isEmpty();
	}

	@Override
	public Row getRowByIndex(int index) {
		return rows.get(index);
	}

	@Override
	public Collection getKeys() {
		return Lists.transform(rows, new Function, K>() {
			@Override
			public K apply(Row row) {
				return row.getKey();
			}
		});
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy