summaryrefslogtreecommitdiffstats
path: root/src/com/joshwalters/bookcatalog/isbnlookup/ISBNLookup.java
blob: 92d31ffcc2935145bf9bd1aae38c5c18be5d2025 (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
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
/*
 *      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.isbnlookup;

import java.util.regex.Pattern;

/**
 * Abstract class for performing an ISBN lookup for a book.
 * 
 * @author Josh Walters
 */
public abstract class ISBNLookup {

	/**
	 * The title of the book.
	 */
	protected String title;
	/**
	 * The author of the book.
	 */
	protected String author;
	/**
	 * The publisher of the book.
	 */
	protected String publisher;
	/**
	 * The date the book was published.
	 */
	protected String date;
	/**
	 * The description of the book.
	 */
	protected String description;
	/**
	 * The subject of the book.
	 */
	protected String subject;
	/**
	 * The books ISBN number.
	 */
	protected String ISBN;
	/**
	 * The price of the book.
	 */
	protected String price;

	/**
	 * Purifies the input barcode to make it suitable for use in lookup. Also
	 * grabs the price from the barcode if it is present.
	 * 
	 * @param barcode
	 * @return A purified barcode.
	 * @throws InvalidSearchTerms
	 */
	protected String purifyBarcode(String barcode) throws InvalidSearchTerms {
		// Remove the extra characters that some scanners include
		barcode = removeCharInString(barcode, ' ');
		barcode = removeCharInString(barcode, '-');
		// Check to see if the barcode is made up of numbers.
		if (!Pattern.matches("^\\d*$", barcode)) {
			throw new InvalidSearchTerms();
		}
		// Check to see that the barcode is at least 4 digits long.
		if (barcode.length() < 4) {
			throw new InvalidSearchTerms();
		}
		// ISBN-13
		if (barcode.substring(0, 3).compareTo("978") == 0
				|| barcode.substring(0, 3).compareTo("979") == 0) {
			if (barcode.length() == 15) {
				barcode = barcode.substring(0, 13);
			}
			if (barcode.length() == 18) {
				price = barcode.substring(13);
				barcode = barcode.substring(0, 13);
			}
		}
		// ISBN-10
		else {
			if (barcode.length() == 12) {
				barcode = barcode.substring(0, 10);
			}
			if (barcode.length() == 15) {
				price = barcode.substring(10);
				barcode = barcode.substring(0, 10);
			}
		}
		if (price != null) {
			// Format price information
			if (price.charAt(1) == '0') {
				price = price.substring(2);
				price = "$" + price.substring(0, 1) + "." + price.substring(1);
			} else {
				price = price.substring(1);
				price = "$" + price.substring(0, 2) + "." + price.substring(2);
			}
		}
		// Check to make sure that this is the proper length for an ISBN number.
		if (barcode.length() != 10 & barcode.length() != 13) {
			throw new InvalidSearchTerms();
		}
		return barcode;
	}

	/**
	 * Clear out all the data fields.
	 */
	protected void emptyDataFields() {
		title = null;
		author = null;
		publisher = null;
		date = null;
		description = null;
		subject = null;
		ISBN = null;
		price = null;
		return;
	}

	/**
	 * Removes character from string.
	 * 
	 * @param s
	 * @param c
	 * @return The new string.
	 */
	private String removeCharInString(String s, char c) {
		String result = "";
		for (int i = 0; i < s.length(); i++) {
			if (s.charAt(i) != c) {
				result += s.charAt(i);
			}
		}
		return result;
	}

	/**
	 * Searches for a book.
	 * 
	 * @param barcode
	 * @throws NoBookFound
	 * @throws InvalidSearchTerms
	 */
	public abstract void searchBooks(String barcode) throws NoBookFound,
			InvalidSearchTerms;

	/**
	 * @return the title
	 */
	public String getTitle() {
		return title;
	}

	/**
	 * @param title
	 *            the title to set
	 */
	public void setTitle(String title) {
		this.title = title;
	}

	/**
	 * @return the author
	 */
	public String getAuthor() {
		return author;
	}

	/**
	 * @param author
	 *            the author to set
	 */
	public void setAuthor(String author) {
		this.author = author;
	}

	/**
	 * @return the publisher
	 */
	public String getPublisher() {
		return publisher;
	}

	/**
	 * @param publisher
	 *            the publisher to set
	 */
	public void setPublisher(String publisher) {
		this.publisher = publisher;
	}

	/**
	 * @return the date
	 */
	public String getDate() {
		return date;
	}

	/**
	 * @param date
	 *            the date to set
	 */
	public void setDate(String date) {
		this.date = date;
	}

	/**
	 * @return the description
	 */
	public String getDescription() {
		return description;
	}

	/**
	 * @param description
	 *            the description to set
	 */
	public void setDescription(String description) {
		this.description = description;
	}

	/**
	 * @return the subject
	 */
	public String getSubject() {
		return subject;
	}

	/**
	 * @param subject
	 *            the subject to set
	 */
	public void setSubject(String subject) {
		this.subject = subject;
	}

	/**
	 * @return the ISBN
	 */
	public String getISBN() {
		return ISBN;
	}

	/**
	 * @param ISBN
	 *            the ISBN to set
	 */
	public void setISBN(String ISBN) {
		this.ISBN = ISBN;
	}

	/**
	 * @return the price
	 */
	public String getPrice() {
		return price;
	}

	/**
	 * @param price
	 *            the price to set
	 */
	public void setPrice(String price) {
		this.price = price;
	}
}