/* * 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 org.apache.isis.core.runtime.system.persistence.adaptermanager; import java.util.Iterator; import java.util.Map; import com.google.common.collect.Maps; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.apache.isis.core.commons.components.SessionScopedComponent; import org.apache.isis.core.metamodel.adapter.ObjectAdapter; public class PojoAdapterHashMap implements Iterable<ObjectAdapter>, SessionScopedComponent { private static class IdentityHashKey { private final Object pojo; public IdentityHashKey(final Object pojo) { this.pojo = pojo; } @Override public int hashCode() { return System.identityHashCode(pojo); } @Override public boolean equals(final Object obj) { return obj == this || (obj instanceof IdentityHashKey && ((IdentityHashKey) obj).pojo == pojo); } } private static final Logger LOG = LoggerFactory.getLogger(PojoAdapterHashMap.class); public static final int DEFAULT_POJO_ADAPTER_MAP_SIZE = OidAdapterHashMap.DEFAULT_OID_ADAPTER_MAP_SIZE; protected final Map<Object, ObjectAdapter> adapterByPojoMap; //region > Constructors, finalize public PojoAdapterHashMap() { this(DEFAULT_POJO_ADAPTER_MAP_SIZE); } public PojoAdapterHashMap(final int capacity) { adapterByPojoMap = Maps.newHashMapWithExpectedSize(capacity); } @Override protected void finalize() throws Throwable { super.finalize(); if(LOG.isDebugEnabled()) { LOG.debug("finalizing hash of pojos"); } } //endregion //region > open, close public void open() { // nothing to do } public void close() { if(LOG.isDebugEnabled()) { LOG.debug("close"); } adapterByPojoMap.clear(); } //endregion //region > add, remove public void add(final Object pojo, final ObjectAdapter adapter) { adapterByPojoMap.put(key(pojo), adapter); if(LOG.isDebugEnabled()) { LOG.debug("add adapter: #" + key(pojo) + " -> #" + Long.toHexString(adapter.hashCode())); } } public void remove(final ObjectAdapter object) { if(LOG.isDebugEnabled()) { LOG.debug("remove adapter: " + object); } adapterByPojoMap.remove(key(object.getObject())); } //endregion //region > getAdapter, containsPojo public boolean containsPojo(final Object pojo) { return adapterByPojoMap.containsKey(key(pojo)); } public ObjectAdapter getAdapter(final Object pojo) { return adapterByPojoMap.get(key(pojo)); } //endregion //region > iterator, key @Override public Iterator<ObjectAdapter> iterator() { return adapterByPojoMap.values().iterator(); } private Object key(final Object pojo) { return new IdentityHashKey(pojo); } //endregion }