move actors code in drools-applications to policy/models
[policy/models.git] / models-interactions / model-actors / actorServiceProvider / src / main / java / org / onap / policy / controlloop / actorserviceprovider / ActorService.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ActorService
4  * ================================================================================
5  * Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * Modifications Copyright (C) 2019 Nordix Foundation.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.policy.controlloop.actorserviceprovider;
23
24 import com.google.common.collect.ImmutableList;
25
26 import java.util.Iterator;
27 import java.util.ServiceLoader;
28
29 import org.onap.policy.controlloop.actorserviceprovider.spi.Actor;
30 import org.slf4j.Logger;
31 import org.slf4j.LoggerFactory;
32
33 public class ActorService {
34
35     private static final Logger logger = LoggerFactory.getLogger(ActorService.class);
36     private static ActorService service;
37
38     // USed to load actors
39     private final ServiceLoader<Actor> loader;
40
41     private ActorService() {
42         loader = ServiceLoader.load(Actor.class);
43     }
44
45     /**
46      * Get the single instance.
47      *
48      * @return the instance
49      */
50     public static synchronized ActorService getInstance() {
51         if (service == null) {
52             service = new ActorService();
53         }
54         return service;
55     }
56
57     /**
58      * Get the actors.
59      *
60      * @return the actors
61      */
62     public ImmutableList<Actor> actors() {
63         Iterator<Actor> iter = loader.iterator();
64         logger.debug("returning actors");
65         while (iter.hasNext()) {
66             if (logger.isDebugEnabled()) {
67                 logger.debug("Got {}", iter.next().actor());
68             }
69         }
70
71         return ImmutableList.copyOf(loader.iterator());
72     }
73 }