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
|
/*
Copyright (c) 2007 Health Market Science, Inc.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
USA
You can contact Health Market Science at info@healthmarketscience.com
or at the following address:
Health Market Science
2700 Horizon Drive
Suite 200
King of Prussia, PA 19406
*/
package com.healthmarketscience.jackcess;
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.Map;
import java.util.regex.Pattern;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
/**
*
* @author Frank Gerbig
*/
public class ExportUtil {
private static final Log LOG = LogFactory.getLog(ExportUtil.class);
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)
*/
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)
*/
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)
*/
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)
*/
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)
*/
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)
*/
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 {
if (out != null) {
try {
out.close();
} catch (Exception ex) {
LOG.warn("Could not close file " + f.getAbsolutePath(), ex);
}
}
}
}
/**
* 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)
*/
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)
*/
public static void exportWriter(Database db, String tableName,
BufferedWriter out, boolean header, String delim,
char quote, ExportFilter filter)
throws IOException
{
exportWriter(Cursor.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
*/
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<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
Map<String, Object> row;
Object[] unfilteredRowData = new Object[columns.size()];
while ((row = cursor.getNextRow(columnNames)) != null) {
// fill raw row data in array
for (int i = 0; i < columns.size(); i++) {
unfilteredRowData[i] = row.get(columns.get(i).getName());
}
// apply filter
Object[] rowData = filter.filterRow(unfilteredRowData);
// 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);
}
}
|