blob: 81868c7911ae13afe9a854e08d3b457595083f55 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 org.apache.parquet;
/**
* Utility for parameter validation
*
* @author Julien Le Dem
*
*/
public final class Preconditions {
private Preconditions() { }
/**
* @param o the param to check
* @param name the name of the param for the error message
* @return the validated o
* @throws NullPointerException if o is null
*/
public static <T> T checkNotNull(T o, String name) throws NullPointerException {
if (o == null) {
throw new NullPointerException(name + " should not be null");
}
return o;
}
/**
* Precondition-style validation that throws {@link IllegalArgumentException}.
*
* @param isValid
* {@code true} if valid, {@code false} if an exception should be
* thrown
* @param message
* A String message for the exception.
* @throws IllegalArgumentException if {@code isValid} is false
*/
public static void checkArgument(boolean isValid, String message) throws IllegalArgumentException {
if (!isValid) {
throw new IllegalArgumentException(message);
}
}
/**
* Precondition-style validation that throws {@link IllegalArgumentException}.
*
* @param isValid
* {@code true} if valid, {@code false} if an exception should be
* thrown
* @param message
* A String message for the exception.
* @param args
* Objects used to fill in {@code %s} placeholders in the message
* @throws IllegalArgumentException if {@code isValid} is false
*/
public static void checkArgument(boolean isValid, String message, Object... args)
throws IllegalArgumentException {
if (!isValid) {
throw new IllegalArgumentException(
String.format(String.valueOf(message), strings(args)));
}
}
/**
* Precondition-style validation that throws {@link IllegalStateException}.
*
* @param isValid
* {@code true} if valid, {@code false} if an exception should be
* thrown
* @param message
* A String message for the exception.
* @throws IllegalStateException if {@code isValid} is false
*/
public static void checkState(boolean isValid, String message) throws IllegalStateException {
if (!isValid) {
throw new IllegalStateException(message);
}
}
/**
* Precondition-style validation that throws {@link IllegalStateException}.
*
* @param isValid
* {@code true} if valid, {@code false} if an exception should be
* thrown
* @param message
* A String message for the exception.
* @param args
* Objects used to fill in {@code %s} placeholders in the message
* @throws IllegalStateException if {@code isValid} is false
*/
public static void checkState(boolean isValid, String message, Object... args)
throws IllegalStateException {
if (!isValid) {
throw new IllegalStateException(
String.format(String.valueOf(message), strings(args)));
}
}
private static String[] strings(Object[] objects) {
String[] strings = new String[objects.length];
for (int i = 0; i < objects.length; i += 1) {
strings[i] = String.valueOf(objects[i]);
}
return strings;
}
}