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

org.springframework.web.reactive.function.server.ToStringVisitor Maven / Gradle / Ivy

/*
 * Copyright 2002-2017 the original author or authors.
 *
 * 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 org.springframework.web.reactive.function.server;

import java.util.function.Function;

import reactor.core.publisher.Mono;

import org.springframework.core.io.Resource;

/**
 * Implementation of {@link RouterFunctions.Visitor} that creates a formatted string representation
 * of router functions.
 *
 * @author Arjen Poutsma
 * @since 5.0
 */
class ToStringVisitor implements RouterFunctions.Visitor {

	private static final String NEW_LINE = System.getProperty("line.separator", "\\n");

	private final StringBuilder builder = new StringBuilder();

	private int indent = 0;

	@Override
	public void startNested(RequestPredicate predicate) {
		indent();
		this.builder.append(predicate);
		this.builder.append(" => {");
		this.builder.append(NEW_LINE);
		this.indent++;
	}

	@Override
	public void endNested(RequestPredicate predicate) {
		this.indent--;
		indent();
		this.builder.append('}');
		this.builder.append(NEW_LINE);
	}

	@Override
	public void route(RequestPredicate predicate, HandlerFunction handlerFunction) {
		indent();
		this.builder.append(predicate);
		this.builder.append(" -> ");
		this.builder.append(handlerFunction);
		this.builder.append(NEW_LINE);
	}

	@Override
	public void resources(Function> lookupFunction) {
		indent();
		this.builder.append(lookupFunction);
		this.builder.append(NEW_LINE);
	}

	@Override
	public void unknown(RouterFunction routerFunction) {
		indent();
		this.builder.append(routerFunction);
	}

	private void indent() {
		for (int i=0; i < this.indent; i++) {
			this.builder.append(' ');
		}
	}

	@Override
	public String toString() {
		String result = this.builder.toString();
		if (result.endsWith(NEW_LINE)) {
			result = result.substring(0, result.length() - NEW_LINE.length());
		}
		return result;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy