15
15
*/
16
16
package org .springframework .data .repository .cdi ;
17
17
18
+ import lombok .Getter ;
18
19
import lombok .RequiredArgsConstructor ;
19
20
20
- import java .io .IOException ;
21
- import java .util .Arrays ;
22
- import java .util .Collections ;
23
21
import java .util .Optional ;
24
22
import java .util .stream .Stream ;
25
23
26
- import javax .enterprise .inject .CreationException ;
27
24
import javax .enterprise .inject .UnsatisfiedResolutionException ;
28
25
29
- import org .springframework .beans .factory .config .BeanDefinition ;
30
26
import org .springframework .beans .factory .support .AbstractBeanDefinition ;
31
- import org .springframework .core .env .Environment ;
32
27
import org .springframework .core .env .StandardEnvironment ;
33
28
import org .springframework .core .io .ResourceLoader ;
34
29
import org .springframework .core .io .support .PathMatchingResourcePatternResolver ;
35
- import org .springframework .core .type .ClassMetadata ;
36
30
import org .springframework .core .type .classreading .CachingMetadataReaderFactory ;
37
31
import org .springframework .core .type .classreading .MetadataReaderFactory ;
38
- import org .springframework .core .type .filter .AnnotationTypeFilter ;
39
32
import org .springframework .core .type .filter .TypeFilter ;
40
- import org .springframework .data .repository .NoRepositoryBean ;
41
33
import org .springframework .data .repository .config .CustomRepositoryImplementationDetector ;
42
34
import org .springframework .data .repository .config .FragmentMetadata ;
35
+ import org .springframework .data .repository .config .ImplementationDetectionConfiguration ;
36
+ import org .springframework .data .repository .config .ImplementationLookupConfiguration ;
43
37
import org .springframework .data .repository .config .RepositoryFragmentConfiguration ;
44
- import org .springframework .data .repository .config .RepositoryFragmentDiscovery ;
45
38
import org .springframework .data .util .Optionals ;
46
39
import org .springframework .data .util .Streamable ;
47
40
import org .springframework .lang .Nullable ;
@@ -61,6 +54,7 @@ public class CdiRepositoryContext {
61
54
private final ClassLoader classLoader ;
62
55
private final CustomRepositoryImplementationDetector detector ;
63
56
private final MetadataReaderFactory metadataReaderFactory ;
57
+ private final FragmentMetadata metdata ;
64
58
65
59
/**
66
60
* Create a new {@link CdiRepositoryContext} given {@link ClassLoader} and initialize
@@ -69,16 +63,8 @@ public class CdiRepositoryContext {
69
63
* @param classLoader must not be {@literal null}.
70
64
*/
71
65
public CdiRepositoryContext (ClassLoader classLoader ) {
72
-
73
- Assert .notNull (classLoader , "ClassLoader must not be null!" );
74
-
75
- this .classLoader = classLoader ;
76
-
77
- Environment environment = new StandardEnvironment ();
78
- ResourceLoader resourceLoader = new PathMatchingResourcePatternResolver (classLoader );
79
-
80
- this .metadataReaderFactory = new CachingMetadataReaderFactory (resourceLoader );
81
- this .detector = new CustomRepositoryImplementationDetector (metadataReaderFactory , environment , resourceLoader );
66
+ this (classLoader , new CustomRepositoryImplementationDetector (new StandardEnvironment (),
67
+ new PathMatchingResourcePatternResolver (classLoader )));
82
68
}
83
69
84
70
/**
@@ -97,6 +83,7 @@ public CdiRepositoryContext(ClassLoader classLoader, CustomRepositoryImplementat
97
83
98
84
this .classLoader = classLoader ;
99
85
this .metadataReaderFactory = new CachingMetadataReaderFactory (resourceLoader );
86
+ this .metdata = new FragmentMetadata (metadataReaderFactory );
100
87
this .detector = detector ;
101
88
}
102
89
@@ -130,14 +117,11 @@ Class<?> loadClass(String className) {
130
117
Stream <RepositoryFragmentConfiguration > getRepositoryFragments (CdiRepositoryConfiguration configuration ,
131
118
Class <?> repositoryInterface ) {
132
119
133
- ClassMetadata classMetadata = getClassMetadata (metadataReaderFactory , repositoryInterface .getName ());
134
-
135
- RepositoryFragmentDiscovery fragmentConfiguration = new CdiRepositoryFragmentDiscovery (configuration );
120
+ CdiImplementationDetectionConfiguration config = new CdiImplementationDetectionConfiguration (configuration ,
121
+ metadataReaderFactory );
136
122
137
- return Arrays .stream (classMetadata .getInterfaceNames ()) //
138
- .filter (it -> FragmentMetadata .isCandidate (it , metadataReaderFactory )) //
139
- .map (it -> FragmentMetadata .of (it , fragmentConfiguration )) //
140
- .map (this ::detectRepositoryFragmentConfiguration ) //
123
+ return metdata .getFragmentInterfaces (repositoryInterface .getName ()) //
124
+ .map (it -> detectRepositoryFragmentConfiguration (it , config )) //
141
125
.flatMap (Optionals ::toStream );
142
126
}
143
127
@@ -152,26 +136,22 @@ Stream<RepositoryFragmentConfiguration> getRepositoryFragments(CdiRepositoryConf
152
136
Optional <Class <?>> getCustomImplementationClass (Class <?> repositoryType ,
153
137
CdiRepositoryConfiguration cdiRepositoryConfiguration ) {
154
138
155
- String className = getCustomImplementationClassName (repositoryType , cdiRepositoryConfiguration );
139
+ ImplementationDetectionConfiguration configuration = new CdiImplementationDetectionConfiguration (
140
+ cdiRepositoryConfiguration , metadataReaderFactory );
141
+ ImplementationLookupConfiguration lookup = configuration .forFragment (repositoryType .getName ());
156
142
157
- Optional <AbstractBeanDefinition > beanDefinition = detector .detectCustomImplementation ( //
158
- className , //
159
- className , Collections .singleton (repositoryType .getPackage ().getName ()), //
160
- Collections .emptySet (), //
161
- BeanDefinition ::getBeanClassName );
143
+ Optional <AbstractBeanDefinition > beanDefinition = detector .detectCustomImplementation (lookup );
162
144
163
145
return beanDefinition .map (this ::loadBeanClass );
164
146
}
165
147
166
- private Optional <RepositoryFragmentConfiguration > detectRepositoryFragmentConfiguration (
167
- FragmentMetadata configuration ) {
148
+ private Optional <RepositoryFragmentConfiguration > detectRepositoryFragmentConfiguration (String fragmentInterfaceName ,
149
+ CdiImplementationDetectionConfiguration config ) {
168
150
169
- String className = configuration .getFragmentImplementationClassName ();
151
+ ImplementationLookupConfiguration lookup = config .forFragment (fragmentInterfaceName );
152
+ Optional <AbstractBeanDefinition > beanDefinition = detector .detectCustomImplementation (lookup );
170
153
171
- Optional <AbstractBeanDefinition > beanDefinition = detector .detectCustomImplementation (className , null ,
172
- configuration .getBasePackages (), configuration .getExclusions (), BeanDefinition ::getBeanClassName );
173
-
174
- return beanDefinition .map (bd -> new RepositoryFragmentConfiguration (configuration .getFragmentInterfaceName (), bd ));
154
+ return beanDefinition .map (bd -> new RepositoryFragmentConfiguration (fragmentInterfaceName , bd ));
175
155
}
176
156
177
157
@ Nullable
@@ -182,45 +162,37 @@ private Class<?> loadBeanClass(AbstractBeanDefinition definition) {
182
162
return beanClassName == null ? null : loadClass (beanClassName );
183
163
}
184
164
185
- private static ClassMetadata getClassMetadata (MetadataReaderFactory metadataReaderFactory , String className ) {
186
-
187
- try {
188
- return metadataReaderFactory .getMetadataReader (className ).getClassMetadata ();
189
- } catch (IOException e ) {
190
- throw new CreationException (String .format ("Cannot parse %s metadata." , className ), e );
191
- }
192
- }
193
-
194
- private static String getCustomImplementationClassName (Class <?> repositoryType ,
195
- CdiRepositoryConfiguration cdiRepositoryConfiguration ) {
196
-
197
- String configuredPostfix = cdiRepositoryConfiguration .getRepositoryImplementationPostfix ();
198
- Assert .hasText (configuredPostfix , "Configured repository postfix must not be null or empty!" );
199
-
200
- return ClassUtils .getShortName (repositoryType ) + configuredPostfix ;
201
- }
202
-
203
165
@ RequiredArgsConstructor
204
- private static class CdiRepositoryFragmentDiscovery implements RepositoryFragmentDiscovery {
166
+ private static class CdiImplementationDetectionConfiguration implements ImplementationDetectionConfiguration {
205
167
206
168
private final CdiRepositoryConfiguration configuration ;
169
+ private final @ Getter MetadataReaderFactory metadataReaderFactory ;
207
170
208
171
/*
209
172
* (non-Javadoc)
210
- * @see org.springframework.data.repository.config.RepositoryFragmentDiscovery#getExcludeFilters ()
173
+ * @see org.springframework.data.repository.config.CustomRepositoryImplementationDetector.ImplementationDetectionConfiguration#getImplementationPostfix ()
211
174
*/
212
175
@ Override
213
- public Streamable < TypeFilter > getExcludeFilters () {
214
- return Streamable . of ( new AnnotationTypeFilter ( NoRepositoryBean . class ) );
176
+ public String getImplementationPostfix () {
177
+ return configuration . getRepositoryImplementationPostfix ( );
215
178
}
216
179
217
180
/*
218
181
* (non-Javadoc)
219
- * @see org.springframework.data.repository.config.RepositoryFragmentDiscovery#getRepositoryImplementationPostfix ()
182
+ * @see org.springframework.data.repository.config.CustomRepositoryImplementationDetector.ImplementationDetectionConfiguration#getBasePackages ()
220
183
*/
221
184
@ Override
222
- public Optional <String > getRepositoryImplementationPostfix () {
223
- return Optional .of (configuration .getRepositoryImplementationPostfix ());
185
+ public Streamable <String > getBasePackages () {
186
+ return Streamable .empty ();
187
+ }
188
+
189
+ /*
190
+ * (non-Javadoc)
191
+ * @see org.springframework.data.repository.config.CustomRepositoryImplementationDetector.ImplementationDetectionConfiguration#getExcludeFilters()
192
+ */
193
+ @ Override
194
+ public Streamable <TypeFilter > getExcludeFilters () {
195
+ return Streamable .empty ();
224
196
}
225
197
}
226
198
}
0 commit comments