/* * #! * Ontopia Engine * #- * Copyright (C) 2001 - 2013 The Ontopia Project * #- * Licensed 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 net.ontopia.utils; import java.util.ArrayList; import java.util.Collections; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.Set; /** * INTERNAL: A collection factory that returns synchronized standard * java.util collection objects. */ public class SynchronizedCollectionFactory implements CollectionFactoryIF, java.io.Serializable { static final long serialVersionUID = -4670702015296061304L; protected int initsize; public SynchronizedCollectionFactory() { initsize = 4; } public SynchronizedCollectionFactory(int initsize) { this.initsize = initsize; } public <T> Set<T> makeSmallSet() { return new SynchronizedCompactHashSet<T>(); } public <T> Set<T> makeLargeSet() { return new SynchronizedCompactHashSet<T>(); } public <K, V> Map<K, V> makeSmallMap() { return Collections.synchronizedMap(new HashMap<K, V>(initsize)); } public <K, V> Map<K, V> makeLargeMap() { return Collections.synchronizedMap(new HashMap<K, V>()); } public <T> List<T> makeSmallList() { return Collections.synchronizedList(new ArrayList<T>(initsize)); } public <T> List<T> makeLargeList() { return Collections.synchronizedList(new ArrayList<T>()); } }