aboutsummaryrefslogtreecommitdiffstats
path: root/ajsc-aai/src/main/java/org/openecomp/aai/dmaap/aaiWorkload/consumer/AAIWorkloadConsumer.java
blob: db1ddf16a907195733297053761970bcefe0da0b (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
/*-
 * ============LICENSE_START=======================================================
 * org.openecomp.aai
 * ================================================================================
 * Copyright (C) 2017 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.openecomp.aai.dmaap.aaiWorkload.consumer;

import java.io.File;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.net.UnknownHostException;
import java.util.UUID;
import java.util.logging.Level;

import org.apache.commons.configuration.ConfigurationException;
import org.apache.commons.configuration.PropertiesConfiguration;
import org.openecomp.aai.logging.AAILogger;
import org.openecomp.aai.logging.ErrorLogHelper;
import org.openecomp.aai.logging.ErrorObject;
import org.openecomp.aai.logging.LogLine;
import org.openecomp.aai.util.AAIConfig;
import org.openecomp.aai.util.AAIConstants;

import com.att.aft.dme2.api.DME2Exception;
import com.att.nsa.mr.client.MRClientFactory;
import com.att.nsa.mr.client.MRConsumer;

public class AAIWorkloadConsumer {

	private static String fromAppId = "AAIWorkloadConsumerScheduledTask";
	private static String COMPONENT = "DMAAP-AAI-WORKLOAD";
	private AAILogger aaiLogger = new AAILogger(AAIWorkloadConsumer.class.getName());

	private String preferredRouterFilePath;
	private String aaiWorkloadConsumerPropertiesFile;
	private String aaiWorkloadStatusPublisherPropertiesFile;
	private String aaiWorkloadPublisherPropertiesFile;
	private String dmaapPropertyHome = "";
	private String dmaapConusmerId = "";

	private MRConsumer aaiWorkloadConsumer;

	public AAIWorkloadConsumer() throws Exception {

		LogLine logline = new LogLine();
		logline.init(COMPONENT, "N/A", fromAppId, "AAIWorkloadConsumer");
		aaiLogger.debug(logline, "Initalize the AAIWorkloadConsumer");

		this.dmaapPropertyHome = AAIConstants.AAI_HOME_ETC_APP_PROPERTIES;
		if (this.dmaapPropertyHome == null) {
			ErrorObject errorObject = ErrorLogHelper.getErrorObject("AAI_4000", "Property AAI_HOME_ETC_APP_PROPERTIES is not set. Stopping AAIWorkloadConsumer.");
			aaiLogger.error(errorObject, logline, null);
			throw new Exception("Property AAI_HOME_ETC_APP_PROPERTIES is not set. Stopping AAIWorkloadConsumer.");
		}

		if (System.getProperty("lrmHost") != null && !System.getProperty("lrmHost").isEmpty()) {
			this.dmaapConusmerId = System.getProperty("lrmHost");
		} else {
			this.dmaapConusmerId = UUID.randomUUID().toString();
		}

		processPropertyFiles();

		this.aaiWorkloadConsumer = MRClientFactory.createConsumer(this.aaiWorkloadConsumerPropertiesFile);
		aaiLogger.debug(logline, "Initalization completed.");

	}

	private void processPropertyFiles() throws FileNotFoundException, UnknownHostException, ConfigurationException {

		LogLine logline = new LogLine();
		logline.init(COMPONENT, "N/A", fromAppId, "processPropertyFiles");

		this.preferredRouterFilePath = this.dmaapPropertyHome + "preferredRoute.txt";
		this.aaiWorkloadConsumerPropertiesFile = this.dmaapPropertyHome + "aaiWorkloadConsumer.properties";
		this.aaiWorkloadPublisherPropertiesFile = this.dmaapPropertyHome + "aaiWorkloadPublisher.properties";
		this.aaiWorkloadStatusPublisherPropertiesFile = this.dmaapPropertyHome + "aaiWorkloadStatusPublisher.properties";

		aaiLogger.debug(logline, "Preferred router file path: " + this.preferredRouterFilePath);
		aaiLogger.debug(logline, "AAI Workload Consumer Properties path: " + this.aaiWorkloadConsumerPropertiesFile);
		aaiLogger.debug(logline, "AAI Workload Publisher Properties path: " + this.aaiWorkloadPublisherPropertiesFile);
		aaiLogger.debug(logline, "AAI Workload StatusPublisher Properties path: " + this.aaiWorkloadStatusPublisherPropertiesFile);

		File fo = new File(this.preferredRouterFilePath);
		if (!fo.exists()) {
			ErrorObject errorObject = ErrorLogHelper.getErrorObject("AAI_4000", "Dmaap Route file " + preferredRouterFilePath + " does not exist.");
			aaiLogger.error(errorObject, logline, null);
			throw new FileNotFoundException("Dmaap Route file " + preferredRouterFilePath + " does not exist");
		}

		fo = new File(this.aaiWorkloadConsumerPropertiesFile);
		if (!fo.exists()) {
			ErrorObject errorObject = ErrorLogHelper.getErrorObject("AAI_4000", "Dmaap consumer property file " + aaiWorkloadConsumerPropertiesFile + " does not exist.");
			aaiLogger.error(errorObject, logline, null);
			throw new FileNotFoundException("Dmaap consumer property file " + aaiWorkloadConsumerPropertiesFile + " does not exist.");
		}

		fo = new File(this.aaiWorkloadPublisherPropertiesFile);
		if (!fo.exists()) {
			ErrorObject errorObject = ErrorLogHelper.getErrorObject("AAI_4000", "Dmaap publisher property file " + this.aaiWorkloadPublisherPropertiesFile + " does not exist.");
			aaiLogger.error(errorObject, logline, null);
			throw new FileNotFoundException("Dmaap publisher property file " + this.aaiWorkloadPublisherPropertiesFile + " does not exist.");
		}

		fo = new File(this.aaiWorkloadStatusPublisherPropertiesFile);
		if (!fo.exists()) {
			ErrorObject errorObject = ErrorLogHelper.getErrorObject("AAI_4000",
					"Dmaap publisher property file " + this.aaiWorkloadStatusPublisherPropertiesFile + " does not exist");
			aaiLogger.error(errorObject, logline, null);
			throw new FileNotFoundException("Dmaap publisher property file " + this.aaiWorkloadStatusPublisherPropertiesFile + " does not exist");
		}

		modifyProperties();

	}

	private void modifyProperties() throws ConfigurationException {

		LogLine logline = new LogLine();
		logline.init(COMPONENT, "N/A", fromAppId, "modifyProperties");

		PropertiesConfiguration config = new PropertiesConfiguration(this.aaiWorkloadConsumerPropertiesFile);
		if (config.getProperty("id") == null || config.getProperty("id").equals("") || config.getProperty("id").equals("aaiConsumerId")) {
			config.setProperty("id", this.dmaapConusmerId);
			aaiLogger.debug(logline, "Updated " + this.aaiWorkloadConsumerPropertiesFile + " id property to this.dmaapConusmerId.");
		}
		config.setProperty("DME2preferredRouterFilePath", this.preferredRouterFilePath);
		config.save();
		aaiLogger.debug(logline, "Updated " + this.aaiWorkloadConsumerPropertiesFile + " DME2preferredRouterFilePath property to " + this.preferredRouterFilePath);

		config = new PropertiesConfiguration(this.aaiWorkloadPublisherPropertiesFile);
		config.setProperty("DME2preferredRouterFilePath", this.preferredRouterFilePath);
		config.save();
		aaiLogger.debug(logline, "Updated " + this.aaiWorkloadPublisherPropertiesFile + " DME2preferredRouterFilePath property to " + this.preferredRouterFilePath);

		config = new PropertiesConfiguration(this.aaiWorkloadStatusPublisherPropertiesFile);
		config.setProperty("DME2preferredRouterFilePath", this.preferredRouterFilePath);
		config.save();
		aaiLogger.debug(logline, "Updated " + this.aaiWorkloadStatusPublisherPropertiesFile + " DME2preferredRouterFilePath property to " + this.preferredRouterFilePath);

	}

	public void startProcessing() throws Exception {

		LogLine logline = new LogLine();
		logline.init(COMPONENT, "N/A", fromAppId, "startProcessing");

		int fetchFailCounter = 0;
		AAIWorkloadEventProcessor awep = null;
//		com.att.aft.dme2.api.util.configuration.DME2LoggingConfig.getInstance().initializeDME2Logger().setLevel(Level.SEVERE);
		while (AAIConfig.get("aai.dmaap.workload.enableEventProcessing").equals("true")) {

			try {
				if (System.getProperty("org.openecomp.aai.serverStarted") != null && System.getProperty("org.openecomp.aai.serverStarted").equals("true")) {
					Iterable<String> eventMessages = aaiWorkloadConsumer.fetch();
					for (String eventMessage : eventMessages) {
						String transId = UUID.randomUUID().toString();
						aaiLogger.debug(logline, "Processing new dmaap message from the aaiWorkload topic." + transId);
						aaiLogger.debug(logline, "Processing new dmaap message from the aaiWorkload topic: " + eventMessage);
						awep = new AAIWorkloadEventProcessor(this.aaiWorkloadPublisherPropertiesFile, this.aaiWorkloadStatusPublisherPropertiesFile, transId);
						awep.process(eventMessage);
					}
					fetchFailCounter = 0;
				}
			} catch (DME2Exception e) {
				if (e.getErrorCode().equals("AFT-DME2-0999")) {
					// do nothing as this is the standard http timeout
				} else {
					ErrorObject errorObject = ErrorLogHelper.getErrorObject("AAI_4000", "Exiting due to dmaap consumer client throwing dme2 error.");
					aaiLogger.error(errorObject, logline, e);
					this.aaiWorkloadConsumer.close();
					throw e;
				}
			} catch (IOException e) {
				fetchFailCounter++;
				if (fetchFailCounter > 10) {
					ErrorObject errorObject = ErrorLogHelper.getErrorObject("AAI_4000", "Exiting due to fetch throwing io exception. More than 10 times.");
					aaiLogger.error(errorObject, logline, e);
					this.aaiWorkloadConsumer.close();
					throw e;
				}
			} catch (Exception e) {
				ErrorObject errorObject = ErrorLogHelper.getErrorObject("AAI_4000", "Exiting due to unknown exception.");
				aaiLogger.error(errorObject, logline, e);
				this.aaiWorkloadConsumer.close();
				throw e;
			}
		}
		this.aaiWorkloadConsumer.close();
	}

}