865ad626b2e5ebb242b2e314dc35c61c15098340
[mdsal.git] / binding / yang-binding / src / main / java / org / opendaylight / yangtools / yang / binding / util / StringValueObjectFactory.java
1 /*
2  * Copyright (c) 2016 Pantheon Technologies s.r.o. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.yangtools.yang.binding.util;
9
10 import com.google.common.annotations.Beta;
11 import com.google.common.base.Preconditions;
12 import com.google.common.base.Throwables;
13 import java.lang.invoke.MethodHandle;
14 import java.lang.invoke.MethodHandles;
15 import java.lang.invoke.MethodHandles.Lookup;
16 import java.lang.invoke.MethodType;
17 import java.lang.reflect.Constructor;
18 import java.lang.reflect.Field;
19 import java.lang.reflect.InvocationTargetException;
20 import org.slf4j.Logger;
21 import org.slf4j.LoggerFactory;
22
23 /**
24  * Utility class for instantiating value-type generated objects with String being the base type. Unlike the normal
25  * constructor, instances of this class bypass string validation.
26  *
27  * <p>
28  * THE USE OF THIS CLASS IS DANGEROUS AND SHOULD ONLY BE USED TO IMPLEMENT WELL-AUDITED AND CORRECT UTILITY METHODS
29  * SHIPPED WITH MODELS TO PROVIDE INSTANTIATION FROM TYPES DIFFERENT THAN STRING.
30  *
31  * <p>
32  * APPLICATION CODE <em>MUST NOT</em> USE THIS CLASS DIRECTLY. VIOLATING THIS CONSTRAINT HAS SECURITY AND CORRECTNESS
33  * IMPLICATIONS ON EVERY USER INTERACTING WITH THE RESULTING OBJECTS.
34  *
35  * @param <T> Resulting object type
36  */
37 @Beta
38 public final class StringValueObjectFactory<T> {
39     private static final MethodType CONSTRUCTOR_METHOD_TYPE = MethodType.methodType(Object.class, Object.class);
40     private static final MethodType SETTER_METHOD_TYPE = MethodType.methodType(void.class, Object.class, String.class);
41     private static final Logger LOG = LoggerFactory.getLogger(StringValueObjectFactory.class);
42     private static final Lookup LOOKUP = MethodHandles.lookup();
43
44     private final MethodHandle constructor;
45     private final MethodHandle setter;
46     private final T template;
47
48     private StringValueObjectFactory(final T template, final MethodHandle constructor, final MethodHandle setter) {
49         this.template = Preconditions.checkNotNull(template);
50         this.constructor = constructor.bindTo(template);
51         this.setter = Preconditions.checkNotNull(setter);
52     }
53
54     public static <T> StringValueObjectFactory<T> create(final Class<T> clazz, final String templateString) {
55         final Constructor<T> stringConstructor;
56         try {
57             stringConstructor = clazz.getConstructor(String.class);
58         } catch (NoSuchMethodException e) {
59             throw new IllegalArgumentException(String.format("%s does not have a String constructor", clazz), e);
60         }
61
62         final T template;
63         try {
64             template = stringConstructor.newInstance(templateString);
65         } catch (InstantiationException | InvocationTargetException | IllegalAccessException e) {
66             throw new IllegalArgumentException(String.format("Failed to instantiate template %s for '%s'", clazz,
67                 templateString), e);
68         }
69
70         final Constructor<T> copyConstructor;
71         try {
72             copyConstructor = clazz.getConstructor(clazz);
73         } catch (NoSuchMethodException e) {
74             throw new IllegalArgumentException(String.format("%s does not have a copy constructor", clazz), e);
75         }
76
77         final Field f = findValueField(clazz);
78         f.setAccessible(true);
79
80         final StringValueObjectFactory<T> ret;
81         try {
82             ret = new StringValueObjectFactory<>(template,
83                     LOOKUP.unreflectConstructor(copyConstructor).asType(CONSTRUCTOR_METHOD_TYPE),
84                     LOOKUP.unreflectSetter(f).asType(SETTER_METHOD_TYPE));
85         } catch (IllegalAccessException e) {
86             throw new IllegalStateException("Failed to instantiate method handles", e);
87         }
88
89         // Let us be very defensive and scream loudly if the invocation does not come from the same package. This
90         // is far from perfect, but better than nothing.
91         final Throwable t = new Throwable("Invocation stack");
92         t.fillInStackTrace();
93         if (matchesPackage(clazz.getPackage().getName(), t.getStackTrace())) {
94             LOG.info("Instantiated factory for {}", clazz);
95         } else {
96             LOG.warn("Instantiated factory for {} outside its package", clazz, t);
97         }
98
99         return ret;
100     }
101
102     private static boolean matchesPackage(final String pkg, final StackTraceElement[] stackTrace) {
103         for (StackTraceElement e : stackTrace) {
104             final String sp = e.getClassName();
105             if (sp.startsWith(pkg) && sp.lastIndexOf('.') == pkg.length()) {
106                 return true;
107             }
108         }
109
110         return false;
111     }
112
113     private static Field findValueField(final Class<?> orig) {
114         NoSuchFieldException cause = null;
115         Class<?> clazz = orig;
116         do {
117             try {
118                 return clazz.getDeclaredField("_value");
119             } catch (NoSuchFieldException e) {
120                 if (cause != null) {
121                     e.addSuppressed(cause);
122                 }
123                 cause = e;
124             }
125             clazz = clazz.getSuperclass();
126         } while (clazz != null);
127
128         throw new IllegalArgumentException(orig + " nor its superclasses define required internal field _value", cause);
129     }
130
131     @SuppressWarnings("checkstyle:illegalCatch")
132     public T newInstance(final String string) {
133         Preconditions.checkNotNull(string, "Argument may not be null");
134
135         try {
136             final T ret = (T) constructor.invokeExact();
137             setter.invokeExact(ret, string);
138             LOG.trace("Instantiated new object {} value {}", ret.getClass(), string);
139             return ret;
140         } catch (Throwable e) {
141             Throwables.throwIfUnchecked(e);
142             throw new RuntimeException(e);
143         }
144     }
145
146     public T getTemplate() {
147         return template;
148     }
149 }