![JAR search and dependency download from the Maven repository](/logo.png)
org.jboss.as.clustering.infinispan.client.ManagedRemoteCacheContainer Maven / Gradle / Ivy
/*
* JBoss, Home of Professional Open Source.
* Copyright 2022, Red Hat, Inc., and individual contributors
* as indicated by the @author tags. See the copyright.txt file in the
* distribution for a full listing of individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.jboss.as.clustering.infinispan.client;
import java.util.Map;
import java.util.Set;
import java.util.concurrent.CompletionStage;
import java.util.function.Function;
import org.infinispan.client.hotrod.DataFormat;
import org.infinispan.client.hotrod.RemoteCache;
import org.infinispan.client.hotrod.RemoteCacheManager;
import org.infinispan.client.hotrod.RemoteCacheManagerAdmin;
import org.infinispan.client.hotrod.configuration.Configuration;
import org.infinispan.client.hotrod.impl.operations.OperationsFactory;
import org.infinispan.client.hotrod.impl.operations.PingResponse;
import org.infinispan.commons.dataconversion.MediaType;
import org.infinispan.commons.marshall.Marshaller;
import org.jboss.as.clustering.infinispan.dataconversion.MediaTypeFactory;
import org.jboss.modules.ModuleLoader;
import org.wildfly.clustering.Registrar;
import org.wildfly.clustering.infinispan.client.RemoteCacheContainer;
import org.wildfly.clustering.infinispan.marshalling.ByteBufferMarshallerFactory;
import org.wildfly.clustering.infinispan.marshalling.UserMarshaller;
import org.wildfly.clustering.marshalling.spi.ByteBufferMarshaller;
import org.wildfly.security.manager.WildFlySecurityManager;
/**
* Container managed {@link RemoteCacheManager} decorator, whose lifecycle methods are no-ops.
*
* @author Radoslav Husar
* @author Paul Ferraro
*
*/
public class ManagedRemoteCacheContainer implements RemoteCacheContainer {
private final RemoteCacheManager container;
private final OperationsFactory factory;
private final String name;
private final Function marshallerFactory;
private final Registrar registrar;
public ManagedRemoteCacheContainer(RemoteCacheManager container, String name, ModuleLoader loader, Registrar registrar) {
this.container = container;
this.name = name;
this.registrar = registrar;
this.marshallerFactory = new ByteBufferMarshallerFactory(container.getConfiguration().marshaller().mediaType(), loader);
this.factory = new OperationsFactory(container.getChannelFactory(), null, container.getConfiguration());
}
@Override
public String getName() {
return this.name;
}
@Override
public RemoteCacheManagerAdmin administration() {
return this.container.administration();
}
@Override
public CompletionStage isAvailable() {
return this.factory.newFaultTolerantPingOperation().execute().thenApply(PingResponse::isSuccess);
}
@Override
public RemoteCache getCache() {
return this.getCache("");
}
@Override
public RemoteCache getCache(String cacheName) {
RemoteCache cache = this.container.getCache(cacheName);
if (cache == null) return null;
Marshaller defaultMarshaller = this.container.getMarshaller();
DataFormat.Builder builder = DataFormat.builder().from(cache.getDataFormat())
.keyType(defaultMarshaller.mediaType())
.valueType(defaultMarshaller.mediaType())
;
ClassLoader loader = WildFlySecurityManager.getCurrentContextClassLoaderPrivileged();
Map.Entry types = MediaTypeFactory.INSTANCE.apply(loader);
boolean overrideKeyMarshaller = !types.getKey().equals(MediaType.APPLICATION_OBJECT);
boolean overrideValueMarshaller = !types.getValue().equals(MediaType.APPLICATION_OBJECT);
if (overrideKeyMarshaller || overrideValueMarshaller) {
Marshaller marshaller = new UserMarshaller(defaultMarshaller.mediaType(), this.marshallerFactory.apply(loader));
if (overrideKeyMarshaller) {
builder.keyType(marshaller.mediaType());
builder.keyMarshaller(marshaller);
}
if (overrideValueMarshaller) {
builder.valueType(marshaller.mediaType());
builder.valueMarshaller(marshaller);
}
}
return new ManagedRemoteCache<>(this, this.container, cache.withDataFormat(builder.build()), this.registrar);
}
@Override
public Configuration getConfiguration() {
return this.container.getConfiguration();
}
@Override
public boolean isStarted() {
return this.container.isStarted();
}
@Override
public boolean switchToCluster(String clusterName) {
return this.container.switchToCluster(clusterName);
}
@Override
public boolean switchToDefaultCluster() {
return this.container.switchToDefaultCluster();
}
@Override
public Marshaller getMarshaller() {
return this.container.getMarshaller();
}
@Override
public boolean isTransactional(String cacheName) {
return this.container.isTransactional(cacheName);
}
@Override
public Set getCacheNames() {
return this.container.getCacheNames();
}
@Override
public void start() {
// Do nothing
}
@Override
public void stop() {
// Do nothing
}
@Override
public String[] getServers() {
return this.container.getServers();
}
@Override
public int getActiveConnectionCount() {
return this.container.getActiveConnectionCount();
}
@Override
public int getConnectionCount() {
return this.container.getConnectionCount();
}
@Override
public int getIdleConnectionCount() {
return this.container.getIdleConnectionCount();
}
@Override
public long getRetries() {
return this.container.getRetries();
}
@Override
public int hashCode() {
return this.name.hashCode();
}
@Override
public boolean equals(Object object) {
if (!(object instanceof RemoteCacheContainer)) return false;
RemoteCacheContainer container = (RemoteCacheContainer) object;
return this.name.equals(container.getName());
}
@Override
public String toString() {
return this.name;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy