// Licensed to the Apache Software Foundation (ASF) under one // or more contributor license agreements. See the NOTICE file // distributed with this work for additional information // regarding copyright ownership. The ASF licenses this file // to you under the Apache License, Version 2.0 (the // "License"); you may not use this file except in compliance // with the License. You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, // software distributed under the License is distributed on an // "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY // KIND, either express or implied. See the License for the // specific language governing permissions and limitations // under the License. package com.cloud.dao; import java.io.Serializable; import java.util.List; import java.util.Map; import javax.ejb.Local; import javax.naming.ConfigurationException; import net.sf.ehcache.Cache; import com.cloud.utils.component.Manager; import com.cloud.utils.db.GenericDao; import com.cloud.utils.db.GenericDaoBase; import com.cloud.utils.db.GenericSearchBuilder; import com.cloud.utils.db.SearchBuilder; import com.cloud.utils.db.SearchCriteria; @Local(value=EntityManager.class) @SuppressWarnings("unchecked") public class EntityManagerImpl implements EntityManager, Manager { String _name; Cache _cache; @Override public T findById(Class entityType, K id) { GenericDao dao = (GenericDao)GenericDaoBase.getDao(entityType); return dao.findById(id); } @Override public T findByXid(Class entityType, String xid) { return null; } @Override public List list(Class entityType) { GenericDao dao = GenericDaoBase.getDao(entityType); return dao.listAll(); } @Override public T persist(T t) { GenericDao dao = (GenericDao)GenericDaoBase.getDao((Class)t.getClass()); return dao.persist(t); } @Override public SearchBuilder createSearchBuilder(Class entityType) { GenericDao dao = (GenericDao)GenericDaoBase.getDao(entityType); return dao.createSearchBuilder(); } @Override public GenericSearchBuilder createGenericSearchBuilder(Class entityType, Class resultType) { GenericDao dao = (GenericDao)GenericDaoBase.getDao(entityType); return dao.createSearchBuilder((Class)resultType.getClass()); } @Override public boolean configure(String name, Map params) throws ConfigurationException { _name = name; /* String threadId = Long.toString(Thread.currentThread().getId()); CacheManager cm = CacheManager.create(); _cache = cm.getCache(threadId); if (_cache == null) { int maxElements = NumbersUtil.parseInt((String)params.get("cache.size"), 100); int live = NumbersUtil.parseInt((String)params.get("cache.time.to.live"), 300); int idle = NumbersUtil.parseInt((String)params.get("cache.time.to.idle"), 300); _cache = new Cache(threadId, maxElements, false, live == -1, live == -1 ? Integer.MAX_VALUE : live, idle); cm.addCache(_cache); }*/ return true; } @Override public boolean start() { return true; } @Override public boolean stop() { return true; } @Override public String getName() { return _name; } @Override public List search(Class entityType, SearchCriteria sc) { GenericDao dao = (GenericDao)GenericDaoBase.getDao(entityType); return dao.customSearch(sc, null); } @Override public void remove(Class entityType, K id) { GenericDao dao = (GenericDao)GenericDaoBase.getDao(entityType); dao.remove(id); } }