View Javadoc
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  
18  import java.lang.reflect.Method;
19  import java.lang.reflect.Proxy;
20  import java.util.Map;
21  import java.util.concurrent.ConcurrentHashMap;
22  
23  import org.apache.ibatis.binding.MapperProxy.MapperMethodInvoker;
24  import org.apache.ibatis.session.SqlSession;
25  
26  /**
27   * @author Lasse Voss
28   */
29  public class MapperProxyFactory<T> {
30  
31    private final Class<T> mapperInterface;
32    private final Map<Method, MapperMethodInvoker> methodCache = new ConcurrentHashMap<>();
33  
34    public MapperProxyFactory(Class<T> mapperInterface) {
35      this.mapperInterface = mapperInterface;
36    }
37  
38    public Class<T> getMapperInterface() {
39      return mapperInterface;
40    }
41  
42    public Map<Method, MapperMethodInvoker> getMethodCache() {
43      return methodCache;
44    }
45  
46    @SuppressWarnings("unchecked")
47    protected T newInstance(MapperProxy<T> mapperProxy) {
48      return (T) Proxy.newProxyInstance(mapperInterface.getClassLoader(), new Class[] { mapperInterface }, mapperProxy);
49    }
50  
51    public T newInstance(SqlSession sqlSession) {
52      final MapperProxy<T> mapperProxy = new MapperProxy<>(sqlSession, mapperInterface, methodCache);
53      return newInstance(mapperProxy);
54    }
55  
56  }