1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459
|
/*
* This program is free software; you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License, version 2.1 as published by the Free Software
* Foundation.
*
* You should have received a copy of the GNU Lesser General Public License along with this
* program; if not, you can obtain a copy at http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html
* or from the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
* This program 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.
*
* Copyright (c) 2007 - 2009 Pentaho Corporation and Contributors. All rights reserved.
*/
package org.pentaho.reporting.libraries.base.util;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.NoSuchElementException;
import java.util.Set;
import java.util.Map;
/**
* The HashNMap can be used to store multiple values by a single key value. The
* values stored can be retrieved using a direct query or by creating an
* enumeration over the stored elements.
*
* @author Thomas Morgner
*/
public class HashNMap implements Serializable, Cloneable
{
/**
* Serialization support.
*/
private static final long serialVersionUID = -670924844536074826L;
/**
* An helper class to implement an empty iterator. This iterator will always
* return false when <code>hasNext</code> is called.
*/
private static final class EmptyIterator implements Iterator
{
/**
* DefaultConstructor.
*/
private EmptyIterator()
{
super();
}
/**
* Returns <tt>true</tt> if the iteration has more elements. (In other
* words, returns <tt>true</tt> if <tt>next</tt> would return an element
* rather than throwing an exception.)
*
* @return <tt>true</tt> if the iterator has more elements.
*/
public boolean hasNext()
{
return false;
}
/**
* Returns the next element in the iteration.
*
* @return the next element in the iteration.
* @throws java.util.NoSuchElementException
* iteration has no more elements.
*/
public Object next()
{
throw new NoSuchElementException("This iterator is empty.");
}
/**
* Removes from the underlying collection the last element returned by the
* iterator (optional operation). This method can be called only once per
* call to <tt>next</tt>. The behavior of an iterator is unspecified if
* the underlying collection is modified while the iteration is in
* progress in any way other than by calling this method.
*
* @throws UnsupportedOperationException if the <tt>remove</tt>
* operation is not supported by this Iterator.
* @throws IllegalStateException if the <tt>next</tt> method has not
* yet been called, or the <tt>remove</tt> method has already
* been called after the last call to the <tt>next</tt>
* method.
*/
public void remove()
{
throw new UnsupportedOperationException("This iterator is empty, no remove supported.");
}
}
/**
* A singleton instance of the empty iterator. This object can be safely
* shared.
*/
private static final Iterator EMPTY_ITERATOR = new EmptyIterator();
/**
* The underlying storage.
*/
private HashMap table;
/**
* An empty array.
*/
private static final Object[] EMPTY_ARRAY = new Object[0];
/**
* Default constructor.
*/
public HashNMap()
{
this.table = new HashMap();
}
/**
* Returns a new empty list.
*
* @return A new empty list.
*/
protected List createList()
{
return new ArrayList();
}
/**
* Inserts a new key/value pair into the map. If such a pair already
* exists, it gets replaced with the given values.
*
* @param key the key.
* @param val the value.
* @return A boolean.
*/
public boolean put(final Object key, final Object val)
{
final List v = (List) this.table.get(key);
if (v == null)
{
final List newList = createList();
newList.add(val);
this.table.put(key, newList);
return true;
}
else
{
v.clear();
return v.add(val);
}
}
/**
* Adds a new key/value pair into this map. If the key is not yet in the
* map, it gets added to the map and the call is equal to
* put(Object,Object).
*
* @param key the key.
* @param val the value.
* @return true, if the value has been added, false otherwise
*/
public boolean add(final Object key, final Object val)
{
final List v = (List) this.table.get(key);
if (v == null)
{
put(key, val);
return true;
}
else
{
return v.add(val);
}
}
/**
* Retrieves the first value registered for an key or null if there was no
* such key in the list.
*
* @param key the key.
* @return the value.
*/
public Object getFirst(final Object key)
{
return get(key, 0);
}
/**
* Retrieves the n-th value registered for an key or null if there was no
* such key in the list. An index out of bounds exception is thrown if
* there are less than n elements registered to this key.
*
* @param key the key.
* @param n the index.
* @return the object.
*/
public Object get(final Object key, final int n)
{
final List v = (List) this.table.get(key);
if (v == null)
{
return null;
}
return v.get(n);
}
/**
* Returns an iterator over all elements registered to the given key.
*
* @param key the key.
* @return an iterator.
*/
public Iterator getAll(final Object key)
{
final List v = (List) this.table.get(key);
if (v == null)
{
return EMPTY_ITERATOR;
}
return v.iterator();
}
/**
* Returns all registered keys as an enumeration.
*
* @return an enumeration of the keys.
*/
public Iterator keys()
{
return this.table.keySet().iterator();
}
/**
* Returns all registered keys as set.
*
* @return a set of keys.
*/
public Set keySet()
{
return this.table.keySet();
}
/**
* Removes the key/value pair from the map. If the removed entry was the
* last entry for this key, the key gets also removed.
*
* @param key the key.
* @param value the value.
* @return true, if removing the element was successfull, false otherwise.
*/
public boolean remove(final Object key, final Object value)
{
final List v = (List) this.table.get(key);
if (v == null)
{
return false;
}
if (!v.remove(value))
{
return false;
}
if (v.isEmpty())
{
this.table.remove(key);
}
return true;
}
/**
* Removes all elements for the given key.
*
* @param key the key.
*/
public void removeAll(final Object key)
{
this.table.remove(key);
}
/**
* Clears all keys and values of this map.
*/
public void clear()
{
this.table.clear();
}
/**
* Tests whether this map contains the given key.
*
* @param key the key.
* @return true if the key is contained in the map
*/
public boolean containsKey(final Object key)
{
return this.table.containsKey(key);
}
/**
* Tests whether this map contains the given value.
*
* @param value the value.
* @return true if the value is registered in the map for an key.
*/
public boolean containsValue(final Object value)
{
final Iterator e = this.table.values().iterator();
boolean found = false;
while (e.hasNext() && !found)
{
final List v = (List) e.next();
found = v.contains(value);
}
return found;
}
/**
* Tests whether this map contains the given value.
*
* @param value the value.
* @param key the key under which to find the value
* @return true if the value is registered in the map for an key.
*/
public boolean containsValue(final Object key, final Object value)
{
final List v = (List) this.table.get(key);
if (v == null)
{
return false;
}
return v.contains(value);
}
/**
* Tests whether this map contains the given key or value.
*
* @param value the value.
* @return true if the key or value is contained in the map
*/
public boolean contains(final Object value)
{
if (containsKey(value))
{
return true;
}
return containsValue(value);
}
/**
* Creates a deep copy of this HashNMap.
*
* @return a clone.
* @throws CloneNotSupportedException this should never happen.
*/
public Object clone() throws CloneNotSupportedException
{
final HashNMap map = (HashNMap) super.clone();
map.table = (HashMap) table.clone();
final Iterator iterator = map.table.entrySet().iterator();
while (iterator.hasNext())
{
final Map.Entry entry = (Map.Entry) iterator.next();
final List list = (List) entry.getValue();
if (list != null)
{
entry.setValue(ObjectUtilities.clone(list));
}
}
return map;
}
/**
* Returns the contents for the given key as object array. If there were
* no objects registered with that key, an empty object array is returned.
*
* @param key the key.
* @param data the object array to receive the contents.
* @return the contents.
*/
public Object[] toArray(final Object key, final Object[] data)
{
if (key == null)
{
throw new NullPointerException("Key must not be null.");
}
final List list = (List) this.table.get(key);
if (list != null)
{
return list.toArray(data);
}
if (data.length > 0)
{
data[0] = null;
}
return data;
}
/**
* Returns the contents for the given key as object array. If there were
* no objects registered with that key, an empty object array is returned.
*
* @param key the key.
* @return the contents.
*/
public Object[] toArray(final Object key)
{
if (key == null)
{
throw new NullPointerException("Key must not be null.");
}
final List list = (List) this.table.get(key);
if (list != null)
{
return list.toArray();
}
return EMPTY_ARRAY;
}
/**
* Returns the number of elements registered with the given key.
*
* @param key the key.
* @return the number of element for this key, or 0 if there are no elements
* registered.
*/
public int getValueCount(final Object key)
{
if (key == null)
{
throw new NullPointerException("Key must not be null.");
}
final List list = (List) this.table.get(key);
if (list != null)
{
return list.size();
}
return 0;
}
/**
* Checks, whether the map is empty.
*
* @return true, if the map does not contain any keys.
*/
public boolean isEmpty()
{
return table.isEmpty();
}
}
|