/** * '$RCSfile$' * Purpose: Implements a service for managing a Hazelcast cluster member * Copyright: 2013 Regents of the University of California and the * National Center for Ecological Analysis and Synthesis * Authors: Leinfelder * * '$Author: leinfelder $' * '$Date: 2013-07-03 07:28:54 +0000 (Wed, 03 Jul 2013) $' * '$Revision: 7842 $' * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package edu.ucsb.nceas.metacat.index; import java.sql.SQLException; import java.util.Collection; import java.util.Map; import java.util.Set; import java.util.TreeMap; import org.apache.log4j.Logger; import org.dataone.service.types.v1.Identifier; import com.hazelcast.core.MapLoader; import com.hazelcast.core.MapStore; import edu.ucsb.nceas.metacat.common.index.event.IndexEvent; public class IndexEventMapStore implements MapStore, MapLoader { private Logger logMetacat = Logger.getLogger(IndexEventMapStore.class); /** * The map store/loader methods */ @Override public IndexEvent load(Identifier identifier) { try { return IndexEventDAO.getInstance().get(identifier); } catch (SQLException e) { logMetacat.error(e.getMessage(), e); } return null; } @Override public Map loadAll(Collection identifiers) { Map eventMap = new TreeMap(); for (Identifier identifier: identifiers) { IndexEvent event = null; try { event = IndexEventDAO.getInstance().get(identifier); eventMap.put(identifier, event); } catch (SQLException e) { logMetacat.error(e.getMessage(), e); } } return eventMap; } @Override public Set loadAllKeys() { try { return IndexEventDAO.getInstance().getAllIdentifiers(); } catch (SQLException e) { logMetacat.error(e.getMessage(), e); } return null; } @Override public void delete(Identifier identifier) { try { IndexEventDAO.getInstance().remove(identifier); } catch (SQLException e) { logMetacat.error(e.getMessage(), e); } } @Override public void deleteAll(Collection identifiers) { for (Identifier identifier: identifiers) { try { IndexEventDAO.getInstance().remove(identifier); } catch (SQLException e) { logMetacat.error(e.getMessage(), e); } } } @Override public void store(Identifier identifier, IndexEvent event) { try { IndexEventDAO.getInstance().add(event); } catch (SQLException e) { logMetacat.error(e.getMessage(), e); } } @Override public void storeAll(Map indexEventMap) { for (IndexEvent event: indexEventMap.values()) { try { IndexEventDAO.getInstance().add(event); } catch (SQLException e) { logMetacat.error(e.getMessage(), e); } } } }