aboutsummaryrefslogtreecommitdiff
path: root/src/uk/org/ury/library/viewer/LibraryViewerPanel.java
blob: 94496fc9a2a40cb1830378f861e0cb5406ba3499 (plain)
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
/*
 * LibraryViewerPanel.java
 * -----------------------
 * 
 * Part of the URY Frontend Platform
 * 
 * V0.00  2011/03/20
 * 
 * (C) 2011 URY Computing
 */

package uk.org.ury.library.viewer;

import java.util.ResourceBundle;
import java.util.concurrent.ExecutionException;

import javax.swing.JButton;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JTable;
import javax.swing.JTextField;
import javax.swing.SwingWorker;
import uk.org.ury.frontend.FrontendMaster;
import uk.org.ury.frontend.FrontendModulePanel;
import uk.org.ury.frontend.HintField;
import uk.org.ury.frontend.exceptions.UICreationFailureException;
import uk.org.ury.library.exceptions.EmptySearchException;
import uk.org.ury.protocol.exceptions.InvalidMessageException;

/**
 * Frontend panel providing access to an underlying library viewer.
 * 
 * @author Matt Windsor
 * @author Nathan Lasseter
 */
public class LibraryViewerPanel extends FrontendModulePanel {
    /**
     * 
     */
    private static final long serialVersionUID = -2441616418398056712L;

    /* Panel widgets exposed by the SwiXML user interface. */

    private JTable resultsTable;
    private JScrollPane resultsPane;

    private JPanel messagePanel;
    private JLabel messageLabel;

    private JPanel searchingPanel;
    private JLabel searchingLabel;

    private JTextField searchField;
    private JButton searchButton;
    private JLabel searchForLabel;

    private HintField hint;

    /*
     * This contains the last search failure message, for use in letting the
     * user know what happened.
     */

    private String searchFailureMessage;

    // Resource bundle.

    private ResourceBundle rb;

    /**
     * Construct a new LibraryViewerPanel.
     * 
     * @param viewer
     *            The LibraryViewer controlling this LibraryViewerPanel.
     * 
     * @param master
     *            The FrontendMaster driving the frontend.
     * 
     * @throws UICreationFailureException
     *             if the UI creation fails.
     */

    public LibraryViewerPanel(LibraryViewer viewer, FrontendMaster master)
	    throws UICreationFailureException {
	/*
	 * The UI implementation is contained in library_viewer_gui.xml.
	 * 
	 * See this file for more details.
	 */
	super(viewer, "library_viewer_gui.xml", master);

	// Fill in locale-specific data.
	rb = ResourceBundle
		.getBundle("uk.org.ury.library.viewer.LibraryViewer");

	searchFailureMessage = rb.getString("ERR_UNKNOWN");

	searchingLabel.setText(rb.getString("MSG_SEARCHING"));
	searchForLabel.setText(rb.getString("LBL_SEARCHFOR"));
	searchButton.setText(rb.getString("BTN_SEARCH"));
	hint.setText(rb.getString("HINT"));

	// Fine-tune table
	resultsTable.setAutoCreateRowSorter(true);
    }

    /**
     * @return the name of the panel.
     * 
     * @see uk.org.ury.frontend.FrontendModulePanel#getModuleName()
     */
    @Override
    public String getModuleName() {
	return rb.getString("MODULE_NAME");
    }

    /**
     * Action method for performing a search, bound by the UI XML manifest to
     * the search field and button.
     */
    public void search() {
	/*
	 * We can't let the user search while another search is going on, but
	 * it's not good to let the search "freeze" the UI.
	 * 
	 * Hence the search function disables all sensitive parts of the
	 * interface and launches a search as a background process.
	 * 
	 * We also swap the results table or no-results panel out for a panel
	 * that says "Searching...", in the interests of user-friendliness.
	 */
	searchField.setEnabled(false);
	searchButton.setEnabled(false);
	resultsPane.setVisible(false);
	messagePanel.setVisible(false);
	searchingPanel.setVisible(true);
	searchingLabel.setText(String.format(rb.getString("MSG_SEARCHING"),
		searchField.getText()));

	final LibraryViewer master = (LibraryViewer) getModule();

	SwingWorker<Boolean, Void> worker = new SwingWorker<Boolean, Void>() {
	    private String searchTerm = "";

	    /**
	     * Perform a task in a separate thread from event-dispatch.
	     * 
	     * In this case, perform a search.
	     * 
	     * @return whether or not the search was successful.
	     */
	    @Override
	    public Boolean doInBackground() {
		searchTerm = searchField.getText();

		try {
		    master.doSearch(searchTerm);
		} catch (InvalidMessageException e) {
		    searchFailureMessage = String.format(
			    rb.getString("ERR_SEARCH_FAILED"), searchTerm,
			    e.getMessage());
		    return false;
		} catch (EmptySearchException e) {
		    searchFailureMessage = rb.getString("ERR_EMPTY_SEARCH");
		    return false;
		}

		return true;
	    }

	    /**
	     * Perform post-search cleanup and finalisation.
	     */
	    @Override
	    public void done() {
		// Figure out whether or not the search succeeded.
		boolean hasSucceeded = false;

		try {
		    hasSucceeded = this.get();
		} catch (InterruptedException e) {
		    e.printStackTrace();
		} catch (ExecutionException e) {
		    searchFailureMessage = String.format(
			    rb.getString("ERR_SEARCH_FAILED"), searchTerm,
			    e.getMessage());
		}

		/*
		 * Re-enable widgets and swap panels according to whether or not
		 * results were found.
		 */
		searchField.setEnabled(true);
		searchButton.setEnabled(true);
		searchingPanel.setVisible(false);

		if (hasSucceeded == false) {
		    messageLabel.setText(searchFailureMessage);
		    messagePanel.setVisible(true);
		} else if (master.getLibraryList().size() == 0) {
		    messageLabel.setText(String.format(
			    rb.getString("ERR_NO_RESULTS"), searchTerm));
		    messagePanel.setVisible(true);
		} else {
		    // Force table update with new results.
		    resultsTable.setModel(new LibraryTableModel(master
			    .getLibraryList()));

		    messagePanel.setVisible(false);
		    resultsPane.setVisible(true);
		}
	    }
	};

	worker.execute();
    }
}