⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 missue.java

📁 大家共享愉快, 共享愉快, 共享愉快, 共享愉快,共享愉快
💻 JAVA
字号:
/******************************************************************************
 * The contents of this file are subject to the   Compiere License  Version 1.1
 * ("License"); You may not use this file except in compliance with the License
 * You may obtain a copy of the License at http://www.compiere.org/license.html
 * Software distributed under the License is distributed on an  "AS IS"  basis,
 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for
 * the specific language governing rights and limitations under the License.
 * The Original Code is Compiere ERP & CRM Smart Business Solution. The Initial
 * Developer of the Original Code is Jorg Janke. Portions created by Jorg Janke
 * are Copyright (C) 1999-2005 Jorg Janke.
 * All parts are Copyright (C) 1999-2005 ComPiere, Inc.  All Rights Reserved.
 * Contributor(s): ______________________________________.
 *****************************************************************************/
package org.compiere.model;

import java.io.*;
import java.net.*;
import java.sql.*;
import java.util.*;
import java.util.logging.*;

import org.compiere.*;
import org.compiere.util.*;

/**
 * 	Issue Report Model
 *	
 *  @author Jorg Janke
 *  @version $Id: MIssue.java,v 1.4 2006/01/28 01:29:37 jjanke Exp $
 */
public class MIssue extends X_AD_Issue
{
	/**
	 * 	Create and report issue
	 *	@param record log record
	 *	@return reported issue or null
	 */
	public static MIssue create (LogRecord record)
	{
		s_log.config(record.getMessage());
		MSystem system = MSystem.get(Env.getCtx()); 
		if (!DB.isConnected() 
			|| !system.isAutoErrorReport())
			return null;
		//
		MIssue issue = new MIssue(record);
		String error = issue.report();
		issue.save();
		if (error != null)
			return null;
		return issue;
	}	//	create
	
	/**
	 * 	Create from decoded hash map string
	 *	@param ctx context
	 *	@param hexInput hex string
	 *	@return issue
	 */
	@SuppressWarnings("unchecked")
	public static MIssue create (Properties ctx, String hexInput)
	{
		HashMap hmIn = null;
		try		//	encode in report
		{
			byte[] byteArray = Secure.convertHexString(hexInput);	
			ByteArrayInputStream bIn = new ByteArrayInputStream(byteArray);
			ObjectInputStream oIn = new ObjectInputStream(bIn);
			hmIn = (HashMap)oIn.readObject();
		
		}
		catch (Exception e) 
		{
			s_log.log(Level.SEVERE, "",e);
			return null;
		}

		MIssue issue = new MIssue(ctx, (HashMap<String,String>)hmIn);
		return issue;
	}	//	create
	
	/**	Logger	*/
	private static CLogger s_log = CLogger.getCLogger (MIssue.class);
	
	/** Answer Delimiter		*/
	public static String	DELIMITER = "|";
	
	/**************************************************************************
	 * 	Standard Constructor
	 *	@param ctx context
	 *	@param AD_Issue_ID issue
	 *	@param trxName transaction
	 */
	public MIssue (Properties ctx, int AD_Issue_ID, String trxName)
	{
		super (ctx, AD_Issue_ID, trxName);
		if (AD_Issue_ID == 0)
		{
			setProcessed (false);	// N
			setSystemStatus(SYSTEMSTATUS_Evaluation);
			try
			{
				init(ctx);
			}
			catch (Exception e)
			{
				e.getStackTrace();
			}
		}
	}	//	MIssue

	/**
	 * 	Load Constructor
	 *	@param ctx context
	 *	@param rs result set
	 *	@param trxName trx
	 */
	public MIssue (Properties ctx, ResultSet rs, String trxName)
	{
		super (ctx, rs, trxName);
	}	//	MIssue
	
	/**
	 * 	Log Record Constructor
	 *	@param record
	 */
	public MIssue (LogRecord record)
	{
		this (Env.getCtx(), 0, null);
		String summary = record.getMessage();
		setSourceClassName(record.getSourceClassName());
		setSourceMethodName(record.getSourceMethodName());
		setLoggerName(record.getLoggerName());
		Throwable t = record.getThrown();
		if (t != null)
		{
			if (summary != null && summary.length() > 0)
				summary = t.toString() + " " + summary;
			if (summary == null || summary.length() == 0)
				summary = t.toString();
			//
			StringBuffer error = new StringBuffer();
			StackTraceElement[] tes = t.getStackTrace();
			int count = 0;
			for (int i = 0; i < tes.length; i++)
			{
				StackTraceElement element = tes[i];
				String s = element.toString();
				if (s.indexOf("compiere") != -1)
				{
					error.append(s).append("\n");
					if (count == 0)
					{
						String source = element.getClassName()
							+ "." + element.getMethodName();
						setSourceClassName(source);
						setLineNo(element.getLineNumber());
					}
					count++;
				}
				if (count > 5 || error.length() > 2000)
					break;
			}
			setErrorTrace(error.toString());
			//	Stack
			CharArrayWriter cWriter = new CharArrayWriter();
			PrintWriter pWriter = new PrintWriter(cWriter);
			t.printStackTrace(pWriter);
			setStackTrace(cWriter.toString());
		}
		if (summary == null || summary.length() == 0)
			summary = "??";
		setIssueSummary(summary);
		setRecord_ID(1);
	}	//	MIssue

	/**
	 * 	HashMap Constructor
	 *	@param ctx context
	 *	@param hmIn hash map
	 */
	public MIssue (Properties ctx, HashMap<String,String> hmIn)
	{
		super (ctx, 0, null);
		load(hmIn);
		setRecord_ID(0);
	}	//	MIssue

	/**
	 * 	Initialize
	 */
	private void init(Properties ctx) throws Exception
	{
		MSystem system = MSystem.get(ctx);
		setName(system.getName());
		setUserName(system.getUserName());
		setDBAddress(system.getDBAddress());
		setSystemStatus(system.getSystemStatus());
		setReleaseNo(system.getReleaseNo());	//	DB
		setVersion(Compiere.DATE_VERSION);		//	Code
		setDatabaseInfo(DB.getDatabaseInfo());
		setOperatingSystemInfo(Compiere.getOSInfo());
		setJavaInfo(Compiere.getJavaInfo());
		setReleaseTag(Compiere.getImplementationVersion());
		setLocal_Host(InetAddress.getLocalHost().toString());
		if (system.isAllowStatistics())
		{
			setStatisticsInfo(system.getStatisticsInfo(true));
			setProfileInfo(system.getProfileInfo(true));
		}
	}	//	init
	
	/** Length of Info Fields			*/
	private static final int	INFOLENGTH = 2000;
	
	/**
	 * 	Set Issue Summary.
	 * 	Truncate it to 2000 char
	 *	@param IssueSummary summary
	 */
	public void setIssueSummary (String IssueSummary)
	{
		if (IssueSummary == null)
			return;
		IssueSummary = IssueSummary.replace("java.lang.", "");
		IssueSummary = IssueSummary.replace("java.sql.", "");
		if (IssueSummary.length() > INFOLENGTH)
			IssueSummary = IssueSummary.substring(0,INFOLENGTH-1);
		super.setIssueSummary (IssueSummary);
	}	//	setIssueSummary
	
