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

info.archinnov.achilles.context.ThriftDaoContextBuilder Maven / Gradle / Ivy

package info.archinnov.achilles.context;

import info.archinnov.achilles.dao.ThriftCounterDao;
import info.archinnov.achilles.dao.ThriftDaoFactory;
import info.archinnov.achilles.dao.ThriftGenericEntityDao;
import info.archinnov.achilles.dao.ThriftGenericWideRowDao;
import info.archinnov.achilles.entity.metadata.EntityMeta;

import java.util.HashMap;
import java.util.Map;

import me.prettyprint.hector.api.Cluster;
import me.prettyprint.hector.api.Keyspace;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
 * ThriftDaoContextBuilder
 * 
 * @author DuyHai DOAN
 * 
 */
public class ThriftDaoContextBuilder
{
	private static final Logger log = LoggerFactory.getLogger(ThriftDaoContextBuilder.class);

	private ThriftDaoFactory daoFactory = new ThriftDaoFactory();

	public ThriftDaoContext buildDao(Cluster cluster, Keyspace keyspace,
			Map, EntityMeta> entityMetaMap,
			ConfigurationContext configContext, boolean hasSimpleCounter)
	{

		Map entityDaosMap = new HashMap();
		Map wideRowDaosMap = new HashMap();
		ThriftCounterDao thriftCounterDao = null;
		if (hasSimpleCounter)
		{
			thriftCounterDao = daoFactory.createCounterDao(cluster, keyspace, configContext);
			log.debug("Build achillesCounterCF dao");
		}

		for (EntityMeta entityMeta : entityMetaMap.values())
		{
			if (entityMeta.isClusteredEntity())
			{
				daoFactory.createClusteredEntityDao(cluster, keyspace, configContext, entityMeta,
						wideRowDaosMap);
			}
			else
			{
				daoFactory.createDaosForEntity(cluster, keyspace, configContext, entityMeta,
						entityDaosMap,
						wideRowDaosMap);
			}
		}
		return new ThriftDaoContext(entityDaosMap, wideRowDaosMap, thriftCounterDao);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy