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

com.predic8.membrane.core.interceptor.administration.PropertyValueCollector Maven / Gradle / Ivy

There is a newer version: 5.6.0
Show newest version
/* Copyright 2013 predic8 GmbH, www.predic8.com

   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.predic8.membrane.core.interceptor.administration;

import java.util.HashSet;
import java.util.Set;

import com.predic8.membrane.core.exchange.AbstractExchange;
import com.predic8.membrane.core.exchangestore.ExchangeCollector;

import static com.predic8.membrane.core.interceptor.administration.AdminRESTInterceptor.getClientAddr;

public class PropertyValueCollector implements ExchangeCollector{

	Set statusCodes = new HashSet();
	Set proxies = new HashSet();
	Set reqContentTypes = new HashSet();
	Set respContentTypes = new HashSet();
	Set methods = new HashSet();
	Set clients = new HashSet();
	Set servers = new HashSet();

    boolean useXForwardedForAsClientAddr;

    public boolean isUseXForwardedForAsClientAddr() {
        return useXForwardedForAsClientAddr;
    }

    public void setUseXForwardedForAsClientAddr(boolean useXForwardedForAsClientAddr) {
        this.useXForwardedForAsClientAddr = useXForwardedForAsClientAddr;
    }

    public void collect(AbstractExchange exc) {
		if (exc.getResponse() != null) {
			statusCodes.add(exc.getResponse().getStatusCode());
		}

		proxies.add(exc.getRule().toString());
		reqContentTypes.add(exc.getRequestContentType());
		respContentTypes.add(exc.getResponseContentType());
		methods.add(exc.getRequest().getMethod());
		clients.add(getClientAddr(useXForwardedForAsClientAddr, exc));
		servers.add(exc.getServer());
	}

	public Set getStatusCodes() {
		return statusCodes;
	}

	public Set getProxies() {
		return proxies;
	}

	public Set getReqContentTypes() {
		return reqContentTypes;
	}

	public Set getRespContentTypes() {
		return respContentTypes;
	}

	public Set getMethods() {
		return methods;
	}

	public Set getClients() {
		return clients;
	}

	public Set getServers() {
		return servers;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy