1 /*
2 **
3 ** Copyright 2008, The Android Open Source Project
4 **
5 ** Licensed under the Apache License, Version 2.0 (the "License");
6 ** you may not use this file except in compliance with the License.
7 ** You may obtain a copy of the License at
8 **
9 **     http://www.apache.org/licenses/LICENSE-2.0
10 **
11 ** Unless required by applicable law or agreed to in writing, software
12 ** distributed under the License is distributed on an "AS IS" BASIS,
13 ** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 ** See the License for the specific language governing permissions and
15 ** limitations under the License.
16 */
17 
18 //#define LOG_NDEBUG 0
19 #define LOG_TAG "Camera-JNI"
20 #include <utils/Log.h>
21 
22 #include "jni.h"
23 #include <nativehelper/JNIHelp.h>
24 #include "core_jni_helpers.h"
25 #include <android_runtime/android_graphics_SurfaceTexture.h>
26 #include <android_runtime/android_view_Surface.h>
27 
28 #include <cutils/properties.h>
29 #include <utils/Vector.h>
30 #include <utils/Errors.h>
31 
32 #include <gui/GLConsumer.h>
33 #include <gui/Surface.h>
34 #include <camera/Camera.h>
35 #include <binder/IMemory.h>
36 
37 using namespace android;
38 
39 enum {
40     // Keep up to date with Camera.java
41     CAMERA_HAL_API_VERSION_NORMAL_CONNECT = -2,
42 };
43 
44 struct fields_t {
45     jfieldID    context;
46     jfieldID    facing;
47     jfieldID    orientation;
48     jfieldID    canDisableShutterSound;
49     jfieldID    face_rect;
50     jfieldID    face_score;
51     jfieldID    face_id;
52     jfieldID    face_left_eye;
53     jfieldID    face_right_eye;
54     jfieldID    face_mouth;
55     jfieldID    rect_left;
56     jfieldID    rect_top;
57     jfieldID    rect_right;
58     jfieldID    rect_bottom;
59     jfieldID    point_x;
60     jfieldID    point_y;
61     jmethodID   post_event;
62     jmethodID   rect_constructor;
63     jmethodID   face_constructor;
64     jmethodID   point_constructor;
65 };
66 
67 static fields_t fields;
68 static Mutex sLock;
69 
70 // provides persistent context for calls from native code to Java
71 class JNICameraContext: public CameraListener
72 {
73 public:
74     JNICameraContext(JNIEnv* env, jobject weak_this, jclass clazz, const sp<Camera>& camera);
~JNICameraContext()75     ~JNICameraContext() { release(); }
76     virtual void notify(int32_t msgType, int32_t ext1, int32_t ext2);
77     virtual void postData(int32_t msgType, const sp<IMemory>& dataPtr,
78                           camera_frame_metadata_t *metadata);
79     virtual void postDataTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr);
80     virtual void postRecordingFrameHandleTimestamp(nsecs_t timestamp, native_handle_t* handle);
81     virtual void postRecordingFrameHandleTimestampBatch(
82             const std::vector<nsecs_t>& timestamps,
83             const std::vector<native_handle_t*>& handles);
84     void postMetadata(JNIEnv *env, int32_t msgType, camera_frame_metadata_t *metadata);
85     void addCallbackBuffer(JNIEnv *env, jbyteArray cbb, int msgType);
86     void setCallbackMode(JNIEnv *env, bool installed, bool manualMode);
getCamera()87     sp<Camera> getCamera() { Mutex::Autolock _l(mLock); return mCamera; }
88     bool isRawImageCallbackBufferAvailable() const;
89     void release();
90 
91 private:
92     void copyAndPost(JNIEnv* env, const sp<IMemory>& dataPtr, int msgType);
93     void clearCallbackBuffers_l(JNIEnv *env, Vector<jbyteArray> *buffers);
94     void clearCallbackBuffers_l(JNIEnv *env);
95     jbyteArray getCallbackBuffer(JNIEnv *env, Vector<jbyteArray> *buffers, size_t bufferSize);
96 
97     jobject     mCameraJObjectWeak;     // weak reference to java object
98     jclass      mCameraJClass;          // strong reference to java class
99     sp<Camera>  mCamera;                // strong reference to native object
100     jclass      mFaceClass;  // strong reference to Face class
101     jclass      mRectClass;  // strong reference to Rect class
102     jclass      mPointClass;  // strong reference to Point class
103     Mutex       mLock;
104 
105     /*
106      * Global reference application-managed raw image buffer queue.
107      *
108      * Manual-only mode is supported for raw image callbacks, which is
109      * set whenever method addCallbackBuffer() with msgType =
110      * CAMERA_MSG_RAW_IMAGE is called; otherwise, null is returned
111      * with raw image callbacks.
112      */
113     Vector<jbyteArray> mRawImageCallbackBuffers;
114 
115     /*
116      * Application-managed preview buffer queue and the flags
117      * associated with the usage of the preview buffer callback.
118      */
119     Vector<jbyteArray> mCallbackBuffers; // Global reference application managed byte[]
120     bool mManualBufferMode;              // Whether to use application managed buffers.
121     bool mManualCameraCallbackSet;       // Whether the callback has been set, used to
122                                          // reduce unnecessary calls to set the callback.
123 };
124 
isRawImageCallbackBufferAvailable() const125 bool JNICameraContext::isRawImageCallbackBufferAvailable() const
126 {
127     return !mRawImageCallbackBuffers.isEmpty();
128 }
129 
get_native_camera(JNIEnv * env,jobject thiz,JNICameraContext ** pContext)130 sp<Camera> get_native_camera(JNIEnv *env, jobject thiz, JNICameraContext** pContext)
131 {
132     sp<Camera> camera;
133     Mutex::Autolock _l(sLock);
134     JNICameraContext* context = reinterpret_cast<JNICameraContext*>(env->GetLongField(thiz, fields.context));
135     if (context != NULL) {
136         camera = context->getCamera();
137     }
138     ALOGV("get_native_camera: context=%p, camera=%p", context, camera.get());
139     if (camera == 0) {
140         jniThrowRuntimeException(env,
141                 "Camera is being used after Camera.release() was called");
142     }
143 
144     if (pContext != NULL) *pContext = context;
145     return camera;
146 }
147 
JNICameraContext(JNIEnv * env,jobject weak_this,jclass clazz,const sp<Camera> & camera)148 JNICameraContext::JNICameraContext(JNIEnv* env, jobject weak_this, jclass clazz, const sp<Camera>& camera)
149 {
150     mCameraJObjectWeak = env->NewGlobalRef(weak_this);
151     mCameraJClass = (jclass)env->NewGlobalRef(clazz);
152     mCamera = camera;
153 
154     jclass faceClazz = env->FindClass("android/hardware/Camera$Face");
155     mFaceClass = (jclass) env->NewGlobalRef(faceClazz);
156 
157     jclass rectClazz = env->FindClass("android/graphics/Rect");
158     mRectClass = (jclass) env->NewGlobalRef(rectClazz);
159 
160     jclass pointClazz = env->FindClass("android/graphics/Point");
161     mPointClass = (jclass) env->NewGlobalRef(pointClazz);
162 
163     mManualBufferMode = false;
164     mManualCameraCallbackSet = false;
165 }
166 
release()167 void JNICameraContext::release()
168 {
169     ALOGV("release");
170     Mutex::Autolock _l(mLock);
171     JNIEnv *env = AndroidRuntime::getJNIEnv();
172 
173     if (mCameraJObjectWeak != NULL) {
174         env->DeleteGlobalRef(mCameraJObjectWeak);
175         mCameraJObjectWeak = NULL;
176     }
177     if (mCameraJClass != NULL) {
178         env->DeleteGlobalRef(mCameraJClass);
179         mCameraJClass = NULL;
180     }
181     if (mFaceClass != NULL) {
182         env->DeleteGlobalRef(mFaceClass);
183         mFaceClass = NULL;
184     }
185     if (mRectClass != NULL) {
186         env->DeleteGlobalRef(mRectClass);
187         mRectClass = NULL;
188     }
189     if (mPointClass != NULL) {
190         env->DeleteGlobalRef(mPointClass);
191         mPointClass = NULL;
192     }
193     clearCallbackBuffers_l(env);
194     mCamera.clear();
195 }
196 
notify(int32_t msgType,int32_t ext1,int32_t ext2)197 void JNICameraContext::notify(int32_t msgType, int32_t ext1, int32_t ext2)
198 {
199     ALOGV("notify");
200 
201     // VM pointer will be NULL if object is released
202     Mutex::Autolock _l(mLock);
203     if (mCameraJObjectWeak == NULL) {
204         ALOGW("callback on dead camera object");
205         return;
206     }
207     JNIEnv *env = AndroidRuntime::getJNIEnv();
208 
209     /*
210      * If the notification or msgType is CAMERA_MSG_RAW_IMAGE_NOTIFY, change it
211      * to CAMERA_MSG_RAW_IMAGE since CAMERA_MSG_RAW_IMAGE_NOTIFY is not exposed
212      * to the Java app.
213      */
214     if (msgType == CAMERA_MSG_RAW_IMAGE_NOTIFY) {
215         msgType = CAMERA_MSG_RAW_IMAGE;
216     }
217 
218     env->CallStaticVoidMethod(mCameraJClass, fields.post_event,
219             mCameraJObjectWeak, msgType, ext1, ext2, NULL);
220 }
221 
getCallbackBuffer(JNIEnv * env,Vector<jbyteArray> * buffers,size_t bufferSize)222 jbyteArray JNICameraContext::getCallbackBuffer(
223         JNIEnv* env, Vector<jbyteArray>* buffers, size_t bufferSize)
224 {
225     jbyteArray obj = NULL;
226 
227     // Vector access should be protected by lock in postData()
228     if (!buffers->isEmpty()) {
229         ALOGV("Using callback buffer from queue of length %zu", buffers->size());
230         jbyteArray globalBuffer = buffers->itemAt(0);
231         buffers->removeAt(0);
232 
233         obj = (jbyteArray)env->NewLocalRef(globalBuffer);
234         env->DeleteGlobalRef(globalBuffer);
235 
236         if (obj != NULL) {
237             jsize bufferLength = env->GetArrayLength(obj);
238             if ((int)bufferLength < (int)bufferSize) {
239                 ALOGE("Callback buffer was too small! Expected %zu bytes, but got %d bytes!",
240                     bufferSize, bufferLength);
241                 env->DeleteLocalRef(obj);
242                 return NULL;
243             }
244         }
245     }
246 
247     return obj;
248 }
249 
copyAndPost(JNIEnv * env,const sp<IMemory> & dataPtr,int msgType)250 void JNICameraContext::copyAndPost(JNIEnv* env, const sp<IMemory>& dataPtr, int msgType)
251 {
252     jbyteArray obj = NULL;
253 
254     // allocate Java byte array and copy data
255     if (dataPtr != NULL) {
256         ssize_t offset;
257         size_t size;
258         sp<IMemoryHeap> heap = dataPtr->getMemory(&offset, &size);
259         if (heap == NULL) {
260             ALOGV("copyAndPost: skipping null memory callback!");
261             return;
262         }
263         ALOGV("copyAndPost: off=%zd, size=%zu", offset, size);
264         uint8_t *heapBase = (uint8_t*)heap->base();
265 
266         if (heapBase != NULL) {
267             const jbyte* data = reinterpret_cast<const jbyte*>(heapBase + offset);
268 
269             if (msgType == CAMERA_MSG_RAW_IMAGE) {
270                 obj = getCallbackBuffer(env, &mRawImageCallbackBuffers, size);
271             } else if (msgType == CAMERA_MSG_PREVIEW_FRAME && mManualBufferMode) {
272                 obj = getCallbackBuffer(env, &mCallbackBuffers, size);
273 
274                 if (mCallbackBuffers.isEmpty()) {
275                     ALOGV("Out of buffers, clearing callback!");
276                     mCamera->setPreviewCallbackFlags(CAMERA_FRAME_CALLBACK_FLAG_NOOP);
277                     mManualCameraCallbackSet = false;
278 
279                     if (obj == NULL) {
280                         return;
281                     }
282                 }
283             } else {
284                 ALOGV("Allocating callback buffer");
285                 obj = env->NewByteArray(size);
286             }
287 
288             if (obj == NULL) {
289                 ALOGE("Couldn't allocate byte array for JPEG data");
290                 env->ExceptionClear();
291             } else {
292                 env->SetByteArrayRegion(obj, 0, size, data);
293             }
294         } else {
295             ALOGE("image heap is NULL");
296         }
297     }
298 
299     // post image data to Java
300     env->CallStaticVoidMethod(mCameraJClass, fields.post_event,
301             mCameraJObjectWeak, msgType, 0, 0, obj);
302     if (obj) {
303         env->DeleteLocalRef(obj);
304     }
305 }
306 
postData(int32_t msgType,const sp<IMemory> & dataPtr,camera_frame_metadata_t * metadata)307 void JNICameraContext::postData(int32_t msgType, const sp<IMemory>& dataPtr,
308                                 camera_frame_metadata_t *metadata)
309 {
310     // VM pointer will be NULL if object is released
311     Mutex::Autolock _l(mLock);
312     JNIEnv *env = AndroidRuntime::getJNIEnv();
313     if (mCameraJObjectWeak == NULL) {
314         ALOGW("callback on dead camera object");
315         return;
316     }
317 
318     int32_t dataMsgType = msgType & ~CAMERA_MSG_PREVIEW_METADATA;
319 
320     // return data based on callback type
321     switch (dataMsgType) {
322         case CAMERA_MSG_VIDEO_FRAME:
323             // should never happen
324             break;
325 
326         // For backward-compatibility purpose, if there is no callback
327         // buffer for raw image, the callback returns null.
328         case CAMERA_MSG_RAW_IMAGE:
329             ALOGV("rawCallback");
330             if (mRawImageCallbackBuffers.isEmpty()) {
331                 env->CallStaticVoidMethod(mCameraJClass, fields.post_event,
332                         mCameraJObjectWeak, dataMsgType, 0, 0, NULL);
333             } else {
334                 copyAndPost(env, dataPtr, dataMsgType);
335             }
336             break;
337 
338         // There is no data.
339         case 0:
340             break;
341 
342         default:
343             ALOGV("dataCallback(%d, %p)", dataMsgType, dataPtr.get());
344             copyAndPost(env, dataPtr, dataMsgType);
345             break;
346     }
347 
348     // post frame metadata to Java
349     if (metadata && (msgType & CAMERA_MSG_PREVIEW_METADATA)) {
350         postMetadata(env, CAMERA_MSG_PREVIEW_METADATA, metadata);
351     }
352 }
353 
postDataTimestamp(nsecs_t timestamp,int32_t msgType,const sp<IMemory> & dataPtr)354 void JNICameraContext::postDataTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr)
355 {
356     // TODO: plumb up to Java. For now, just drop the timestamp
357     postData(msgType, dataPtr, NULL);
358 }
359 
postRecordingFrameHandleTimestamp(nsecs_t,native_handle_t * handle)360 void JNICameraContext::postRecordingFrameHandleTimestamp(nsecs_t, native_handle_t* handle) {
361     // Video buffers are not needed at app layer so just return the video buffers here.
362     // This may be called when stagefright just releases camera but there are still outstanding
363     // video buffers.
364     if (mCamera != nullptr) {
365         mCamera->releaseRecordingFrameHandle(handle);
366     } else {
367         native_handle_close(handle);
368         native_handle_delete(handle);
369     }
370 }
371 
postRecordingFrameHandleTimestampBatch(const std::vector<nsecs_t> &,const std::vector<native_handle_t * > & handles)372 void JNICameraContext::postRecordingFrameHandleTimestampBatch(
373         const std::vector<nsecs_t>&,
374         const std::vector<native_handle_t*>& handles) {
375     // Video buffers are not needed at app layer so just return the video buffers here.
376     // This may be called when stagefright just releases camera but there are still outstanding
377     // video buffers.
378     if (mCamera != nullptr) {
379         mCamera->releaseRecordingFrameHandleBatch(handles);
380     } else {
381         for (auto& handle : handles) {
382             native_handle_close(handle);
383             native_handle_delete(handle);
384         }
385     }
386 }
387 
postMetadata(JNIEnv * env,int32_t msgType,camera_frame_metadata_t * metadata)388 void JNICameraContext::postMetadata(JNIEnv *env, int32_t msgType, camera_frame_metadata_t *metadata)
389 {
390     jobjectArray obj = NULL;
391     obj = (jobjectArray) env->NewObjectArray(metadata->number_of_faces,
392                                              mFaceClass, NULL);
393     if (obj == NULL) {
394         ALOGE("Couldn't allocate face metadata array");
395         return;
396     }
397 
398     for (int i = 0; i < metadata->number_of_faces; i++) {
399         jobject face = env->NewObject(mFaceClass, fields.face_constructor);
400         env->SetObjectArrayElement(obj, i, face);
401 
402         jobject rect = env->NewObject(mRectClass, fields.rect_constructor);
403         env->SetIntField(rect, fields.rect_left, metadata->faces[i].rect[0]);
404         env->SetIntField(rect, fields.rect_top, metadata->faces[i].rect[1]);
405         env->SetIntField(rect, fields.rect_right, metadata->faces[i].rect[2]);
406         env->SetIntField(rect, fields.rect_bottom, metadata->faces[i].rect[3]);
407 
408         env->SetObjectField(face, fields.face_rect, rect);
409         env->SetIntField(face, fields.face_score, metadata->faces[i].score);
410 
411         bool optionalFields = metadata->faces[i].id != 0
412             && metadata->faces[i].left_eye[0] != -2000 && metadata->faces[i].left_eye[1] != -2000
413             && metadata->faces[i].right_eye[0] != -2000 && metadata->faces[i].right_eye[1] != -2000
414             && metadata->faces[i].mouth[0] != -2000 && metadata->faces[i].mouth[1] != -2000;
415         if (optionalFields) {
416             int32_t id = metadata->faces[i].id;
417             env->SetIntField(face, fields.face_id, id);
418 
419             jobject leftEye = env->NewObject(mPointClass, fields.point_constructor);
420             env->SetIntField(leftEye, fields.point_x, metadata->faces[i].left_eye[0]);
421             env->SetIntField(leftEye, fields.point_y, metadata->faces[i].left_eye[1]);
422             env->SetObjectField(face, fields.face_left_eye, leftEye);
423             env->DeleteLocalRef(leftEye);
424 
425             jobject rightEye = env->NewObject(mPointClass, fields.point_constructor);
426             env->SetIntField(rightEye, fields.point_x, metadata->faces[i].right_eye[0]);
427             env->SetIntField(rightEye, fields.point_y, metadata->faces[i].right_eye[1]);
428             env->SetObjectField(face, fields.face_right_eye, rightEye);
429             env->DeleteLocalRef(rightEye);
430 
431             jobject mouth = env->NewObject(mPointClass, fields.point_constructor);
432             env->SetIntField(mouth, fields.point_x, metadata->faces[i].mouth[0]);
433             env->SetIntField(mouth, fields.point_y, metadata->faces[i].mouth[1]);
434             env->SetObjectField(face, fields.face_mouth, mouth);
435             env->DeleteLocalRef(mouth);
436         }
437 
438         env->DeleteLocalRef(face);
439         env->DeleteLocalRef(rect);
440     }
441     env->CallStaticVoidMethod(mCameraJClass, fields.post_event,
442             mCameraJObjectWeak, msgType, 0, 0, obj);
443     env->DeleteLocalRef(obj);
444 }
445 
setCallbackMode(JNIEnv * env,bool installed,bool manualMode)446 void JNICameraContext::setCallbackMode(JNIEnv *env, bool installed, bool manualMode)
447 {
448     Mutex::Autolock _l(mLock);
449     mManualBufferMode = manualMode;
450     mManualCameraCallbackSet = false;
451 
452     // In order to limit the over usage of binder threads, all non-manual buffer
453     // callbacks use CAMERA_FRAME_CALLBACK_FLAG_BARCODE_SCANNER mode now.
454     //
455     // Continuous callbacks will have the callback re-registered from handleMessage.
456     // Manual buffer mode will operate as fast as possible, relying on the finite supply
457     // of buffers for throttling.
458 
459     if (!installed) {
460         mCamera->setPreviewCallbackFlags(CAMERA_FRAME_CALLBACK_FLAG_NOOP);
461         clearCallbackBuffers_l(env, &mCallbackBuffers);
462     } else if (mManualBufferMode) {
463         if (!mCallbackBuffers.isEmpty()) {
464             mCamera->setPreviewCallbackFlags(CAMERA_FRAME_CALLBACK_FLAG_CAMERA);
465             mManualCameraCallbackSet = true;
466         }
467     } else {
468         mCamera->setPreviewCallbackFlags(CAMERA_FRAME_CALLBACK_FLAG_BARCODE_SCANNER);
469         clearCallbackBuffers_l(env, &mCallbackBuffers);
470     }
471 }
472 
addCallbackBuffer(JNIEnv * env,jbyteArray cbb,int msgType)473 void JNICameraContext::addCallbackBuffer(
474         JNIEnv *env, jbyteArray cbb, int msgType)
475 {
476     ALOGV("addCallbackBuffer: 0x%x", msgType);
477     if (cbb != NULL) {
478         Mutex::Autolock _l(mLock);
479         switch (msgType) {
480             case CAMERA_MSG_PREVIEW_FRAME: {
481                 jbyteArray callbackBuffer = (jbyteArray)env->NewGlobalRef(cbb);
482                 mCallbackBuffers.push(callbackBuffer);
483 
484                 ALOGV("Adding callback buffer to queue, %zu total",
485                         mCallbackBuffers.size());
486 
487                 // We want to make sure the camera knows we're ready for the
488                 // next frame. This may have come unset had we not had a
489                 // callbackbuffer ready for it last time.
490                 if (mManualBufferMode && !mManualCameraCallbackSet) {
491                     mCamera->setPreviewCallbackFlags(CAMERA_FRAME_CALLBACK_FLAG_CAMERA);
492                     mManualCameraCallbackSet = true;
493                 }
494                 break;
495             }
496             case CAMERA_MSG_RAW_IMAGE: {
497                 jbyteArray callbackBuffer = (jbyteArray)env->NewGlobalRef(cbb);
498                 mRawImageCallbackBuffers.push(callbackBuffer);
499                 break;
500             }
501             default: {
502                 jniThrowException(env,
503                         "java/lang/IllegalArgumentException",
504                         "Unsupported message type");
505                 return;
506             }
507         }
508     } else {
509        ALOGE("Null byte array!");
510     }
511 }
512 
clearCallbackBuffers_l(JNIEnv * env)513 void JNICameraContext::clearCallbackBuffers_l(JNIEnv *env)
514 {
515     clearCallbackBuffers_l(env, &mCallbackBuffers);
516     clearCallbackBuffers_l(env, &mRawImageCallbackBuffers);
517 }
518 
clearCallbackBuffers_l(JNIEnv * env,Vector<jbyteArray> * buffers)519 void JNICameraContext::clearCallbackBuffers_l(JNIEnv *env, Vector<jbyteArray> *buffers) {
520     ALOGV("Clearing callback buffers, %zu remained", buffers->size());
521     while (!buffers->isEmpty()) {
522         env->DeleteGlobalRef(buffers->top());
523         buffers->pop();
524     }
525 }
526 
android_hardware_Camera_getNumberOfCameras(JNIEnv * env,jobject thiz)527 static jint android_hardware_Camera_getNumberOfCameras(JNIEnv *env, jobject thiz)
528 {
529     return Camera::getNumberOfCameras();
530 }
531 
android_hardware_Camera_getCameraInfo(JNIEnv * env,jobject thiz,jint cameraId,jboolean overrideToPortrait,jobject info_obj)532 static void android_hardware_Camera_getCameraInfo(JNIEnv *env, jobject thiz, jint cameraId,
533                                                   jboolean overrideToPortrait, jobject info_obj) {
534     CameraInfo cameraInfo;
535     if (cameraId >= Camera::getNumberOfCameras() || cameraId < 0) {
536         ALOGE("%s: Unknown camera ID %d", __FUNCTION__, cameraId);
537         jniThrowRuntimeException(env, "Unknown camera ID");
538         return;
539     }
540 
541     status_t rc = Camera::getCameraInfo(cameraId, overrideToPortrait, &cameraInfo);
542     if (rc != NO_ERROR) {
543         jniThrowRuntimeException(env, "Fail to get camera info");
544         return;
545     }
546     env->SetIntField(info_obj, fields.facing, cameraInfo.facing);
547     env->SetIntField(info_obj, fields.orientation, cameraInfo.orientation);
548 
549     char value[PROPERTY_VALUE_MAX];
550     property_get("ro.camera.sound.forced", value, "0");
551     jboolean canDisableShutterSound = (strncmp(value, "0", 2) == 0);
552     env->SetBooleanField(info_obj, fields.canDisableShutterSound,
553             canDisableShutterSound);
554 }
555 
556 // connect to camera service
android_hardware_Camera_native_setup(JNIEnv * env,jobject thiz,jobject weak_this,jint cameraId,jstring clientPackageName,jboolean overrideToPortrait,jboolean forceSlowJpegMode)557 static jint android_hardware_Camera_native_setup(JNIEnv *env, jobject thiz, jobject weak_this,
558                                                  jint cameraId, jstring clientPackageName,
559                                                  jboolean overrideToPortrait,
560                                                  jboolean forceSlowJpegMode) {
561     // Convert jstring to String16
562     const char16_t *rawClientName = reinterpret_cast<const char16_t*>(
563         env->GetStringChars(clientPackageName, NULL));
564     jsize rawClientNameLen = env->GetStringLength(clientPackageName);
565     String16 clientName(rawClientName, rawClientNameLen);
566     env->ReleaseStringChars(clientPackageName,
567                             reinterpret_cast<const jchar*>(rawClientName));
568 
569     int targetSdkVersion = android_get_application_target_sdk_version();
570     sp<Camera> camera =
571             Camera::connect(cameraId, clientName, Camera::USE_CALLING_UID, Camera::USE_CALLING_PID,
572                             targetSdkVersion, overrideToPortrait, forceSlowJpegMode);
573     if (camera == NULL) {
574         return -EACCES;
575     }
576 
577     // make sure camera hardware is alive
578     if (camera->getStatus() != NO_ERROR) {
579         return NO_INIT;
580     }
581 
582     jclass clazz = env->GetObjectClass(thiz);
583     if (clazz == NULL) {
584         // This should never happen
585         jniThrowRuntimeException(env, "Can't find android/hardware/Camera");
586         return INVALID_OPERATION;
587     }
588 
589     // We use a weak reference so the Camera object can be garbage collected.
590     // The reference is only used as a proxy for callbacks.
591     sp<JNICameraContext> context = new JNICameraContext(env, weak_this, clazz, camera);
592     context->incStrong((void*)android_hardware_Camera_native_setup);
593     camera->setListener(context);
594 
595     // save context in opaque field
596     env->SetLongField(thiz, fields.context, (jlong)context.get());
597 
598     // Update default display orientation in case the sensor is reverse-landscape
599     CameraInfo cameraInfo;
600     status_t rc = Camera::getCameraInfo(cameraId, overrideToPortrait, &cameraInfo);
601     if (rc != NO_ERROR) {
602         ALOGE("%s: getCameraInfo error: %d", __FUNCTION__, rc);
603         return rc;
604     }
605     int defaultOrientation = 0;
606     switch (cameraInfo.orientation) {
607         case 0:
608             break;
609         case 90:
610             if (cameraInfo.facing == CAMERA_FACING_FRONT) {
611                 defaultOrientation = 180;
612             }
613             break;
614         case 180:
615             defaultOrientation = 180;
616             break;
617         case 270:
618             if (cameraInfo.facing != CAMERA_FACING_FRONT) {
619                 defaultOrientation = 180;
620             }
621             break;
622         default:
623             ALOGE("Unexpected camera orientation %d!", cameraInfo.orientation);
624             break;
625     }
626     if (defaultOrientation != 0) {
627         ALOGV("Setting default display orientation to %d", defaultOrientation);
628         rc = camera->sendCommand(CAMERA_CMD_SET_DISPLAY_ORIENTATION,
629                 defaultOrientation, 0);
630         if (rc != NO_ERROR) {
631             ALOGE("Unable to update default orientation: %s (%d)",
632                     strerror(-rc), rc);
633             return rc;
634         }
635     }
636 
637     return NO_ERROR;
638 }
639 
640 // disconnect from camera service
641 // It's okay to call this when the native camera context is already null.
642 // This handles the case where the user has called release() and the
643 // finalizer is invoked later.
android_hardware_Camera_release(JNIEnv * env,jobject thiz)644 static void android_hardware_Camera_release(JNIEnv *env, jobject thiz)
645 {
646     ALOGV("release camera");
647     JNICameraContext* context = NULL;
648     sp<Camera> camera;
649     {
650         Mutex::Autolock _l(sLock);
651         context = reinterpret_cast<JNICameraContext*>(env->GetLongField(thiz, fields.context));
652 
653         // Make sure we do not attempt to callback on a deleted Java object.
654         env->SetLongField(thiz, fields.context, 0);
655     }
656 
657     // clean up if release has not been called before
658     if (context != NULL) {
659         camera = context->getCamera();
660         context->release();
661         ALOGV("native_release: context=%p camera=%p", context, camera.get());
662 
663         // clear callbacks
664         if (camera != NULL) {
665             camera->setPreviewCallbackFlags(CAMERA_FRAME_CALLBACK_FLAG_NOOP);
666             camera->disconnect();
667         }
668 
669         // remove context to prevent further Java access
670         context->decStrong((void*)android_hardware_Camera_native_setup);
671     }
672 }
673 
android_hardware_Camera_setPreviewSurface(JNIEnv * env,jobject thiz,jobject jSurface)674 static void android_hardware_Camera_setPreviewSurface(JNIEnv *env, jobject thiz, jobject jSurface)
675 {
676     ALOGV("setPreviewSurface");
677     sp<Camera> camera = get_native_camera(env, thiz, NULL);
678     if (camera == 0) return;
679 
680     sp<IGraphicBufferProducer> gbp;
681     sp<Surface> surface;
682     if (jSurface) {
683         surface = android_view_Surface_getSurface(env, jSurface);
684         if (surface != NULL) {
685             gbp = surface->getIGraphicBufferProducer();
686         }
687     }
688 
689     if (camera->setPreviewTarget(gbp) != NO_ERROR) {
690         jniThrowException(env, "java/io/IOException", "setPreviewTexture failed");
691     }
692 }
693 
android_hardware_Camera_setPreviewTexture(JNIEnv * env,jobject thiz,jobject jSurfaceTexture)694 static void android_hardware_Camera_setPreviewTexture(JNIEnv *env,
695         jobject thiz, jobject jSurfaceTexture)
696 {
697     ALOGV("setPreviewTexture");
698     sp<Camera> camera = get_native_camera(env, thiz, NULL);
699     if (camera == 0) return;
700 
701     sp<IGraphicBufferProducer> producer = NULL;
702     if (jSurfaceTexture != NULL) {
703         producer = SurfaceTexture_getProducer(env, jSurfaceTexture);
704         if (producer == NULL) {
705             jniThrowException(env, "java/lang/IllegalArgumentException",
706                     "SurfaceTexture already released in setPreviewTexture");
707             return;
708         }
709 
710     }
711 
712     if (camera->setPreviewTarget(producer) != NO_ERROR) {
713         jniThrowException(env, "java/io/IOException",
714                 "setPreviewTexture failed");
715     }
716 }
717 
android_hardware_Camera_setPreviewCallbackSurface(JNIEnv * env,jobject thiz,jobject jSurface)718 static void android_hardware_Camera_setPreviewCallbackSurface(JNIEnv *env,
719         jobject thiz, jobject jSurface)
720 {
721     ALOGV("setPreviewCallbackSurface");
722     JNICameraContext* context;
723     sp<Camera> camera = get_native_camera(env, thiz, &context);
724     if (camera == 0) return;
725 
726     sp<IGraphicBufferProducer> gbp;
727     sp<Surface> surface;
728     if (jSurface) {
729         surface = android_view_Surface_getSurface(env, jSurface);
730         if (surface != NULL) {
731             gbp = surface->getIGraphicBufferProducer();
732         }
733     }
734     // Clear out normal preview callbacks
735     context->setCallbackMode(env, false, false);
736     // Then set up callback surface
737     if (camera->setPreviewCallbackTarget(gbp) != NO_ERROR) {
738         jniThrowException(env, "java/io/IOException", "setPreviewCallbackTarget failed");
739     }
740 }
741 
android_hardware_Camera_startPreview(JNIEnv * env,jobject thiz)742 static void android_hardware_Camera_startPreview(JNIEnv *env, jobject thiz)
743 {
744     ALOGV("startPreview");
745     sp<Camera> camera = get_native_camera(env, thiz, NULL);
746     if (camera == 0) return;
747 
748     if (camera->startPreview() != NO_ERROR) {
749         jniThrowRuntimeException(env, "startPreview failed");
750         return;
751     }
752 }
753 
android_hardware_Camera_stopPreview(JNIEnv * env,jobject thiz)754 static void android_hardware_Camera_stopPreview(JNIEnv *env, jobject thiz)
755 {
756     ALOGV("stopPreview");
757     sp<Camera> c = get_native_camera(env, thiz, NULL);
758     if (c == 0) return;
759 
760     c->stopPreview();
761 }
762 
android_hardware_Camera_previewEnabled(JNIEnv * env,jobject thiz)763 static jboolean android_hardware_Camera_previewEnabled(JNIEnv *env, jobject thiz)
764 {
765     ALOGV("previewEnabled");
766     sp<Camera> c = get_native_camera(env, thiz, NULL);
767     if (c == 0) return JNI_FALSE;
768 
769     return c->previewEnabled() ? JNI_TRUE : JNI_FALSE;
770 }
771 
android_hardware_Camera_setHasPreviewCallback(JNIEnv * env,jobject thiz,jboolean installed,jboolean manualBuffer)772 static void android_hardware_Camera_setHasPreviewCallback(JNIEnv *env, jobject thiz, jboolean installed, jboolean manualBuffer)
773 {
774     ALOGV("setHasPreviewCallback: installed:%d, manualBuffer:%d", (int)installed, (int)manualBuffer);
775     // Important: Only install preview_callback if the Java code has called
776     // setPreviewCallback() with a non-null value, otherwise we'd pay to memcpy
777     // each preview frame for nothing.
778     JNICameraContext* context;
779     sp<Camera> camera = get_native_camera(env, thiz, &context);
780     if (camera == 0) return;
781 
782     // setCallbackMode will take care of setting the context flags and calling
783     // camera->setPreviewCallbackFlags within a mutex for us.
784     context->setCallbackMode(env, installed, manualBuffer);
785 }
786 
android_hardware_Camera_addCallbackBuffer(JNIEnv * env,jobject thiz,jbyteArray bytes,jint msgType)787 static void android_hardware_Camera_addCallbackBuffer(JNIEnv *env, jobject thiz, jbyteArray bytes, jint msgType) {
788     ALOGV("addCallbackBuffer: 0x%x", msgType);
789 
790     JNICameraContext* context = reinterpret_cast<JNICameraContext*>(env->GetLongField(thiz, fields.context));
791 
792     if (context != NULL) {
793         context->addCallbackBuffer(env, bytes, msgType);
794     }
795 }
796 
android_hardware_Camera_autoFocus(JNIEnv * env,jobject thiz)797 static void android_hardware_Camera_autoFocus(JNIEnv *env, jobject thiz)
798 {
799     ALOGV("autoFocus");
800     JNICameraContext* context;
801     sp<Camera> c = get_native_camera(env, thiz, &context);
802     if (c == 0) return;
803 
804     if (c->autoFocus() != NO_ERROR) {
805         jniThrowRuntimeException(env, "autoFocus failed");
806     }
807 }
808 
android_hardware_Camera_cancelAutoFocus(JNIEnv * env,jobject thiz)809 static void android_hardware_Camera_cancelAutoFocus(JNIEnv *env, jobject thiz)
810 {
811     ALOGV("cancelAutoFocus");
812     JNICameraContext* context;
813     sp<Camera> c = get_native_camera(env, thiz, &context);
814     if (c == 0) return;
815 
816     if (c->cancelAutoFocus() != NO_ERROR) {
817         jniThrowRuntimeException(env, "cancelAutoFocus failed");
818     }
819 }
820 
android_hardware_Camera_takePicture(JNIEnv * env,jobject thiz,jint msgType)821 static void android_hardware_Camera_takePicture(JNIEnv *env, jobject thiz, jint msgType)
822 {
823     ALOGV("takePicture");
824     JNICameraContext* context;
825     sp<Camera> camera = get_native_camera(env, thiz, &context);
826     if (camera == 0) return;
827 
828     /*
829      * When CAMERA_MSG_RAW_IMAGE is requested, if the raw image callback
830      * buffer is available, CAMERA_MSG_RAW_IMAGE is enabled to get the
831      * notification _and_ the data; otherwise, CAMERA_MSG_RAW_IMAGE_NOTIFY
832      * is enabled to receive the callback notification but no data.
833      *
834      * Note that CAMERA_MSG_RAW_IMAGE_NOTIFY is not exposed to the
835      * Java application.
836      */
837     if (msgType & CAMERA_MSG_RAW_IMAGE) {
838         ALOGV("Enable raw image callback buffer");
839         if (!context->isRawImageCallbackBufferAvailable()) {
840             ALOGV("Enable raw image notification, since no callback buffer exists");
841             msgType &= ~CAMERA_MSG_RAW_IMAGE;
842             msgType |= CAMERA_MSG_RAW_IMAGE_NOTIFY;
843         }
844     }
845 
846     if (camera->takePicture(msgType) != NO_ERROR) {
847         jniThrowRuntimeException(env, "takePicture failed");
848         return;
849     }
850 }
851 
android_hardware_Camera_setParameters(JNIEnv * env,jobject thiz,jstring params)852 static void android_hardware_Camera_setParameters(JNIEnv *env, jobject thiz, jstring params)
853 {
854     ALOGV("setParameters");
855     sp<Camera> camera = get_native_camera(env, thiz, NULL);
856     if (camera == 0) return;
857 
858     const jchar* str = env->GetStringCritical(params, 0);
859     String8 params8;
860     if (params) {
861         params8 = String8(reinterpret_cast<const char16_t*>(str),
862                           env->GetStringLength(params));
863         env->ReleaseStringCritical(params, str);
864     }
865     if (camera->setParameters(params8) != NO_ERROR) {
866         jniThrowRuntimeException(env, "setParameters failed");
867         return;
868     }
869 }
870 
android_hardware_Camera_getParameters(JNIEnv * env,jobject thiz)871 static jstring android_hardware_Camera_getParameters(JNIEnv *env, jobject thiz)
872 {
873     ALOGV("getParameters");
874     sp<Camera> camera = get_native_camera(env, thiz, NULL);
875     if (camera == 0) return 0;
876 
877     String8 params8 = camera->getParameters();
878     if (params8.isEmpty()) {
879         jniThrowRuntimeException(env, "getParameters failed (empty parameters)");
880         return 0;
881     }
882     return env->NewStringUTF(params8.string());
883 }
884 
android_hardware_Camera_reconnect(JNIEnv * env,jobject thiz)885 static void android_hardware_Camera_reconnect(JNIEnv *env, jobject thiz)
886 {
887     ALOGV("reconnect");
888     sp<Camera> camera = get_native_camera(env, thiz, NULL);
889     if (camera == 0) return;
890 
891     if (camera->reconnect() != NO_ERROR) {
892         jniThrowException(env, "java/io/IOException", "reconnect failed");
893         return;
894     }
895 }
896 
android_hardware_Camera_lock(JNIEnv * env,jobject thiz)897 static void android_hardware_Camera_lock(JNIEnv *env, jobject thiz)
898 {
899     ALOGV("lock");
900     sp<Camera> camera = get_native_camera(env, thiz, NULL);
901     if (camera == 0) return;
902 
903     if (camera->lock() != NO_ERROR) {
904         jniThrowRuntimeException(env, "lock failed");
905     }
906 }
907 
android_hardware_Camera_unlock(JNIEnv * env,jobject thiz)908 static void android_hardware_Camera_unlock(JNIEnv *env, jobject thiz)
909 {
910     ALOGV("unlock");
911     sp<Camera> camera = get_native_camera(env, thiz, NULL);
912     if (camera == 0) return;
913 
914     if (camera->unlock() != NO_ERROR) {
915         jniThrowRuntimeException(env, "unlock failed");
916     }
917 }
918 
android_hardware_Camera_startSmoothZoom(JNIEnv * env,jobject thiz,jint value)919 static void android_hardware_Camera_startSmoothZoom(JNIEnv *env, jobject thiz, jint value)
920 {
921     ALOGV("startSmoothZoom");
922     sp<Camera> camera = get_native_camera(env, thiz, NULL);
923     if (camera == 0) return;
924 
925     status_t rc = camera->sendCommand(CAMERA_CMD_START_SMOOTH_ZOOM, value, 0);
926     if (rc == BAD_VALUE) {
927         char msg[64];
928         sprintf(msg, "invalid zoom value=%d", value);
929         jniThrowException(env, "java/lang/IllegalArgumentException", msg);
930     } else if (rc != NO_ERROR) {
931         jniThrowRuntimeException(env, "start smooth zoom failed");
932     }
933 }
934 
android_hardware_Camera_stopSmoothZoom(JNIEnv * env,jobject thiz)935 static void android_hardware_Camera_stopSmoothZoom(JNIEnv *env, jobject thiz)
936 {
937     ALOGV("stopSmoothZoom");
938     sp<Camera> camera = get_native_camera(env, thiz, NULL);
939     if (camera == 0) return;
940 
941     if (camera->sendCommand(CAMERA_CMD_STOP_SMOOTH_ZOOM, 0, 0) != NO_ERROR) {
942         jniThrowRuntimeException(env, "stop smooth zoom failed");
943     }
944 }
945 
android_hardware_Camera_setDisplayOrientation(JNIEnv * env,jobject thiz,jint value)946 static void android_hardware_Camera_setDisplayOrientation(JNIEnv *env, jobject thiz,
947         jint value)
948 {
949     ALOGV("setDisplayOrientation");
950     sp<Camera> camera = get_native_camera(env, thiz, NULL);
951     if (camera == 0) return;
952 
953     if (camera->sendCommand(CAMERA_CMD_SET_DISPLAY_ORIENTATION, value, 0) != NO_ERROR) {
954         jniThrowRuntimeException(env, "set display orientation failed");
955     }
956 }
957 
android_hardware_Camera_enableShutterSound(JNIEnv * env,jobject thiz,jboolean enabled)958 static jboolean android_hardware_Camera_enableShutterSound(JNIEnv *env, jobject thiz,
959         jboolean enabled)
960 {
961     ALOGV("enableShutterSound");
962     sp<Camera> camera = get_native_camera(env, thiz, NULL);
963     if (camera == 0) return JNI_FALSE;
964 
965     int32_t value = (enabled == JNI_TRUE) ? 1 : 0;
966     status_t rc = camera->sendCommand(CAMERA_CMD_ENABLE_SHUTTER_SOUND, value, 0);
967     if (rc == NO_ERROR) {
968         return JNI_TRUE;
969     } else if (rc == PERMISSION_DENIED) {
970         return JNI_FALSE;
971     } else {
972         jniThrowRuntimeException(env, "enable shutter sound failed");
973         return JNI_FALSE;
974     }
975 }
976 
android_hardware_Camera_startFaceDetection(JNIEnv * env,jobject thiz,jint type)977 static void android_hardware_Camera_startFaceDetection(JNIEnv *env, jobject thiz,
978         jint type)
979 {
980     ALOGV("startFaceDetection");
981     JNICameraContext* context;
982     sp<Camera> camera = get_native_camera(env, thiz, &context);
983     if (camera == 0) return;
984 
985     status_t rc = camera->sendCommand(CAMERA_CMD_START_FACE_DETECTION, type, 0);
986     if (rc == BAD_VALUE) {
987         char msg[64];
988         snprintf(msg, sizeof(msg), "invalid face detection type=%d", type);
989         jniThrowException(env, "java/lang/IllegalArgumentException", msg);
990     } else if (rc != NO_ERROR) {
991         jniThrowRuntimeException(env, "start face detection failed");
992     }
993 }
994 
android_hardware_Camera_stopFaceDetection(JNIEnv * env,jobject thiz)995 static void android_hardware_Camera_stopFaceDetection(JNIEnv *env, jobject thiz)
996 {
997     ALOGV("stopFaceDetection");
998     sp<Camera> camera = get_native_camera(env, thiz, NULL);
999     if (camera == 0) return;
1000 
1001     if (camera->sendCommand(CAMERA_CMD_STOP_FACE_DETECTION, 0, 0) != NO_ERROR) {
1002         jniThrowRuntimeException(env, "stop face detection failed");
1003     }
1004 }
1005 
android_hardware_Camera_enableFocusMoveCallback(JNIEnv * env,jobject thiz,jint enable)1006 static void android_hardware_Camera_enableFocusMoveCallback(JNIEnv *env, jobject thiz, jint enable)
1007 {
1008     ALOGV("enableFocusMoveCallback");
1009     sp<Camera> camera = get_native_camera(env, thiz, NULL);
1010     if (camera == 0) return;
1011 
1012     if (camera->sendCommand(CAMERA_CMD_ENABLE_FOCUS_MOVE_MSG, enable, 0) != NO_ERROR) {
1013         jniThrowRuntimeException(env, "enable focus move callback failed");
1014     }
1015 }
1016 
android_hardware_Camera_setAudioRestriction(JNIEnv * env,jobject thiz,jint mode)1017 static void android_hardware_Camera_setAudioRestriction(
1018         JNIEnv *env, jobject thiz, jint mode)
1019 {
1020     ALOGV("setAudioRestriction");
1021     sp<Camera> camera = get_native_camera(env, thiz, NULL);
1022     if (camera == 0) {
1023         jniThrowRuntimeException(env, "camera has been disconnected");
1024         return;
1025     }
1026 
1027     int32_t ret = camera->setAudioRestriction(mode);
1028     if (ret < 0) {
1029         jniThrowRuntimeException(env, "Illegal argument or low-level eror");
1030         return;
1031     }
1032 }
1033 
android_hardware_Camera_getAudioRestriction(JNIEnv * env,jobject thiz)1034 static int32_t android_hardware_Camera_getAudioRestriction(
1035         JNIEnv *env, jobject thiz)
1036 {
1037     ALOGV("getAudioRestriction");
1038     sp<Camera> camera = get_native_camera(env, thiz, NULL);
1039     if (camera == 0) {
1040         jniThrowRuntimeException(env, "camera has been disconnected");
1041         return -1;
1042     }
1043 
1044     int32_t ret = camera->getGlobalAudioRestriction();
1045     if (ret < 0) {
1046         jniThrowRuntimeException(env, "Illegal argument or low-level eror");
1047         return -1;
1048     }
1049     return ret;
1050 }
1051 
1052 //-------------------------------------------------
1053 
1054 static const JNINativeMethod camMethods[] = {
1055         {"getNumberOfCameras", "()I", (void *)android_hardware_Camera_getNumberOfCameras},
1056         {"_getCameraInfo", "(IZLandroid/hardware/Camera$CameraInfo;)V",
1057          (void *)android_hardware_Camera_getCameraInfo},
1058         {"native_setup", "(Ljava/lang/Object;ILjava/lang/String;ZZ)I",
1059          (void *)android_hardware_Camera_native_setup},
1060         {"native_release", "()V", (void *)android_hardware_Camera_release},
1061         {"setPreviewSurface", "(Landroid/view/Surface;)V",
1062          (void *)android_hardware_Camera_setPreviewSurface},
1063         {"setPreviewTexture", "(Landroid/graphics/SurfaceTexture;)V",
1064          (void *)android_hardware_Camera_setPreviewTexture},
1065         {"setPreviewCallbackSurface", "(Landroid/view/Surface;)V",
1066          (void *)android_hardware_Camera_setPreviewCallbackSurface},
1067         {"startPreview", "()V", (void *)android_hardware_Camera_startPreview},
1068         {"_stopPreview", "()V", (void *)android_hardware_Camera_stopPreview},
1069         {"previewEnabled", "()Z", (void *)android_hardware_Camera_previewEnabled},
1070         {"setHasPreviewCallback", "(ZZ)V", (void *)android_hardware_Camera_setHasPreviewCallback},
1071         {"_addCallbackBuffer", "([BI)V", (void *)android_hardware_Camera_addCallbackBuffer},
1072         {"native_autoFocus", "()V", (void *)android_hardware_Camera_autoFocus},
1073         {"native_cancelAutoFocus", "()V", (void *)android_hardware_Camera_cancelAutoFocus},
1074         {"native_takePicture", "(I)V", (void *)android_hardware_Camera_takePicture},
1075         {"native_setParameters", "(Ljava/lang/String;)V",
1076          (void *)android_hardware_Camera_setParameters},
1077         {"native_getParameters", "()Ljava/lang/String;",
1078          (void *)android_hardware_Camera_getParameters},
1079         {"reconnect", "()V", (void *)android_hardware_Camera_reconnect},
1080         {"lock", "()V", (void *)android_hardware_Camera_lock},
1081         {"unlock", "()V", (void *)android_hardware_Camera_unlock},
1082         {"startSmoothZoom", "(I)V", (void *)android_hardware_Camera_startSmoothZoom},
1083         {"stopSmoothZoom", "()V", (void *)android_hardware_Camera_stopSmoothZoom},
1084         {"setDisplayOrientation", "(I)V", (void *)android_hardware_Camera_setDisplayOrientation},
1085         {"_enableShutterSound", "(Z)Z", (void *)android_hardware_Camera_enableShutterSound},
1086         {"_startFaceDetection", "(I)V", (void *)android_hardware_Camera_startFaceDetection},
1087         {"_stopFaceDetection", "()V", (void *)android_hardware_Camera_stopFaceDetection},
1088         {"enableFocusMoveCallback", "(I)V",
1089          (void *)android_hardware_Camera_enableFocusMoveCallback},
1090         {"setAudioRestriction", "(I)V", (void *)android_hardware_Camera_setAudioRestriction},
1091         {"getAudioRestriction", "()I", (void *)android_hardware_Camera_getAudioRestriction},
1092 };
1093 
1094 struct field {
1095     const char *class_name;
1096     const char *field_name;
1097     const char *field_type;
1098     jfieldID   *jfield;
1099 };
1100 
find_fields(JNIEnv * env,field * fields,int count)1101 static void find_fields(JNIEnv *env, field *fields, int count)
1102 {
1103     for (int i = 0; i < count; i++) {
1104         field *f = &fields[i];
1105         jclass clazz = FindClassOrDie(env, f->class_name);
1106         jfieldID field = GetFieldIDOrDie(env, clazz, f->field_name, f->field_type);
1107         *(f->jfield) = field;
1108     }
1109 }
1110 
1111 // Get all the required offsets in java class and register native functions
register_android_hardware_Camera(JNIEnv * env)1112 int register_android_hardware_Camera(JNIEnv *env)
1113 {
1114     field fields_to_find[] = {
1115         { "android/hardware/Camera", "mNativeContext",   "J", &fields.context },
1116         { "android/hardware/Camera$CameraInfo", "facing",   "I", &fields.facing },
1117         { "android/hardware/Camera$CameraInfo", "orientation",   "I", &fields.orientation },
1118         { "android/hardware/Camera$CameraInfo", "canDisableShutterSound",   "Z",
1119           &fields.canDisableShutterSound },
1120         { "android/hardware/Camera$Face", "rect", "Landroid/graphics/Rect;", &fields.face_rect },
1121         { "android/hardware/Camera$Face", "leftEye", "Landroid/graphics/Point;", &fields.face_left_eye},
1122         { "android/hardware/Camera$Face", "rightEye", "Landroid/graphics/Point;", &fields.face_right_eye},
1123         { "android/hardware/Camera$Face", "mouth", "Landroid/graphics/Point;", &fields.face_mouth},
1124         { "android/hardware/Camera$Face", "score", "I", &fields.face_score },
1125         { "android/hardware/Camera$Face", "id", "I", &fields.face_id},
1126         { "android/graphics/Rect", "left", "I", &fields.rect_left },
1127         { "android/graphics/Rect", "top", "I", &fields.rect_top },
1128         { "android/graphics/Rect", "right", "I", &fields.rect_right },
1129         { "android/graphics/Rect", "bottom", "I", &fields.rect_bottom },
1130         { "android/graphics/Point", "x", "I", &fields.point_x},
1131         { "android/graphics/Point", "y", "I", &fields.point_y},
1132     };
1133 
1134     find_fields(env, fields_to_find, NELEM(fields_to_find));
1135 
1136     jclass clazz = FindClassOrDie(env, "android/hardware/Camera");
1137     fields.post_event = GetStaticMethodIDOrDie(env, clazz, "postEventFromNative",
1138                                                "(Ljava/lang/Object;IIILjava/lang/Object;)V");
1139 
1140     clazz = FindClassOrDie(env, "android/graphics/Rect");
1141     fields.rect_constructor = GetMethodIDOrDie(env, clazz, "<init>", "()V");
1142 
1143     clazz = FindClassOrDie(env, "android/hardware/Camera$Face");
1144     fields.face_constructor = GetMethodIDOrDie(env, clazz, "<init>", "()V");
1145 
1146     clazz = env->FindClass("android/graphics/Point");
1147     fields.point_constructor = env->GetMethodID(clazz, "<init>", "()V");
1148     if (fields.point_constructor == NULL) {
1149         ALOGE("Can't find android/graphics/Point()");
1150         return -1;
1151     }
1152 
1153     // Register native functions
1154     return RegisterMethodsOrDie(env, "android/hardware/Camera", camMethods, NELEM(camMethods));
1155 }
1156