	/**
	 * 	Set Stack Trace.
	 * 	Truncate it to 2000 char
	 *	@param StackTrace trace
	 */
	public void setStackTrace (String StackTrace)
	{
		if (StackTrace == null)
			return;
		StackTrace = StackTrace.replace("java.lang.", "");
		StackTrace = StackTrace.replace("java.sql.", "");
		if (StackTrace.length() > INFOLENGTH)
			StackTrace = StackTrace.substring(0,INFOLENGTH-1);
		super.setStackTrace (StackTrace);
	}	//	setStackTrace
	
	
	/**
	 * 	Set Error Trace.
	 * 	Truncate it to 2000 char
	 *	@param ErrorTrace trace
	 */
	public void setErrorTrace (String ErrorTrace)
	{
		if (ErrorTrace == null)
			return;
		ErrorTrace = ErrorTrace.replace("java.lang.", "");
		ErrorTrace = ErrorTrace.replace("java.sql.", "");
		if (ErrorTrace.length() > INFOLENGTH)
			ErrorTrace = ErrorTrace.substring(0,INFOLENGTH-1);
		super.setErrorTrace (ErrorTrace);
	}	//	setErrorTrace

	/**
	 * 	Add Comments
	 *	@param Comments
	 */
	public void addComments (String Comments)
	{
		if (Comments == null || Comments.length() == 0)
			return;
		String old = getComments();
		if (old == null || old.length() == 0)
			setComments (Comments);
		else if (!old.equals(Comments) 
			&& old.indexOf(Comments) == -1)		//	 something new
			setComments (Comments + " | " + old);
	}	//	addComments
	
	/**
	 * 	Set Comments.
	 * 	Truncate it to 2000 char
	 *	@param Comments
	 */
	public void setComments (String Comments)
	{
		if (Comments == null)
			return;
		if (Comments.length() > INFOLENGTH)
			Comments = Comments.substring(0,INFOLENGTH-1);
		super.setComments (Comments);
	}	//	setComments
	
	/**
	 * 	Set ResponseText.
	 * 	Truncate it to 2000 char
	 *	@param ResponseText
	 */
	public void setResponseText (String ResponseText)
	{
		if (ResponseText == null)
			return;
		if (ResponseText.length() > INFOLENGTH)
			ResponseText = ResponseText.substring(0,INFOLENGTH-1);
		super.setResponseText(ResponseText);
	}	//	setResponseText

	/**
	 * 	Process Request.
	 * 	@return answer
	 */
	public String process()
	{
		MIssueProject.get(this);	//	sets also Asset
		MIssueSystem.get(this);
		MIssueUser.get(this);
		//
	//	setR_IssueKnown_ID(0);
	//	setR_Request_ID(0);
		return createAnswer();
	}	//	process
	
	/**
	 * 	Create Answer to send to User
	 *	@return answer
	 */
	public String createAnswer()
	{
		StringBuffer sb = new StringBuffer();
		if (getA_Asset_ID() != 0)
			sb.append("Sign up for implementation and development support at http://www.compiere-china.com to receive answers.");
		else
		{
			if (getR_IssueKnown_ID() != 0)
				sb.append("Known Issue\n");
			if (getR_Request_ID() != 0)
				sb.append("Request: ")
					.append(getRequest().getDocumentNo())
					.append("\n");
		}
		return sb.toString();
	}	//	createAnswer
	
	/**
	 * 	Get Request
	 *	@return request or null
	 */
	public X_R_Request getRequest()
	{
		if (getR_Request_ID() == 0)
			return null;
		return new X_R_Request(getCtx(), getR_Request_ID(), null);
	}	//	getRequestDocumentNo

	/**
	 * 	Get Request Document No
	 *	@return request Document No
	 */
	public String getRequestDocumentNo()
	{
		if (getR_Request_ID() == 0)
			return "";
		X_R_Request r = getRequest();
		return r.getDocumentNo();
	}	//	getRequestDocumentNo
	
	/**
	 * 	Get System Status
	 *	@return system status
	 */
	public String getSystemStatus ()
	{
		String s = super.getSystemStatus ();
		if (s == null || s.length() == 0)
			s = SYSTEMSTATUS_Evaluation;
		return s;
	}	//	getSystemStatus
	
	
	/**************************************************************************
	 * 	Report/Update Issue.
	 *	@return error message
	 */
	public String report()
	{
		StringBuffer parameter = new StringBuffer("?");
		if (getRecord_ID() == 0)	//	don't report
			return "ID=0";
		if (getRecord_ID() == 1)	//	new
		{
			parameter.append("ISSUE=");
			HashMap htOut = get_HashMap();
			try		//	deserializing in create
			{
				ByteArrayOutputStream bOut = new ByteArrayOutputStream();
				ObjectOutput oOut = new ObjectOutputStream(bOut);
				oOut.writeObject(htOut);
				oOut.flush();
				String hexString = Secure.convertToHexString(bOut.toByteArray());
				parameter.append(hexString);
			}
			catch (Exception e) 
			{
				log.severe(e.getLocalizedMessage());
				return "New-" + e.getLocalizedMessage();
			}
		}
		else	//	existing
		{
			try
			{
				parameter.append("RECORDID=").append(getRecord_ID());
				parameter.append("&DBADDRESS=").append(URLEncoder.encode(getDBAddress(), "UTF-8"));
				parameter.append("&COMMENTS=").append(URLEncoder.encode(getComments(), "UTF-8"));
			}
			catch (Exception e) 
			{
				log.severe(e.getLocalizedMessage());
				return "Update-" + e.getLocalizedMessage();
			}
		}
		
		InputStreamReader in = null;
		String target = "http://dev1/wstore/issueReportServlet";
		try		//	Send GET Request
		{
			StringBuffer urlString = new StringBuffer(target)
				.append(parameter);
			URL url = new URL (urlString.toString());
			URLConnection uc = url.openConnection();
			in = new InputStreamReader(uc.getInputStream());
		}
		catch (Exception e)
		{
			String msg = "Cannot connect to http://" + target; 
			if (e instanceof FileNotFoundException || e instanceof ConnectException)
				msg += "\nServer temporarily down - Please try again later";
			else
			{
				msg += "\nCheck connection - " + e.getLocalizedMessage();
				log.log(Level.FINE, msg);
			}
			return msg;
		}
		return readResponse(in);
	}	//	report
	
	/**
	 * 	Read Response
	 *	@param in input stream
	 *	@return error message
	 */
	private String readResponse(InputStreamReader in)
	{
		StringBuffer sb = new StringBuffer();
		int Record_ID = 0;
		String ResponseText = null;
		String RequestDocumentNo = null;
		try		//	Get Answer
		{
			int c;
			while ((c = in.read()) != -1)
				sb.append((char)c);
			in.close();
			log.fine(sb.toString());
			String clear = URLDecoder.decode(sb.toString(), "UTF-8");
			log.fine(clear);
			//	Interpret Data
			StringTokenizer st = new StringTokenizer(clear, DELIMITER);
			while (st.hasMoreElements())
			{
				String pair = st.nextToken();
				try
				{
					int index = pair.indexOf("=");
					if (pair.startsWith("RECORDID="))
					{
						String info = pair.substring(index+1);
						Record_ID = Integer.parseInt(info);
					}
					else if (pair.startsWith("RESPONSE="))
						ResponseText = pair.substring(index+1);
					else if (pair.startsWith("DOCUMENTNO="))
						RequestDocumentNo = pair.substring(index+1);
				}
				catch (Exception e)
				{
					log.warning(pair + " - " + e.getMessage());
				}
			}
		}
		catch (Exception ex)
		{
			log.log(Level.FINE, "", ex);
			return "Reading-" + ex.getLocalizedMessage();
		}

		if (Record_ID != 0)
			setRecord_ID(Record_ID);
		if (ResponseText != null)
			setResponseText(ResponseText);
		if (RequestDocumentNo != null)
			setRequestDocumentNo(RequestDocumentNo);
		return null;
	}	//	readResponse
	
	/**
	 * 	String Representation
	 *	@return info
	 */
	public String toString ()
	{
		StringBuffer sb = new StringBuffer ("MIssue[");
		sb.append (get_ID())
			.append ("-").append (getIssueSummary())
			.append (",Record=").append (getRecord_ID())
			.append ("]");
		return sb.toString ();
	}	//	toString
	
	
}	//	MIssue

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -