49379b28c957ced8e2d4cd24b9f7e1120fa690c1
[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, 2020 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.ImmutableMap;
25 import java.util.Collection;
26 import java.util.HashMap;
27 import java.util.Iterator;
28 import java.util.LinkedList;
29 import java.util.List;
30 import java.util.Map;
31 import java.util.ServiceConfigurationError;
32 import java.util.ServiceLoader;
33 import java.util.Set;
34 import org.onap.policy.common.parameters.BeanValidationResult;
35 import org.onap.policy.controlloop.actorserviceprovider.impl.StartConfigPartial;
36 import org.onap.policy.controlloop.actorserviceprovider.parameters.ParameterValidationRuntimeException;
37 import org.onap.policy.controlloop.actorserviceprovider.spi.Actor;
38 import org.slf4j.Logger;
39 import org.slf4j.LoggerFactory;
40
41 /**
42  * Service that manages a set of actors. To use the service, first invoke
43  * {@link #configure(Map)} to configure all of the actors, and then invoke
44  * {@link #start()} to start all of the actors. When finished using the actor service,
45  * invoke {@link #stop()} or {@link #shutdown()}.
46  */
47 public class ActorService extends StartConfigPartial<Map<String, Object>> {
48     private static final Logger logger = LoggerFactory.getLogger(ActorService.class);
49
50     private final Map<String, Actor> name2actor;
51
52     /**
53      * Constructs the object and loads the list of actors.
54      */
55     public ActorService() {
56         super("actors");
57
58         Map<String, Actor> map = new HashMap<>();
59
60         for (Actor newActor : buildList()) {
61             map.compute(newActor.getName(), (name, existingActor) -> {
62                 if (existingActor == null) {
63                     return newActor;
64                 }
65
66                 logger.warn("duplicate actor names for {}: {}, ignoring {}", name,
67                                 existingActor.getClass().getSimpleName(), newActor.getClass().getSimpleName());
68                 return existingActor;
69             });
70         }
71
72         name2actor = ImmutableMap.copyOf(map);
73     }
74
75     /**
76      * Builds the list of actors, discarding those that cannot be constructed.
77      *
78      * @return the list of actors, sorted by ascending sequence number
79      */
80     private List<Actor> buildList() {
81         List<Actor> actors = new LinkedList<>();
82
83         Iterator<Actor> iter = loadActors().iterator();
84         while (iter.hasNext()) {
85             try {
86                 actors.add(iter.next());
87             } catch (ServiceConfigurationError e) {
88                 logger.warn("unable to load actor", e);
89             }
90         }
91
92         actors.sort((actor1, actor2) -> {
93             int cmp = Integer.compare(actor1.getSequenceNumber(), actor2.getSequenceNumber());
94             if (cmp != 0) {
95                 return cmp;
96             }
97
98             return actor1.getClass().getName().compareTo(actor2.getClass().getName());
99         });
100
101         return actors;
102     }
103
104     /**
105      * Gets a particular actor.
106      *
107      * @param name name of the actor of interest
108      * @return the desired actor
109      * @throws IllegalArgumentException if no actor by the given name exists
110      */
111     public Actor getActor(String name) {
112         Actor actor = name2actor.get(name);
113         if (actor == null) {
114             throw new IllegalArgumentException("unknown actor " + name);
115         }
116
117         return actor;
118     }
119
120     /**
121      * Gets the actors.
122      *
123      * @return the actors
124      */
125     public Collection<Actor> getActors() {
126         return name2actor.values();
127     }
128
129     /**
130      * Gets the names of the actors.
131      *
132      * @return the actor names
133      */
134     public Set<String> getActorNames() {
135         return name2actor.keySet();
136     }
137
138     @Override
139     protected void doConfigure(Map<String, Object> parameters) {
140         logger.info("configuring actors");
141
142         BeanValidationResult valres = new BeanValidationResult("ActorService", parameters);
143
144         for (Actor actor : name2actor.values()) {
145             String actorName = actor.getName();
146             Object paramValue = parameters.get(actorName);
147
148             if (paramValue instanceof Map) {
149                 @SuppressWarnings("unchecked")
150                 Map<String, Object> subparams = (Map<String, Object>) paramValue;
151
152                 try {
153                     actor.configure(subparams);
154
155                 } catch (ParameterValidationRuntimeException e) {
156                     logger.warn("failed to configure actor {}", actorName, e);
157                     valres.addResult(e.getResult());
158
159                 } catch (RuntimeException e) {
160                     logger.warn("failed to configure actor {}", actorName, e);
161                 }
162
163             } else if (actor.isConfigured()) {
164                 logger.warn("missing configuration parameters for actor {}; using previous parameters", actorName);
165
166             } else {
167                 logger.warn("missing configuration parameters for actor {}; actor cannot be started", actorName);
168             }
169         }
170
171         if (!valres.isValid() && logger.isWarnEnabled()) {
172             logger.warn("actor services validation errors:\n{}", valres.getResult());
173         }
174     }
175
176     @Override
177     protected void doStart() {
178         logger.info("starting actors");
179
180         for (Actor actor : name2actor.values()) {
181             if (actor.isConfigured()) {
182                 Util.runFunction(actor::start, "failed to start actor {}", actor.getName());
183
184             } else {
185                 logger.warn("not starting unconfigured actor {}", actor.getName());
186             }
187         }
188     }
189
190     @Override
191     protected void doStop() {
192         logger.info("stopping actors");
193         name2actor.values().forEach(actor -> Util.runFunction(actor::stop, "failed to stop actor {}", actor.getName()));
194     }
195
196     @Override
197     protected void doShutdown() {
198         logger.info("shutting down actors");
199
200         // @formatter:off
201         name2actor.values().forEach(
202             actor -> Util.runFunction(actor::shutdown, "failed to shutdown actor {}", actor.getName()));
203
204         // @formatter:on
205     }
206
207     // the following methods may be overridden by junit tests
208
209     protected Iterable<Actor> loadActors() {
210         return ServiceLoader.load(Actor.class);
211     }
212 }