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

org.apache.druid.guice.GuiceAnnotationIntrospector Maven / Gradle / Ivy

There is a newer version: 30.0.1
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you 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.apache.druid.guice;

import com.fasterxml.jackson.annotation.JacksonInject;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.databind.introspect.Annotated;
import com.fasterxml.jackson.databind.introspect.AnnotatedClass;
import com.fasterxml.jackson.databind.introspect.AnnotatedField;
import com.fasterxml.jackson.databind.introspect.AnnotatedMember;
import com.fasterxml.jackson.databind.introspect.AnnotatedMethod;
import com.fasterxml.jackson.databind.introspect.AnnotatedParameter;
import com.fasterxml.jackson.databind.introspect.NopAnnotationIntrospector;
import com.google.inject.BindingAnnotation;
import com.google.inject.Key;
import org.apache.druid.java.util.common.IAE;

import java.lang.annotation.Annotation;
import java.lang.reflect.Type;
import java.util.Map;

/**
 */
public class GuiceAnnotationIntrospector extends NopAnnotationIntrospector
{
  @Override
  public JacksonInject.Value findInjectableValue(AnnotatedMember m)
  {
    Object id = findGuiceInjectId(m);
    if (id == null) {
      return null;
    }
    return JacksonInject.Value.forId(id);
  }

  private Object findGuiceInjectId(AnnotatedMember m)
  {
    if (m.getAnnotation(JacksonInject.class) == null) {
      return null;
    }

    Type genericType = null;

    Annotation guiceAnnotation = null;
    for (Annotation annotation : m.annotations()) {
      if (annotation.annotationType().isAnnotationPresent(BindingAnnotation.class)) {
        guiceAnnotation = annotation;
        break;
      }
    }

    // Annotated.getGenericType() is removed since jackson-databind 2.11 version. We need the generic type so that we can inject values of the type such as List correctly.
    // Jackson library removed the method on the abstract class but the methods are still there in the implementations of AnnotatedMember. The method signatures are implementation specific and we are calling those methods to get the generic type.

    if (m instanceof AnnotatedField) {
      genericType = ((AnnotatedField) m).getAnnotated().getGenericType();
    } else if (m instanceof AnnotatedMethod) {
      genericType = ((AnnotatedMethod) m).getAnnotated().getGenericReturnType();
    } else if (m instanceof AnnotatedParameter) {
      genericType = ((AnnotatedParameter) m).getOwner().getGenericParameterType(((AnnotatedParameter) m).getIndex());
    }

    if (genericType == null) {
      // Fall back to type-erased raw type in case we missed an implementation. We are unlikely to ever get here though
      genericType = m.getRawType();
    }
    if (guiceAnnotation == null) {
      if (m instanceof AnnotatedMethod) {
        throw new IAE("Annotated methods don't work very well yet...");
      }
      return Key.get(genericType);
    }
    return Key.get(genericType, guiceAnnotation);
  }

    /**
     * This method is used to find what property to ignore in deserialization. Jackson calls this method
     * per every class and every constructor parameter.
     *
     * This implementation returns a {@link JsonIgnoreProperties.Value#empty()} that allows empty names if
     * the parameters has the {@link JsonProperty} annotation. Otherwise, it returns
     * {@code JsonIgnoreProperties.Value.forIgnoredProperties("")} that does NOT allow empty names.
     * This behavior is to work around a bug in Jackson deserializer (see the below comment for details) and
     * can be removed in the future after the bug is fixed.
     * For example, suppose a constructor like below:
     *
     * 
{@code
     * @JsonCreator
     * public ClassWithJacksonInject(
     *   @JsonProperty("val") String val,
     *   @JacksonInject InjectedParameter injected
     * )
     * }
* * During deserializing a JSON string into this class, this method will be called at least twice, * one for {@code val} and another for {@code injected}. It will return {@code Value.empty()} for {@code val}, * while {Value.forIgnoredProperties("")} for {@code injected} because the later does not have {@code JsonProperty}. * As a result, {@code injected} will be ignored during deserialization since it has no name. */ @Override public JsonIgnoreProperties.Value findPropertyIgnorals(Annotated ac) { // We should not allow empty names in any case. However, there is a known bug in Jackson deserializer // with ignorals (_arrayDelegateDeserializer is not copied when creating a contextual deserializer. // See https://github.com/FasterXML/jackson-databind/issues/3022 for more details), which makes array // deserialization failed even when the array is a valid field. To work around this bug, we return // an empty ignoral when the given Annotated is a parameter with JsonProperty that needs to be deserialized. // This is valid because every property with JsonProperty annoation should have a non-empty name. // We can simply remove the below check after the Jackson bug is fixed. // // This check should be fine for so-called delegate creators that have only one argument without // JsonProperty annotation, because this method is not even called for the argument of // delegate creators. I'm not 100% sure why it's not called, but guess it's because the argument // is some Java type that Jackson already knows how to deserialize. Since there is only one argument, // Jackson perhaps is able to just deserialize it without introspection. if (ac instanceof AnnotatedParameter) { final AnnotatedParameter ap = (AnnotatedParameter) ac; if (ap.hasAnnotation(JsonProperty.class)) { return JsonIgnoreProperties.Value.empty(); } } // A map can have empty string keys e.g. https://github.com/apache/druid/issues/10859. By returning empty ignored // list for map, we can allow for empty string keys in a map. A nested class within map // can still be annotated with JacksonInject and still be non-deserializable from user input // Refer to {@link com.fasterxml.jackson.databind.deser.BasicDeserializerFactory.createMapDeserializer} for details // on how the ignored list is passed to map deserializer if (ac instanceof AnnotatedClass) { final AnnotatedClass aClass = (AnnotatedClass) ac; if (Map.class.isAssignableFrom(aClass.getAnnotated())) { return JsonIgnoreProperties.Value.empty(); } } // We will allow serialization on empty properties. Properties marked with {@code @JacksonInject} are still // not serialized if there is no getter marked with {@code @JsonProperty} return JsonIgnoreProperties.Value.forIgnoredProperties("").withAllowGetters(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy