aboutsummaryrefslogtreecommitdiffstats
path: root/controlloop/common/feature-controlloop-management/src/main/java/org/onap/policy/drools/apps/controlloop/feature/management/ControlLoopManagementFeature.java
blob: db078b20cb61bd5e974036b7738380dc5e4cf74b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
/*
 * ============LICENSE_START=======================================================
 * ONAP
 * ================================================================================
 * Copyright (C) 2018-2021 AT&T Intellectual Property. All rights reserved.
 * ================================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ============LICENSE_END=========================================================
 */

package org.onap.policy.drools.apps.controlloop.feature.management;

import java.util.stream.Stream;
import org.onap.policy.controlloop.drl.legacy.ControlLoopParams;
import org.onap.policy.drools.features.PolicyEngineFeatureApi;
import org.onap.policy.drools.system.PolicyController;
import org.onap.policy.drools.system.PolicyControllerConstants;

/**
 * Control Loop Management Feature.
 */
public class ControlLoopManagementFeature implements PolicyEngineFeatureApi {

    private static final String FEATURE_NAME = "controlloop-management";
    private static final int SEQNO = 1000;

    /**
     * Factory for various objects.  May be overridden by junit tests.
     */
    private static Factory factory = new Factory();


    /**
     * retrieves control loops.
     *
     * @param controllerName controller name.
     * @param sessionName session name.
     * @return control loops.
     */
    public static Stream<ControlLoopParams> controlLoops(String controllerName, String sessionName) {
        PolicyController controller = factory.getController(controllerName);
        if (controller == null) {
            throw new IllegalArgumentException("Invalid Controller Name");
        }

        if (controller.getDrools().getSessionNames().stream().filter(sessionName::equals).count() <= 0) {
            throw new IllegalArgumentException("Invalid Session Name");
        }

        return controller.getDrools()
            .facts(sessionName, ControlLoopParams.class.getName(), false)
            .stream()
            .filter(ControlLoopParams.class::isInstance)
            .map(ControlLoopParams.class::cast);
    }

    /**
     * retrieves a control loop.
     *
     * @param controllerName controller name.
     * @param sessionName session name.
     * @param controlLoopName control loop name
     *
     * @return control loops.
     */
    public static ControlLoopParams controlLoop(String controllerName, String sessionName, String controlLoopName) {
        return controlLoops(controllerName, sessionName)
            .filter(c -> c.getClosedLoopControlName().equals(controlLoopName))
            .findFirst()
            .orElse(null);
    }

    /**
     * {@inheritDoc}.
     */
    @Override
    public int getSequenceNumber() {
        return SEQNO;
    }

    /**
     * {@inheritDoc}.
     */
    @Override
    public String getName() {
        return FEATURE_NAME;
    }

    /**
     * Factory that can be overridden by junit tests.
     */
    public static class Factory {
        public PolicyController getController(String controllerName) {
            return PolicyControllerConstants.getFactory().get(controllerName);
        }
    }
}