download TableSorter.java
Language: Java
LOC: 289
Project Info
Java Aspect Components(jac)
Server: ObjectWeb Forge
Type: cvs
...\objectweb\jac\aspects\gui\
   ...CollectionItemView.java
   AbstractNode.java
   Actions.java
   AddEvent.java
   BehaviorGuiConf.java
   Border.java
   Callback.java
   ...sAppearenceGuiConf.java
   ClassChooser.java
   CollectionEvent.java
   CollectionItemView.java
   CollectionModel.java
   CollectionPosition.java
   CollectionUpdate.java
   CollectionView.java
   CollectionWrapper.java
   ComboBoxModel.java
   CommitException.java
   CompositeView.java
   Constants.java
   Currency.java
   CustomizedDisplay.java
   CustomizedGUI.java
   CustomizedView.java
   DateFormat.java
   DateHourFormat.java
   DialogView.java
   DisplayContext.java
   EditorContainer.java
   Event.java
   EventHandler.java
   ExpressionListener.java
   ExprWatcher.java
   ExprWatcherParser.java
   ExtendedTableModel.java
   ...dAppearenceGuiConf.java
   FieldEditor.java
   FieldItemView.java
   FieldUpdate.java
   FieldView.java
   FileEditorConfig.java
   FilterCriteria.java
   FloatFormat.java
   Format.java
   GenericFactory.java
   gui.acc
   GuiAC.java
   GuiConf.java
   HandlerResult.java
   ...tCanceledException.java
   InputSequence.java
   InputWrapper.java
   IntFormat.java
   InvokeEvent.java
   InvokeThread.java
   Length.java
   LessAbstractListModel.java
   LinkGenerator.java
   ListModel.java
   MatrixUtils.java
   MemberItemView.java
   Menu.java
   MenuView.java
   ...dAppearenceGuiConf.java
   MethodItemView.java
   MethodUpdate.java
   MethodView.java
   Model.java
   NumberFormat.java
   ObjectChooserModel.java
   ObjectNode.java
   ObjectUpdate.java
   ObjectView.java
   package.html
   PanelContent.java
   PanelView.java
   PercentFormat.java
   PointFormat.java
   ReferenceEditor.java
   RelationNode.java
   RemoveEvent.java
   Reports.java
   ResourceManager.java
   RootNode.java
   SortCriteria.java
   StatusView.java
   SubstanceEvent.java
   TableCellViewer.java
   TableFilter.java
   TableMap.java
   TableModel.java
   TableSorter.java
   TabsView.java
   Target.java
   Template.java
   TemplateReader.java
   TimeoutException.java
   Transfer.java
   TreeListener.java
   TreeModel.java
   TreeView.java
   Unit.java
   Utils.java
   View.java
   ViewControlWrapper.java
   ViewFactory.java
   ViewIdentity.java
   Views.java
   WaitWrapper.java
   WindowView.java
   WrappableList.java
   WrappableMap.java

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
package org.objectweb.jac.aspects.gui;

import java.util.Date;
import java.util.HashMap;
import java.util.Vector;

import javax.swing.event.TableModelEvent;

import org.apache.log4j.Logger;
import org.objectweb.jac.core.Collaboration;
import org.objectweb.jac.core.rtti.CollectionItem;
import org.objectweb.jac.util.ExtArrays;


/**
 * A sorter for TableModels. The sorter has a model (conforming to TableModel) 
 * and itself implements TableModel. TableSorter does not store or copy 
 * the data in the TableModel, instead it maintains an array of 
 * integers which it keeps the same size as the number of rows in its 
 * model. When the model changes it notifies the sorter that something 
 * has changed eg. "rowsAdded" so that its internal array of integers 
 * can be reallocated. As requests are made of the sorter (like 
 * getValueAt(row, col) it redirects them to its model via the mapping 
 * array. That way the TableSorter appears to hold another copy of the table 
 * with the rows in a different order. The sorting algorthm used is stable 
 * which means that it does not move around rows when its comparison 
 * function returns 0 to denote that they are equivalent. 
 *
 * @version 1.5 12/17/97
 * @author Philip Milne
 */
public class TableSorter extends TableModel  {
    static final Logger loggerSort = Logger.getLogger("gui.sort");

    int indexes[];
    /** list of SortCriteria */
    Vector sortingColumns = new Vector();
    int compares;
   
    public TableSorter(CollectionItem collection, 
                       Object substance, String viewName,
                       ViewFactory factory) 
    {
        super(collection,substance,viewName,factory);
        reallocateIndexes(); 
        defaultSortOrder();
    }

    /**
     * Gets the sort criteria for a column.
     * @return the SortCriteria of the given column, or null.
     */
    public SortCriteria getSortCriteria(int column) {
        for (int i=0; i<sortingColumns.size(); i++) {
            if (((SortCriteria)sortingColumns.get(i)).column==column) {
                return (SortCriteria)sortingColumns.get(i);
            }
        }
        return null;
    }

    /**
     * Sets the sort column for the collection from the context or from
     * RTTI configuration. 
     */
    public void defaultSortOrder() {
        // First see if there's a config in the context
        HashMap map = (HashMap)Collaboration.get().getAttribute(GuiAC.SORT_COLUMN);
        if (map != null) {
            SortCriteria criteria = (SortCriteria)map.get(getCollection());
            if (criteria != null) {
                loggerSort.debug("Using sort criteria from context: "+criteria);
                sortByColumn(criteria.column,criteria.ascending);
                return;
            }
        }

        // Then see if the collection has a default sort order
        String column = GuiAC.getDefaultSortedColumn(getCollection());
        if (column!=null) {
            loggerSort.debug("Using default sort order : "+column);
            boolean ascending = true;
            if (column.startsWith("-")) {
                ascending = false;
                column = column.substring(1);
            } else if (column.startsWith("+")) {
                ascending = true;
                column = column.substring(1);
            }
            // find the column with that name
            for (int i=0; i<members.length; i++) {
                if (members[i].getName().equals(column)) {
                    sortByColumn(i,ascending);
                    return;
                }
            }
        }
    }

    public int compareRowsByColumn(int row1, int row2, int column) {
        Class type = getColumnClass(column);

        // Check for nulls.
      
        Object o1 = super.getValueAt(row1, column);
        Object o2 = super.getValueAt(row2, column); 
            
        // If both values are null, return 0.
        if (o1 == null && o2 == null) {
            return 0; 
        } else if (o1 == null) { // Define null less than everything. 
            return -1; 
        } else if (o2 == null) { 
            return 1; 
        }

        /*
         * We copy all returned values from the getValue call in case
         * an optimised model is reusing one object to return many
         * values.  The Number subclasses in the JDK are immutable and
         * so will not be used in this way but other subclasses of
         * Number might want to do this to save space and avoid
         * unnecessary heap allocation.
         */
      
        if (type.getSuperclass() == java.lang.Number.class) {
            double d1 = ((Number)o1).doubleValue();
            double d2 = ((Number)o2).doubleValue();
         
            if (d1 < d2) {
                return -1;
            } else if (d1 > d2) {
                return 1;
            } else {
                return 0;
            }
        } else if (type == java.util.Date.class) {
            long n1 = ((Date)o1).getTime();
            long n2 = ((Date)o2).getTime();
         
            if (n1 < n2) {
                return -1;
            } else if (n1 > n2) {
                return 1;
            } else {
                return 0;
            }
        } else if (type == String.class) {
            return ((String)o1).compareToIgnoreCase((String)o2);
        } else if (type == Boolean.class) {
            boolean b1 = ((Boolean)o1).booleanValue();
            boolean b2 = ((Boolean)o2).booleanValue();
         
            if (b1 == b2) {
                return 0;
            } else if (b1) { // Define false < true
                return 1;
            } else {
                return -1;
            }
        } else {
            return GuiAC.toString(super.getValueAt(row1, column)).
                compareToIgnoreCase(GuiAC.toString(super.getValueAt(row2, column)));
        }
    }
   
    public int compare(int row1, int row2) {
        compares++;
        for (int level=0; level<sortingColumns.size(); level++) {
            SortCriteria criteria = (SortCriteria)sortingColumns.get(level);
            int result = compareRowsByColumn(row1, row2, criteria.column);
            if (result != 0) {
                return criteria.ascending ? result : -result;
            }
        }
        return 0;
    }
   
    /**
     * Reset to default unsorted order of the model.
     */
    public void reallocateIndexes() {
        int rowCount = getRowCount();
      
        loggerSort.debug(this+".reallocateIndexes "+rowCount);

        // Set up a new array of indexes with the right number of elements
        // for the new data model.
        indexes = new int[rowCount];
      
        // Initialise with the identity mapping.
        for (int row = 0; row < rowCount; row++) {
            indexes[row] = row;
        }
    }

    public int getActualIndex(int row) {
        return indexes[row];
    }

    public synchronized void onChange(
        Object substance, CollectionItem collection, 
        Object value, Object param) 
    {
        loggerEvents.debug("onChange "+substance+"."+collection);
        unregisterViews();
        int numRows = objects.size();
        loggerEvents.debug("  numRows="+numRows);
        objects.clear();
        rows.clear();
        if (numRows>0)
            fireTableRowsDeleted(0,numRows-1);
        buildData();
        reallocateIndexes();
        sort(this);
        fireTableRowsInserted(0,objects.size()-1);
    }


    public synchronized void onRemove(
        Object substance, CollectionItem collection, 
        Object value, Object removed, Object param) 
    {
        loggerEvents.debug("onRemove "+substance+"."+collection);
        int index = GuiAC.getRemovedIndex();
        if (index!=-1) {
            int actualIndex = indexes[index];
            loggerEvents.debug("removed index = "+index+"/"+actualIndex);
            objects.remove(actualIndex);
            rows.remove(actualIndex);
            loggerEvents.debug("old indexes = "+ExtArrays.asList(indexes));
            indexes = ExtArrays.remove(indexes,index,index);
            // We must adjust indexes too
            for (int i=0; i<indexes.length; i++) {
                if (indexes[i]>actualIndex)
                    indexes[i] -= 1;
            }
            loggerEvents.debug("new indexes = "+ExtArrays.asList(indexes));
            fireTableRowsDeleted(index,index);
        } else {
            onChange(substance,collection,value,param);
        }
    }

    /*
    public void tableChanged(TableModelEvent e) {
        if (e.getType()==TableModelEvent.INSERT || 
            e.getType()==TableModelEvent.DELETE) {
            loggerSort.debug(this+".tableChanged "+
                             (e.getType()==TableModelEvent.DELETE?"DELETE":"INSERT")+
                             " "+e.getFirstRow()+"-"+e.getLastRow());
            reallocateIndexes();
            sort(this);
            super.tableChanged(e);
        } else {
            loggerSort.debug(this+".tableChanged UPDATE "+
                             e.getFirstRow()+"-"+e.getLastRow());
            reallocateIndexes();
            sort(this);
            super.tableChanged(e);
        }
    }
    */

    public void checkModel() {
        if (indexes.length != getRowCount()) {
            loggerSort.warn(this+" not informed of a change in model for collection "+
                            getCollection().getName()+": "+indexes.length+"!="+getRowCount());
            new Exception().printStackTrace();
        }
    }

    public synchronized void sort(Object sender) {
        if (sortingColumns.size()>0) {
            loggerSort.debug("sorting "+getCollection()+" by "+sortingColumns);
            checkModel();
            
            compares = 0;
            // n2sort();
            // qsort(0, indexes.length-1);
            shuttlesort((int[])indexes.clone(), indexes, 0, indexes.length);
            //System.out.println("Compares: "+compares);
        } else {
            reallocateIndexes();
        }
    }

    public void n2sort() {
        for (int i=0; i<getRowCount(); i++) {
            for (int j=i+1; j<getRowCount(); j++) {
                if (compare(indexes[i], indexes[j]) < 0) {
                    swap(i, j);
                }
            }
        }
    }

    // This is a home-grown implementation which we have not had time
    // to research - it may perform poorly in some circumstances. It
    // requires twice the space of an in-place algorithm and makes
    // NlogN assigments shuttling the values between the two
    // arrays. The number of compares appears to vary between N-1 and
    // NlogN depending on the initial order but the main reason for
    // using it here is that, unlike qsort, it is stable.
    public void shuttlesort(int from[], int to[], int low, int high) {
        if (high - low < 2) {
            return;
        }
        int middle = (low + high)/2;
        shuttlesort(to, from, low, middle);
        shuttlesort(to, from, middle, high);
      
        int p = low;
        int q = middle;
      
        /* This is an optional short-cut; at each recursive call,
           check to see if the elements in this subset are already
           ordered.  If so, no further comparisons are needed; the
           sub-array can just be copied.  The array must be copied rather
           than assigned otherwise sister calls in the recursion might
           get out of sinc.  When the number of elements is three they
           are partitioned so that the first set, [low, mid), has one
           element and and the second, [mid, high), has two. We skip the
           optimisation when the number of elements is three or less as
           the first compare in the normal merge will produce the same
           sequence of steps. This optimisation seems to be worthwhile
           for partially ordered lists but some analysis is needed to
           find out how the performance drops to Nlog(N) as the initial
           order diminishes - it may drop very quickly.  */
      
        if (high - low >= 4 && compare(from[middle-1], from[middle]) <= 0) {
            for (int i = low; i < high; i++) {
                to[i] = from[i];
            }
            return;
        }
      
        // A normal merge. 
      
        for (int i = low; i < high; i++) {
            if (q >= high || (p < middle && compare(from[p], from[q]) <= 0)) {
                to[i] = from[p++];
            }
            else {
                to[i] = from[q++];
            }
        }
    }

    public void swap(int i, int j) {
        int tmp = indexes[i];
        indexes[i] = indexes[j];
        indexes[j] = tmp;
    }

    // The mapping only affects the contents of the data rows.
    // Pass all requests to these rows through the mapping array: "indexes".
   
    public synchronized Object getValueAt(int aRow, int aColumn) {
        checkModel();
        if(indexes.length>aRow) {
            return super.getValueAt(indexes[aRow], aColumn);
        } else {
            return null;
        }
    }

    public synchronized Object getObject(int row) {
        checkModel();
        return super.getObject(indexes[row]);
    }

    public int indexOf(Object object) {
        checkModel();
        return indexes[super.indexOf(object)];
    }

    public synchronized Object getObject(int row, int column) {
        checkModel();
        return super.getObject(indexes[row],column);
    }

    public synchronized void setValueAt(Object aValue, int aRow, int aColumn) {
        checkModel();
        super.setValueAt(aValue, indexes[aRow], aColumn);
    }

    /**
     * Sorts using values of a column
     * @param column index of column to sort by
     */
    public void sortByColumn(int column) {
        sortByColumn(column, true);
    }

    /**
     * Sorts using values of a column. Reverse the order if the table
     * was already sorted by this column.
     * @param column index of column to sort by 
     */
    public void toggleSortByColumn(int column) {
        SortCriteria criteria = getSortCriteria(column);
        SortCriteria savedCriteria;
        if (criteria!=null) {
            criteria.toggleAscending();
            savedCriteria = new SortCriteria(column,criteria.isAscending());
        } else {
            sortingColumns.clear();
            sortingColumns.add(new SortCriteria(column,true));
            savedCriteria = new SortCriteria(column,true);
        }
        sort(this);
        saveSortCriteria(savedCriteria);
        fireTableChanged(new TableModelEvent(this)); 
    }

    public void sortByColumn(int column, boolean ascending) {
        loggerSort.debug("sortByColumn "+column+
                         "("+(ascending?"":"-")+(column>=0?getHeaders()[column]:"none")+")");
        sortingColumns.clear();

        if (column>=0) {
            sortingColumns.add(new SortCriteria(column,ascending));
        }
        sort(this);

        saveSortCriteria(column>=0?new SortCriteria(column,ascending):null);

        fireTableChanged(new TableModelEvent(this)); 
    }

    /**
     * Save the sort criteria in the context
     * @param criteria the sort criteria to save
     */
    protected void saveSortCriteria(SortCriteria criteria) {
        //      new Exception().printStackTrace();
        HashMap map = (HashMap)Collaboration.get().getAttribute(GuiAC.SORT_COLUMN);
        if (map == null) {
            map = new HashMap();
            Collaboration.get().addAttribute(GuiAC.SORT_COLUMN, map);
        }
        map.put(getCollection(), criteria);
    }

    public TableSorter getSorter() {
        return this;
    }
}

About Koders | Resources | Downloads | Support | Black Duck | Submit Project | Terms of Service | DMCA | Privacy Policy | Site Map| Contact Us