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

io.trino.orc.stream.InputStreamSources Maven / Gradle / Ivy

The newest version!
/*
 * 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 io.trino.orc.stream;

import com.google.common.collect.ImmutableMap;
import io.trino.orc.OrcColumn;
import io.trino.orc.StreamId;
import io.trino.orc.metadata.Stream.StreamKind;

import java.util.Map;

import static com.google.common.base.Preconditions.checkArgument;
import static io.trino.orc.stream.MissingInputStreamSource.missingStreamSource;
import static java.util.Objects.requireNonNull;

public class InputStreamSources
{
    private final Map> streamSources;

    public InputStreamSources(Map> streamSources)
    {
        this.streamSources = ImmutableMap.copyOf(requireNonNull(streamSources, "streamSources is null"));
    }

    public > InputStreamSource getInputStreamSource(OrcColumn column, StreamKind streamKind, Class streamType)
    {
        requireNonNull(column, "column is null");
        requireNonNull(streamType, "streamType is null");

        InputStreamSource streamSource = streamSources.get(new StreamId(column.getColumnId(), streamKind));
        if (streamSource == null) {
            streamSource = missingStreamSource(streamType);
        }

        checkArgument(streamType.isAssignableFrom(streamSource.getStreamType()),
                "%s must be of type %s, not %s",
                column,
                streamType.getName(),
                streamSource.getStreamType().getName());

        return (InputStreamSource) streamSource;
    }
}