Blame view

src/com/ectrip/cyt/zxing/camera/CameraConfigurationManager.java 9.45 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
  /*
   * Copyright (C) 2010 ZXing authors
   *
   * 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 com.ectrip.cyt.zxing.camera;
  
  import java.lang.reflect.Method;
  import java.util.regex.Pattern;
  
  import android.content.Context;
  import android.graphics.Point;
  import android.hardware.Camera;
  import android.os.Build;
  import android.view.Display;
  import android.view.WindowManager;
  
  import com.ectrip.cyt.constant.DeviceType;
  import com.ectrip.cyt.utils.LogUtil;
  import com.ectrip.cyt.utils.SharedPreferences2Obj;
  
  @SuppressWarnings({"deprecation" })
  final class CameraConfigurationManager {
  
  	private final String TAG = CameraConfigurationManager.class.getSimpleName();
  
  	private final int TEN_DESIRED_ZOOM = 27;
  	private final int DESIRED_SHARPNESS = 30;
  
  	private final Pattern COMMA_PATTERN = Pattern.compile(",");
  
  	private Point screenResolution;
  	private Point cameraResolution;
  	private int previewFormat;
  	private String previewFormatString;
  
  	/**
  	 * Reads, one time, values from the camera that are needed by the app.
  	 */
  	void initFromCameraParameters(Camera camera, Context context) {
  		Camera.Parameters parameters = camera.getParameters();
  		previewFormat = parameters.getPreviewFormat();
  		previewFormatString = parameters.get("preview-format");
  		LogUtil.d(TAG, "Default preview format: " + previewFormat + '/'
  				+ previewFormatString);
  		WindowManager manager = (WindowManager) context
  				.getSystemService(Context.WINDOW_SERVICE);
  		Display display = manager.getDefaultDisplay();
  		screenResolution = new Point(display.getWidth(), display.getHeight());
  		LogUtil.d(TAG, "Screen resolution: " + screenResolution);
  		cameraResolution = getCameraResolution(parameters, screenResolution);
  		LogUtil.d(TAG, "Camera resolution: " + screenResolution);
  	}
  
  	/**
  	 * Sets the camera up to take preview images which are used for both preview
  	 * and decoding. We detect the preview format here so that
  	 * buildLuminanceSource() can build an appropriate LuminanceSource subclass.
  	 * In the future we may want to force YUV420SP as it's the smallest, and the
  	 * planar Y can be used for barcode scanning without a copy in some cases.
  	 */
  	void setDesiredCameraParameters(Camera camera, Context context) {
  		Camera.Parameters parameters = camera.getParameters();
  		LogUtil.d(TAG, "Setting preview size: " + cameraResolution);
  		parameters.setPreviewSize(cameraResolution.x, cameraResolution.y);
  		setFlash(parameters);
  		setZoom(parameters);
  		// setSharpness(parameters);
  		// modify here
  
  		// camera.setDisplayOrientation(90);
  		// 兼容2.1
  		Integer type = SharedPreferences2Obj.getInstance(context)
  				.setName("MachineType").getObject("type", Integer.class);
  		if (type == DeviceType.HANDSET.getValue()
dc94caf7   黄灿宏   畅游通核销app: 1.增加RSK...
87
  				|| type == DeviceType.MOBILE.getValue()||type == DeviceType.BASEWIN_REB_POS.getValue()||type == DeviceType.ID_CARD_POS_RSK.getValue()) {
3c2353cd   杜方   1、畅游通核销app源码提交;
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
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
  			setDisplayOrientation(camera, 90);
  		}
  		camera.setParameters(parameters);
  	}
  
  	Point getCameraResolution() {
  		return cameraResolution;
  	}
  
  	Point getScreenResolution() {
  		return screenResolution;
  	}
  
  	int getPreviewFormat() {
  		return previewFormat;
  	}
  
  	String getPreviewFormatString() {
  		return previewFormatString;
  	}
  
  	private Point getCameraResolution(Camera.Parameters parameters,
  									  Point screenResolution) {
  
  		String previewSizeValueString = parameters.get("preview-size-values");
  		// saw this on Xperia
  		if (previewSizeValueString == null) {
  			previewSizeValueString = parameters.get("preview-size-value");
  		}
  
  		Point cameraResolution = null;
  
  		if (previewSizeValueString != null) {
  			LogUtil.d(TAG, "preview-size-values parameter: "
  					+ previewSizeValueString);
  			cameraResolution = findBestPreviewSizeValue(previewSizeValueString,
  					screenResolution);
  		}
  
  		if (cameraResolution == null) {
  			// Ensure that the camera resolution is a multiple of 8, as the
  			// screen may not be.
  			cameraResolution = new Point((screenResolution.x >> 3) << 3,
  					(screenResolution.y >> 3) << 3);
  		}
  		return cameraResolution;
  	}
  
  	private Point findBestPreviewSizeValue(CharSequence previewSizeValueString,
  										   Point screenResolution) {
  		int bestX = 0;
  		int bestY = 0;
  		int diff = Integer.MAX_VALUE;
  		for (String previewSize : COMMA_PATTERN.split(previewSizeValueString)) {
  
  			previewSize = previewSize.trim();
  			int dimPosition = previewSize.indexOf('x');
  			if (dimPosition < 0) {
  				LogUtil.w(TAG, "Bad preview-size: " + previewSize);
  				continue;
  			}
  
  			int newX;
  			int newY;
  			try {
  				newX = Integer.parseInt(previewSize.substring(0, dimPosition));
  				newY = Integer.parseInt(previewSize.substring(dimPosition + 1));
  			} catch (NumberFormatException nfe) {
  				LogUtil.w(TAG, "Bad preview-size: " + previewSize);
  				continue;
  			}
  
  			int newDiff = Math.abs(newX - screenResolution.x)
  					+ Math.abs(newY - screenResolution.y);
  			if (newDiff == 0) {
  				bestX = newX;
  				bestY = newY;
  				break;
  			} else if (newDiff < diff) {
  				bestX = newX;
  				bestY = newY;
  				diff = newDiff;
  			}
  
  		}
  
  		if (bestX > 0 && bestY > 0) {
  			return new Point(bestX, bestY);
  		}
  		return null;
  	}
  
  	private int findBestMotZoomValue(CharSequence stringValues,
  									 int tenDesiredZoom) {
  		int tenBestValue = 0;
  		for (String stringValue : COMMA_PATTERN.split(stringValues)) {
  			stringValue = stringValue.trim();
  			double value;
  			try {
  				value = Double.parseDouble(stringValue);
  			} catch (NumberFormatException nfe) {
  				return tenDesiredZoom;
  			}
  			int tenValue = (int) (10.0 * value);
  			if (Math.abs(tenDesiredZoom - value) < Math.abs(tenDesiredZoom
  					- tenBestValue)) {
  				tenBestValue = tenValue;
  			}
  		}
  		return tenBestValue;
  	}
  
  	/**
  	 * @param parameters
  	 *            FIXME: This is a hack to turn the flash off on the Samsung
  	 *            Galaxy. And this is a hack-hack to work around a different
  	 *            value on the Behold II Restrict Behold II check to Cupcake,
  	 *            per Samsung's advice if (Build.MODEL.contains("Behold II") &&
  	 *            CameraManager.SDK_INT == Build.VERSION_CODES.CUPCAKE) {
  	 */
  	private void setFlash(Camera.Parameters parameters) {
  		int sdkInt;
  		try {
  			sdkInt = Integer.parseInt(Build.VERSION.SDK);
  		} catch (NumberFormatException nfe) {
  			// Just to be safe
  			sdkInt = 10000;
  		}
  		if (Build.MODEL.contains("Behold II") && sdkInt== 3) { // 3
  			parameters.set("flash-value", 1);
  		} else {
  			parameters.set("flash-value", 2);
  		}
  		// This is the standard setting to turn the flash off that all devices
  		// should honor.
  		parameters.set("flash-mode", "off");
  	}
  
  	private void setZoom(Camera.Parameters parameters) {
  
  		String zoomSupportedString = parameters.get("zoom-supported");
  		if (zoomSupportedString != null
  				&& !Boolean.parseBoolean(zoomSupportedString)) {
  			return;
  		}
  
  		int tenDesiredZoom = TEN_DESIRED_ZOOM;
  
  		String maxZoomString = parameters.get("max-zoom");
  		if (maxZoomString != null) {
  			try {
  				int tenMaxZoom = (int) (10.0 * Double
  						.parseDouble(maxZoomString));
  				if (tenDesiredZoom > tenMaxZoom) {
  					tenDesiredZoom = tenMaxZoom;
  				}
  			} catch (NumberFormatException nfe) {
  				LogUtil.w(TAG, "Bad max-zoom: " + maxZoomString);
  			}
  		}
  
  		String takingPictureZoomMaxString = parameters
  				.get("taking-picture-zoom-max");
  		if (takingPictureZoomMaxString != null) {
  			try {
  				int tenMaxZoom = Integer.parseInt(takingPictureZoomMaxString);
  				if (tenDesiredZoom > tenMaxZoom) {
  					tenDesiredZoom = tenMaxZoom;
  				}
  			} catch (NumberFormatException nfe) {
  				LogUtil.w(TAG, "Bad taking-picture-zoom-max: "
  						+ takingPictureZoomMaxString);
  			}
  		}
  
  		String motZoomValuesString = parameters.get("mot-zoom-values");
  		if (motZoomValuesString != null) {
  			tenDesiredZoom = findBestMotZoomValue(motZoomValuesString,
  					tenDesiredZoom);
  		}
  
  		String motZoomStepString = parameters.get("mot-zoom-step");
  		if (motZoomStepString != null) {
  			try {
  				double motZoomStep = Double.parseDouble(motZoomStepString
  						.trim());
  				int tenZoomStep = (int) (10.0 * motZoomStep);
  				if (tenZoomStep > 1) {
  					tenDesiredZoom -= tenDesiredZoom % tenZoomStep;
  				}
  			} catch (NumberFormatException nfe) {
  				// continue
  			}
  		}
  
  		// Set zoom. This helps encourage the user to pull back.
  		// Some devices like the Behold have a zoom parameter
  		if (maxZoomString != null || motZoomValuesString != null) {
  			parameters.set("zoom", String.valueOf(tenDesiredZoom / 10.0));
  		}
  
  		// Most devices, like the Hero, appear to expose this zoom parameter.
  		// It takes on values like "27" which appears to mean 2.7x zoom
  		if (takingPictureZoomMaxString != null) {
  			parameters.set("taking-picture-zoom", tenDesiredZoom);
  		}
  	}
  
  	public int getDesiredSharpness() {
  		return DESIRED_SHARPNESS;
  	}
  
  	/**
  	 * compatible 1.6
  	 *
  	 * @param camera
  	 * @param angle
  	 */
  	protected void setDisplayOrientation(Camera camera, int angle) {
  		Method downPolymorphic;
  		try {
  			downPolymorphic = camera.getClass().getMethod(
  					"setDisplayOrientation", new Class[] { int.class });
  			if (downPolymorphic != null)
  				downPolymorphic.invoke(camera, new Object[] { angle });
  		} catch (Exception e1) {
  		}
  	}
  
  }