/* * JBoss, Home of Professional Open Source * Copyright 2009 Red Hat Inc. and/or its affiliates and other * contributors as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a full listing of * individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software 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 * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.infinispan.container.entries; import org.infinispan.marshall.AbstractExternalizer; import org.infinispan.marshall.Ids; import org.infinispan.util.Util; import java.io.IOException; import java.io.ObjectInput; import java.io.ObjectOutput; import java.util.Set; /** * A cache entry that is immortal/cannot expire * * @author Manik Surtani * @since 4.0 */ public class ImmortalCacheEntry extends AbstractInternalCacheEntry { protected ImmortalCacheValue cacheValue; protected ImmortalCacheEntry(Object key, ImmortalCacheValue value) { super(key); this.cacheValue = value; } public ImmortalCacheEntry(Object key, Object value) { super(key); this.cacheValue = new ImmortalCacheValue(value); } @Override public final boolean isExpired(long now) { return false; } @Override public final boolean isExpired() { return false; } @Override public final boolean canExpire() { return false; } @Override public final long getCreated() { return -1; } @Override public final long getLastUsed() { return -1; } @Override public final long getLifespan() { return -1; } @Override public final long getMaxIdle() { return -1; } @Override public final long getExpiryTime() { return -1; } @Override public final void touch() { // no-op } @Override public void touch(long currentTimeMillis) { // no-op } @Override public final void reincarnate() { // no-op } @Override public InternalCacheValue toInternalCacheValue() { return cacheValue; } @Override public Object getValue() { return cacheValue.value; } @Override public Object setValue(Object value) { return this.cacheValue.setValue(value); } @Override public boolean equals(Object o) { if (this == o) return true; if (o == null || getClass() != o.getClass()) return false; ImmortalCacheEntry that = (ImmortalCacheEntry) o; if (key != null ? !key.equals(that.key) : that.key != null) return false; if (cacheValue != null ? !cacheValue.equals(that.cacheValue) : that.cacheValue != null) return false; return true; } @Override public int hashCode() { int result = key != null ? key.hashCode() : 0; result = 31 * result + (cacheValue != null ? cacheValue.hashCode() : 0); return result; } @Override public ImmortalCacheEntry clone() { ImmortalCacheEntry clone = (ImmortalCacheEntry) super.clone(); clone.cacheValue = cacheValue.clone(); return clone; } public static class Externalizer extends AbstractExternalizer<ImmortalCacheEntry> { @Override public void writeObject(ObjectOutput output, ImmortalCacheEntry ice) throws IOException { output.writeObject(ice.key); output.writeObject(ice.cacheValue.value); } @Override public ImmortalCacheEntry readObject(ObjectInput input) throws IOException, ClassNotFoundException { Object k = input.readObject(); Object v = input.readObject(); return new ImmortalCacheEntry(k, v); } @Override public Integer getId() { return Ids.IMMORTAL_ENTRY; } @Override public Set<Class<? extends ImmortalCacheEntry>> getTypeClasses() { return Util.<Class<? extends ImmortalCacheEntry>>asSet(ImmortalCacheEntry.class); } } @Override public String toString() { return "ImmortalCacheEntry{" + "key=" + key + ", value=" + cacheValue + "}"; } }