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
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
|
/*
Copyright (c) 2007 Health Market Science, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package com.healthmarketscience.jackcess.util;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Collection;
import java.util.HashSet;
import java.util.Iterator;
import java.util.List;
import java.util.regex.Pattern;
import com.healthmarketscience.jackcess.Column;
import com.healthmarketscience.jackcess.Cursor;
import com.healthmarketscience.jackcess.CursorBuilder;
import com.healthmarketscience.jackcess.Database;
import com.healthmarketscience.jackcess.Row;
import com.healthmarketscience.jackcess.impl.ByteUtil;
/**
* Utility class for exporting tables from an Access database to other
* formats. See the {@link Builder} for convenient configuration of the
* export functionality. Note that most scenarios for customizing output data
* can be handled by implementing a custom {@link ExportFilter}.
*
* @author Frank Gerbig
* @usage _general_class_
*/
public class ExportUtil {
public static final String DEFAULT_DELIMITER = ",";
public static final char DEFAULT_QUOTE_CHAR = '"';
public static final String DEFAULT_FILE_EXT = "csv";
private ExportUtil() {
}
/**
* Copy all tables into new delimited text files <br>
* Equivalent to: {@code exportAll(db, dir, "csv");}
*
* @param db
* Database the table to export belongs to
* @param dir
* The directory where the new files will be created
*
* @see #exportAll(Database,File,String)
* @see Builder
*/
public static void exportAll(Database db, File dir)
throws IOException {
exportAll(db, dir, DEFAULT_FILE_EXT);
}
/**
* Copy all tables into new delimited text files <br>
* Equivalent to: {@code exportFile(db, name, f, false, null, '"',
* SimpleExportFilter.INSTANCE);}
*
* @param db
* Database the table to export belongs to
* @param dir
* The directory where the new files will be created
* @param ext
* The file extension of the new files
*
* @see #exportFile(Database,String,File,boolean,String,char,ExportFilter)
* @see Builder
*/
public static void exportAll(Database db, File dir,
String ext) throws IOException {
for (String tableName : db.getTableNames()) {
exportFile(db, tableName, new File(dir, tableName + "." + ext), false,
DEFAULT_DELIMITER, DEFAULT_QUOTE_CHAR, SimpleExportFilter.INSTANCE);
}
}
/**
* Copy all tables into new delimited text files <br>
* Equivalent to: {@code exportFile(db, name, f, false, null, '"',
* SimpleExportFilter.INSTANCE);}
*
* @param db
* Database the table to export belongs to
* @param dir
* The directory where the new files will be created
* @param ext
* The file extension of the new files
* @param header
* If <code>true</code> the first line contains the column names
*
* @see #exportFile(Database,String,File,boolean,String,char,ExportFilter)
* @see Builder
*/
public static void exportAll(Database db, File dir,
String ext, boolean header)
throws IOException {
for (String tableName : db.getTableNames()) {
exportFile(db, tableName, new File(dir, tableName + "." + ext), header,
DEFAULT_DELIMITER, DEFAULT_QUOTE_CHAR, SimpleExportFilter.INSTANCE);
}
}
/**
* Copy all tables into new delimited text files <br>
* Equivalent to: {@code exportFile(db, name, f, false, null, '"',
* SimpleExportFilter.INSTANCE);}
*
* @param db
* Database the table to export belongs to
* @param dir
* The directory where the new files will be created
* @param ext
* The file extension of the new files
* @param header
* If <code>true</code> the first line contains the column names
* @param delim
* The column delimiter, <code>null</code> for default (comma)
* @param quote
* The quote character
* @param filter
* valid export filter
*
* @see #exportFile(Database,String,File,boolean,String,char,ExportFilter)
* @see Builder
*/
public static void exportAll(Database db, File dir,
String ext, boolean header, String delim,
char quote, ExportFilter filter)
throws IOException {
for (String tableName : db.getTableNames()) {
exportFile(db, tableName, new File(dir, tableName + "." + ext), header,
delim, quote, filter);
}
}
/**
* Copy a table into a new delimited text file <br>
* Equivalent to: {@code exportFile(db, name, f, false, null, '"',
* SimpleExportFilter.INSTANCE);}
*
* @param db
* Database the table to export belongs to
* @param tableName
* Name of the table to export
* @param f
* New file to create
*
* @see #exportFile(Database,String,File,boolean,String,char,ExportFilter)
* @see Builder
*/
public static void exportFile(Database db, String tableName,
File f) throws IOException {
exportFile(db, tableName, f, false, DEFAULT_DELIMITER, DEFAULT_QUOTE_CHAR,
SimpleExportFilter.INSTANCE);
}
/**
* Copy a table into a new delimited text file <br>
* Nearly equivalent to: {@code exportWriter(db, name, new BufferedWriter(f),
* header, delim, quote, filter);}
*
* @param db
* Database the table to export belongs to
* @param tableName
* Name of the table to export
* @param f
* New file to create
* @param header
* If <code>true</code> the first line contains the column names
* @param delim
* The column delimiter, <code>null</code> for default (comma)
* @param quote
* The quote character
* @param filter
* valid export filter
*
* @see #exportWriter(Database,String,BufferedWriter,boolean,String,char,ExportFilter)
* @see Builder
*/
public static void exportFile(Database db, String tableName,
File f, boolean header, String delim, char quote,
ExportFilter filter) throws IOException {
BufferedWriter out = null;
try {
out = new BufferedWriter(new FileWriter(f));
exportWriter(db, tableName, out, header, delim, quote, filter);
out.close();
} finally {
ByteUtil.closeQuietly(out);
}
}
/**
* Copy a table in this database into a new delimited text file <br>
* Equivalent to: {@code exportWriter(db, name, out, false, null, '"',
* SimpleExportFilter.INSTANCE);}
*
* @param db
* Database the table to export belongs to
* @param tableName
* Name of the table to export
* @param out
* Writer to export to
*
* @see #exportWriter(Database,String,BufferedWriter,boolean,String,char,ExportFilter)
* @see Builder
*/
public static void exportWriter(Database db, String tableName,
BufferedWriter out) throws IOException {
exportWriter(db, tableName, out, false, DEFAULT_DELIMITER,
DEFAULT_QUOTE_CHAR, SimpleExportFilter.INSTANCE);
}
/**
* Copy a table in this database into a new delimited text file. <br>
* Equivalent to: {@code exportWriter(Cursor.createCursor(db.getTable(tableName)), out, header, delim, quote, filter);}
*
* @param db
* Database the table to export belongs to
* @param tableName
* Name of the table to export
* @param out
* Writer to export to
* @param header
* If <code>true</code> the first line contains the column names
* @param delim
* The column delimiter, <code>null</code> for default (comma)
* @param quote
* The quote character
* @param filter
* valid export filter
*
* @see #exportWriter(Cursor,BufferedWriter,boolean,String,char,ExportFilter)
* @see Builder
*/
public static void exportWriter(Database db, String tableName,
BufferedWriter out, boolean header, String delim,
char quote, ExportFilter filter)
throws IOException
{
exportWriter(CursorBuilder.createCursor(db.getTable(tableName)), out, header,
delim, quote, filter);
}
/**
* Copy a table in this database into a new delimited text file.
*
* @param cursor
* Cursor to export
* @param out
* Writer to export to
* @param header
* If <code>true</code> the first line contains the column names
* @param delim
* The column delimiter, <code>null</code> for default (comma)
* @param quote
* The quote character
* @param filter
* valid export filter
*
* @see Builder
*/
public static void exportWriter(Cursor cursor,
BufferedWriter out, boolean header, String delim,
char quote, ExportFilter filter)
throws IOException
{
String delimiter = (delim == null) ? DEFAULT_DELIMITER : delim;
// create pattern which will indicate whether or not a value needs to be
// quoted or not (contains delimiter, separator, or newline)
Pattern needsQuotePattern = Pattern.compile(
"(?:" + Pattern.quote(delimiter) + ")|(?:" +
Pattern.quote("" + quote) + ")|(?:[\n\r])");
List<? extends Column> origCols = cursor.getTable().getColumns();
List<Column> columns = new ArrayList<Column>(origCols);
columns = filter.filterColumns(columns);
Collection<String> columnNames = null;
if(!origCols.equals(columns)) {
// columns have been filtered
columnNames = new HashSet<String>();
for (Column c : columns) {
columnNames.add(c.getName());
}
}
// print the header row (if desired)
if (header) {
for (Iterator<Column> iter = columns.iterator(); iter.hasNext();) {
writeValue(out, iter.next().getName(), quote, needsQuotePattern);
if (iter.hasNext()) {
out.write(delimiter);
}
}
out.newLine();
}
// print the data rows
Object[] unfilteredRowData = new Object[columns.size()];
Row row;
while ((row = cursor.getNextRow(columnNames)) != null) {
// fill raw row data in array
for (int i = 0; i < columns.size(); i++) {
unfilteredRowData[i] = columns.get(i).getRowValue(row);
}
// apply filter
Object[] rowData = filter.filterRow(unfilteredRowData);
if(rowData == null) {
continue;
}
// print row
for (int i = 0; i < columns.size(); i++) {
Object obj = rowData[i];
if(obj != null) {
String value = null;
if(obj instanceof byte[]) {
value = ByteUtil.toHexString((byte[])obj);
} else {
value = String.valueOf(rowData[i]);
}
writeValue(out, value, quote, needsQuotePattern);
}
if (i < columns.size() - 1) {
out.write(delimiter);
}
}
out.newLine();
}
out.flush();
}
private static void writeValue(BufferedWriter out, String value, char quote,
Pattern needsQuotePattern)
throws IOException
{
if(!needsQuotePattern.matcher(value).find()) {
// no quotes necessary
out.write(value);
return;
}
// wrap the value in quotes and handle internal quotes
out.write(quote);
for (int i = 0; i < value.length(); ++i) {
char c = value.charAt(i);
if (c == quote) {
out.write(quote);
}
out.write(c);
}
out.write(quote);
}
/**
* Builder which simplifies configuration of an export operation.
*/
public static class Builder
{
private Database _db;
private String _tableName;
private String _ext = DEFAULT_FILE_EXT;
private Cursor _cursor;
private String _delim = DEFAULT_DELIMITER;
private char _quote = DEFAULT_QUOTE_CHAR;
private ExportFilter _filter = SimpleExportFilter.INSTANCE;
private boolean _header;
public Builder(Database db) {
this(db, null);
}
public Builder(Database db, String tableName) {
_db = db;
_tableName = tableName;
}
public Builder(Cursor cursor) {
_cursor = cursor;
}
public Builder setDatabase(Database db) {
_db = db;
return this;
}
public Builder setTableName(String tableName) {
_tableName = tableName;
return this;
}
public Builder setCursor(Cursor cursor) {
_cursor = cursor;
return this;
}
public Builder setDelimiter(String delim) {
_delim = delim;
return this;
}
public Builder setQuote(char quote) {
_quote = quote;
return this;
}
public Builder setFilter(ExportFilter filter) {
_filter = filter;
return this;
}
public Builder setHeader(boolean header) {
_header = header;
return this;
}
public Builder setFileNameExtension(String ext) {
_ext = ext;
return this;
}
/**
* @see ExportUtil#exportAll(Database,File,String,boolean,String,char,ExportFilter)
*/
public void exportAll(File dir) throws IOException {
ExportUtil.exportAll(_db, dir, _ext, _header, _delim, _quote, _filter);
}
/**
* @see ExportUtil#exportFile(Database,String,File,boolean,String,char,ExportFilter)
*/
public void exportFile(File f) throws IOException {
ExportUtil.exportFile(_db, _tableName, f, _header, _delim, _quote,
_filter);
}
/**
* @see ExportUtil#exportWriter(Database,String,BufferedWriter,boolean,String,char,ExportFilter)
* @see ExportUtil#exportWriter(Cursor,BufferedWriter,boolean,String,char,ExportFilter)
*/
public void exportWriter(BufferedWriter writer) throws IOException {
if(_cursor != null) {
ExportUtil.exportWriter(_cursor, writer, _header, _delim,
_quote, _filter);
} else {
ExportUtil.exportWriter(_db, _tableName, writer, _header, _delim,
_quote, _filter);
}
}
}
}
|