You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mina.apache.org by ed...@apache.org on 2008/08/04 02:10:30 UTC

svn commit: r682234 - in /mina/trunk/core/src/main/java/org/apache/mina: filter/buffer/IoBufferLazyInitializer.java util/LazyInitializedCacheMap.java util/LazyInitializer.java

Author: edeoliveira
Date: Sun Aug  3 17:10:29 2008
New Revision: 682234

URL: http://svn.apache.org/viewvc?rev=682234&view=rev
Log:
DIRMINA-519 New utility classes to lazily initialize and cache an IoBuffer; Should be useful for the BufferedWriteFilter

Added:
    mina/trunk/core/src/main/java/org/apache/mina/filter/buffer/IoBufferLazyInitializer.java   (with props)
    mina/trunk/core/src/main/java/org/apache/mina/util/LazyInitializedCacheMap.java   (with props)
    mina/trunk/core/src/main/java/org/apache/mina/util/LazyInitializer.java   (with props)

Added: mina/trunk/core/src/main/java/org/apache/mina/filter/buffer/IoBufferLazyInitializer.java
URL: http://svn.apache.org/viewvc/mina/trunk/core/src/main/java/org/apache/mina/filter/buffer/IoBufferLazyInitializer.java?rev=682234&view=auto
==============================================================================
--- mina/trunk/core/src/main/java/org/apache/mina/filter/buffer/IoBufferLazyInitializer.java (added)
+++ mina/trunk/core/src/main/java/org/apache/mina/filter/buffer/IoBufferLazyInitializer.java Sun Aug  3 17:10:29 2008
@@ -0,0 +1,55 @@
+/*
+ *  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.mina.filter.buffer;
+
+import org.apache.mina.core.buffer.IoBuffer;
+import org.apache.mina.util.LazyInitializer;
+
+/**
+ * An {@link LazyInitializer} implementation that initializes an 
+ * {@link IoBuffer} only when needed.
+ * 
+ * @author The Apache MINA Project (dev@mina.apache.org)
+ * @version $Rev$, $Date$
+ * @since MINA 2.0.0-M2
+ */
+public class IoBufferLazyInitializer extends LazyInitializer<IoBuffer> {
+
+    /**
+     * The buffer size allocated for each new session's buffer.
+     */
+    private int bufferSize;
+
+    /**
+     * Constructor which sets allocated buffer size to <code>bufferSize</code>.
+     * 
+     * @param bufferSize the new buffer size
+     */
+    public IoBufferLazyInitializer(int bufferSize) {
+        this.bufferSize = bufferSize;
+    }
+
+    /**
+     * {@inheritDoc}
+     */
+    public IoBuffer init() {
+        return IoBuffer.allocate(bufferSize);
+    }
+}
\ No newline at end of file

Propchange: mina/trunk/core/src/main/java/org/apache/mina/filter/buffer/IoBufferLazyInitializer.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: mina/trunk/core/src/main/java/org/apache/mina/filter/buffer/IoBufferLazyInitializer.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: mina/trunk/core/src/main/java/org/apache/mina/util/LazyInitializedCacheMap.java
URL: http://svn.apache.org/viewvc/mina/trunk/core/src/main/java/org/apache/mina/util/LazyInitializedCacheMap.java?rev=682234&view=auto
==============================================================================
--- mina/trunk/core/src/main/java/org/apache/mina/util/LazyInitializedCacheMap.java (added)
+++ mina/trunk/core/src/main/java/org/apache/mina/util/LazyInitializedCacheMap.java Sun Aug  3 17:10:29 2008
@@ -0,0 +1,220 @@
+/*
+ *  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.mina.util;
+
+import java.util.Collection;
+import java.util.Map;
+import java.util.Set;
+import java.util.concurrent.ConcurrentHashMap;
+import java.util.concurrent.ConcurrentMap;
+
+import org.apache.mina.core.buffer.IoBuffer;
+
+/**
+ * This map is specially useful when reads are much more frequent than writes and 
+ * if the cost of instantiating the values is high like allocating an 
+ * {@link IoBuffer} for example.
+ *  
+ * Based on the final implementation of Memoizer written by Brian Goetz and Tim
+ * Peierls. This implementation will return an
+ * {@link UnsupportedOperationException} on each method that is not intended to
+ * be called by user code for performance reasons.
+ * 
+ * @author The Apache MINA Project (dev@mina.apache.org)
+ * @version $Rev$, $Date$
+ * @since MINA 2.0.0-M2
+ */
+public class LazyInitializedCacheMap<K, V> implements Map<K, V> {
+    private ConcurrentMap<K, LazyInitializer<V>> cache;
+
+    /**
+     * This class provides a noop {@link LazyInitializer} meaning it 
+     * will return the same object it received when instantiated.
+     */
+    public class NoopInitializer extends LazyInitializer<V> {
+        private V value;
+
+        public NoopInitializer(V value) {
+            this.value = value;
+        }
+
+        public V init() {
+            return value;
+        }
+    }
+
+    /**
+     * Default constructor. Uses the default parameters to initialize its internal
+     * {@link ConcurrentHashMap}.
+     */
+    public LazyInitializedCacheMap() {
+        this.cache = new ConcurrentHashMap<K, LazyInitializer<V>>();
+    }
+    
+    /**
+     * This constructor allows to provide a fine tuned {@link ConcurrentHashMap}
+     * to stick with each special case the user needs.
+     */
+    public LazyInitializedCacheMap(final ConcurrentHashMap<K, LazyInitializer<V>> map) {
+        this.cache = map;
+    }    
+
+    /**
+     * {@inheritDoc}
+     */
+    public V get(Object key) {
+        LazyInitializer<V> c = cache.get(key);
+        if (c != null) {
+            return c.get();
+        }
+
+        return null;
+    }
+
+    /**
+     * {@inheritDoc}
+     */
+    public V remove(Object key) {
+        LazyInitializer<V> c = cache.remove(key);
+        if (c != null) {
+            return c.get();
+        }
+
+        return null;
+    }
+
+    /**
+     * If the specified key is not already associated
+     * with a value, associate it with the given value.
+     * This is equivalent to
+     * <pre>
+     *   if (!map.containsKey(key))
+     *       return map.put(key, value);
+     *   else
+     *       return map.get(key);</pre>
+     * except that the action is performed atomically.
+     *
+     * @param key key with which the specified value is to be associated
+     * @param value a lazy initialized value object.
+     * 
+     * 
+     * @return the previous value associated with the specified key,
+     *         or <tt>null</tt> if there was no mapping for the key
+     * @throws NullPointerException if the specified key or value is null
+     */
+    public V putIfAbsent(K key, LazyInitializer<V> value) {
+        LazyInitializer<V> v = cache.get(key);
+        if (v == null) {
+            v = cache.putIfAbsent(key, value);
+            if (v == null) {
+                return value.get();
+            }
+        }
+
+        return v.get();
+    }
+
+    /**
+     * {@inheritDoc}
+     */
+    public V put(K key, V value) {
+        LazyInitializer<V> c = cache.put(key, new NoopInitializer(value));
+        if (c != null) {
+            return c.get();
+        }
+
+        return null;
+    }
+
+    /**
+     * @throws {@link UnsupportedOperationException} as this method would imply
+     *         performance drops.
+     */
+    public boolean containsValue(Object value) {
+        throw new UnsupportedOperationException();
+    }
+
+    /**
+     * @throws {@link UnsupportedOperationException} as this method would imply
+     *         performance drops.
+     */
+    public Collection<V> values() {
+        throw new UnsupportedOperationException();
+    }
+
+    /**
+     * @throws {@link UnsupportedOperationException} as this method would imply
+     *         performance drops.
+     */
+    public Set<java.util.Map.Entry<K, V>> entrySet() {
+        throw new UnsupportedOperationException();
+    }
+
+    /**
+     * {@inheritDoc}
+     */
+    public void putAll(Map<? extends K, ? extends V> m) {
+        for (Map.Entry<? extends K, ? extends V> e : m.entrySet()) {
+            cache.put(e.getKey(), new NoopInitializer(e.getValue()));
+        }
+    }
+
+    /**
+     * {@inheritDoc}
+     */
+    public Collection<LazyInitializer<V>> getValues() {
+        return cache.values();
+    }
+
+    /**
+     * {@inheritDoc}
+     */
+    public void clear() {
+        cache.clear();
+    }
+
+    /**
+     * {@inheritDoc}
+     */
+    public boolean containsKey(Object key) {
+        return cache.containsKey(key);
+    }
+
+    /**
+     * {@inheritDoc}
+     */
+    public boolean isEmpty() {
+        return cache.isEmpty();
+    }
+
+    /**
+     * {@inheritDoc}
+     */
+    public Set<K> keySet() {
+        return cache.keySet();
+    }
+
+    /**
+     * {@inheritDoc}
+     */
+    public int size() {
+        return cache.size();
+    }
+}
\ No newline at end of file

Propchange: mina/trunk/core/src/main/java/org/apache/mina/util/LazyInitializedCacheMap.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: mina/trunk/core/src/main/java/org/apache/mina/util/LazyInitializedCacheMap.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: mina/trunk/core/src/main/java/org/apache/mina/util/LazyInitializer.java
URL: http://svn.apache.org/viewvc/mina/trunk/core/src/main/java/org/apache/mina/util/LazyInitializer.java?rev=682234&view=auto
==============================================================================
--- mina/trunk/core/src/main/java/org/apache/mina/util/LazyInitializer.java (added)
+++ mina/trunk/core/src/main/java/org/apache/mina/util/LazyInitializer.java Sun Aug  3 17:10:29 2008
@@ -0,0 +1,57 @@
+/*
+ *  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.mina.util;
+
+/**
+ * An abstract class which provides semantics for an object which will be only
+ * fully initialized when requested to. It allows to avoid loosing time when 
+ * early initializing unnecessary objects.
+ * 
+ * @author The Apache MINA Project (dev@mina.apache.org)
+ * @version $Rev$, $Date$
+ * @since MINA 2.0.0-M2
+ */
+public abstract class LazyInitializer<V> {
+
+    /**
+     * The value that results on the {@link #init()} call. If null,
+     * it means that the value has not been initialized yet.
+     */
+    private V value;
+
+    /**
+     * Initializes the value.
+     *
+     * @return the initialized value
+     */
+    public abstract V init();
+
+    /**
+     * Returns the value resulting from the initialization.
+     * @return the initialized value
+     */
+    public V get() {
+        if (value == null) {
+            value = init();
+        }
+
+        return value;
+    }
+}

Propchange: mina/trunk/core/src/main/java/org/apache/mina/util/LazyInitializer.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: mina/trunk/core/src/main/java/org/apache/mina/util/LazyInitializer.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain