aboutsummaryrefslogtreecommitdiffstats
path: root/appc-oam/appc-oam-bundle/src/main/java/org/onap/appc/oam/util/BundleHelper.java
blob: 9559b54aa8ab1a9500a59e233cc0320ef00d87db (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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
/*-
 * ============LICENSE_START=======================================================
 * ONAP : APPC
 * ================================================================================
 * Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
 * ================================================================================
 * Copyright (C) 2017 Amdocs
 * ================================================================================
 * Modifications (C) 2018 Ericsson
 * =============================================================================
 * 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.appc.oam.util;

import com.att.eelf.configuration.EELFLogger;
import org.apache.commons.lang3.ArrayUtils;
import org.onap.appc.exceptions.APPCException;
import org.onap.appc.oam.AppcOam;
import org.onap.appc.oam.processor.BaseCommon;
import org.onap.appc.statemachine.impl.readers.AppcOamStates;
import org.osgi.framework.Bundle;
import org.osgi.framework.BundleContext;
import org.osgi.framework.BundleException;
import org.osgi.framework.FrameworkUtil;

import java.util.Map;
import java.util.concurrent.Callable;
import java.util.concurrent.Future;

/**
 * Utility class provides general bundle operational helps.
 */
public class BundleHelper {
    private static final String PROP_BUNDLE_TO_STOP = "appc.OAM.ToStop.properties";
    private static final String PROP_BUNDLES_TO_NOT_STOP = "appc.OAM.ToNotStop.properties";

    private final EELFLogger logger;
    private final StateHelper stateHelper;
    private final ConfigurationHelper configurationHelper;

    /**
     * Constructor
     *
     * @param eelfLogger of the logger
     * @param configurationHelperIn of ConfigurationHelper instance
     * @param stateHelperIn of StateHelper instance
     */
    public BundleHelper(EELFLogger eelfLogger,
                        ConfigurationHelper configurationHelperIn,
                        StateHelper stateHelperIn) {
        logger = eelfLogger;
        configurationHelper = configurationHelperIn;
        stateHelper = stateHelperIn;
    }

    /**
     * Handle bundle operations, such as stop or start bundle.
     *
     * @param rpc enum indicate if the operation is to stop, start or restart
     * @return boolean to indicate if the operation is successful (true) or failed (false)
     * @throws APPCException when error occurs
     */
    public boolean bundleOperations(AppcOam.RPC rpc,
                                    Map<String, Future<?>> threads,
                                    AsyncTaskHelper taskHelper,
                                    BaseCommon baseCommon)
        throws APPCException {
        long mStartTime = System.currentTimeMillis();
        logDebug(String.format("Entering OAM bundleOperations with rpc (%s).", rpc.name()));

        String action = rpc.getAppcOperation().toString();
        if (rpc != AppcOam.RPC.stop && rpc != AppcOam.RPC.start) {
            throw new APPCException("rpc(" + rpc + ") is not supported by bundleOperation.");
        }

        AppcOamStates originalState = stateHelper.getState();

        boolean isBundleOperationComplete = true;

        Map<String, Bundle> appcLcmBundles = getAppcLcmBundles();
        for (Map.Entry<String, Bundle> bundleEntry : appcLcmBundles.entrySet()) {
            String bundleName = bundleEntry.getKey();
            Bundle bundle = bundleEntry.getValue();

            logDebug("OAM launch thread for %s bundle %s", action, bundleName);
            if (rpc == AppcOam.RPC.start) {
                // Abort in the interruption case.
                // such as when a Stop request is receive while APPC is still trying to Start Up.
                if (!stateHelper.isSameState(originalState)) {
                    logger.warn("OAM %s bundle operation aborted since OAM state is no longer %s!",
                        originalState.name());
                    isBundleOperationComplete = false;
                    break;
                }
            }

            threads.put(bundleName,
                taskHelper.submitBaseSubCallable(new BundleTask(rpc, bundle,baseCommon)));
        }

        logDebug(String.format("Leaving OAM bundleOperations with rpc (%s) with complete(%s), elasped (%d) ms.",
            rpc.name(), Boolean.toString(isBundleOperationComplete), getElapseTimeMs(mStartTime)));

        return isBundleOperationComplete;
    }

    private long getElapseTimeMs(long mStartTime) {
        return System.currentTimeMillis() - mStartTime;
    }

    /**
     * Check if all BundleTasks are completed
     * @param bundleNameFutureMap with bundle name and BundleTask Future object
     * @return true if all are done, otherwise, false
     */
    public boolean isAllTaskDone(Map<String, Future<?>> bundleNameFutureMap) {
        boolean anyNotDone = bundleNameFutureMap.values().stream().anyMatch((f) -> !f.isDone());
        return !anyNotDone;
    }

    /**
     * Cancel BundleTasks which are not finished
     * @param bundleNameFutureMap with bundle name and BundleTask Future object
     */
    public void cancelUnfinished(Map<String, Future<?>> bundleNameFutureMap) {
        bundleNameFutureMap.values().stream().filter((f)
            -> !f.isDone()).forEach((f)
            -> f.cancel(true));
    }

    /**
     * Get number of failed BundleTasks
     * @param bundleNameFutureMap with bundle name and BundleTask Future object
     * @return number(long) of the failed BundleTasks
     */
    public long getFailedMetrics(Map<String, Future<?>> bundleNameFutureMap) {
        return bundleNameFutureMap.values().stream().map((f) -> {
            try {
                return f.get();
            } catch (Exception e) {
                // should not get here
                throw new RuntimeException(e);
            }
        }).filter((b) -> ((BundleTask)b).failException != null).count();
    }

    /**
     * Gets the list of Appc-bundles to be stopped/started
     *
     * @return Map of bundle symbolic name and bundle instance
     */
    Map<String, Bundle> getAppcLcmBundles() {
        logDebug("In getAppcLcmBundles");

        String[] bundlesToStop = readPropsFromPropListName(PROP_BUNDLE_TO_STOP);
        String[] regExBundleNotStop = readPropsFromPropListName(PROP_BUNDLES_TO_NOT_STOP);

        BundleFilter bundleList = getBundleFilter(bundlesToStop, regExBundleNotStop, getBundleList());

        logger.info(String.format("(%d) APPC bundles to Stop/Start: %s.", bundleList.getBundlesToStop().size(),
            bundleList.getBundlesToStop().toString()));

        logger.debug(String.format("(%d) APPC bundles that won't be Stopped/Started: %s.",
            bundleList.getBundlesToNotStop().size(), bundleList.getBundlesToNotStop().toString()));

        return bundleList.getBundlesToStop();
    }

    /**
     * Gets a list of all user desired bundles that should be stopped/Started as part of
     * OAM Stop and Start API
     *
     * @param propListKey String of the properties list property name
     * @return properties values of the related
     */
    String[] readPropsFromPropListName(String propListKey) {
        // get properties list by properties list name
        String[] propNames = configurationHelper.readProperty(propListKey);
        // go through each property to get the property values
        String[] propValue = ArrayUtils.EMPTY_STRING_ARRAY;
        if (propNames != null) {
            for (String aPropName : propNames) {
                propValue = ArrayUtils.addAll(propValue, configurationHelper.readProperty(aPropName));
            }
        }
        return propValue;
    }

    /**
     * Get all bundle list of APP-C
     * @return Array of Bundle
     */
    Bundle[] getBundleList() {
        BundleContext myBundleContext = FrameworkUtil.getBundle(this.getClass()).getBundleContext();
        if (myBundleContext != null) {
            return myBundleContext.getBundles();
        }
        return null;
    }

    /**
     * Genral debug log when debug logging level is enabled.
     * @param message of the log message format
     * @param args of the objects listed in the message format
     */
    private void logDebug(String message, Object... args) {
        if (logger.isDebugEnabled()) {
            logger.debug(String.format(message, args));
        }
    }

    protected BundleFilter getBundleFilter(String[] stopRegexes, String[] exceptRegexes, Bundle[] bundles) {
        return new BundleFilter(stopRegexes, exceptRegexes, bundles);
    }

    /**
     * Runnable to execute bundle operations: start or stop
     */
    class BundleTask implements Callable<BundleTask> {
        Exception failException;

        private AppcOam.RPC rpc;
        private Bundle bundle;
        private String bundleName;
        private String actionName;
        private final BaseCommon baseCommon;

        BundleTask(AppcOam.RPC rpcIn, Bundle bundleIn, BaseCommon baseCommon) {
            rpc = rpcIn;
            actionName = rpc.getAppcOperation().toString();
            bundle = bundleIn;
            bundleName = bundle.getSymbolicName();
            this.baseCommon = baseCommon;
        }

        @Override
        public BundleTask call() throws Exception {
            try {
                baseCommon.setInitialLogProperties();

                long bundleOperStartTime = System.currentTimeMillis();
                logDebug(String.format("OAM %s bundle %s ===>", actionName, bundleName));
                switch (rpc) {
                    case start:
                        bundle.start();
                        break;
                    case stop:
                        bundle.stop();
                        break;
                    default:
                        // should do nothing
                }
                logDebug(String.format("OAM %s bundle %s completed <=== elasped %d",
                    actionName, bundleName, getElapseTimeMs(bundleOperStartTime)));
            } catch (BundleException e) {
                logger.error(String.format("Exception encountered when OAM %s bundle %s ",
                    actionName, bundleName), e);
                failException = e;
            }
            finally {
                baseCommon.clearRequestLogProperties();
            }
            return this;
        }
    }
}