com.google.refine.exporters.CsvExporter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of main Show documentation
Show all versions of main Show documentation
OpenRefine is a free, open source power tool for working with messy data and improving it
/*
Copyright 2010, Google Inc.
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above
copyright notice, this list of conditions and the following disclaimer
in the documentation and/or other materials provided with the
distribution.
* Neither the name of Google Inc. nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package com.google.refine.exporters;
import java.io.IOException;
import java.io.Writer;
import java.util.List;
import java.util.Properties;
import java.util.stream.Stream;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.databind.JsonNode;
import com.univocity.parsers.common.AbstractWriter;
import com.univocity.parsers.csv.CsvFormat;
import com.univocity.parsers.csv.CsvWriter;
import com.univocity.parsers.csv.CsvWriterSettings;
import com.univocity.parsers.tsv.TsvFormat;
import com.univocity.parsers.tsv.TsvWriter;
import com.univocity.parsers.tsv.TsvWriterSettings;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.google.refine.browsing.Engine;
import com.google.refine.model.Project;
import com.google.refine.util.ParsingUtilities;
public class CsvExporter implements WriterExporter {
static CsvFormat DEFAULT_FORMAT = new CsvWriterSettings().getFormat();
static TsvFormat TSV_FORMAT = new TsvWriterSettings().getFormat();
static char DEFAULT_SEPARATOR = DEFAULT_FORMAT.getDelimiter();
static String DEFAULT_LINE_ENDING = DEFAULT_FORMAT.getLineSeparatorString();
final static Logger logger = LoggerFactory.getLogger("CsvExporter");
char separator;
public CsvExporter() {
separator = ','; // Comma separated-value is default
}
public CsvExporter(char separator) {
this.separator = separator;
}
private static class Configuration {
@JsonProperty("separator")
protected String separator = null;
@JsonProperty("lineSeparator")
protected String lineSeparator = DEFAULT_LINE_ENDING;
@JsonProperty("quoteAll")
protected boolean quoteAll = false;
}
@Override
public void export(Project project, Properties params, Engine engine, final Writer writer)
throws IOException {
String optionsString = (params == null) ? null : params.getProperty("options");
Configuration options = new Configuration();
if (optionsString != null) {
try {
options = ParsingUtilities.mapper.readValue(optionsString, Configuration.class);
} catch (IOException e) {
// Ignore and keep options null.
e.printStackTrace();
}
}
if (options.separator == null) {
options.separator = Character.toString(separator);
}
final String separator = options.separator;
final String lineSeparator = options.lineSeparator;
final boolean quoteAll = options.quoteAll;
final boolean printColumnHeader = (params != null && params.getProperty("printColumnHeader") != null)
? Boolean.parseBoolean(params.getProperty("printColumnHeader"))
: true;
AbstractWriter csvWriter;
if ("\t".equals(separator)) {
TsvWriterSettings tsvSettings = new TsvWriterSettings();
csvWriter = new TsvWriter(writer, tsvSettings);
} else {
CsvWriterSettings settings = new CsvWriterSettings();
settings.setQuoteAllFields(quoteAll); // CSV only
settings.getFormat().setLineSeparator(lineSeparator);
settings.getFormat().setDelimiter(separator);
// Required for our test exportCsvWithQuote which wants the value "line has \"quote\""
// to be exported as "\"line has \"\"quote\"\"", although the default of literal value
// without the extra quoting is arguably cleaner
settings.setEscapeUnquotedValues(true);
settings.setQuoteEscapingEnabled(true);
csvWriter = new CsvWriter(writer, settings);
}
TabularSerializer serializer = new TabularSerializer() {
@Override
public void startFile(JsonNode options) {
}
@Override
public void endFile() {
}
@Override
public void addRow(List cells, boolean isHeader) {
if (!isHeader || printColumnHeader) {
Stream strings = cells.stream()
.map(cellData -> (cellData != null && cellData.text != null) ? cellData.text : "");
csvWriter.writeRow(strings.toArray());
}
}
};
CustomizableTabularExporterUtilities.exportRows(project, engine, params, serializer);
}
@Override
public String getContentType() {
return "text/plain";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy