spring GenericConversionServiceBenchmark 源码

  • 2022-08-08
  • 浏览 (376)

spring GenericConversionServiceBenchmark 代码

文件路径:/spring-core/src/jmh/java/org/springframework/core/convert/support/GenericConversionServiceBenchmark.java

/*
 * Copyright 2002-2020 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
 *
 *      https://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.core.convert.support;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.stream.Collectors;
import java.util.stream.IntStream;

import org.openjdk.jmh.annotations.Benchmark;
import org.openjdk.jmh.annotations.BenchmarkMode;
import org.openjdk.jmh.annotations.Level;
import org.openjdk.jmh.annotations.Mode;
import org.openjdk.jmh.annotations.Param;
import org.openjdk.jmh.annotations.Scope;
import org.openjdk.jmh.annotations.Setup;
import org.openjdk.jmh.annotations.State;
import org.openjdk.jmh.infra.Blackhole;

import org.springframework.core.convert.TypeDescriptor;
import org.springframework.util.CollectionUtils;

/**
 * Benchmarks for {@link GenericConversionService}.
 *
 * @author Brian Clozel
 */
@BenchmarkMode(Mode.Throughput)
public class GenericConversionServiceBenchmark {

	@Benchmark
	public void convertListOfStringToListOfIntegerWithConversionService(ListBenchmarkState state, Blackhole bh) {
		TypeDescriptor sourceTypeDesc = TypeDescriptor.forObject(state.source);
		bh.consume(state.conversionService.convert(state.source, sourceTypeDesc, state.targetTypeDesc));
	}

	@Benchmark
	public void convertListOfStringToListOfIntegerBaseline(ListBenchmarkState state, Blackhole bh) {
		List<Integer> target = new ArrayList<>(state.source.size());
		for (String element : state.source) {
			target.add(Integer.valueOf(element));
		}
		bh.consume(target);
	}

	@State(Scope.Benchmark)
	public static class ListBenchmarkState extends BenchmarkState {

		List<String> source;

		@Setup(Level.Trial)
		public void setup() throws Exception {
			this.source = IntStream.rangeClosed(1, collectionSize).mapToObj(String::valueOf).collect(Collectors.toList());
			List<Integer> target = new ArrayList<>();
			this.targetTypeDesc = TypeDescriptor.forObject(target);
		}
	}

	@Benchmark
	public void convertMapOfStringToListOfIntegerWithConversionService(MapBenchmarkState state, Blackhole bh) {
		TypeDescriptor sourceTypeDesc = TypeDescriptor.forObject(state.source);
		bh.consume(state.conversionService.convert(state.source, sourceTypeDesc, state.targetTypeDesc));
	}

	@Benchmark
	public void convertMapOfStringToListOfIntegerBaseline(MapBenchmarkState state, Blackhole bh) {
		Map<String, Integer> target = CollectionUtils.newHashMap(state.source.size());
		state.source.forEach((k, v) -> target.put(k, Integer.valueOf(v)));
		bh.consume(target);
	}


	@State(Scope.Benchmark)
	public static class MapBenchmarkState extends BenchmarkState {

		Map<String, String> source;

		@Setup(Level.Trial)
		public void setup() throws Exception {
			this.source = CollectionUtils.newHashMap(this.collectionSize);
			Map<String, Integer> target = new HashMap<>();
			this.targetTypeDesc = TypeDescriptor.forObject(target);
			this.source = IntStream.rangeClosed(1, collectionSize).mapToObj(String::valueOf)
					.collect(Collectors.toMap(String::valueOf, String::valueOf));
		}
	}


	@State(Scope.Benchmark)
	public static class BenchmarkState {

		GenericConversionService conversionService = new GenericConversionService();

		@Param({"10"})
		int collectionSize;

		TypeDescriptor targetTypeDesc;
	}

}

相关信息

spring 源码目录

相关文章

spring ApiDiffPlugin 源码

spring CompilerConventionsPlugin 源码

spring RuntimeHintsAgentExtension 源码

spring RuntimeHintsAgentPlugin 源码

spring OptionalDependenciesPlugin 源码

spring ShadowSource 源码

spring Advice 源码

spring AspectException 源码

spring package-info 源码

spring ConstructorInterceptor 源码

0  赞