All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hazelcast.jet.pipeline.file.TextFileFormat Maven / Gradle / Ivy

The newest version!
/*
 * 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 the whole file is one {@code
 * String} data item. See {@link FileFormat#text} for more details.
 *
 * @since Jet 4.4
 */
public class TextFileFormat implements FileFormat {

    /**
     * Format ID for text files.
     */
    public static final String FORMAT_TXT = "txt";

    @Serial
    private static final long serialVersionUID = 1L;

    private final String charset;

    /**
     * Creates a {@code TextFileFormat} with the default character encoding
     * (UTF-8).
     */
    TextFileFormat() {
        this(UTF_8);
    }

    /**
     * Creates a {@code TextFileFormat} with the provided character
     * encoding (UTF-8).
     * 

* NOTE: the Hadoop connector only supports UTF-8. This * option is supported for local files only. */ TextFileFormat(@Nonnull Charset charset) { this.charset = requireNonNull(charset, "charset must not be null").name(); } /** * Returns the configured character encoding. */ @Nonnull public Charset charset() { return Charset.forName(charset); } @Nonnull @Override public String format() { return FORMAT_TXT; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } TextFileFormat that = (TextFileFormat) o; return Objects.equals(charset, that.charset); } @Override public int hashCode() { return Objects.hash(charset); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy