All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sf.ehcache.management.resource.services.CacheManagersResourceServiceImpl Maven / Gradle / Ivy

Go to download

Ehcache is an open source, standards-based cache used to boost performance, offload the database and simplify scalability. Ehcache is robust, proven and full-featured and this has made it the most widely-used Java-based cache.

There is a newer version: 2.10.9.2
Show newest version
package net.sf.ehcache.management.resource.services;

import net.sf.ehcache.management.resource.CacheManagerEntity;
import net.sf.ehcache.management.service.CacheManagerService;
import net.sf.ehcache.management.service.EntityResourceFactory;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.terracotta.management.ServiceLocator;
import org.terracotta.management.ServiceExecutionException;
import org.terracotta.management.resource.exceptions.ResourceRuntimeException;
import org.terracotta.management.resource.services.validator.RequestValidator;

import javax.ws.rs.Consumes;
import javax.ws.rs.GET;
import javax.ws.rs.PUT;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
import javax.ws.rs.core.Context;
import javax.ws.rs.core.MediaType;
import javax.ws.rs.core.MultivaluedMap;
import javax.ws.rs.core.Response;
import javax.ws.rs.core.UriInfo;

import java.util.Arrays;
import java.util.Collection;
import java.util.HashSet;
import java.util.List;
import java.util.Set;

/**
 * @author brandony
 */
@Path("/agents/cacheManagers")
public final class CacheManagersResourceServiceImpl {
  public final static String ATTR_QUERY_KEY = "show";

  private static final Logger LOG = LoggerFactory.getLogger(CacheManagersResourceServiceImpl.class);

  private final EntityResourceFactory entityResourceFactory;

  private final RequestValidator validator;

  private final CacheManagerService cacheMgrSvc;

  public CacheManagersResourceServiceImpl() {
    this.entityResourceFactory = ServiceLocator.locate(EntityResourceFactory.class);
    this.validator = ServiceLocator.locate(RequestValidator.class);
    this.cacheMgrSvc = ServiceLocator.locate(CacheManagerService.class);
  }

  /**
   * 

* Get a {@code Collection} of {@link CacheManagerEntity} objects representing the cache manager information provided * by the associated monitorable entity's agent given the request path. *

* * @param info {@link UriInfo} for this resource request * @return a collection of {@link CacheManagerEntity} objects when successful. */ @GET @Produces(MediaType.APPLICATION_JSON) public Collection getCacheManagers(@Context UriInfo info) { LOG.debug(String.format("Invoking getCacheManagers: %s", info.getRequestUri())); validator.validateSafe(info); String names = info.getPathSegments().get(1).getMatrixParameters().getFirst("names"); Set cmNames = names == null ? null : new HashSet(Arrays.asList(names.split(","))); MultivaluedMap qParams = info.getQueryParameters(); List attrs = qParams.get(ATTR_QUERY_KEY); Set cmAttrs = attrs == null || attrs.isEmpty() ? null : new HashSet(attrs); try { return entityResourceFactory.createCacheManagerEntities(cmNames, cmAttrs); } catch (ServiceExecutionException e) { throw new ResourceRuntimeException("Failed to get cache managers", e, Response.Status.BAD_REQUEST.getStatusCode()); } } /** * Update a cache manager with the name specified in the request path, for a specific agent. The request path that * does not identify a unique cache manager resource for update will constitute a bad request and will be denied, * resulting in a response with a 400. * * @param info * {@link UriInfo} for this resource request * @param resource * {@code CacheEntity} resource for update or creation */ @PUT @Consumes(MediaType.APPLICATION_JSON) public void updateCacheManager(@Context UriInfo info, CacheManagerEntity resource) { LOG.debug(String.format("Invoking updateCacheManager: %s", info.getRequestUri())); validator.validate(info); String cacheManagerName = info.getPathSegments().get(1).getMatrixParameters().getFirst("names"); try { cacheMgrSvc.updateCacheManager(cacheManagerName, resource); } catch (ServiceExecutionException e) { throw new ResourceRuntimeException("Failed to update cache manager", e, Response.Status.BAD_REQUEST.getStatusCode()); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy