13db8412d886a54474b808aa329ff69792aa7327
[utils] / support / inject / src / main / java / org / wamblee / inject / InjectorFactoryBuilder.java
1 /*
2  * Copyright 2005-2010 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  *      http://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.wamblee.inject;
17
18 import java.util.NoSuchElementException;
19 import java.util.ServiceLoader;
20
21 /**
22  * Utility for obtaining an implementation of the {@link InjectorFactory} using
23  * {@link ServiceLoader}.
24  * 
25  * @author Erik Brakkee
26  */
27 public class InjectorFactoryBuilder {
28
29     private static InjectorFactory FACTORY;
30
31     /**
32      * Sets the injector factory. This is useful for testing. 
33      * @param aFactory Factory to use. 
34      */
35     public static void setInjectorFactory(InjectorFactory aFactory) {
36         FACTORY = aFactory;
37     }
38
39     /**
40      * Gets the injector factory by using the first one found using
41      * {@link ServiceLoader}.
42      * 
43      * @return InjectorFactory.
44      */
45     public static InjectorFactory getInjectorFactory() {
46         if (FACTORY == null) {
47             FACTORY = findInjectorFactory(); 
48         }
49         return FACTORY;
50     }
51
52     /**
53      * Finds the injector factory musing <code>ServiceLoader</code>
54      * 
55      * @return InjectorFactory.
56      */
57     private static InjectorFactory findInjectorFactory() {
58         ServiceLoader<InjectorFactory> factories = ServiceLoader
59             .load(InjectorFactory.class);
60         try {
61             return (InjectorFactory) factories.iterator().next();
62         } catch (NoSuchElementException e) {
63             throw new RuntimeException("Can not find InjectorFactory to use");
64         }
65     }
66 }