[SDC-29] Amdocs OnBoard 1707 initial commit.
[sdc.git] / openecomp-be / lib / openecomp-logging-lib / openecomp-sdc-logging-api / src / main / java / org / openecomp / sdc / logging / api / BaseFactory.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.openecomp.sdc.logging.api;
22
23 import java.util.Iterator;
24 import java.util.ServiceLoader;
25
26 /**
27  * Contains common functionality for factories used in the logging framework.
28  *
29  * <p>In order to use the factory, a particular (e.g. framework-specific) implementation of a service must be
30  * configured as described in
31  * <a href="http://docs.oracle.com/javase/8/docs/api/java/util/ServiceLoader.html">java.util.ServiceLoader</a>).</p>
32  *
33  * @author evitaliy
34  * @since 13/09/2016.
35  *
36  * @see ServiceLoader
37  */
38 public class BaseFactory {
39
40     protected static <T> T locateService(Class<T> clazz) throws Exception {
41
42         T service;
43         ServiceLoader<T> loader = ServiceLoader.load(clazz);
44         Iterator<T> iterator = loader.iterator();
45         if (iterator.hasNext()) {
46
47             service = iterator.next();
48             if (iterator.hasNext()) {
49                 System.err.println(String.format("Warning! Configured more than one implementation of %s",
50                         clazz.getName()));
51             }
52
53             return service;
54         }
55
56         throw new IllegalArgumentException((String.format("No implementations configured for %s", clazz.getName())));
57     }
58 }