Merge "Fix a Bug in View Mode"
[policy/engine.git] / BRMSGateway / src / main / java / org / onap / policy / brms / api / BrmsGateway.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP Policy Engine
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.onap.policy.brms.api;
22
23 import org.onap.policy.api.NotificationScheme;
24 import org.onap.policy.api.PolicyEngine;
25 import org.onap.policy.api.PolicyException;
26 import org.onap.policy.common.logging.flexlogger.FlexLogger;
27 import org.onap.policy.common.logging.flexlogger.Logger;
28 import org.onap.policy.xacml.api.XACMLErrorConstants;
29
30 /**
31  * BRMSGateway: This application acts as the Gateway interface between the PDP XACML and PDP Drools.
32  * The listens for BRMS based policies and pushes them to the specified Policy Repository, from
33  * where the PDP Drools reads the Rule Jar.
34  * 
35  * @version 0.1
36  */
37 class BrmsGateway {
38
39     private static final Logger logger = FlexLogger.getLogger(BrmsGateway.class);
40     private static final String CONFIGFILE = "config.properties";
41
42     private static PolicyEngine policyEngine = null;
43
44     private BrmsGateway() {
45         // Default private constructor
46     }
47
48     public static void main(final String[] args) throws Exception {
49         // Initialize Handler.
50         logger.info("Initializing BRMS Handler");
51         BrmsHandler brmsHandler = null;
52         try {
53             brmsHandler = new BrmsHandler(CONFIGFILE);
54         } catch (final PolicyException e) {
55             logger.error("Check your property file: " + e.getMessage(), e);
56             System.exit(1);
57         }
58
59         // Set Handler with Auto Notification and initialize policyEngine
60         try {
61             logger.info("Initializing policyEngine with Auto Notifications");
62             policyEngine = new PolicyEngine(CONFIGFILE, NotificationScheme.AUTO_ALL_NOTIFICATIONS, brmsHandler);
63         } catch (final Exception e) {
64             logger.error(XACMLErrorConstants.ERROR_UNKNOWN + "Error while Initializing Policy Engine " + e.getMessage(),
65                     e);
66         }
67
68         // Keep Running....
69         final Runnable runnable = () -> {
70             while (true) {
71                 try {
72                     Thread.sleep(30000);
73                 } catch (final InterruptedException e) {
74                     logger.error(XACMLErrorConstants.ERROR_SYSTEM_ERROR + "Thread Exception " + e.getMessage());
75                     Thread.currentThread().interrupt();
76                 }
77             }
78         };
79         final Thread thread = new Thread(runnable);
80         thread.start();
81     }
82
83     public static PolicyEngine getPolicyEngine() {
84         return policyEngine;
85     }
86 }