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

io.trino.spi.connector.SpiVersionHolder 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.spi.connector;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.UncheckedIOException;
import java.net.URL;

import static java.nio.charset.StandardCharsets.UTF_8;
import static java.util.Objects.requireNonNull;

// Separate class to isolate static initialization
final class SpiVersionHolder
{
    private SpiVersionHolder() {}

    static final String SPI_VERSION;

    static {
        try {
            URL resource = ConnectorContext.class.getClassLoader().getResource("io/trino/spi/trino-spi-version.txt");
            requireNonNull(resource, "version resource not found");
            try (InputStream inputStream = resource.openStream();
                    BufferedReader reader = new BufferedReader(new InputStreamReader(inputStream, UTF_8))) {
                String spiVersion = reader.readLine();
                if (spiVersion == null || spiVersion.isBlank() || reader.readLine() != null) {
                    throw new IllegalStateException("Malformed version resource");
                }
                SPI_VERSION = spiVersion.strip();
            }
        }
        catch (IOException e) {
            throw new UncheckedIOException(e);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy