OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "base/android/java_handler_thread.h" | 5 #include "base/android/java_handler_thread.h" |
6 | 6 |
7 #include <jni.h> | 7 #include <jni.h> |
8 | 8 |
9 #include "base/android/jni_android.h" | 9 #include "base/android/jni_android.h" |
10 #include "base/android/jni_string.h" | 10 #include "base/android/jni_string.h" |
(...skipping 17 matching lines...) Expand all Loading... |
28 } | 28 } |
29 | 29 |
30 void JavaHandlerThread::Start() { | 30 void JavaHandlerThread::Start() { |
31 // Check the thread has not already been started. | 31 // Check the thread has not already been started. |
32 DCHECK(!message_loop_); | 32 DCHECK(!message_loop_); |
33 | 33 |
34 JNIEnv* env = base::android::AttachCurrentThread(); | 34 JNIEnv* env = base::android::AttachCurrentThread(); |
35 base::WaitableEvent initialize_event( | 35 base::WaitableEvent initialize_event( |
36 WaitableEvent::ResetPolicy::AUTOMATIC, | 36 WaitableEvent::ResetPolicy::AUTOMATIC, |
37 WaitableEvent::InitialState::NOT_SIGNALED); | 37 WaitableEvent::InitialState::NOT_SIGNALED); |
38 Java_JavaHandlerThread_start(env, | 38 Java_JavaHandlerThread_start(env, java_thread_.obj(), |
39 java_thread_.obj(), | |
40 reinterpret_cast<intptr_t>(this), | 39 reinterpret_cast<intptr_t>(this), |
41 reinterpret_cast<intptr_t>(&initialize_event)); | 40 reinterpret_cast<intptr_t>(&initialize_event)); |
42 // Wait for thread to be initialized so it is ready to be used when Start | 41 // Wait for thread to be initialized so it is ready to be used when Start |
43 // returns. | 42 // returns. |
44 base::ThreadRestrictions::ScopedAllowWait wait_allowed; | 43 base::ThreadRestrictions::ScopedAllowWait wait_allowed; |
45 initialize_event.Wait(); | 44 initialize_event.Wait(); |
46 } | 45 } |
47 | 46 |
48 void JavaHandlerThread::Stop() { | 47 void JavaHandlerThread::Stop() { |
49 JNIEnv* env = base::android::AttachCurrentThread(); | 48 JNIEnv* env = base::android::AttachCurrentThread(); |
50 base::WaitableEvent shutdown_event(WaitableEvent::ResetPolicy::AUTOMATIC, | 49 base::WaitableEvent shutdown_event(WaitableEvent::ResetPolicy::AUTOMATIC, |
51 WaitableEvent::InitialState::NOT_SIGNALED); | 50 WaitableEvent::InitialState::NOT_SIGNALED); |
52 Java_JavaHandlerThread_stop(env, | 51 Java_JavaHandlerThread_stop(env, |
53 java_thread_.obj(), | 52 java_thread_.obj(), |
54 reinterpret_cast<intptr_t>(this), | 53 reinterpret_cast<intptr_t>(this), |
55 reinterpret_cast<intptr_t>(&shutdown_event)); | 54 reinterpret_cast<intptr_t>(&shutdown_event)); |
56 // Wait for thread to shut down before returning. | 55 // Wait for thread to shut down before returning. |
57 base::ThreadRestrictions::ScopedAllowWait wait_allowed; | 56 base::ThreadRestrictions::ScopedAllowWait wait_allowed; |
58 shutdown_event.Wait(); | 57 shutdown_event.Wait(); |
59 } | 58 } |
60 | 59 |
61 void JavaHandlerThread::InitializeThread(JNIEnv* env, | 60 void JavaHandlerThread::InitializeThread(JNIEnv* env, |
62 const JavaParamRef<jobject>& obj, | 61 const JavaParamRef<jobject>& obj, |
63 jlong event) { | 62 jlong event) { |
64 // TYPE_JAVA to get the Android java style message loop. | 63 // TYPE_JAVA to get the Android java style message loop. |
65 message_loop_.reset(new base::MessageLoop(base::MessageLoop::TYPE_JAVA)); | 64 message_loop_.reset(new base::MessageLoop(base::MessageLoop::TYPE_JAVA)); |
66 static_cast<MessageLoopForUI*>(message_loop_.get())->Start(); | 65 StartMessageLoop(); |
67 reinterpret_cast<base::WaitableEvent*>(event)->Signal(); | 66 reinterpret_cast<base::WaitableEvent*>(event)->Signal(); |
68 } | 67 } |
69 | 68 |
70 void JavaHandlerThread::StopThread(JNIEnv* env, | 69 void JavaHandlerThread::StopThread(JNIEnv* env, |
71 const JavaParamRef<jobject>& obj, | 70 const JavaParamRef<jobject>& obj, |
72 jlong event) { | 71 jlong event) { |
| 72 StopMessageLoop(); |
| 73 reinterpret_cast<base::WaitableEvent*>(event)->Signal(); |
| 74 } |
| 75 |
| 76 void JavaHandlerThread::StartMessageLoop() { |
| 77 static_cast<MessageLoopForUI*>(message_loop_.get())->Start(); |
| 78 } |
| 79 |
| 80 void JavaHandlerThread::StopMessageLoop() { |
73 static_cast<MessageLoopForUI*>(message_loop_.get())->QuitWhenIdle(); | 81 static_cast<MessageLoopForUI*>(message_loop_.get())->QuitWhenIdle(); |
74 reinterpret_cast<base::WaitableEvent*>(event)->Signal(); | |
75 } | 82 } |
76 | 83 |
77 // static | 84 // static |
78 bool JavaHandlerThread::RegisterBindings(JNIEnv* env) { | 85 bool JavaHandlerThread::RegisterBindings(JNIEnv* env) { |
79 return RegisterNativesImpl(env); | 86 return RegisterNativesImpl(env); |
80 } | 87 } |
81 | 88 |
82 } // namespace android | 89 } // namespace android |
83 } // namespace base | 90 } // namespace base |
OLD | NEW |