View Javadoc
1   /**
2    * This file Copyright (c) 2018 Magnolia International
3    * Ltd.  (http://www.magnolia-cms.com). All rights reserved.
4    *
5    *
6    * This file is dual-licensed under both the Magnolia
7    * Network Agreement and the GNU General Public License.
8    * You may elect to use one or the other of these licenses.
9    *
10   * This file is distributed in the hope that it will be
11   * useful, but AS-IS and WITHOUT ANY WARRANTY; without even the
12   * implied warranty of MERCHANTABILITY or FITNESS FOR A
13   * PARTICULAR PURPOSE, TITLE, or NONINFRINGEMENT.
14   * Redistribution, except as permitted by whichever of the GPL
15   * or MNA you select, is prohibited.
16   *
17   * 1. For the GPL license (GPL), you can redistribute and/or
18   * modify this file under the terms of the GNU General
19   * Public License, Version 3, as published by the Free Software
20   * Foundation.  You should have received a copy of the GNU
21   * General Public License, Version 3 along with this program;
22   * if not, write to the Free Software Foundation, Inc., 51
23   * Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
24   *
25   * 2. For the Magnolia Network Agreement (MNA), this file
26   * and the accompanying materials are made available under the
27   * terms of the MNA which accompanies this distribution, and
28   * is available at http://www.magnolia-cms.com/mna.html
29   *
30   * Any modifications to this file must keep this entire header
31   * intact.
32   *
33   */
34  package info.magnolia.ui.framework;
35  
36  import static net.bytebuddy.dynamic.loading.ClassLoadingStrategy.Default.WRAPPER;
37  import static net.bytebuddy.implementation.FixedValue.value;
38  import static net.bytebuddy.implementation.MethodCall.invoke;
39  import static net.bytebuddy.implementation.MethodDelegation.to;
40  import static net.bytebuddy.matcher.ElementMatchers.*;
41  
42  import java.io.Serializable;
43  import java.lang.reflect.Constructor;
44  import java.lang.reflect.Method;
45  import java.lang.reflect.Modifier;
46  import java.util.HashMap;
47  import java.util.Map;
48  
49  import org.reflections.ReflectionUtils;
50  
51  import lombok.SneakyThrows;
52  import net.bytebuddy.ByteBuddy;
53  import net.bytebuddy.TypeCache;
54  import net.bytebuddy.dynamic.scaffold.subclass.ConstructorStrategy;
55  import net.bytebuddy.implementation.bind.annotation.Origin;
56  import net.bytebuddy.implementation.bind.annotation.RuntimeType;
57  import net.bytebuddy.implementation.bind.annotation.This;
58  
59  /**
60   * ByteBuddy-based proxy implementation of an interface derived from {@link ViewContext}.
61   * By convention, generates the boilerplate for the methods that return {@link ContextProperty}.
62   */
63  public final class ViewContextProxy {
64  
65      static TypeCache<Class> proxyTypeCache = new TypeCache.WithInlineExpunction<>(TypeCache.Sort.WEAK);
66  
67      @SneakyThrows
68      public <T extends ViewContext> T createViewContext(Class<T> clazz) {
69          return createViewContext(clazz, new HashMap<>());
70      }
71  
72      @SneakyThrows
73      public <T extends ViewContext> T createViewContext(Class<T> clazz, Map<String, ContextProperty> properties) {
74          if (!clazz.isInterface()) {
75              throw new RuntimeException("Context type has to be an interface");
76          }
77  
78          return (T) proxyTypeCache.findOrInsert(Thread.currentThread().getContextClassLoader(), clazz, () -> generateViewContextProxy(clazz)).getConstructor(Map.class).newInstance(properties);
79      }
80  
81      private <T extends ViewContext> Class<T> generateViewContextProxy(Class<T> clazz) throws NoSuchMethodException {
82          final Constructor<ViewContextBase> targetCtor = ViewContextBase.class.getConstructor(Map.class);
83          final Class<? extends ViewContextBase> getViewContextType = new ByteBuddy()
84                  .subclass(ViewContextBase.class, ConstructorStrategy.Default.NO_CONSTRUCTORS)
85                  .implement(clazz, Serializable.class)
86                  .method(named("getViewContextType")).intercept(value(clazz))
87                  .method(returns(ContextProperty.class))
88                  .intercept(to(new StatePropertyGetterDelegate()))
89                  .defineConstructor(Modifier.PUBLIC)
90                  .withParameters(Map.class)
91                  .intercept(invoke(targetCtor)
92                          .withAllArguments()
93                          .andThen(to(new ContextInitializer())))
94                  .make()
95                  .load(getClass().getClassLoader(), WRAPPER)
96                  .getLoaded();
97          return (Class<T>) getViewContextType;
98      }
99  
100     /**
101      * Initialises {@link ContextProperty} for this view.
102      */
103     public static class ContextInitializer {
104 
105         @SuppressWarnings("unchecked")
106         public void init(@This ViewContextBase that) {
107             ReflectionUtils.getMethods(that.getClass()).stream()
108                     .filter(method -> ContextProperty.class.isAssignableFrom(method.getReturnType()))
109                     .filter(method -> !that.properties().containsKey(method.getName()))
110                     .forEach(method-> that.properties().put(method.getName(), new ContextProperty.Impl()));
111         }
112     }
113 
114     /**
115      * Delegates a getter method call to a look-up in the property map.
116      */
117     public static class StatePropertyGetterDelegate {
118 
119         @RuntimeType
120         public ContextProperty getter(@Origin Method method, @This ViewContextBase that) {
121             return that.properties().get(method.getName());
122         }
123     }
124 }