Committed by
Gerrit Code Review
ONOS-3780: Table model now handles two column sorts.
Change-Id: I8899d56fdca2084e4a7ca0392c21d14f1bc6ea62
Showing
8 changed files
with
177 additions
and
49 deletions
| ... | @@ -52,6 +52,7 @@ public class TableModel { | ... | @@ -52,6 +52,7 @@ public class TableModel { |
| 52 | 52 | ||
| 53 | private static final CellComparator DEF_CMP = DefaultCellComparator.INSTANCE; | 53 | private static final CellComparator DEF_CMP = DefaultCellComparator.INSTANCE; |
| 54 | private static final CellFormatter DEF_FMT = DefaultCellFormatter.INSTANCE; | 54 | private static final CellFormatter DEF_FMT = DefaultCellFormatter.INSTANCE; |
| 55 | + private static final String EMPTY = ""; | ||
| 55 | 56 | ||
| 56 | private final String[] columnIds; | 57 | private final String[] columnIds; |
| 57 | private final Set<String> idSet; | 58 | private final Set<String> idSet; |
| ... | @@ -206,14 +207,17 @@ public class TableModel { | ... | @@ -206,14 +207,17 @@ public class TableModel { |
| 206 | } | 207 | } |
| 207 | 208 | ||
| 208 | /** | 209 | /** |
| 209 | - * Sorts the table rows based on the specified column, in the | 210 | + * Sorts the table rows based on the specified columns, in the |
| 210 | - * specified direction. | 211 | + * specified directions. The second column is optional, and can be |
| 212 | + * disregarded by passing null into id2 and dir2. | ||
| 211 | * | 213 | * |
| 212 | - * @param columnId column identifier | 214 | + * @param id1 first column identifier |
| 213 | - * @param dir sort direction | 215 | + * @param dir1 first column sort direction |
| 216 | + * @param id2 second column identifier (may be null) | ||
| 217 | + * @param dir2 second column sort direction (may be null) | ||
| 214 | */ | 218 | */ |
| 215 | - public void sort(String columnId, SortDir dir) { | 219 | + public void sort(String id1, SortDir dir1, String id2, SortDir dir2) { |
| 216 | - Collections.sort(rows, new RowComparator(columnId, dir)); | 220 | + Collections.sort(rows, new RowComparator(id1, dir1, id2, dir2)); |
| 217 | } | 221 | } |
| 218 | 222 | ||
| 219 | 223 | ||
| ... | @@ -225,33 +229,54 @@ public class TableModel { | ... | @@ -225,33 +229,54 @@ public class TableModel { |
| 225 | DESC | 229 | DESC |
| 226 | } | 230 | } |
| 227 | 231 | ||
| 232 | + private boolean nullOrEmpty(String s) { | ||
| 233 | + return s == null || EMPTY.equals(s.trim()); | ||
| 234 | + } | ||
| 235 | + | ||
| 228 | /** | 236 | /** |
| 229 | * Row comparator. | 237 | * Row comparator. |
| 230 | */ | 238 | */ |
| 231 | private class RowComparator implements Comparator<Row> { | 239 | private class RowComparator implements Comparator<Row> { |
| 232 | - private final String columnId; | 240 | + private final String id1; |
| 233 | - private final SortDir dir; | 241 | + private final SortDir dir1; |
| 234 | - private final CellComparator cellComparator; | 242 | + private final String id2; |
| 243 | + private final SortDir dir2; | ||
| 244 | + private final CellComparator cc1; | ||
| 245 | + private final CellComparator cc2; | ||
| 235 | 246 | ||
| 236 | /** | 247 | /** |
| 237 | * Constructs a row comparator based on the specified | 248 | * Constructs a row comparator based on the specified |
| 238 | - * column identifier and sort direction. | 249 | + * column identifiers and sort directions. Note that id2 and dir2 may |
| 250 | + * be null. | ||
| 239 | * | 251 | * |
| 240 | - * @param columnId column identifier | 252 | + * @param id1 first column identifier |
| 241 | - * @param dir sort direction | 253 | + * @param dir1 first column sort direction |
| 254 | + * @param id2 second column identifier | ||
| 255 | + * @param dir2 second column sort direction | ||
| 242 | */ | 256 | */ |
| 243 | - public RowComparator(String columnId, SortDir dir) { | 257 | + public RowComparator(String id1, SortDir dir1, String id2, SortDir dir2) { |
| 244 | - this.columnId = columnId; | 258 | + this.id1 = id1; |
| 245 | - this.dir = dir; | 259 | + this.dir1 = dir1; |
| 246 | - cellComparator = getComparator(columnId); | 260 | + this.id2 = id2; |
| 261 | + this.dir2 = dir2; | ||
| 262 | + cc1 = getComparator(id1); | ||
| 263 | + cc2 = nullOrEmpty(id2) ? null : getComparator(id2); | ||
| 247 | } | 264 | } |
| 248 | 265 | ||
| 249 | @Override | 266 | @Override |
| 250 | public int compare(Row a, Row b) { | 267 | public int compare(Row a, Row b) { |
| 251 | - Object cellA = a.get(columnId); | 268 | + Object cellA = a.get(id1); |
| 252 | - Object cellB = b.get(columnId); | 269 | + Object cellB = b.get(id1); |
| 253 | - int result = cellComparator.compare(cellA, cellB); | 270 | + int result = cc1.compare(cellA, cellB); |
| 254 | - return dir == SortDir.ASC ? result : -result; | 271 | + result = dir1 == SortDir.ASC ? result : -result; |
| 272 | + | ||
| 273 | + if (result == 0 && cc2 != null) { | ||
| 274 | + cellA = a.get(id2); | ||
| 275 | + cellB = b.get(id2); | ||
| 276 | + result = cc2.compare(cellA, cellB); | ||
| 277 | + result = dir2 == SortDir.ASC ? result : -result; | ||
| 278 | + } | ||
| 279 | + return result; | ||
| 255 | } | 280 | } |
| 256 | } | 281 | } |
| 257 | 282 | ... | ... |
| ... | @@ -20,13 +20,23 @@ import com.fasterxml.jackson.databind.node.ObjectNode; | ... | @@ -20,13 +20,23 @@ import com.fasterxml.jackson.databind.node.ObjectNode; |
| 20 | import org.onosproject.ui.JsonUtils; | 20 | import org.onosproject.ui.JsonUtils; |
| 21 | import org.onosproject.ui.RequestHandler; | 21 | import org.onosproject.ui.RequestHandler; |
| 22 | 22 | ||
| 23 | +import static org.onosproject.ui.table.TableModel.sortDir; | ||
| 24 | + | ||
| 23 | /** | 25 | /** |
| 24 | * Message handler specifically for table views. | 26 | * Message handler specifically for table views. |
| 25 | */ | 27 | */ |
| 26 | public abstract class TableRequestHandler extends RequestHandler { | 28 | public abstract class TableRequestHandler extends RequestHandler { |
| 27 | 29 | ||
| 30 | + private static final String FIRST_COL = "firstCol"; | ||
| 31 | + private static final String FIRST_DIR = "firstDir"; | ||
| 32 | + private static final String SECOND_COL = "secondCol"; | ||
| 33 | + private static final String SECOND_DIR = "secondDir"; | ||
| 34 | + | ||
| 35 | + private static final String ASC = "asc"; | ||
| 36 | + | ||
| 28 | private static final String ANNOTS = "annots"; | 37 | private static final String ANNOTS = "annots"; |
| 29 | private static final String NO_ROWS_MSG_KEY = "no_rows_msg"; | 38 | private static final String NO_ROWS_MSG_KEY = "no_rows_msg"; |
| 39 | + | ||
| 30 | private final String respType; | 40 | private final String respType; |
| 31 | private final String nodeName; | 41 | private final String nodeName; |
| 32 | 42 | ||
| ... | @@ -51,9 +61,11 @@ public abstract class TableRequestHandler extends RequestHandler { | ... | @@ -51,9 +61,11 @@ public abstract class TableRequestHandler extends RequestHandler { |
| 51 | TableModel tm = createTableModel(); | 61 | TableModel tm = createTableModel(); |
| 52 | populateTable(tm, payload); | 62 | populateTable(tm, payload); |
| 53 | 63 | ||
| 54 | - String sortCol = JsonUtils.string(payload, "sortCol", defaultColumnId()); | 64 | + String firstCol = JsonUtils.string(payload, FIRST_COL, defaultColumnId()); |
| 55 | - String sortDir = JsonUtils.string(payload, "sortDir", "asc"); | 65 | + String firstDir = JsonUtils.string(payload, FIRST_DIR, ASC); |
| 56 | - tm.sort(sortCol, TableModel.sortDir(sortDir)); | 66 | + String secondCol = JsonUtils.string(payload, SECOND_COL, null); |
| 67 | + String secondDir = JsonUtils.string(payload, SECOND_DIR, null); | ||
| 68 | + tm.sort(firstCol, sortDir(firstDir), secondCol, sortDir(secondDir)); | ||
| 57 | 69 | ||
| 58 | addTableConfigAnnotations(tm, payload); | 70 | addTableConfigAnnotations(tm, payload); |
| 59 | 71 | ... | ... |
| ... | @@ -35,6 +35,9 @@ public class TableModelTest { | ... | @@ -35,6 +35,9 @@ public class TableModelTest { |
| 35 | private static final String FOO = "foo"; | 35 | private static final String FOO = "foo"; |
| 36 | private static final String BAR = "bar"; | 36 | private static final String BAR = "bar"; |
| 37 | private static final String ZOO = "zoo"; | 37 | private static final String ZOO = "zoo"; |
| 38 | + private static final String ID = "id"; | ||
| 39 | + private static final String ALPHA = "alpha"; | ||
| 40 | + private static final String NUMBER = "number"; | ||
| 38 | 41 | ||
| 39 | private enum StarWars { | 42 | private enum StarWars { |
| 40 | LUKE_SKYWALKER, LEIA_ORGANA, HAN_SOLO, C3PO, R2D2, JABBA_THE_HUTT | 43 | LUKE_SKYWALKER, LEIA_ORGANA, HAN_SOLO, C3PO, R2D2, JABBA_THE_HUTT |
| ... | @@ -191,7 +194,7 @@ public class TableModelTest { | ... | @@ -191,7 +194,7 @@ public class TableModelTest { |
| 191 | initUnsortedTable(); | 194 | initUnsortedTable(); |
| 192 | 195 | ||
| 193 | // sort by name | 196 | // sort by name |
| 194 | - tm.sort(FOO, SortDir.ASC); | 197 | + tm.sort(FOO, SortDir.ASC, null, null); |
| 195 | 198 | ||
| 196 | // verify results | 199 | // verify results |
| 197 | rows = tm.getRows(); | 200 | rows = tm.getRows(); |
| ... | @@ -202,7 +205,7 @@ public class TableModelTest { | ... | @@ -202,7 +205,7 @@ public class TableModelTest { |
| 202 | } | 205 | } |
| 203 | 206 | ||
| 204 | // now the other way | 207 | // now the other way |
| 205 | - tm.sort(FOO, SortDir.DESC); | 208 | + tm.sort(FOO, SortDir.DESC, null, null); |
| 206 | 209 | ||
| 207 | // verify results | 210 | // verify results |
| 208 | rows = tm.getRows(); | 211 | rows = tm.getRows(); |
| ... | @@ -219,7 +222,7 @@ public class TableModelTest { | ... | @@ -219,7 +222,7 @@ public class TableModelTest { |
| 219 | initUnsortedTable(); | 222 | initUnsortedTable(); |
| 220 | 223 | ||
| 221 | // sort by number | 224 | // sort by number |
| 222 | - tm.sort(BAR, SortDir.ASC); | 225 | + tm.sort(BAR, SortDir.ASC, null, null); |
| 223 | 226 | ||
| 224 | // verify results | 227 | // verify results |
| 225 | rows = tm.getRows(); | 228 | rows = tm.getRows(); |
| ... | @@ -230,7 +233,7 @@ public class TableModelTest { | ... | @@ -230,7 +233,7 @@ public class TableModelTest { |
| 230 | } | 233 | } |
| 231 | 234 | ||
| 232 | // now the other way | 235 | // now the other way |
| 233 | - tm.sort(BAR, SortDir.DESC); | 236 | + tm.sort(BAR, SortDir.DESC, null, null); |
| 234 | 237 | ||
| 235 | // verify results | 238 | // verify results |
| 236 | rows = tm.getRows(); | 239 | rows = tm.getRows(); |
| ... | @@ -250,7 +253,7 @@ public class TableModelTest { | ... | @@ -250,7 +253,7 @@ public class TableModelTest { |
| 250 | tm.setFormatter(BAR, HexFormatter.INSTANCE); | 253 | tm.setFormatter(BAR, HexFormatter.INSTANCE); |
| 251 | 254 | ||
| 252 | // sort by number | 255 | // sort by number |
| 253 | - tm.sort(BAR, SortDir.ASC); | 256 | + tm.sort(BAR, SortDir.ASC, null, null); |
| 254 | 257 | ||
| 255 | // verify results | 258 | // verify results |
| 256 | rows = tm.getRows(); | 259 | rows = tm.getRows(); |
| ... | @@ -276,7 +279,7 @@ public class TableModelTest { | ... | @@ -276,7 +279,7 @@ public class TableModelTest { |
| 276 | public void sortAndFormatTwo() { | 279 | public void sortAndFormatTwo() { |
| 277 | initUnsortedTable(); | 280 | initUnsortedTable(); |
| 278 | tm.setFormatter(BAR, HexFormatter.INSTANCE); | 281 | tm.setFormatter(BAR, HexFormatter.INSTANCE); |
| 279 | - tm.sort(FOO, SortDir.ASC); | 282 | + tm.sort(FOO, SortDir.ASC, null, null); |
| 280 | rows = tm.getRows(); | 283 | rows = tm.getRows(); |
| 281 | int nr = rows.length; | 284 | int nr = rows.length; |
| 282 | for (int i = 0; i < nr; i++) { | 285 | for (int i = 0; i < nr; i++) { |
| ... | @@ -324,7 +327,7 @@ public class TableModelTest { | ... | @@ -324,7 +327,7 @@ public class TableModelTest { |
| 324 | tm.addRow().cell(FOO, StarWars.R2D2); | 327 | tm.addRow().cell(FOO, StarWars.R2D2); |
| 325 | tm.addRow().cell(FOO, StarWars.LUKE_SKYWALKER); | 328 | tm.addRow().cell(FOO, StarWars.LUKE_SKYWALKER); |
| 326 | 329 | ||
| 327 | - tm.sort(FOO, SortDir.ASC); | 330 | + tm.sort(FOO, SortDir.ASC, null, null); |
| 328 | 331 | ||
| 329 | // verify expected results | 332 | // verify expected results |
| 330 | StarWars[] ordered = StarWars.values(); | 333 | StarWars[] ordered = StarWars.values(); |
| ... | @@ -336,6 +339,102 @@ public class TableModelTest { | ... | @@ -336,6 +339,102 @@ public class TableModelTest { |
| 336 | } | 339 | } |
| 337 | } | 340 | } |
| 338 | 341 | ||
| 342 | + | ||
| 343 | + // ------------------------ | ||
| 344 | + // Second sort column tests | ||
| 345 | + | ||
| 346 | + private static final String A1 = "a1"; | ||
| 347 | + private static final String A2 = "a2"; | ||
| 348 | + private static final String A3 = "a3"; | ||
| 349 | + private static final String B1 = "b1"; | ||
| 350 | + private static final String B2 = "b2"; | ||
| 351 | + private static final String B3 = "b3"; | ||
| 352 | + private static final String C1 = "c1"; | ||
| 353 | + private static final String C2 = "c2"; | ||
| 354 | + private static final String C3 = "c3"; | ||
| 355 | + private static final String A = "A"; | ||
| 356 | + private static final String B = "B"; | ||
| 357 | + private static final String C = "C"; | ||
| 358 | + | ||
| 359 | + private static final String[] UNSORTED_IDS = { | ||
| 360 | + A3, B2, A1, C2, A2, C3, B1, C1, B3 | ||
| 361 | + }; | ||
| 362 | + private static final String[] UNSORTED_ALPHAS = { | ||
| 363 | + A, B, A, C, A, C, B, C, B | ||
| 364 | + }; | ||
| 365 | + private static final int[] UNSORTED_NUMBERS = { | ||
| 366 | + 3, 2, 1, 2, 2, 3, 1, 1, 3 | ||
| 367 | + }; | ||
| 368 | + | ||
| 369 | + private static final String[] ROW_ORDER_AA_NA = { | ||
| 370 | + A1, A2, A3, B1, B2, B3, C1, C2, C3 | ||
| 371 | + }; | ||
| 372 | + private static final String[] ROW_ORDER_AD_NA = { | ||
| 373 | + C1, C2, C3, B1, B2, B3, A1, A2, A3 | ||
| 374 | + }; | ||
| 375 | + private static final String[] ROW_ORDER_AA_ND = { | ||
| 376 | + A3, A2, A1, B3, B2, B1, C3, C2, C1 | ||
| 377 | + }; | ||
| 378 | + private static final String[] ROW_ORDER_AD_ND = { | ||
| 379 | + C3, C2, C1, B3, B2, B1, A3, A2, A1 | ||
| 380 | + }; | ||
| 381 | + | ||
| 382 | + private void testAddRow(TableModel tm, int index) { | ||
| 383 | + tm.addRow().cell(ID, UNSORTED_IDS[index]) | ||
| 384 | + .cell(ALPHA, UNSORTED_ALPHAS[index]) | ||
| 385 | + .cell(NUMBER, UNSORTED_NUMBERS[index]); | ||
| 386 | + } | ||
| 387 | + | ||
| 388 | + private TableModel unsortedDoubleTableModel() { | ||
| 389 | + tm = new TableModel(ID, ALPHA, NUMBER); | ||
| 390 | + for (int i = 0; i < 9; i++) { | ||
| 391 | + testAddRow(tm, i); | ||
| 392 | + } | ||
| 393 | + return tm; | ||
| 394 | + } | ||
| 395 | + | ||
| 396 | + private void verifyRowOrder(String tag, TableModel tm, String[] rowOrder) { | ||
| 397 | + int i = 0; | ||
| 398 | + for (TableModel.Row row : tm.getRows()) { | ||
| 399 | + assertEquals(tag + ": unexpected row id", rowOrder[i++], row.get(ID)); | ||
| 400 | + } | ||
| 401 | + } | ||
| 402 | + | ||
| 403 | + @Test | ||
| 404 | + public void sortAlphaAscNumberAsc() { | ||
| 405 | + tm = unsortedDoubleTableModel(); | ||
| 406 | + verifyRowOrder("unsorted", tm, UNSORTED_IDS); | ||
| 407 | + tm.sort(ALPHA, SortDir.ASC, NUMBER, SortDir.ASC); | ||
| 408 | + verifyRowOrder("aana", tm, ROW_ORDER_AA_NA); | ||
| 409 | + } | ||
| 410 | + | ||
| 411 | + @Test | ||
| 412 | + public void sortAlphaDescNumberAsc() { | ||
| 413 | + tm = unsortedDoubleTableModel(); | ||
| 414 | + verifyRowOrder("unsorted", tm, UNSORTED_IDS); | ||
| 415 | + tm.sort(ALPHA, SortDir.DESC, NUMBER, SortDir.ASC); | ||
| 416 | + verifyRowOrder("adna", tm, ROW_ORDER_AD_NA); | ||
| 417 | + } | ||
| 418 | + | ||
| 419 | + @Test | ||
| 420 | + public void sortAlphaAscNumberDesc() { | ||
| 421 | + tm = unsortedDoubleTableModel(); | ||
| 422 | + verifyRowOrder("unsorted", tm, UNSORTED_IDS); | ||
| 423 | + tm.sort(ALPHA, SortDir.ASC, NUMBER, SortDir.DESC); | ||
| 424 | + verifyRowOrder("aand", tm, ROW_ORDER_AA_ND); | ||
| 425 | + } | ||
| 426 | + | ||
| 427 | + @Test | ||
| 428 | + public void sortAlphaDescNumberDesc() { | ||
| 429 | + tm = unsortedDoubleTableModel(); | ||
| 430 | + verifyRowOrder("unsorted", tm, UNSORTED_IDS); | ||
| 431 | + tm.sort(ALPHA, SortDir.DESC, NUMBER, SortDir.DESC); | ||
| 432 | + verifyRowOrder("adnd", tm, ROW_ORDER_AD_ND); | ||
| 433 | + } | ||
| 434 | + | ||
| 435 | + // ---------------- | ||
| 436 | + // Annotation tests | ||
| 437 | + | ||
| 339 | @Test | 438 | @Test |
| 340 | public void stringAnnotation() { | 439 | public void stringAnnotation() { |
| 341 | tm = new TableModel(FOO); | 440 | tm = new TableModel(FOO); | ... | ... |
| ... | @@ -209,26 +209,16 @@ | ... | @@ -209,26 +209,16 @@ |
| 209 | } | 209 | } |
| 210 | 210 | ||
| 211 | function sortIcons() { | 211 | function sortIcons() { |
| 212 | - function sortAsc(div) { | 212 | + function _s(div, gid) { |
| 213 | div.style('display', 'inline-block'); | 213 | div.style('display', 'inline-block'); |
| 214 | - loadEmbeddedIcon(div, 'upArrow', 10); | 214 | + loadEmbeddedIcon(div, gid, 10); |
| 215 | div.classed('tableColSort', true); | 215 | div.classed('tableColSort', true); |
| 216 | } | 216 | } |
| 217 | 217 | ||
| 218 | - function sortDesc(div) { | ||
| 219 | - div.style('display', 'inline-block'); | ||
| 220 | - loadEmbeddedIcon(div, 'downArrow', 10); | ||
| 221 | - div.classed('tableColSort', true); | ||
| 222 | - } | ||
| 223 | - | ||
| 224 | - function sortNone(div) { | ||
| 225 | - div.remove(); | ||
| 226 | - } | ||
| 227 | - | ||
| 228 | return { | 218 | return { |
| 229 | - sortAsc: sortAsc, | 219 | + asc: function (div) { _s(div, 'upArrow'); }, |
| 230 | - sortDesc: sortDesc, | 220 | + desc: function (div) { _s(div, 'downArrow'); }, |
| 231 | - sortNone: sortNone | 221 | + none: function (div) { div.remove(); } |
| 232 | }; | 222 | }; |
| 233 | } | 223 | } |
| 234 | 224 | ... | ... |
This diff is collapsed. Click to expand it.
| ... | @@ -77,8 +77,10 @@ | ... | @@ -77,8 +77,10 @@ |
| 77 | respCb: refreshCtrls, | 77 | respCb: refreshCtrls, |
| 78 | // pre-populate sort so active apps are at the top of the list | 78 | // pre-populate sort so active apps are at the top of the list |
| 79 | sortParams: { | 79 | sortParams: { |
| 80 | - sortCol: 'state', | 80 | + firstCol: 'state', |
| 81 | - sortDir: 'desc' | 81 | + firstDir: 'desc', |
| 82 | + secondCol: 'id', | ||
| 83 | + secondDir: 'asc' | ||
| 82 | } | 84 | } |
| 83 | }); | 85 | }); |
| 84 | 86 | ... | ... |
| ... | @@ -39,7 +39,7 @@ | ... | @@ -39,7 +39,7 @@ |
| 39 | <table> | 39 | <table> |
| 40 | <tr> | 40 | <tr> |
| 41 | <td colId="available" class="table-icon" sortable></td> | 41 | <td colId="available" class="table-icon" sortable></td> |
| 42 | - <td colId="type" class="table-icon" sortable></td> | 42 | + <td colId="type" class="table-icon"></td> |
| 43 | <td colId="name" sortable>Friendly Name </td> | 43 | <td colId="name" sortable>Friendly Name </td> |
| 44 | <td colId="id" sortable>Device ID </td> | 44 | <td colId="id" sortable>Device ID </td> |
| 45 | <td colId="masterid" sortable>Master Instance </td> | 45 | <td colId="masterid" sortable>Master Instance </td> | ... | ... |
| ... | @@ -14,7 +14,7 @@ | ... | @@ -14,7 +14,7 @@ |
| 14 | <div class="table-header" onos-sortable-header> | 14 | <div class="table-header" onos-sortable-header> |
| 15 | <table> | 15 | <table> |
| 16 | <tr> | 16 | <tr> |
| 17 | - <td colId="type" class="table-icon" sortable></td> | 17 | + <td colId="type" class="table-icon"></td> |
| 18 | <td colId="id" sortable>Host ID </td> | 18 | <td colId="id" sortable>Host ID </td> |
| 19 | <td colId="mac" sortable>MAC Address </td> | 19 | <td colId="mac" sortable>MAC Address </td> |
| 20 | <td colId="vlan" sortable>VLAN ID </td> | 20 | <td colId="vlan" sortable>VLAN ID </td> | ... | ... |
-
Please register or login to post a comment