Blame view

src/com/ectrip/cyt/exceptionsave/init/InitAppValue.java 6.78 KB
3c2353cd   杜方   1、畅游通核销app源码提交;
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
  package com.ectrip.cyt.exceptionsave.init;
  
  import org.dom4j.Element;
  
  import android.content.Context;
  
  /***
   <?xml version="1.0" encoding="utf-8"?>
   <Application-configuration xmlns:android="http://schemas.android.com/apk/res/android">
   <!--是否测试环境-->
   <IsTestEnvironment value="true" />
   <!--是否显示测试Toast-->
   <IsDebugToast value="true" />
   <!--是否显示测试数据-->
   <IsDebugLog value="true" />
   <!--是否使用测试数据-->
   <IsDebugData value="false" />
   <!--是否单元测试-->
   <IsUnitTest value="false" />
   <!--字符编码-->
   <Charset value="utf-8" />
  
   <!--是否在SdCard上生成日志-->
   <IsCreateFileLog value="true" />
   <!--SdCard上生成日志路径-->
   <CreateFileLogPath value="\Log\" />
  
   <!--是否在崩溃时掉以html或者方式打开-->
   <IsOpenSystemCrash value="true" />
   <!--是否在崩溃时发送日志到指定邮箱-->
   <IsSendErrorToEmail value="true" />
   <!--发送邮箱的用户名-->
   <SendMailHostUrl value="stmp.qq.com" />
   <!--发送邮箱的用户名-->
   <SendMailUserName value="" />
   <!--发送邮箱的密码-->
   <SendMailPassWord value="" />
   <!--要发送的邮箱-->
   <ReceiveMailUserName value="" />
  
   </Application-configuration>
   ***/
  public class InitAppValue {
  
  	public static void init(Context context){
  		InitAppValue.context=context;
  	};
  	private static Context context;
  	private static InitAppValue initAppValue;
  	public static InitAppValue getInstance(){
  		return initAppValue==null?initAppValue=new InitAppValue(context):initAppValue;
  	}
  
  	public InitAppValue(Context context) {
  		// TODO Auto-generated constructor stub
  //		element = XmlElementFactory.decodeRoot(context.getResources()
  //				.openRawResource(R.raw.configuration_appinit));
  
  //		isTestEnvironment=getElementBoolean("IsTestEnvironment");
  		isTestEnvironment=false;
  //		isDebugToast=getElementBoolean("IsDebugToast");
  		isDebugToast=true;
  //		isDebugLog=getElementBoolean("IsDebugLog");
  		isDebugLog=true;
  //		isDebugData=getElementBoolean("IsDebugData");
  		isDebugData=false;
  //		isUnitTest=getElementBoolean("IsUnitTest");
  		isUnitTest=true;
  //		charset=getElementValue("Charset");
  		charset="utf-8";
  //		isCreateFileLog=getElementBoolean("IsCreateFileLog");
  		isCreateFileLog=true;
  //		createFileLogPath=getElementValue("CreateFileLogPath");
  		createFileLogPath="\\Log\\";
  //		isOpenSystemCrash=getElementBoolean("IsOpenSystemCrash");
  		isOpenSystemCrash=true;
  //		isSendErrorToEmail=getElementBoolean("IsSendErrorToEmail");
  		isSendErrorToEmail=true;
  //		sendMailHostUrl=getElementValue("SendMailHostUrl");
  		sendMailHostUrl="";
  //		sendMailUserName=getElementValue("SendMailUserName");
  		sendMailUserName="";
  //		sendMailPassWord=getElementValue("SendMailPassWord");
  		sendMailPassWord="";
  //		receiveMailUserName=getElementValue("ReceiveMailUserName");
  		receiveMailUserName="";
  	}
  
  
  	private Element element;
  
  	private boolean isTestEnvironment;
  	private boolean isDebugToast;
  	private boolean isDebugLog;
  	private boolean isDebugData;
  	private boolean isUnitTest;
  	private String charset;
  	private boolean isCreateFileLog;
  	private String createFileLogPath;
  	private boolean isOpenSystemCrash;
  	private boolean isSendErrorToEmail;
  	private String sendMailHostUrl;
  	private String sendMailUserName;
  	private String sendMailPassWord;
  	private String receiveMailUserName;
  
  	private boolean getElementBoolean(String key){
  		return Boolean.valueOf(((Element)element.selectSingleNode("//"+key)).attributeValue("value"));
  
  	}
  
  	private String getElementValue(String key){
  		return ((Element)element.selectSingleNode("//"+key)).attributeValue("value");
  
  	}
  
  	public static Context getContext() {
  		return context;
  	}
  
  	public static void setContext(Context context) {
  		InitAppValue.context = context;
  	}
  
  	public InitAppValue getInitAppValue() {
  		return initAppValue;
  	}
  
  	public Element getElement() {
  		return element;
  	}
  
  	public void setElement(Element element) {
  		this.element = element;
  	}
  
  	public boolean isTestEnvironment() {
  		return isTestEnvironment;
  	}
  
  	public void setTestEnvironment(boolean isTestEnvironment) {
  		this.isTestEnvironment = isTestEnvironment;
  	}
  
  	public boolean isDebugToast() {
  		return isDebugToast;
  	}
  
  	public void setDebugToast(boolean isDebugToast) {
  		this.isDebugToast = isDebugToast;
  	}
  
  	public boolean isDebugLog() {
  		return isDebugLog;
  	}
  
  	public void setDebugLog(boolean isDebugLog) {
  		this.isDebugLog = isDebugLog;
  	}
  
  	public boolean isDebugData() {
  		return isDebugData;
  	}
  
  	public void setDebugData(boolean isDebugData) {
  		this.isDebugData = isDebugData;
  	}
  
  	public boolean isUnitTest() {
  		return isUnitTest;
  	}
  
  	public void setUnitTest(boolean isUnitTest) {
  		this.isUnitTest = isUnitTest;
  	}
  
  	public String getCharset() {
  		return charset;
  	}
  
  	public void setCharset(String charset) {
  		this.charset = charset;
  	}
  
  	public boolean isCreateFileLog() {
  		return isCreateFileLog;
  	}
  
  	public void setCreateFileLog(boolean isCreateFileLog) {
  		this.isCreateFileLog = isCreateFileLog;
  	}
  
  	public String getCreateFileLogPath() {
  		return createFileLogPath;
  	}
  
  	public void setCreateFileLogPath(String createFileLogPath) {
  		this.createFileLogPath = createFileLogPath;
  	}
  
  	public boolean isOpenSystemCrash() {
  		return isOpenSystemCrash;
  	}
  
  	public void setOpenSystemCrash(boolean isOpenSystemCrash) {
  		this.isOpenSystemCrash = isOpenSystemCrash;
  	}
  
  	public boolean isSendErrorToEmail() {
  		return isSendErrorToEmail;
  	}
  
  	public void setSendErrorToEmail(boolean isSendErrorToEmail) {
  		this.isSendErrorToEmail = isSendErrorToEmail;
  	}
  
  	public String getSendMailHostUrl() {
  		return sendMailHostUrl;
  	}
  
  	public void setSendMailHostUrl(String sendMailHostUrl) {
  		this.sendMailHostUrl = sendMailHostUrl;
  	}
  
  	public String getSendMailUserName() {
  		return sendMailUserName;
  	}
  
  	public void setSendMailUserName(String sendMailUserName) {
  		this.sendMailUserName = sendMailUserName;
  	}
  
  	public String getSendMailPassWord() {
  		return sendMailPassWord;
  	}
  
  	public void setSendMailPassWord(String sendMailPassWord) {
  		this.sendMailPassWord = sendMailPassWord;
  	}
  
  	public String getReceiveMailUserName() {
  		return receiveMailUserName;
  	}
  
  	public void setReceiveMailUserName(String receiveMailUserName) {
  		this.receiveMailUserName = receiveMailUserName;
  	}
  
  	@Override
  	public String toString() {
  		return "InitAppValue [isTestEnvironment=" + isTestEnvironment
  				+ ", isDebugToast=" + isDebugToast + ", isDebugLog="
  				+ isDebugLog + ", isDebugData=" + isDebugData + ", isUnitTest="
  				+ isUnitTest + ", charset=" + charset + ", isCreateFileLog="
  				+ isCreateFileLog + ", createFileLogPath=" + createFileLogPath
  				+ ", isOpenSystemCrash=" + isOpenSystemCrash
  				+ ", isSendErrorToEmail=" + isSendErrorToEmail
  				+ ", sendMailHostUrl=" + sendMailHostUrl
  				+ ", sendMailUserName=" + sendMailUserName
  				+ ", sendMailPassWord=" + sendMailPassWord
  				+ ", receiveMailUserName=" + receiveMailUserName + "]";
  	}
  }