All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.juneau.internal.ByteArrayCache Maven / Gradle / Ivy

There is a newer version: 9.0.1
Show newest version
// ***************************************************************************************************************************
// * 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.juneau.internal;

import java.io.*;
import java.util.*;
import java.util.concurrent.*;

/**
 * A utility class for caching byte arrays in memory so that duplicate arrays can be reused.
 */
public class ByteArrayCache {

	/**
	 * Default global byte array cache.
	 *
	 * 

* Note that this can't ever get garbage collected so don't add really large arrays! */ public static final ByteArrayCache DEFAULT = new ByteArrayCache(); private final ConcurrentHashMap cache = new ConcurrentHashMap(); /** * Add the specified byte array to this cache. * * @param contents The byte array to add to this cache. * @return * Either the same byte array or a previously cached byte array depending on whether the byte array already * exists in the cache. */ public byte[] cache(byte[] contents) { if (contents == null) return null; ByteArray ba = new ByteArray(contents); cache.putIfAbsent(ba, ba.contents); return cache.get(ba); } /** * Add the specified input stream to this cache. * * @param contents The input stream whose contents are to be added to this cache. * @return * Either the same byte array or a previously cached byte array depending on whether the byte array already * exists in the cache. * @throws IOException */ public byte[] cache(InputStream contents) throws IOException { if (contents == null) return null; ByteArray ba = new ByteArray(IOUtils.readBytes(contents, 1024)); cache.putIfAbsent(ba, ba.contents); return cache.get(ba); } /** * Returns the number of byte arrays in this cache. * * @return The number of byte arrays in this cache. */ public int size() { return cache.size(); } private static class ByteArray { private int hashCode; private byte[] contents; private ByteArray(byte[] contents) { this.contents = contents; int multiplier = 1; for (int i = 0; i < contents.length; i++) { hashCode += contents[i] * multiplier; int shifted = multiplier << 5; multiplier = shifted - multiplier; } } @Override /* Object */ public int hashCode() { if (hashCode == 0) { } return hashCode; } @Override /* Object */ public boolean equals(Object o) { if (o instanceof ByteArray) { ByteArray ba = (ByteArray)o; if (ba.hashCode == hashCode) return Arrays.equals(ba.contents, contents); } return false; } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy