summaryrefslogtreecommitdiffstats
path: root/src/com/joshwalters/bookcatalog/SearchDatabase.java
blob: ffe68f08daa95f2678c4170dd98ebdcdf1b2c747 (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
/*
 *      Book Catalog - Catalog your book collection.
 *      
 *      Copyright (C) 2009 Joshua Walters
 *      URL: http://joshwalters.com
 *      
 *      This file is part of Book Catalog.
 *      
 *      Book Catalog is free software: you can redistribute it and/or modify
 *      it under the terms of the GNU General Public License as published by
 *      the Free Software Foundation, either version 3 of the License, or
 *      (at your option) any later version.
 *      
 *      Book Catalog is distributed in the hope that it will be useful,
 *      but WITHOUT ANY WARRANTY; without even the implied warranty of
 *      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *      GNU General Public License for more details.
 *      
 *      You should have received a copy of the GNU General Public License
 *      along with Book Catalog.  If not, see <http://www.gnu.org/licenses/>.
 */

package com.joshwalters.bookcatalog;

import java.sql.SQLException;

import javax.swing.JTable;
import javax.swing.JTextField;
import javax.swing.event.DocumentEvent;
import javax.swing.event.DocumentListener;

import com.joshwalters.bookcatalog.bookdatabase.BookDatabase;
import com.joshwalters.bookcatalog.bookdatabase.EmptyDatabase;
import com.joshwalters.bookcatalog.table.BookCatalogTableModel;

/**
 * Searches the database for books. s
 * 
 * @author Josh Walters
 */
class SearchDatabase implements DocumentListener {

	private JTable bookCatalogTable;
	private BookDatabase bookDatabase;
	private JTextField searchField;

	/**
	 * Get the different objects needed for the class to function.
	 * 
	 * @param bookCatalogTable
	 * @param bookDatabase
	 * @param searchField
	 */
	public SearchDatabase(JTable bookCatalogTable, BookDatabase bookDatabase,
			JTextField searchField) {
		this.bookCatalogTable = bookCatalogTable;
		this.bookDatabase = bookDatabase;
		this.searchField = searchField;
	}

	/**
	 * Updates the table with the search string given by the user.
	 */
	public void updateTableWithSearchString() {
		try {
			// Get the table model.
			BookCatalogTableModel bookCatalogTableModel = (BookCatalogTableModel) bookCatalogTable
					.getModel();
			// If the search field is empty, display all books in the database
			// in the table.
			if (searchField.getText().length() == 0) {
				String[][] data = bookDatabase.getDatabaseForTable();
				bookCatalogTableModel.setData(data);
				bookCatalogTableModel.fireTableDataChanged();
			} else {
				// Search for matches to the search string.
				String[][] data = bookDatabase
						.searchDatabaseForTable(searchField.getText());
				// Update the table.
				bookCatalogTableModel.setData(data);
				// Refresh the table.
				bookCatalogTableModel.fireTableDataChanged();
			}
		} catch (SQLException e) {
			// There was an SQL error of some sort.
			System.err.println(e.getLocalizedMessage());
		} catch (EmptyDatabase e) {
			// The database was empty.
			System.err.println(e.getLocalizedMessage());
		}
	}

	/**
	 * Nothing to do here.
	 */
	public void changedUpdate(DocumentEvent arg0) {
	}

	/**
	 * Update the table with the search string.
	 */
	public void insertUpdate(DocumentEvent arg0) {
		updateTableWithSearchString();
	}

	/**
	 * Update the table with the search string.
	 */
	public void removeUpdate(DocumentEvent arg0) {
		updateTableWithSearchString();
	}
}