summaryrefslogtreecommitdiffstats
path: root/ecomp-sdk/epsdk-analytics/src/main/java/org/openecomp/portalsdk/analytics/controller/ErrorHandler.java
blob: 75d88d0f06f2e9d7c1f171a5957cb61b717c0da1 (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
/*-
 * ================================================================================
 * eCOMP Portal SDK
 * ================================================================================
 * Copyright (C) 2017 AT&T Intellectual Property
 * ================================================================================
 * 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.
 * ================================================================================
 */
package org.openecomp.portalsdk.analytics.controller;

import java.io.PrintWriter;
import java.io.StringWriter;
import java.io.Writer;
import java.util.*;
import javax.servlet.http.*;

import org.openecomp.portalsdk.analytics.error.*;
import org.openecomp.portalsdk.analytics.model.definition.ReportDefinition;
import org.openecomp.portalsdk.analytics.model.runtime.ErrorJSONRuntime;
import org.openecomp.portalsdk.analytics.model.runtime.ReportRuntime;
import org.openecomp.portalsdk.analytics.system.*;
import org.openecomp.portalsdk.analytics.util.*;
import org.openecomp.portalsdk.core.logging.format.AlarmSeverityEnum;
import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate;

import com.fasterxml.jackson.databind.DeserializationFeature;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.SerializationFeature;

public class ErrorHandler extends org.openecomp.portalsdk.analytics.RaptorObject {


	EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(ErrorHandler.class);
	
	public ErrorHandler() {
	}

	public void processError(HttpServletRequest request, String errorMsg) {
		//Log.write(errorMsg, 2);
		logger.error(EELFLoggerDelegate.debugLogger, (errorMsg));
		ArrayList error_list = (ArrayList) request.getAttribute(AppConstants.RI_ERROR_LIST);
		if (error_list == null)
			error_list = new ArrayList(1);
		error_list.add(errorMsg);
		request.setAttribute(AppConstants.RI_ERROR_LIST, error_list);
	} // processError

	public void processError(HttpServletRequest request, RaptorException e) {
		processError(request, "Exception: " + e.getMessage());
	} // processError

    private String getSessionLog(HttpServletRequest request) {
		String[] sessionVariablesToLog = Globals.getLogVariablesInSession().split(",");
		StringBuffer sessionLogStrBuf = new StringBuffer("\n");
		sessionLogStrBuf.append("***** ADDITIONAL INFORMATION ******");
		HttpSession session = request.getSession();
		ReportRuntime rr = (ReportRuntime) session.getAttribute(AppConstants.SI_REPORT_RUNTIME);
		ReportDefinition rdef = (ReportDefinition) session.getAttribute(AppConstants.SI_REPORT_DEFINITION);		
		if(rr!=null) {
			sessionLogStrBuf.append("\nWHILE RUNNING");
			sessionLogStrBuf.append("\nReport Id="+rr.getReportID()+";\t");
			sessionLogStrBuf.append("Report Name="+rr.getReportName()+";\t\n");
		} else if (rdef != null) {
			sessionLogStrBuf.append("\nWHILE CREATING/UPDATING");
			sessionLogStrBuf.append("\nReport Id="+rdef.getReportID()+";\t");
			sessionLogStrBuf.append("Report Name="+rdef.getReportName()+";\t\n");
		}
        for (int i = 0; i < sessionVariablesToLog.length; i++) {
        	if(session.getAttribute(sessionVariablesToLog[i])!=null)
        	sessionLogStrBuf.append(sessionVariablesToLog[i]+"="+(String)session.getAttribute(sessionVariablesToLog[i])+";\t");
        }
		sessionLogStrBuf.append("\n***********************************");
		sessionLogStrBuf.append("\n");
		return sessionLogStrBuf.toString();
    }
	public String processFatalError(HttpServletRequest request, RaptorException e) {
		//Log.write("Fatal error [" + e.getClass().getName() + "]: " + nvl(e.getMessage()), 1);
		logger.error(EELFLoggerDelegate.debugLogger, ("[EXCEPTION ENCOUNTERED IN RAPTOR] Fatal error [" + e.getClass().getName() + "]: " + nvl(e.getMessage())+" "+ getSessionLog(request) + e.getMessage()),AlarmSeverityEnum.MAJOR);
		if (e instanceof ReportSQLException) {
			String errorSQL = ((ReportSQLException) e).getReportSQL();
			if (nvl(errorSQL).length() > 0)
				request.setAttribute("c_error_sql", errorSQL);
		} // if
		AppUtils.processErrorNotification(request, e);

		request.setAttribute(AppConstants.RI_EXCEPTION, e);
		return AppUtils.getErrorPage();
	} // processFatalError
	
	public String processFatalErrorJSON(HttpServletRequest request, RaptorException e) {
		//Log.write("Fatal error [" + e.getClass().getName() + "]: " + nvl(e.getMessage()), 1);
		logger.error(EELFLoggerDelegate.debugLogger, ("[EXCEPTION ENCOUNTERED IN RAPTOR] Fatal error [" + e.getClass().getName() + "]: " + nvl(e.getMessage())+" "+ getSessionLog(request) + e.getMessage()),AlarmSeverityEnum.MAJOR);
		if (e instanceof ReportSQLException) {
			String errorSQL = ((ReportSQLException) e).getReportSQL();
			if (nvl(errorSQL).length() > 0)
				request.setAttribute("c_error_sql", errorSQL);
		} // if
		//AppUtils.processErrorNotification(request, e);

		request.setAttribute(AppConstants.RI_EXCEPTION, e);
		ErrorJSONRuntime errorJSONRuntime = new ErrorJSONRuntime();
		errorJSONRuntime.setErrormessage(e.toString());
		errorJSONRuntime.setStacktrace(getStackTrace(e));
		ObjectMapper mapper = new ObjectMapper();
		//mapper.setVisibility(JsonMethod.FIELD, Visibility.ANY);
		//mapper.setVisibilityChecker(mapper.getVisibilityChecker().with(JsonAutoDetect.Visibility.NONE));
		mapper.configure(SerializationFeature.FAIL_ON_EMPTY_BEANS, false);
		mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false);
		String jsonInString = "";
		try {
			jsonInString = mapper.writerWithDefaultPrettyPrinter().writeValueAsString(errorJSONRuntime);
		} catch (Exception ex) {
			ex.printStackTrace();
			
		}
		return jsonInString;
	} // processFatalError
	
	  public static String getStackTrace(Throwable aThrowable) {
		    Writer result = new StringWriter();
		    PrintWriter printWriter = new PrintWriter(result);
		    aThrowable.printStackTrace(printWriter);
		    return result.toString();
		  }	
	public String processFatalErrorWMenu(HttpServletRequest request, RaptorException e) {
		//Log.write("Fatal error [" + e.getClass().getName() + "]: " + nvl(e.getMessage()), 1);
		logger.error(EELFLoggerDelegate.debugLogger, ("[EXCEPTION ENCOUNTERED IN RAPTOR] Fatal error [" + e.getClass().getName() + "]: " + nvl(e.getMessage())+" "+ getSessionLog(request) + e.getMessage()),AlarmSeverityEnum.MAJOR);
		if (e instanceof ReportSQLException) {
			String errorSQL = ((ReportSQLException) e).getReportSQL();
			if (nvl(errorSQL).length() > 0)
				request.setAttribute("c_error_sql", errorSQL);
		} // if
		AppUtils.processErrorNotification(request, e);

		request.setAttribute(AppConstants.RI_EXCEPTION, e);
		return AppUtils.getErrorPageWMenu();
	} // processFatalError
	
} // ErrorHandler