blob: 62724715690fbf0a2d16d5a5ef20fe0248c9a2f6 [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.geode.cache.query.internal;
import org.apache.geode.InternalGemFireError;
public class Support {
public static final boolean ASSERTIONS_ENABLED = true;
private static final int OTHER = 0;
private static final int STATE = 1;
private static final int ARG = 2;
public static void assertArg(boolean b, String message) {
if (!ASSERTIONS_ENABLED)
return;
Assert(b, message, ARG);
}
public static void assertState(boolean b, String message) {
if (!ASSERTIONS_ENABLED)
return;
Assert(b, message, STATE);
}
public static void Assert(boolean b) {
if (!ASSERTIONS_ENABLED)
return;
Assert(b, "", OTHER);
}
public static void Assert(boolean b, String message) {
if (!ASSERTIONS_ENABLED)
return;
Assert(b, message, OTHER);
}
public static void assertionFailed(String message) {
assertionFailed(message, OTHER);
}
public static void assertionFailed() {
assertionFailed("", OTHER);
}
private static void Assert(boolean b, String message, int type) {
if (!b)
assertionFailed(message, type);
}
private static void assertionFailed(String message, int type) {
switch (type) {
case ARG:
throw new IllegalArgumentException(message);
case STATE:
throw new IllegalStateException(message);
default:
throw new InternalGemFireError(
String.format("ERROR: Assertion failed: ' %s '", message));
}
// org.apache.persistence.jdo.GsRuntime.notifyCDebugger(null);
}
}