Java tutorial
/* * Copyright 2015 PayU * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.payu.ratel.server; import static com.google.common.base.Preconditions.checkNotNull; import java.io.UnsupportedEncodingException; import java.net.URLDecoder; import java.util.Collection; import java.util.Map; import java.util.Set; import java.util.concurrent.ConcurrentHashMap; import javax.ws.rs.Consumes; import javax.ws.rs.DELETE; import javax.ws.rs.GET; import javax.ws.rs.POST; import javax.ws.rs.PUT; import javax.ws.rs.Path; import javax.ws.rs.PathParam; import javax.ws.rs.Produces; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.actuate.metrics.GaugeService; import org.springframework.scheduling.annotation.Scheduled; import org.springframework.stereotype.Component; import com.google.common.base.Predicate; import com.google.common.collect.Iterables; import com.google.common.collect.Sets; import com.payu.ratel.model.ServiceDescriptor; import com.payu.ratel.server.monitoring.StatisticsHolder; @Component @Path("/discovery") public class InMemoryDiscoveryServer implements DiscoveryServer { private static final Logger LOGGER = LoggerFactory.getLogger(InMemoryDiscoveryServer.class); public static final int MINUTE = 60000; private final Set<ServiceDescriptor> services = Sets .newSetFromMap((Map<ServiceDescriptor, Boolean>) new ConcurrentHashMap<ServiceDescriptor, Boolean>()); private final Map<ServiceDescriptor, Long> pingedServers = new ConcurrentHashMap<>(); private final GaugeService gaugeService; private final StatisticsHolder statisticsHolder; @Autowired public InMemoryDiscoveryServer(GaugeService gaugeService, StatisticsHolder statisticsHolder) { this.gaugeService = gaugeService; this.statisticsHolder = statisticsHolder; } @Override @POST @Consumes("application/json") public void registerService(ServiceDescriptor serviceDescriptor) { checkNotNull(serviceDescriptor.getName(), "Given service name cannot be null"); services.add(serviceDescriptor); pingedServers.put(serviceDescriptor, System.currentTimeMillis()); } @Override @GET @Produces("application/json") public Collection<ServiceDescriptor> fetchAllServices() { return services; } @Override @DELETE public void deleteAllServices() { services.clear(); } @Override @PUT @Consumes("application/json") @Path("/service/{service}") public void collectStatistics(@PathParam("service") String address, Map<String, Map<String, String>> statistics) { try { statisticsHolder.putStatistics(URLDecoder.decode(address, "UTF-8"), statistics); } catch (UnsupportedEncodingException e) { throw new AssertionError("UTF-8 must be supported", e); } } // TODO - remove PMD suppress @SuppressWarnings("PMD.AvoidInstantiatingObjectsInLoops") @Scheduled(fixedRate = MINUTE) public void checkActiveServices() { for (final Map.Entry<ServiceDescriptor, Long> entry : pingedServers.entrySet()) { if (isActive(entry.getValue())) { LOGGER.info("Removing services with address {}", entry.getKey()); Iterables.removeIf(services, new Predicate<ServiceDescriptor>() { @Override public boolean apply(ServiceDescriptor service) { return service.equals(entry.getKey()); } }); pingedServers.remove(entry.getKey()); } } gaugeService.submit("registered.services.count", services.size()); gaugeService.submit("registered.servers.count", pingedServers.size()); } public boolean hasService(final String serviceName) { return !getServiceInstances(serviceName).isEmpty(); } public Set<ServiceDescriptor> getServiceInstances(final String serviceName) { return Sets.filter(services, new Predicate<ServiceDescriptor>() { @Override public boolean apply(ServiceDescriptor desc) { return desc.getName().equals(serviceName); } }); } private boolean isActive(Long time) { return time < System.currentTimeMillis() - MINUTE; } }