/* * 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.facebook.presto.orc.metadata; import com.google.common.collect.ImmutableList; import java.util.List; import static com.google.common.base.MoreObjects.toStringHelper; import static java.util.Objects.requireNonNull; public class PostScript { public enum HiveWriterVersion { ORIGINAL, ORC_HIVE_8732; } private final List<Integer> version; private final long footerLength; private final long metadataLength; private final CompressionKind compression; private final long compressionBlockSize; private final HiveWriterVersion hiveWriterVersion; public PostScript(List<Integer> version, long footerLength, long metadataLength, CompressionKind compression, long compressionBlockSize, HiveWriterVersion hiveWriterVersion) { this.version = ImmutableList.copyOf(requireNonNull(version, "version is null")); this.footerLength = footerLength; this.metadataLength = metadataLength; this.compression = requireNonNull(compression, "compressionKind is null"); this.compressionBlockSize = compressionBlockSize; this.hiveWriterVersion = requireNonNull(hiveWriterVersion, "hiveWriterVersion is null"); } public List<Integer> getVersion() { return version; } public long getFooterLength() { return footerLength; } public long getMetadataLength() { return metadataLength; } public CompressionKind getCompression() { return compression; } public long getCompressionBlockSize() { return compressionBlockSize; } public HiveWriterVersion getHiveWriterVersion() { return hiveWriterVersion; } @Override public String toString() { return toStringHelper(this) .add("version", version) .add("footerLength", footerLength) .add("metadataLength", metadataLength) .add("compressionKind", compression) .add("compressionBlockSize", compressionBlockSize) .add("hiveWriterVersion", hiveWriterVersion) .toString(); } }