oracle.toplink.essentials.exceptions.ConcurrencyException Maven / Gradle / Ivy
/*
* The contents of this file are subject to the terms
* of the Common Development and Distribution License
* (the "License"). You may not use this file except
* in compliance with the License.
*
* You can obtain a copy of the license at
* glassfish/bootstrap/legal/CDDLv1.0.txt or
* https://glassfish.dev.java.net/public/CDDLv1.0.html.
* See the License for the specific language governing
* permissions and limitations under the License.
*
* When distributing Covered Code, include this CDDL
* HEADER in each file and include the License file at
* glassfish/bootstrap/legal/CDDLv1.0.txt. If applicable,
* add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your
* own identifying information: Portions Copyright [yyyy]
* [name of copyright owner]
*/
// Copyright (c) 1998, 2007, Oracle. All rights reserved.
package oracle.toplink.essentials.exceptions;
import oracle.toplink.essentials.exceptions.i18n.ExceptionMessageGenerator;
/**
* Purpose: Concurrency deadlock or interupts will raise this exception.
*/
public class ConcurrencyException extends TopLinkException {
public final static int WAIT_WAS_INTERRUPTED = 2001;
public final static int WAIT_FAILURE_SERVER = 2002;
public final static int WAIT_FAILURE_CLIENT = 2003;
public final static int SIGNAL_ATTEMPTED_BEFORE_WAIT = 2004;
public final static int WAIT_FAILURE_SEQ_DATABASE_SESSION = 2005;
public final static int SEQUENCING_MULTITHREAD_THRU_CONNECTION = 2006;
public final static int MAX_TRIES_EXCEDED_FOR_LOCK_ON_CLONE = 2007;
public final static int MAX_TRIES_EXCEDED_FOR_LOCK_ON_MERGE = 2008;
public final static int MAX_TRIES_EXCEDED_FOR_LOCK_ON_BUILD_OBJECT = 2009;
/**
* INTERNAL:
* TopLink exceptions should only be thrown by TopLink.
*/
protected ConcurrencyException(String theMessage) {
super(theMessage);
}
/**
* INTERNAL:
* TopLink exceptions should only be thrown by TopLink.
*/
protected ConcurrencyException(String theMessage, Exception exception) {
super(theMessage, exception);
}
public static ConcurrencyException maxTriesLockOnCloneExceded(Object objectToClone) {
Object[] args = { objectToClone, CR };
ConcurrencyException concurrencyException = new ConcurrencyException(ExceptionMessageGenerator.buildMessage(ConcurrencyException.class, MAX_TRIES_EXCEDED_FOR_LOCK_ON_CLONE, args));
concurrencyException.setErrorCode(MAX_TRIES_EXCEDED_FOR_LOCK_ON_CLONE);
return concurrencyException;
}
public static ConcurrencyException maxTriesLockOnMergeExceded(Object objectToClone) {
Object[] args = { objectToClone, CR };
ConcurrencyException concurrencyException = new ConcurrencyException(ExceptionMessageGenerator.buildMessage(ConcurrencyException.class, MAX_TRIES_EXCEDED_FOR_LOCK_ON_MERGE, args));
concurrencyException.setErrorCode(MAX_TRIES_EXCEDED_FOR_LOCK_ON_MERGE);
return concurrencyException;
}
public static ConcurrencyException maxTriesLockOnBuildObjectExceded(Thread cacheKeyThread, Thread currentThread) {
Object[] args = { cacheKeyThread, currentThread, CR };
ConcurrencyException concurrencyException = new ConcurrencyException(ExceptionMessageGenerator.buildMessage(ConcurrencyException.class, MAX_TRIES_EXCEDED_FOR_LOCK_ON_MERGE, args));
concurrencyException.setErrorCode(MAX_TRIES_EXCEDED_FOR_LOCK_ON_BUILD_OBJECT);
return concurrencyException;
}
public static ConcurrencyException signalAttemptedBeforeWait() {
Object[] args = { CR };
ConcurrencyException concurrencyException = new ConcurrencyException(ExceptionMessageGenerator.buildMessage(ConcurrencyException.class, SIGNAL_ATTEMPTED_BEFORE_WAIT, args));
concurrencyException.setErrorCode(SIGNAL_ATTEMPTED_BEFORE_WAIT);
return concurrencyException;
}
public static ConcurrencyException waitFailureOnClientSession(InterruptedException exception) {
Object[] args = { };
ConcurrencyException concurrencyException = new ConcurrencyException(ExceptionMessageGenerator.buildMessage(ConcurrencyException.class, WAIT_FAILURE_CLIENT, args), exception);
concurrencyException.setErrorCode(WAIT_FAILURE_CLIENT);
return concurrencyException;
}
public static ConcurrencyException waitFailureOnServerSession(InterruptedException exception) {
Object[] args = { };
ConcurrencyException concurrencyException = new ConcurrencyException(ExceptionMessageGenerator.buildMessage(ConcurrencyException.class, WAIT_FAILURE_SERVER, args), exception);
concurrencyException.setErrorCode(WAIT_FAILURE_SERVER);
return concurrencyException;
}
public static ConcurrencyException waitWasInterrupted(String message) {
Object[] args = { CR, message };
ConcurrencyException concurrencyException = new ConcurrencyException(ExceptionMessageGenerator.buildMessage(ConcurrencyException.class, WAIT_WAS_INTERRUPTED, args));
concurrencyException.setErrorCode(WAIT_WAS_INTERRUPTED);
return concurrencyException;
}
public static ConcurrencyException waitFailureOnSequencingForDatabaseSession(InterruptedException exception) {
Object[] args = { };
ConcurrencyException concurrencyException = new ConcurrencyException(ExceptionMessageGenerator.buildMessage(ConcurrencyException.class, WAIT_FAILURE_SEQ_DATABASE_SESSION, args), exception);
concurrencyException.setErrorCode(WAIT_FAILURE_SEQ_DATABASE_SESSION);
return concurrencyException;
}
public static ConcurrencyException sequencingMultithreadThruConnection(String accessor) {
Object[] args = { accessor };
ConcurrencyException concurrencyException = new ConcurrencyException(ExceptionMessageGenerator.buildMessage(ConcurrencyException.class, SEQUENCING_MULTITHREAD_THRU_CONNECTION, args));
concurrencyException.setErrorCode(SEQUENCING_MULTITHREAD_THRU_CONNECTION);
return concurrencyException;
}
}