source: trunk/gli/src/org/greenstone/gatherer/gui/metaaudit/MetaAuditFrame.java@ 4366

Last change on this file since 4366 was 4366, checked in by kjdon, 21 years ago

re-tabbed the code for java

  • Property svn:keywords set to Author Date Id Revision
File size: 11.7 KB
Line 
1package org.greenstone.gatherer.gui.metaaudit;
2/**
3 *#########################################################################
4 *
5 * A component of the Gatherer application, part of the Greenstone digital
6 * library suite from the New Zealand Digital Library Project at the
7 * University of Waikato, New Zealand.
8 *
9 * <BR><BR>
10 *
11 * Author: John Thompson, Greenstone Digital Library, University of Waikato
12 *
13 * <BR><BR>
14 *
15 * Copyright (C) 1999 New Zealand Digital Library Project
16 *
17 * <BR><BR>
18 *
19 * This program is free software; you can redistribute it and/or modify
20 * it under the terms of the GNU General Public License as published by
21 * the Free Software Foundation; either version 2 of the License, or
22 * (at your option) any later version.
23 *
24 * <BR><BR>
25 *
26 * This program is distributed in the hope that it will be useful,
27 * but WITHOUT ANY WARRANTY; without even the implied warranty of
28 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
29 * GNU General Public License for more details.
30 *
31 * <BR><BR>
32 *
33 * You should have received a copy of the GNU General Public License
34 * along with this program; if not, write to the Free Software
35 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
36 *########################################################################
37 */
38import java.awt.*;
39import java.awt.event.*;
40import javax.swing.*;
41import javax.swing.event.*;
42import javax.swing.tree.*;
43import org.greenstone.gatherer.Gatherer;
44import org.greenstone.gatherer.collection.Collection;
45import org.greenstone.gatherer.file.FileNode;
46import org.greenstone.gatherer.util.TreeSynchronizer;
47/** The MetaAuditFrame provides a table view of all of the metadata assigned to a selection of FileNodes. All values for a certain file and a certain metadata element appear in the same cell. This table can be sorted by any column, and also has a MS Excel-like AutoFilter allowing you to restrict the rows visible to only those that match a certain set of criteria (applied to each column, and then 'ANDED', or cojoined, to determine the filter). Finally this dialog does not block the Gatherer tool, so the file selection can be changed and the dialog will just generate a new table dynamically.<BR>
48 * Much effort has gone into optimizing this table, as it quickly becomes slow and unresponsive to build/filter/sort when the number of records selected is high. However its performance is still nowhere as good as the Excel spreadsheet, and selections of 1000+ records can cause some serious waiting problems. Performance progression, shown in terms of time taken to perform action, are shown below. Note that building includes both the creation of the data model, and/or the time taken to lay out row and column sizes (due to this using multiple entry cells). Also all tables, by default, must be sorted by one column, which is initially the first column in ascending order:<BR><BR>
49 * <TABLE border=1 cellspacing=0 cellpadding=5>
50 * <TR><TD align=center colspan=5>Time Taken with 1000 records (ms)</TD></TR>
51 * <TR><TD>Action</TD><TD>Original</TD><TD>Revision 1</TD><TD>Revision 2</TD><TD>Revision 3</TD></TR>
52 * <TR><TD>Build</TD><TD align=right>113013</TD><TD align=right>1500</TD><TD align=right>1280</TD><TD align=right>665</TD></TR>
53 * <TR><TD>Sort</TD><TD align=right>34228</TD><TD align=right>353</TD><TD align=right>341</TD><TD align=right>338</TD></TR>
54 * <TR><TD>Filter</TD><TD align=right>57110</TD><TD align=right>485</TD><TD align=right>485</TD><TD align=right>485</TD></TR>
55 * </TABLE>
56 * <BR><BR>
57 * <TABLE border=1 cellspacing=0 cellpadding=5>
58 * <TR><TD align=center colspan=5>Time Taken with 10,000 records (ms) [hdlsub]</TD></TR>
59 * <TR><TD>Action</TD><TD>Original</TD><TD>Revision 1</TD><TD>Revision 2</TD><TD>Revision 3</TD></TR>
60 * <TR><TD>Build</TD><TD align=right>DNF</TD><TD align=right>8667</TD><TD align=right>6784</TD><TD align=right>3081</TD></TR>
61 * <TR><TD>Sort</TD><TD align=right>DNF</TD><TD align=right>236</TD><TD align=right>241</TD><TD align=right>228</TD></TR>
62 * <TR><TD>Filter</TD><TD align=right>DNF</TD><TD align=right>59272</TD><TD align=right>59767</TD><TD align=right>59614</TD></TR>
63 * </TABLE>
64 * <BR><BR>
65 * <TABLE border=1 cellspacing=0 cellpadding=5>
66 * <TR><TD align=center colspan=5>Time Taken with 30,000 records (ms) [hdl]</TD></TR>
67 * <TR><TD>Action</TD><TD>Original</TD><TD>Revision 1</TD><TD>Revision 2</TD><TD>Revision 3</TD></TR>
68 * <TR><TD>Build</TD><TD align=right>DNF</TD><TD align=right>19037</TD><TD align=right>16478</TD><TD align=right>8111</TD></TR>
69 * <TR><TD>Sort</TD><TD align=right>DNF</TD><TD align=right>314</TD><TD align=right>301</TD><TD align=right>385</TD></TR>
70 * <TR><TD>Filter</TD><TD align=right>DNF</TD><TD align=right>[300000]</TD><TD align=right>[300000]</TD><TD align=right>[300000]</TD></TR>
71 * </TABLE><BR><BR>
72 * It is easy to see that while building and sorting have become quite fast and reasonable, sorting is still unacceptable in terms of performance. The difficulty is this, that while sorting is easy (and fast) to implement via the Decorator pattern (making the overall table model a MDVC one) it requires the entire contents of a column to be available. Thus no matter the speed of your sort algorithm you will end up making N calls to getValueAt() in the table data model, for N records. This is not a problem for the initial model, hence the small sort times. However when you attempt to place another deocrator model (or modify the existing one) in order to filter only selected rows, even if the filtering itself takes little time, this little time quickly grows to unacceptable levels. In fact testing has shown it to grow much faster than linear time (though I'm not sure where). Doubling the number of records to filter increases the processing time by 5-7 times.<BR>
73 * In attempting to solve this problem, I have found many resources that mention a similar problem when trying to build visual representations of database tables, especially over networks or other temporally-non-deterministic connections. The common solution is to 'page' only those records necessary into memory on demand, thus making initial response significantly faster, while paying a small price for subsequent page seeks. There are even studies and algorithms for determining pages loads etc, I would imagine garnered from the memory management community. However none of these really help me usless I can get around the problem of having to have the entire columns population immeditaly accessable for sorting purposes.<BR>
74 * I believe with more time is would be possible to make a hybrid table model with properties such as you would require for the aforemenetioned database application, but which also provides fast methods for determining the highest and lowest records perhaps by building traversable heaps in the original model. Such a solution would incur a build penalty, and could consume significant memory, but would provide ordered and sequential access to the data within.<BR>
75 * The discussion aside, I have run out of time to do anything further on this, so will include as is, and provide a warning dialog whenever the number of records might suffer slow processing (1000+ records).
76 * @author John Thompson, Greenstone Digital Library, University of Waikato
77 * @version 2.3
78 */
79public class MetaAuditFrame
80 extends JDialog
81 implements TreeSelectionListener {
82 public AutofilterDialog autofilter_dialog;
83 /** Whether the selection has changed since the last time we built the model (because it has been hidden and theres no point refreshing a model you can't see!). */
84 private boolean invalid = true;
85 /** An array holding the most recent list of paths selected (plus some nulls for those paths removed). */
86 private FileNode records[];
87 /** A reference to ourselves so that inner classes can interact with us. */
88 private MetaAuditFrame self;
89 /** The table in which the metadata is shown. */
90 private MetaAuditTable table;
91 /** The default size for the metaaudit dialog. */
92 static final private Dimension SIZE = new Dimension(640,480);
93 /** The tolerance used to determine between a column resize, and a request for an AutoFilterDialog. */
94 static final private int TOLERANCE = 3;
95 /** Constructor.*/
96 public MetaAuditFrame(TreeSynchronizer tree_sync, FileNode records[]) {
97 super();
98 // Arguments
99 this.autofilter_dialog = new AutofilterDialog(this);
100 this.records = records;
101 this.self = this;
102 this.table = new MetaAuditTable(this);
103 // Creation
104 setDefaultCloseOperation(JDialog.HIDE_ON_CLOSE);
105 setSize(SIZE);
106 setTitle(get("Title"));
107
108 JPanel content_pane = (JPanel) getContentPane();
109 JPanel button_pane = new JPanel();
110
111 JButton close_button = new JButton(get("Close"));
112 close_button.setMnemonic(KeyEvent.VK_C);
113 // Connection
114 close_button.addActionListener(new CloseListener());
115 tree_sync.addTreeSelectionListener(this);
116 // Layout
117 button_pane.setBorder(BorderFactory.createEmptyBorder(5,5,5,5));
118 button_pane.setLayout(new BorderLayout());
119 button_pane.add(close_button, BorderLayout.CENTER);
120
121 content_pane.setBorder(BorderFactory.createEmptyBorder(5,5,5,5));
122 content_pane.setLayout(new BorderLayout());
123 content_pane.add(new JScrollPane(table), BorderLayout.CENTER);
124 content_pane.add(button_pane, BorderLayout.SOUTH);
125
126 Dimension screen_size = Gatherer.config.screen_size;
127 setLocation((screen_size.width - SIZE.width) / 2, (screen_size.height - SIZE.height) / 2);
128 screen_size = null;
129 close_button = null;
130 button_pane = null;
131 content_pane = null;
132 }
133 /** Destructor. */
134 public void destroy() {
135 records = null;
136 self = null;
137 table = null;
138 }
139 /** Display the dialog on screen. */
140 public void display() {
141 if(invalid) {
142 rebuildModel();
143 }
144 show();
145 }
146 /** This method is called whenever the selection within the collection tree changes. This causes the table to be rebuilt with a new model.
147 * @param event A <strong>TreeSelectionEvent</strong> containing information about the event.
148 */
149 public void valueChanged(TreeSelectionEvent event) {
150 if(event.getSource() instanceof JTree) {
151 TreePath paths[] = Gatherer.g_man.metaedit_pane.collection_tree.getSelectionPaths();
152 if(paths != null) {
153 records = new FileNode[paths.length];
154 for(int i = 0; i < paths.length; i++) {
155 records[i] = (FileNode) paths[i].getLastPathComponent();
156 }
157 if(isVisible()) {
158 rebuildModel();
159 }
160 else {
161 invalid = true;
162 }
163 }
164 }
165 }
166
167 public void wait(boolean waiting) {
168 Component glass_pane = getGlassPane();
169 if(waiting) {
170 // Show wait cursor.
171 glass_pane.setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR));
172 glass_pane.setVisible(true);
173 }
174 else {
175 // Hide wait cursor.
176 glass_pane.setVisible(false);
177 glass_pane.setCursor(Cursor.getPredefinedCursor(Cursor.DEFAULT_CURSOR));
178 }
179 glass_pane = null;
180 }
181
182 /** Retrieve a phrase from the Dictionary.
183 * @param key A <strong>String</strong> which uniquely maps to a phrase.
184 * @return The desired phrase as a </strong>String</strong>.
185 * @see org.greenstone.gatherer.Dictionary
186 */
187 private String get(String key) {
188 return Gatherer.dictionary.get("MetaAudit." + key);
189 }
190 /** Rebuild the metaaudit table model using the current collection tree selection.
191 */
192 private void rebuildModel() {
193 // Build and set model
194 table.newModel(records);
195 // Done.
196 invalid = false;
197 }
198 /** Listens for actions apon the close button, and if detected closes the dialog (storing its current size first). */
199 private class CloseListener
200 implements ActionListener {
201 /** Any implementation of ActionListener must include this method so that we can be informed when an action has been performed on our target control(s).
202 * @param event An <strong>ActionEvent</strong> containing information about the event.
203 */
204 public void actionPerformed(ActionEvent event) {
205 self.hide();
206 }
207 }
208}
209
210
211
212
213
214
215
216
217
218
Note: See TracBrowser for help on using the repository browser.