All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.tangosol.coherence.management.internal.resources.CacheResource Maven / Gradle / Ivy
/*
* Copyright (c) 2000, 2021, Oracle and/or its affiliates.
*
* Licensed under the Universal Permissive License v 1.0 as shown at
* http://oss.oracle.com/licenses/upl.
*/
package com.tangosol.coherence.management.internal.resources;
import com.tangosol.coherence.management.internal.Converter;
import com.tangosol.coherence.management.internal.EntityMBeanResponse;
import com.tangosol.net.CacheFactory;
import com.tangosol.net.management.MBeanAccessor.QueryBuilder;
import com.tangosol.util.Filter;
import com.tangosol.util.filter.AlwaysFilter;
import java.net.URI;
import java.util.HashSet;
import java.util.LinkedHashMap;
import java.util.Map;
import java.util.Objects;
import java.util.Set;
import javax.management.MalformedObjectNameException;
import javax.management.ObjectName;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.PathParam;
import javax.ws.rs.Produces;
import javax.ws.rs.QueryParam;
import javax.ws.rs.WebApplicationException;
import javax.ws.rs.core.Response;
import static java.lang.String.format;
/**
* Handles management API requests for a cache in a service.
*
* @author sr 2017.08.29
* @since 12.2.1.4.0
*/
public class CacheResource extends AbstractManagementResource
{
// ----- constructors ---------------------------------------------------
/**
* Construct a CacheResource.
*
* @param resource the {@link AbstractManagementResource} to be used to initialize the context
*/
public CacheResource(AbstractManagementResource resource)
{
super(resource);
}
// ----- GET API --------------------------------------------------------
/**
* Return the aggregated metrics of CacheMBean's for a single cache belonging to a Service.
*
* @param sCacheName the cache name
* @param sRoleName either a regex to be applied against node ids or a role name
* @param sCollector the collector to use instead of the default
*
* @return the response object
*/
@GET
@Produces(MEDIA_TYPES)
public Response get(@PathParam(CACHE_NAME) String sCacheName,
@QueryParam(ROLE_NAME) String sRoleName,
@QueryParam(COLLECTOR) String sCollector)
{
// collect attributes from the ObjectNames
Set setObjectNames = getMBeanAccessor().queryKeys(getQuery(sCacheName).build());
if (setObjectNames == null || setObjectNames.isEmpty())
{
return Response.status(Response.Status.NOT_FOUND).build();
}
EntityMBeanResponse responseEntity = createResponse(getParentUri(), getCurrentUri(), getLinksFilter());
addObjectNamesToResponse(setObjectNames, responseEntity);
Map mapResponse = responseEntity.toJson();
QueryBuilder bldrQuery = createQueryBuilder()
.withBaseQuery(format(STORAGE_MANAGERS_QUERY, sCacheName))
.withService(getService());
// aggregate cache and storage metrics into the response, storage manage metrics is always sent along with cache
addAggregatedMetricsToResponseMap(sRoleName, sCollector, getQuery(sCacheName), mapResponse);
addAggregatedMetricsToResponseMap(sRoleName, sCollector, bldrQuery, mapResponse);
return response(mapResponse);
}
// ----- Child Resources ------------------------------------------------
/**
* Sub resource for a cache members.
*
* @return the cache members child resource
*/
@Path(MEMBERS)
public Object getMembersResource()
{
return new CacheMembersResource(this);
}
// ----- AbstractManagementResource methods -------------------------------------------
@Override
protected EntityMBeanResponse getQueryResult(Map mapQuery, Map mapArguments, URI uriParent)
{
String sCacheName = mapArguments.get(NAME);
// collect attributes from the ObjectNames
URI uriSelf = getSubUri(uriParent, sCacheName);
Filter filterLinks = getLinksFilter(mapQuery);
QueryBuilder bldrQuery = getQuery(sCacheName);
Set setObjectNames = getMBeanAccessor().queryKeys(bldrQuery.build());
if (setObjectNames == null || setObjectNames.isEmpty())
{
return null;
}
EntityMBeanResponse responseEntity = createResponse(uriParent, uriSelf, filterLinks);
addObjectNamesToResponse(setObjectNames, responseEntity);
Map mapEntity = responseEntity.getEntity();
QueryBuilder bldrQueryStorage = createQueryBuilder()
.withBaseQuery(format(STORAGE_MANAGERS_QUERY, sCacheName))
.withService(getService());
addAggregatedMetricsToResponseMap("*", null, bldrQuery, mapEntity);
addAggregatedMetricsToResponseMap("*", null, bldrQueryStorage, mapEntity);
Object oChildren = mapQuery == null ? null : mapQuery.get(CHILDREN);
if (oChildren != null && oChildren instanceof Map)
{
Map mapChildrenQuery = (Map) oChildren;
addChildResourceQueryResult(new CacheMembersResource(this), MEMBERS, mapEntity, mapChildrenQuery,
mapArguments, uriSelf);
}
return responseEntity;
}
// ----- CacheResource methods-------------------------------------------
/**
* MBean query to retrieve CacheMBeans for the provided cache.
*
* @param sCacheName the cache name
*
* @return the MBean query
*/
protected QueryBuilder getQuery(String sCacheName)
{
return createQueryBuilder()
.withBaseQuery(CACHE_QUERY + sCacheName)
.withService(getService());
}
/**
* Add attributes from the ObjectNames to the given EntityMBeanResponse.
*
* @param setObjectNames the set of ObjectNames from which to add to the response
* @param responseEntity the EntityMBeanResponse to add attributes to
*/
protected void addObjectNamesToResponse(Set setObjectNames, EntityMBeanResponse responseEntity)
{
Filter filterAttributes = getAttributesFilter();
Map mapAttributes = new LinkedHashMap<>();
// return name, service, and node_id if no field is specified
if (filterAttributes instanceof AlwaysFilter)
{
filterAttributes = getAttributesFilter(String.join(",", NAME, SERVICE, NODE_ID), null);
}
for (String sName : setObjectNames)
{
try
{
ObjectName objectName = new ObjectName(sName);
for (String sKey : objectName.getKeyPropertyList().keySet())
{
if (filterAttributes.evaluate(sKey))
{
Object oValue = Converter.convert(objectName.getKeyProperty(sKey));
Object oCurrent = mapAttributes.get(sKey);
if (oCurrent == null)
{
mapAttributes.put(sKey, oValue);
}
else if (oCurrent instanceof Set)
{
((Set) oCurrent).add(oValue);
}
else if (!Objects.equals(oCurrent, oValue))
{
Set values = new HashSet<>();
values.add(oCurrent);
values.add(oValue);
mapAttributes.put(sKey, values);
}
}
}
}
catch (MalformedObjectNameException e)
{
CacheFactory.log("Exception occurred while creating an ObjectName " +
sName + "\n" + CacheFactory.getStackTrace(e));
}
}
responseEntity.setEntity(mapAttributes);
responseEntity.addResourceLink(MEMBERS, getSubUri(getCurrentUri(), MEMBERS));
}
}