
com.hazelcast.jet.pipeline.file.LinesTextFileFormat Maven / Gradle / Ivy
/*
* Copyright (c) 2008-2024, Hazelcast, Inc. All Rights Reserved.
*
* 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.hazelcast.jet.pipeline.file;
import javax.annotation.Nonnull;
import java.io.Serial;
import java.nio.charset.Charset;
import java.util.Objects;
import static java.nio.charset.StandardCharsets.UTF_8;
import static java.util.Objects.requireNonNull;
/**
* {@link FileFormat} for text files where each line is a {@code String}
* data item. See {@link FileFormat#lines} for more details.
*
* @since Jet 4.4
*/
public class LinesTextFileFormat implements FileFormat {
/**
* Format ID for text file as lines.
*/
public static final String FORMAT_LINES = "lines";
@Serial
private static final long serialVersionUID = 1L;
private final String charset;
/**
* Creates a {@code LinesTextFileFormat} with the default character
* encoding (UTF-8).
*/
LinesTextFileFormat() {
this(UTF_8);
}
/**
* Creates a {@code LinesTextFileFormat} with the provided character
* encoding (UTF-8).
*
* NOTE: the Hadoop connector only supports UTF-8. This
* option is supported for local files only.
*/
LinesTextFileFormat(@Nonnull Charset charset) {
this.charset = requireNonNull(charset, "charset must not be null").name();
}
/**
* Returns the configured character encoding.
*/
public Charset charset() {
return Charset.forName(charset);
}
@Nonnull
@Override
public String format() {
return FORMAT_LINES;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
LinesTextFileFormat that = (LinesTextFileFormat) o;
return Objects.equals(charset, that.charset);
}
@Override
public int hashCode() {
return Objects.hash(charset);
}
}