1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
|
/*
* Copyright (c) 2010, 2018 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0,
* or the Eclipse Distribution License v. 1.0 which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
*/
// Contributors:
// James Sutherland - initial API and implementation
package org.eclipse.persistence.platform.database.oracle.ucp;
import java.sql.SQLException;
import javax.sql.DataSource;
import oracle.ucp.jdbc.PoolDataSource;
import oracle.ucp.jdbc.oracle.DataBasedConnectionAffinityCallback;
import org.eclipse.persistence.exceptions.DatabaseException;
import org.eclipse.persistence.internal.sessions.AbstractSession;
import org.eclipse.persistence.platform.database.partitioning.DataPartitioningCallback;
import org.eclipse.persistence.sessions.Session;
/**
* PUBLIC:
* Integrates with Oracle Universal ConnectionPool's data affinity support.
*
* @see org.eclipse.persistence.descriptors.partitioning.PartitioningPolicy
* @author James Sutherland
* @since EclipseLink 2.3
*/
public class UCPDataPartitioningCallback implements DataPartitioningCallback, DataBasedConnectionAffinityCallback {
/** The id is stored in a thread local. */
protected ThreadLocal partitionId = new ThreadLocal();
public void register(DataSource datSource, Session session) {
try {
((PoolDataSource)datSource).registerConnectionAffinityCallback(this);
} catch (SQLException exception) {
throw DatabaseException.sqlException(exception, (AbstractSession)session, false);
}
}
/**
* Set the partition id for this thread.
*/
public void setPartitionId(int id) {
this.partitionId.set(id);
}
public int getPartitionId() {
Integer id = (Integer)this.partitionId.get();
if (id == null) {
return 0;
}
return id;
}
public boolean setDataKey(Object key) {
// Not used.
return true;
}
public boolean setConnectionAffinityContext(Object context) {
// Not used for data affinity.
return false;
}
public void setAffinityPolicy(AffinityPolicy policy) {
// Not used.
}
public Object getConnectionAffinityContext() {
// Not used for data affinity.
return null;
}
public AffinityPolicy getAffinityPolicy() {
return AffinityPolicy.DATA_BASED_AFFINITY;
}
}
|