MapperProxyFactory.java

  1. /*
  2.  *    Copyright 2009-2022 the original author or authors.
  3.  *
  4.  *    Licensed under the Apache License, Version 2.0 (the "License");
  5.  *    you may not use this file except in compliance with the License.
  6.  *    You may obtain a copy of the License at
  7.  *
  8.  *       https://www.apache.org/licenses/LICENSE-2.0
  9.  *
  10.  *    Unless required by applicable law or agreed to in writing, software
  11.  *    distributed under the License is distributed on an "AS IS" BASIS,
  12.  *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13.  *    See the License for the specific language governing permissions and
  14.  *    limitations under the License.
  15.  */
  16. package org.apache.ibatis.binding;

  17. import java.lang.reflect.Method;
  18. import java.lang.reflect.Proxy;
  19. import java.util.Map;
  20. import java.util.concurrent.ConcurrentHashMap;

  21. import org.apache.ibatis.binding.MapperProxy.MapperMethodInvoker;
  22. import org.apache.ibatis.session.SqlSession;

  23. /**
  24.  * @author Lasse Voss
  25.  */
  26. public class MapperProxyFactory<T> {

  27.   private final Class<T> mapperInterface;
  28.   private final Map<Method, MapperMethodInvoker> methodCache = new ConcurrentHashMap<>();

  29.   public MapperProxyFactory(Class<T> mapperInterface) {
  30.     this.mapperInterface = mapperInterface;
  31.   }

  32.   public Class<T> getMapperInterface() {
  33.     return mapperInterface;
  34.   }

  35.   public Map<Method, MapperMethodInvoker> getMethodCache() {
  36.     return methodCache;
  37.   }

  38.   @SuppressWarnings("unchecked")
  39.   protected T newInstance(MapperProxy<T> mapperProxy) {
  40.     return (T) Proxy.newProxyInstance(mapperInterface.getClassLoader(), new Class[] { mapperInterface }, mapperProxy);
  41.   }

  42.   public T newInstance(SqlSession sqlSession) {
  43.     final MapperProxy<T> mapperProxy = new MapperProxy<>(sqlSession, mapperInterface, methodCache);
  44.     return newInstance(mapperProxy);
  45.   }

  46. }