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

io.micronaut.function.DefaultLocalFunctionRegistry Maven / Gradle / Ivy

There is a newer version: 4.6.5
Show newest version
/*
 * Copyright 2017-2019 original 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 io.micronaut.function;

import io.micronaut.context.processor.ExecutableMethodProcessor;
import io.micronaut.core.naming.NameUtils;
import io.micronaut.core.reflect.ClassLoadingReporter;
import io.micronaut.core.util.StringUtils;
import io.micronaut.http.MediaType;
import io.micronaut.http.codec.MediaTypeCodec;
import io.micronaut.http.codec.MediaTypeCodecRegistry;
import io.micronaut.inject.BeanDefinition;
import io.micronaut.inject.ExecutableMethod;

import javax.inject.Inject;
import javax.inject.Singleton;
import java.net.URI;
import java.util.*;
import java.util.function.BiFunction;
import java.util.function.Consumer;
import java.util.function.Supplier;
import java.util.stream.Stream;

/**
 * 

Default implementation of the {@link LocalFunctionRegistry} interface

. * * @author Graeme Rocher * @since 1.0 */ @Singleton public class DefaultLocalFunctionRegistry implements ExecutableMethodProcessor, LocalFunctionRegistry, MediaTypeCodecRegistry { private final Map> consumers = new LinkedHashMap<>(1); private final Map> functions = new LinkedHashMap<>(1); private final Map> biFunctions = new LinkedHashMap<>(1); private final Map> suppliers = new LinkedHashMap<>(1); private final MediaTypeCodecRegistry decoderRegistry; /** * Constructor. * @param decoders decoders */ public DefaultLocalFunctionRegistry(MediaTypeCodec... decoders) { this.decoderRegistry = MediaTypeCodecRegistry.of(decoders); } /** * Constructor. * @param decoders decoders */ @Inject public DefaultLocalFunctionRegistry(List decoders) { this.decoderRegistry = MediaTypeCodecRegistry.of(decoders); } /** * Constructor. * @param codecRegistry codecRegistry */ public DefaultLocalFunctionRegistry(MediaTypeCodecRegistry codecRegistry) { this.decoderRegistry = codecRegistry; } @SuppressWarnings("unchecked") @Override public Optional> findFirst() { return Stream.of(functions, suppliers, consumers, biFunctions) .map(all -> { Collection> values = all.values(); return values.stream().findFirst(); }).filter(Optional::isPresent) .map(Optional::get) .findFirst(); } @SuppressWarnings("unchecked") @Override public Optional> find(String name) { return Stream.of(functions, suppliers, consumers, biFunctions) .flatMap(map -> { ExecutableMethod method = map.get(name); if (method == null) { return Stream.empty(); } return Stream.of(method); }) .findFirst(); } @Override public Map getAvailableFunctions() { return Collections.emptyMap(); } @SuppressWarnings("unchecked") @Override public Optional, T>> findSupplier(String name) { ExecutableMethod method = suppliers.get(name); if (method != null) { return Optional.of(method); } return Optional.empty(); } @SuppressWarnings("unchecked") @Override public Optional, Void>> findConsumer(String name) { ExecutableMethod method = consumers.get(name); if (method != null) { return Optional.of(method); } return Optional.empty(); } @SuppressWarnings("unchecked") @Override public Optional, R>> findFunction(String name) { ExecutableMethod method = functions.get(name); if (method != null) { return Optional.of(method); } return Optional.empty(); } @SuppressWarnings("unchecked") @Override public Optional, R>> findBiFunction(String name) { ExecutableMethod method = biFunctions.get(name); if (method != null) { return Optional.of(method); } return Optional.empty(); } @Override public void process(BeanDefinition beanDefinition, ExecutableMethod method) { if (method.hasAnnotation(FunctionBean.class)) { String functionId = method.stringValue(FunctionBean.class).orElse(null); Class declaringType = method.getDeclaringType(); if (StringUtils.isEmpty(functionId)) { String typeName = declaringType.getSimpleName(); if (typeName.contains("$")) { // generated lambda functionId = NameUtils.hyphenate(method.getMethodName()); } else { functionId = NameUtils.hyphenate(typeName); } } if (java.util.function.Function.class.isAssignableFrom(declaringType) && method.getMethodName().equals("apply")) { registerFunction(method, functionId); } else if (Consumer.class.isAssignableFrom(declaringType) && method.getMethodName().equals("accept")) { registerConsumer(method, functionId); } else if (BiFunction.class.isAssignableFrom(declaringType) && method.getMethodName().equals("apply")) { registerBiFunction(method, functionId); } else if (Supplier.class.isAssignableFrom(declaringType) && method.getMethodName().equals("get")) { registerSupplier(method, functionId); } } } @Override public Optional findCodec(MediaType mediaType) { return decoderRegistry.findCodec(mediaType); } @Override public Optional findCodec(MediaType mediaType, Class type) { return decoderRegistry.findCodec(mediaType, type); } @Override public Collection getCodecs() { return decoderRegistry.getCodecs(); } private void registerSupplier(ExecutableMethod method, String functionId) { ClassLoadingReporter.reportBeanPresent(method.getReturnType().getType()); suppliers.put(functionId, method); } private void registerBiFunction(ExecutableMethod method, String functionId) { ClassLoadingReporter.reportBeanPresent(method.getReturnType().getType()); for (Class argumentType : method.getArgumentTypes()) { ClassLoadingReporter.reportBeanPresent(argumentType); } biFunctions.put(functionId, method); } private void registerConsumer(ExecutableMethod method, String functionId) { for (Class argumentType : method.getArgumentTypes()) { ClassLoadingReporter.reportBeanPresent(argumentType); } consumers.put(functionId, method); } private void registerFunction(ExecutableMethod method, String functionId) { ClassLoadingReporter.reportBeanPresent(method.getReturnType().getType()); for (Class argumentType : method.getArgumentTypes()) { ClassLoadingReporter.reportBeanPresent(argumentType); } functions.put(functionId, method); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy