001 /* 002 * Copyright (C) 2009 The Guava Authors 003 * 004 * Licensed under the Apache License, Version 2.0 (the "License"); 005 * you may not use this file except in compliance with the License. 006 * You may obtain a copy of the License at 007 * 008 * http://www.apache.org/licenses/LICENSE-2.0 009 * 010 * Unless required by applicable law or agreed to in writing, software 011 * distributed under the License is distributed on an "AS IS" BASIS, 012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 013 * See the License for the specific language governing permissions and 014 * limitations under the License. 015 */ 016 017 package com.google.common.collect; 018 019 import static com.google.common.base.Preconditions.checkArgument; 020 import static com.google.common.base.Preconditions.checkNotNull; 021 022 import com.google.common.annotations.Beta; 023 import com.google.common.base.Objects; 024 025 import java.io.Serializable; 026 import java.lang.reflect.Array; 027 import java.util.AbstractCollection; 028 import java.util.AbstractMap; 029 import java.util.AbstractSet; 030 import java.util.Arrays; 031 import java.util.Collection; 032 import java.util.Iterator; 033 import java.util.Map; 034 import java.util.Map.Entry; 035 import java.util.Set; 036 037 import javax.annotation.Nullable; 038 039 /** 040 * Fixed-size {@link Table} implementation backed by a two-dimensional array. 041 * 042 * <p>The allowed row and column keys must be supplied when the table is 043 * created. The table always contains a mapping for every row key / column pair. 044 * The value corresponding to a given row and column is null unless another 045 * value is provided. 046 * 047 * <p>The table's size is constant: the product of the number of supplied row 048 * keys and the number of supplied column keys. The {@code remove} and {@code 049 * clear} methods are not supported by the table or its views. The {@link 050 * #erase} and {@link #eraseAll} methods may be used instead. 051 * 052 * <p>The ordering of the row and column keys provided when the table is 053 * constructed determines the iteration ordering across rows and columns in the 054 * table's views. None of the view iterators support {@link Iterator#remove}. 055 * If the table is modified after an iterator is created, the iterator remains 056 * valid. 057 * 058 * <p>This class requires less memory than the {@link HashBasedTable} and {@link 059 * TreeBasedTable} implementations, except when the table is sparse. 060 * 061 * <p>Null row keys or column keys are not permitted. 062 * 063 * <p>This class provides methods involving the underlying array structure, 064 * where the array indices correspond to the position of a row or column in the 065 * lists of allowed keys and values. See the {@link #at}, {@link #set}, {@link 066 * #toArray}, {@link #rowKeyList}, and {@link #columnKeyList} methods for more 067 * details. 068 * 069 * <p>Note that this implementation is not synchronized. If multiple threads 070 * access the same cell of an {@code ArrayTable} concurrently and one of the 071 * threads modifies its value, there is no guarantee that the new value will be 072 * fully visible to the other threads. To guarantee that modifications are 073 * visible, synchronize access to the table. Unlike other {@code Table} 074 * implementations, synchronization is unnecessary between a thread that writes 075 * to one cell and a thread that reads from another. 076 * 077 * @author Jared Levy 078 * @since 10.0 079 */ 080 @Beta 081 public final class ArrayTable<R, C, V> implements Table<R, C, V>, Serializable { 082 083 /** 084 * Creates an empty {@code ArrayTable}. 085 * 086 * @param rowKeys row keys that may be stored in the generated table 087 * @param columnKeys column keys that may be stored in the generated table 088 * @throws NullPointerException if any of the provided keys is null 089 * @throws IllegalArgumentException if {@code rowKeys} or {@code columnKeys} 090 * contains duplicates or is empty 091 */ 092 public static <R, C, V> ArrayTable<R, C, V> create( 093 Iterable<? extends R> rowKeys, Iterable<? extends C> columnKeys) { 094 return new ArrayTable<R, C, V>(rowKeys, columnKeys); 095 } 096 097 /* 098 * TODO(jlevy): Add factory methods taking an Enum class, instead of an 099 * iterable, to specify the allowed row keys and/or column keys. Note that 100 * custom serialization logic is needed to support different enum sizes during 101 * serialization and deserialization. 102 */ 103 104 /** 105 * Creates an {@code ArrayTable} with the mappings in the provided table. 106 * 107 * <p>If {@code table} includes a mapping with row key {@code r} and a 108 * separate mapping with column key {@code c}, the returned table contains a 109 * mapping with row key {@code r} and column key {@code c}. If that row key / 110 * column key pair in not in {@code table}, the pair maps to {@code null} in 111 * the generated table. 112 * 113 * <p>The returned table allows subsequent {@code put} calls with the row keys 114 * in {@code table.rowKeySet()} and the column keys in {@code 115 * table.columnKeySet()}. Calling {@link #put} with other keys leads to an 116 * {@code IllegalArgumentException}. 117 * 118 * <p>The ordering of {@code table.rowKeySet()} and {@code 119 * table.columnKeySet()} determines the row and column iteration ordering of 120 * the returned table. 121 * 122 * @throws NullPointerException if {@code table} has a null key 123 * @throws IllegalArgumentException if the provided table is empty 124 */ 125 public static <R, C, V> ArrayTable<R, C, V> create(Table<R, C, V> table) { 126 return new ArrayTable<R, C, V>(table); 127 } 128 129 /** 130 * Creates an {@code ArrayTable} with the same mappings, allowed keys, and 131 * iteration ordering as the provided {@code ArrayTable}. 132 */ 133 public static <R, C, V> ArrayTable<R, C, V> create( 134 ArrayTable<R, C, V> table) { 135 return new ArrayTable<R, C, V>(table); 136 } 137 138 private final ImmutableList<R> rowList; 139 private final ImmutableList<C> columnList; 140 141 // TODO(jlevy): Add getters returning rowKeyToIndex and columnKeyToIndex? 142 private final ImmutableMap<R, Integer> rowKeyToIndex; 143 private final ImmutableMap<C, Integer> columnKeyToIndex; 144 private final V[][] array; 145 146 private ArrayTable(Iterable<? extends R> rowKeys, 147 Iterable<? extends C> columnKeys) { 148 this.rowList = ImmutableList.copyOf(rowKeys); 149 this.columnList = ImmutableList.copyOf(columnKeys); 150 checkArgument(!rowList.isEmpty()); 151 checkArgument(!columnList.isEmpty()); 152 153 /* 154 * TODO(jlevy): Support empty rowKeys or columnKeys? If we do, when 155 * columnKeys is empty but rowKeys isn't, the table is empty but 156 * containsRow() can return true and rowKeySet() isn't empty. 157 */ 158 ImmutableMap.Builder<R, Integer> rowBuilder = ImmutableMap.builder(); 159 for (int i = 0; i < rowList.size(); i++) { 160 rowBuilder.put(rowList.get(i), i); 161 } 162 rowKeyToIndex = rowBuilder.build(); 163 164 ImmutableMap.Builder<C, Integer> columnBuilder = ImmutableMap.builder(); 165 for (int i = 0; i < columnList.size(); i++) { 166 columnBuilder.put(columnList.get(i), i); 167 } 168 columnKeyToIndex = columnBuilder.build(); 169 170 @SuppressWarnings("unchecked") 171 V[][] tmpArray 172 = (V[][]) new Object[rowList.size()][columnList.size()]; 173 array = tmpArray; 174 } 175 176 private ArrayTable(Table<R, C, V> table) { 177 this(table.rowKeySet(), table.columnKeySet()); 178 putAll(table); 179 } 180 181 private ArrayTable(ArrayTable<R, C, V> table) { 182 rowList = table.rowList; 183 columnList = table.columnList; 184 rowKeyToIndex = table.rowKeyToIndex; 185 columnKeyToIndex = table.columnKeyToIndex; 186 @SuppressWarnings("unchecked") 187 V[][] copy = (V[][]) new Object[rowList.size()][columnList.size()]; 188 array = copy; 189 for (int i = 0; i < rowList.size(); i++) { 190 System.arraycopy(table.array[i], 0, copy[i], 0, table.array[i].length); 191 } 192 } 193 194 /** 195 * Returns, as an immutable list, the row keys provided when the table was 196 * constructed, including those that are mapped to null values only. 197 */ 198 public ImmutableList<R> rowKeyList() { 199 return rowList; 200 } 201 202 /** 203 * Returns, as an immutable list, the column keys provided when the table was 204 * constructed, including those that are mapped to null values only. 205 */ 206 public ImmutableList<C> columnKeyList() { 207 return columnList; 208 } 209 210 /** 211 * Returns the value corresponding to the specified row and column indices. 212 * The same value is returned by {@code 213 * get(rowKeyList().get(rowIndex), columnKeyList().get(columnIndex))}, but 214 * this method runs more quickly. 215 * 216 * @param rowIndex position of the row key in {@link #rowKeyList()} 217 * @param columnIndex position of the row key in {@link #columnKeyList()} 218 * @return the value with the specified row and column 219 * @throws IndexOutOfBoundsException if either index is negative, {@code 220 * rowIndex} is greater then or equal to the number of allowed row keys, 221 * or {@code columnIndex} is greater then or equal to the number of 222 * allowed column keys 223 */ 224 public V at(int rowIndex, int columnIndex) { 225 return array[rowIndex][columnIndex]; 226 } 227 228 /** 229 * Associates {@code value} with the specified row and column indices. The 230 * logic {@code 231 * put(rowKeyList().get(rowIndex), columnKeyList().get(columnIndex), value)} 232 * has the same behavior, but this method runs more quickly. 233 * 234 * @param rowIndex position of the row key in {@link #rowKeyList()} 235 * @param columnIndex position of the row key in {@link #columnKeyList()} 236 * @param value value to store in the table 237 * @return the previous value with the specified row and column 238 * @throws IndexOutOfBoundsException if either index is negative, {@code 239 * rowIndex} is greater then or equal to the number of allowed row keys, 240 * or {@code columnIndex} is greater then or equal to the number of 241 * allowed column keys 242 */ 243 public V set(int rowIndex, int columnIndex, @Nullable V value) { 244 V oldValue = array[rowIndex][columnIndex]; 245 array[rowIndex][columnIndex] = value; 246 return oldValue; 247 } 248 249 /** 250 * Returns a two-dimensional array with the table contents. The row and column 251 * indices correspond to the positions of the row and column in the iterables 252 * provided during table construction. If the table lacks a mapping for a 253 * given row and column, the corresponding array element is null. 254 * 255 * <p>Subsequent table changes will not modify the array, and vice versa. 256 * 257 * @param valueClass class of values stored in the returned array 258 */ 259 public V[][] toArray(Class<V> valueClass) { 260 // Can change to use varargs in JDK 1.6 if we want 261 @SuppressWarnings("unchecked") // TODO: safe? 262 V[][] copy = (V[][]) Array.newInstance( 263 valueClass, new int[] { rowList.size(), columnList.size() }); 264 for (int i = 0; i < rowList.size(); i++) { 265 System.arraycopy(array[i], 0, copy[i], 0, array[i].length); 266 } 267 return copy; 268 } 269 270 /** 271 * Not supported. Use {@link #eraseAll} instead. 272 * 273 * @throws UnsupportedOperationException always 274 * @deprecated Use {@link #eraseAll} 275 */ 276 @Override 277 @Deprecated public void clear() { 278 throw new UnsupportedOperationException(); 279 } 280 281 /** 282 * Associates the value {@code null} with every pair of allowed row and column 283 * keys. 284 */ 285 public void eraseAll() { 286 for (V[] row : array) { 287 Arrays.fill(row, null); 288 } 289 } 290 291 /** 292 * Returns {@code true} if the provided keys are among the keys provided when 293 * the table was constructed. 294 */ 295 @Override 296 public boolean contains(@Nullable Object rowKey, @Nullable Object columnKey) { 297 return containsRow(rowKey) && containsColumn(columnKey); 298 } 299 300 /** 301 * Returns {@code true} if the provided column key is among the column keys 302 * provided when the table was constructed. 303 */ 304 @Override 305 public boolean containsColumn(@Nullable Object columnKey) { 306 return columnKeyToIndex.containsKey(columnKey); 307 } 308 309 /** 310 * Returns {@code true} if the provided row key is among the row keys 311 * provided when the table was constructed. 312 */ 313 @Override 314 public boolean containsRow(@Nullable Object rowKey) { 315 return rowKeyToIndex.containsKey(rowKey); 316 } 317 318 @Override 319 public boolean containsValue(@Nullable Object value) { 320 for (V[] row : array) { 321 for (V element : row) { 322 if (Objects.equal(value, element)) { 323 return true; 324 } 325 } 326 } 327 return false; 328 } 329 330 @Override 331 public V get(@Nullable Object rowKey, @Nullable Object columnKey) { 332 Integer rowIndex = rowKeyToIndex.get(rowKey); 333 Integer columnIndex = columnKeyToIndex.get(columnKey); 334 return getIndexed(rowIndex, columnIndex); 335 } 336 337 private V getIndexed(Integer rowIndex, Integer columnIndex) { 338 return (rowIndex == null || columnIndex == null) 339 ? null : array[rowIndex][columnIndex]; 340 } 341 342 /** 343 * Always returns {@code false}. 344 */ 345 @Override 346 public boolean isEmpty() { 347 return false; 348 } 349 350 /** 351 * {@inheritDoc} 352 * 353 * @throws IllegalArgumentException if {@code rowKey} is not in {@link 354 * #rowKeySet()} or {@code columnKey} is not in {@link #columnKeySet()}. 355 */ 356 @Override 357 public V put(R rowKey, C columnKey, @Nullable V value) { 358 checkNotNull(rowKey); 359 checkNotNull(columnKey); 360 Integer rowIndex = rowKeyToIndex.get(rowKey); 361 checkArgument(rowIndex != null, "Row %s not in %s", rowKey, rowList); 362 Integer columnIndex = columnKeyToIndex.get(columnKey); 363 checkArgument(columnIndex != null, 364 "Column %s not in %s", columnKey, columnList); 365 return set(rowIndex, columnIndex, value); 366 } 367 368 /* 369 * TODO(jlevy): Consider creating a merge() method, similar to putAll() but 370 * copying non-null values only. 371 */ 372 373 /** 374 * {@inheritDoc} 375 * 376 * <p>If {@code table} is an {@code ArrayTable}, its null values will be 377 * stored in this table, possibly replacing values that were previously 378 * non-null. 379 * 380 * @throws NullPointerException if {@code table} has a null key 381 * @throws IllegalArgumentException if any of the provided table's row keys or 382 * column keys is not in {@link #rowKeySet()} or {@link #columnKeySet()} 383 */ 384 @Override 385 public void putAll(Table<? extends R, ? extends C, ? extends V> table) { 386 for (Cell<? extends R, ? extends C, ? extends V> cell : table.cellSet()) { 387 put(cell.getRowKey(), cell.getColumnKey(), cell.getValue()); 388 } 389 } 390 391 /** 392 * Not supported. Use {@link #erase} instead. 393 * 394 * @throws UnsupportedOperationException always 395 * @deprecated Use {@link #erase} 396 */ 397 @Override 398 @Deprecated public V remove(Object rowKey, Object columnKey) { 399 throw new UnsupportedOperationException(); 400 } 401 402 /** 403 * Associates the value {@code null} with the specified keys, assuming both 404 * keys are valid. If either key is null or isn't among the keys provided 405 * during construction, this method has no effect. 406 * 407 * <p>This method is equivalent to {@code put(rowKey, columnKey, null)} when 408 * both provided keys are valid. 409 * 410 * @param rowKey row key of mapping to be erased 411 * @param columnKey column key of mapping to be erased 412 * @return the value previously associated with the keys, or {@code null} if 413 * no mapping existed for the keys 414 */ 415 public V erase(@Nullable Object rowKey, @Nullable Object columnKey) { 416 Integer rowIndex = rowKeyToIndex.get(rowKey); 417 Integer columnIndex = columnKeyToIndex.get(columnKey); 418 if (rowIndex == null || columnIndex == null) { 419 return null; 420 } 421 return set(rowIndex, columnIndex, null); 422 } 423 424 // TODO(jlevy): Add eraseRow and eraseColumn methods? 425 426 @Override 427 public int size() { 428 return rowList.size() * columnList.size(); 429 } 430 431 @Override public boolean equals(@Nullable Object obj) { 432 if (obj instanceof Table) { 433 Table<?, ?, ?> other = (Table<?, ?, ?>) obj; 434 return cellSet().equals(other.cellSet()); 435 } 436 return false; 437 } 438 439 @Override public int hashCode() { 440 return cellSet().hashCode(); 441 } 442 443 /** 444 * Returns the string representation {@code rowMap().toString()}. 445 */ 446 @Override public String toString() { 447 return rowMap().toString(); 448 } 449 450 private transient CellSet cellSet; 451 452 /** 453 * {@inheritDoc} 454 * 455 * <p>The returned set's iterator traverses the mappings with the first row 456 * key, the mappings with the second row key, and so on. 457 * 458 * <p>The value in the returned cells may change if the table subsequently 459 * changes. 460 */ 461 @Override 462 public Set<Cell<R, C, V>> cellSet() { 463 CellSet set = cellSet; 464 return (set == null) ? cellSet = new CellSet() : set; 465 } 466 467 private class CellSet extends AbstractSet<Cell<R, C, V>> { 468 469 @Override public Iterator<Cell<R, C, V>> iterator() { 470 return new AbstractIndexedListIterator<Cell<R, C, V>>(size()) { 471 @Override protected Cell<R, C, V> get(final int index) { 472 return new Tables.AbstractCell<R, C, V>() { 473 final int rowIndex = index / columnList.size(); 474 final int columnIndex = index % columnList.size(); 475 @Override 476 public R getRowKey() { 477 return rowList.get(rowIndex); 478 } 479 @Override 480 public C getColumnKey() { 481 return columnList.get(columnIndex); 482 } 483 @Override 484 public V getValue() { 485 return array[rowIndex][columnIndex]; 486 } 487 }; 488 } 489 }; 490 } 491 492 @Override public int size() { 493 return ArrayTable.this.size(); 494 } 495 496 @Override public boolean contains(Object obj) { 497 if (obj instanceof Cell) { 498 Cell<?, ?, ?> cell = (Cell<?, ?, ?>) obj; 499 Integer rowIndex = rowKeyToIndex.get(cell.getRowKey()); 500 Integer columnIndex = columnKeyToIndex.get(cell.getColumnKey()); 501 return rowIndex != null 502 && columnIndex != null 503 && Objects.equal(array[rowIndex][columnIndex], cell.getValue()); 504 } 505 return false; 506 } 507 } 508 509 /** 510 * Returns a view of all mappings that have the given column key. If the 511 * column key isn't in {@link #columnKeySet()}, an empty immutable map is 512 * returned. 513 * 514 * <p>Otherwise, for each row key in {@link #rowKeySet()}, the returned map 515 * associates the row key with the corresponding value in the table. Changes 516 * to the returned map will update the underlying table, and vice versa. 517 * 518 * @param columnKey key of column to search for in the table 519 * @return the corresponding map from row keys to values 520 */ 521 @Override 522 public Map<R, V> column(C columnKey) { 523 checkNotNull(columnKey); 524 Integer columnIndex = columnKeyToIndex.get(columnKey); 525 return (columnIndex == null) 526 ? ImmutableMap.<R, V>of() : new Column(columnIndex); 527 } 528 529 private class Column extends AbstractMap<R, V> { 530 final int columnIndex; 531 532 Column(int columnIndex) { 533 this.columnIndex = columnIndex; 534 } 535 536 ColumnEntrySet entrySet; 537 538 @Override public Set<Entry<R, V>> entrySet() { 539 ColumnEntrySet set = entrySet; 540 return (set == null) ? entrySet = new ColumnEntrySet(columnIndex) : set; 541 } 542 543 @Override public V get(Object rowKey) { 544 Integer rowIndex = rowKeyToIndex.get(rowKey); 545 return getIndexed(rowIndex, columnIndex); 546 } 547 548 @Override public boolean containsKey(Object rowKey) { 549 return rowKeyToIndex.containsKey(rowKey); 550 } 551 552 @Override public V put(R rowKey, V value) { 553 checkNotNull(rowKey); 554 Integer rowIndex = rowKeyToIndex.get(rowKey); 555 checkArgument(rowIndex != null, "Row %s not in %s", rowKey, rowList); 556 return set(rowIndex, columnIndex, value); 557 } 558 559 @Override public Set<R> keySet() { 560 return rowKeySet(); 561 } 562 } 563 564 private class ColumnEntrySet extends AbstractSet<Entry<R, V>> { 565 final int columnIndex; 566 567 ColumnEntrySet(int columnIndex) { 568 this.columnIndex = columnIndex; 569 } 570 571 @Override public Iterator<Entry<R, V>> iterator() { 572 return new AbstractIndexedListIterator<Entry<R, V>>(size()) { 573 @Override protected Entry<R, V> get(final int rowIndex) { 574 return new AbstractMapEntry<R, V>() { 575 @Override public R getKey() { 576 return rowList.get(rowIndex); 577 } 578 @Override public V getValue() { 579 return array[rowIndex][columnIndex]; 580 } 581 @Override public V setValue(V value) { 582 return ArrayTable.this.set(rowIndex, columnIndex, value); 583 } 584 }; 585 } 586 }; 587 } 588 589 @Override public int size() { 590 return rowList.size(); 591 } 592 } 593 594 /** 595 * Returns an immutable set of the valid column keys, including those that 596 * are associated with null values only. 597 * 598 * @return immutable set of column keys 599 */ 600 @Override 601 public ImmutableSet<C> columnKeySet() { 602 return columnKeyToIndex.keySet(); 603 } 604 605 private transient ColumnMap columnMap; 606 607 @Override 608 public Map<C, Map<R, V>> columnMap() { 609 ColumnMap map = columnMap; 610 return (map == null) ? columnMap = new ColumnMap() : map; 611 } 612 613 private class ColumnMap extends AbstractMap<C, Map<R, V>> { 614 transient ColumnMapEntrySet entrySet; 615 616 @Override public Set<Entry<C, Map<R, V>>> entrySet() { 617 ColumnMapEntrySet set = entrySet; 618 return (set == null) ? entrySet = new ColumnMapEntrySet() : set; 619 } 620 621 @Override public Map<R, V> get(Object columnKey) { 622 Integer columnIndex = columnKeyToIndex.get(columnKey); 623 return (columnIndex == null) ? null : new Column(columnIndex); 624 } 625 626 @Override public boolean containsKey(Object columnKey) { 627 return containsColumn(columnKey); 628 } 629 630 @Override public Set<C> keySet() { 631 return columnKeySet(); 632 } 633 634 @Override public Map<R, V> remove(Object columnKey) { 635 throw new UnsupportedOperationException(); 636 } 637 } 638 639 private class ColumnMapEntrySet extends AbstractSet<Entry<C, Map<R, V>>> { 640 @Override public Iterator<Entry<C, Map<R, V>>> iterator() { 641 return new AbstractIndexedListIterator<Entry<C, Map<R, V>>>(size()) { 642 @Override protected Entry<C, Map<R, V>> get(int index) { 643 return Maps.<C, Map<R, V>>immutableEntry(columnList.get(index), 644 new Column(index)); 645 } 646 }; 647 } 648 649 @Override public int size() { 650 return columnList.size(); 651 } 652 } 653 654 /** 655 * Returns a view of all mappings that have the given row key. If the 656 * row key isn't in {@link #rowKeySet()}, an empty immutable map is 657 * returned. 658 * 659 * <p>Otherwise, for each column key in {@link #columnKeySet()}, the returned 660 * map associates the column key with the corresponding value in the 661 * table. Changes to the returned map will update the underlying table, and 662 * vice versa. 663 * 664 * @param rowKey key of row to search for in the table 665 * @return the corresponding map from column keys to values 666 */ 667 @Override 668 public Map<C, V> row(R rowKey) { 669 checkNotNull(rowKey); 670 Integer rowIndex = rowKeyToIndex.get(rowKey); 671 return (rowIndex == null) ? ImmutableMap.<C, V>of() : new Row(rowIndex); 672 } 673 674 private class Row extends AbstractMap<C, V> { 675 final int rowIndex; 676 677 Row(int rowIndex) { 678 this.rowIndex = rowIndex; 679 } 680 681 RowEntrySet entrySet; 682 683 @Override public Set<Entry<C, V>> entrySet() { 684 RowEntrySet set = entrySet; 685 return (set == null) ? entrySet = new RowEntrySet(rowIndex) : set; 686 } 687 688 @Override public V get(Object columnKey) { 689 Integer columnIndex = columnKeyToIndex.get(columnKey); 690 return getIndexed(rowIndex, columnIndex); 691 } 692 693 @Override public boolean containsKey(Object columnKey) { 694 return containsColumn(columnKey); 695 } 696 697 @Override public V put(C columnKey, V value) { 698 checkNotNull(columnKey); 699 Integer columnIndex = columnKeyToIndex.get(columnKey); 700 checkArgument(columnIndex != null, 701 "Column %s not in %s", columnKey, columnList); 702 return set(rowIndex, columnIndex, value); 703 } 704 705 @Override public Set<C> keySet() { 706 return columnKeySet(); 707 } 708 } 709 710 private class RowEntrySet extends AbstractSet<Entry<C, V>> { 711 final int rowIndex; 712 713 RowEntrySet(int rowIndex) { 714 this.rowIndex = rowIndex; 715 } 716 717 @Override public Iterator<Entry<C, V>> iterator() { 718 return new AbstractIndexedListIterator<Entry<C, V>>(size()) { 719 @Override protected Entry<C, V> get(final int columnIndex) { 720 return new AbstractMapEntry<C, V>() { 721 @Override public C getKey() { 722 return columnList.get(columnIndex); 723 } 724 @Override public V getValue() { 725 return array[rowIndex][columnIndex]; 726 } 727 @Override public V setValue(V value) { 728 return ArrayTable.this.set(rowIndex, columnIndex, value); 729 } 730 }; 731 } 732 }; 733 } 734 735 @Override public int size() { 736 return columnList.size(); 737 } 738 } 739 740 /** 741 * Returns an immutable set of the valid row keys, including those that are 742 * associated with null values only. 743 * 744 * @return immutable set of row keys 745 */ 746 @Override 747 public ImmutableSet<R> rowKeySet() { 748 return rowKeyToIndex.keySet(); 749 } 750 751 private transient RowMap rowMap; 752 753 @Override 754 public Map<R, Map<C, V>> rowMap() { 755 RowMap map = rowMap; 756 return (map == null) ? rowMap = new RowMap() : map; 757 } 758 759 private class RowMap extends AbstractMap<R, Map<C, V>> { 760 transient RowMapEntrySet entrySet; 761 762 @Override public Set<Entry<R, Map<C, V>>> entrySet() { 763 RowMapEntrySet set = entrySet; 764 return (set == null) ? entrySet = new RowMapEntrySet() : set; 765 } 766 767 @Override public Map<C, V> get(Object rowKey) { 768 Integer rowIndex = rowKeyToIndex.get(rowKey); 769 return (rowIndex == null) ? null : new Row(rowIndex); 770 } 771 772 @Override public boolean containsKey(Object rowKey) { 773 return containsRow(rowKey); 774 } 775 776 @Override public Set<R> keySet() { 777 return rowKeySet(); 778 } 779 780 @Override public Map<C, V> remove(Object rowKey) { 781 throw new UnsupportedOperationException(); 782 } 783 } 784 785 private class RowMapEntrySet extends AbstractSet<Entry<R, Map<C, V>>> { 786 @Override public Iterator<Entry<R, Map<C, V>>> iterator() { 787 return new AbstractIndexedListIterator<Entry<R, Map<C, V>>>(size()) { 788 @Override protected Entry<R, Map<C, V>> get(int index) { 789 return Maps.<R, Map<C, V>>immutableEntry(rowList.get(index), 790 new Row(index)); 791 } 792 }; 793 } 794 795 @Override public int size() { 796 return rowList.size(); 797 } 798 } 799 800 private transient Collection<V> values; 801 802 /** 803 * {@inheritDoc} 804 * 805 * <p>The returned collection's iterator traverses the values of the first row 806 * key, the values of the second row key, and so on. 807 */ 808 @Override 809 public Collection<V> values() { 810 Collection<V> v = values; 811 return (v == null) ? values = new Values() : v; 812 } 813 814 private class Values extends AbstractCollection<V> { 815 @Override public Iterator<V> iterator() { 816 return new AbstractIndexedListIterator<V>(size()) { 817 @Override protected V get(int index) { 818 int rowIndex = index / columnList.size(); 819 int columnIndex = index % columnList.size(); 820 return array[rowIndex][columnIndex]; 821 } 822 }; 823 } 824 825 @Override public int size() { 826 return ArrayTable.this.size(); 827 } 828 829 @Override public boolean contains(Object value) { 830 return containsValue(value); 831 } 832 } 833 834 private static final long serialVersionUID = 0; 835 }