Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(173)

Side by Side Diff: webrtc/api/java/jni/jni_helpers.cc

Issue 1819553002: Added the JNI interface to get and set RtpParameters and the maximum bitrate limits. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Code review feedback Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « webrtc/api/java/jni/jni_helpers.h ('k') | webrtc/api/java/jni/peerconnection_jni.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2015 The WebRTC project authors. All Rights Reserved. 2 * Copyright 2015 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 #include "webrtc/api/java/jni/jni_helpers.h" 10 #include "webrtc/api/java/jni/jni_helpers.h"
(...skipping 16 matching lines...) Expand all
27 // were attached by the JVM because of a Java->native call. 27 // were attached by the JVM because of a Java->native call.
28 static pthread_key_t g_jni_ptr; 28 static pthread_key_t g_jni_ptr;
29 29
30 JavaVM *GetJVM() { 30 JavaVM *GetJVM() {
31 RTC_CHECK(g_jvm) << "JNI_OnLoad failed to run?"; 31 RTC_CHECK(g_jvm) << "JNI_OnLoad failed to run?";
32 return g_jvm; 32 return g_jvm;
33 } 33 }
34 34
35 // Return a |JNIEnv*| usable on this thread or NULL if this thread is detached. 35 // Return a |JNIEnv*| usable on this thread or NULL if this thread is detached.
36 JNIEnv* GetEnv() { 36 JNIEnv* GetEnv() {
37 void* env = NULL; 37 void* env = nullptr;
38 jint status = g_jvm->GetEnv(&env, JNI_VERSION_1_6); 38 jint status = g_jvm->GetEnv(&env, JNI_VERSION_1_6);
39 RTC_CHECK(((env != NULL) && (status == JNI_OK)) || 39 RTC_CHECK(((env != nullptr) && (status == JNI_OK)) ||
40 ((env == NULL) && (status == JNI_EDETACHED))) 40 ((env == nullptr) && (status == JNI_EDETACHED)))
41 << "Unexpected GetEnv return: " << status << ":" << env; 41 << "Unexpected GetEnv return: " << status << ":" << env;
42 return reinterpret_cast<JNIEnv*>(env); 42 return reinterpret_cast<JNIEnv*>(env);
43 } 43 }
44 44
45 static void ThreadDestructor(void* prev_jni_ptr) { 45 static void ThreadDestructor(void* prev_jni_ptr) {
46 // This function only runs on threads where |g_jni_ptr| is non-NULL, meaning 46 // This function only runs on threads where |g_jni_ptr| is non-NULL, meaning
47 // we were responsible for originally attaching the thread, so are responsible 47 // we were responsible for originally attaching the thread, so are responsible
48 // for detaching it now. However, because some JVM implementations (notably 48 // for detaching it now. However, because some JVM implementations (notably
49 // Oracle's http://goo.gl/eHApYT) also use the pthread_key_create mechanism, 49 // Oracle's http://goo.gl/eHApYT) also use the pthread_key_create mechanism,
50 // the JVMs accounting info for this thread may already be wiped out by the 50 // the JVMs accounting info for this thread may already be wiped out by the
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 JNIEnv* jni = GetEnv(); 102 JNIEnv* jni = GetEnv();
103 if (jni) 103 if (jni)
104 return jni; 104 return jni;
105 RTC_CHECK(!pthread_getspecific(g_jni_ptr)) 105 RTC_CHECK(!pthread_getspecific(g_jni_ptr))
106 << "TLS has a JNIEnv* but not attached?"; 106 << "TLS has a JNIEnv* but not attached?";
107 107
108 std::string name(GetThreadName() + " - " + GetThreadId()); 108 std::string name(GetThreadName() + " - " + GetThreadId());
109 JavaVMAttachArgs args; 109 JavaVMAttachArgs args;
110 args.version = JNI_VERSION_1_6; 110 args.version = JNI_VERSION_1_6;
111 args.name = &name[0]; 111 args.name = &name[0];
112 args.group = NULL; 112 args.group = nullptr;
113 // Deal with difference in signatures between Oracle's jni.h and Android's. 113 // Deal with difference in signatures between Oracle's jni.h and Android's.
114 #ifdef _JAVASOFT_JNI_H_ // Oracle's jni.h violates the JNI spec! 114 #ifdef _JAVASOFT_JNI_H_ // Oracle's jni.h violates the JNI spec!
115 void* env = NULL; 115 void* env = nullptr;
116 #else 116 #else
117 JNIEnv* env = NULL; 117 JNIEnv* env = nullptr;
118 #endif 118 #endif
119 RTC_CHECK(!g_jvm->AttachCurrentThread(&env, &args)) 119 RTC_CHECK(!g_jvm->AttachCurrentThread(&env, &args))
120 << "Failed to attach thread"; 120 << "Failed to attach thread";
121 RTC_CHECK(env) << "AttachCurrentThread handed back NULL!"; 121 RTC_CHECK(env) << "AttachCurrentThread handed back NULL!";
122 jni = reinterpret_cast<JNIEnv*>(env); 122 jni = reinterpret_cast<JNIEnv*>(env);
123 RTC_CHECK(!pthread_setspecific(g_jni_ptr, jni)) << "pthread_setspecific"; 123 RTC_CHECK(!pthread_setspecific(g_jni_ptr, jni)) << "pthread_setspecific";
124 return jni; 124 return jni;
125 } 125 }
126 126
127 // Return a |jlong| that will correctly convert back to |ptr|. This is needed 127 // Return a |jlong| that will correctly convert back to |ptr|. This is needed
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
208 208
209 // Given a UTF-8 encoded |native| string return a new (UTF-16) jstring. 209 // Given a UTF-8 encoded |native| string return a new (UTF-16) jstring.
210 jstring JavaStringFromStdString(JNIEnv* jni, const std::string& native) { 210 jstring JavaStringFromStdString(JNIEnv* jni, const std::string& native) {
211 jstring jstr = jni->NewStringUTF(native.c_str()); 211 jstring jstr = jni->NewStringUTF(native.c_str());
212 CHECK_EXCEPTION(jni) << "error during NewStringUTF"; 212 CHECK_EXCEPTION(jni) << "error during NewStringUTF";
213 return jstr; 213 return jstr;
214 } 214 }
215 215
216 // Given a (UTF-16) jstring return a new UTF-8 native string. 216 // Given a (UTF-16) jstring return a new UTF-8 native string.
217 std::string JavaToStdString(JNIEnv* jni, const jstring& j_string) { 217 std::string JavaToStdString(JNIEnv* jni, const jstring& j_string) {
218 const char* chars = jni->GetStringUTFChars(j_string, NULL); 218 const char* chars = jni->GetStringUTFChars(j_string, nullptr);
219 CHECK_EXCEPTION(jni) << "Error during GetStringUTFChars"; 219 CHECK_EXCEPTION(jni) << "Error during GetStringUTFChars";
220 std::string str(chars, jni->GetStringUTFLength(j_string)); 220 std::string str(chars, jni->GetStringUTFLength(j_string));
221 CHECK_EXCEPTION(jni) << "Error during GetStringUTFLength"; 221 CHECK_EXCEPTION(jni) << "Error during GetStringUTFLength";
222 jni->ReleaseStringUTFChars(j_string, chars); 222 jni->ReleaseStringUTFChars(j_string, chars);
223 CHECK_EXCEPTION(jni) << "Error during ReleaseStringUTFChars"; 223 CHECK_EXCEPTION(jni) << "Error during ReleaseStringUTFChars";
224 return str; 224 return str;
225 } 225 }
226 226
227 // Return the (singleton) Java Enum object corresponding to |index|; 227 // Return the (singleton) Java Enum object corresponding to |index|;
228 jobject JavaEnumFromIndex(JNIEnv* jni, jclass state_class, 228 jobject JavaEnumFromIndex(JNIEnv* jni, jclass state_class,
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
262 CHECK_EXCEPTION(jni) << "error during DeleteGlobalRef"; 262 CHECK_EXCEPTION(jni) << "error during DeleteGlobalRef";
263 } 263 }
264 264
265 // Scope Java local references to the lifetime of this object. Use in all C++ 265 // Scope Java local references to the lifetime of this object. Use in all C++
266 // callbacks (i.e. entry points that don't originate in a Java callstack 266 // callbacks (i.e. entry points that don't originate in a Java callstack
267 // through a "native" method call). 267 // through a "native" method call).
268 ScopedLocalRefFrame::ScopedLocalRefFrame(JNIEnv* jni) : jni_(jni) { 268 ScopedLocalRefFrame::ScopedLocalRefFrame(JNIEnv* jni) : jni_(jni) {
269 RTC_CHECK(!jni_->PushLocalFrame(0)) << "Failed to PushLocalFrame"; 269 RTC_CHECK(!jni_->PushLocalFrame(0)) << "Failed to PushLocalFrame";
270 } 270 }
271 ScopedLocalRefFrame::~ScopedLocalRefFrame() { 271 ScopedLocalRefFrame::~ScopedLocalRefFrame() {
272 jni_->PopLocalFrame(NULL); 272 jni_->PopLocalFrame(nullptr);
273 }
274
275 // Creates an iterator representing the end of any collection.
276 Iterable::Iterator::Iterator() : iterator_(nullptr) {}
277
278 // Creates an iterator pointing to the beginning of the specified collection.
279 Iterable::Iterator::Iterator(JNIEnv* jni, jobject iterable) : jni_(jni) {
280 jclass j_class = GetObjectClass(jni, iterable);
281 jmethodID iterator_id =
282 GetMethodID(jni, j_class, "iterator", "()Ljava/util/Iterator;");
283 iterator_ = jni->CallObjectMethod(iterable, iterator_id);
284 CHECK_EXCEPTION(jni) << "error during CallObjectMethod";
285 RTC_CHECK(iterator_ != nullptr);
286
287 jclass iterator_class = GetObjectClass(jni, iterator_);
288 has_next_id_ = GetMethodID(jni, iterator_class, "hasNext", "()Z");
289 next_id_ = GetMethodID(jni, iterator_class, "next", "()Ljava/lang/Object;");
290
291 // Start at the first element in the collection.
292 ++(*this);
293 }
294
295 // Move constructor - necessary to be able to return iterator types from
296 // functions.
297 Iterable::Iterator::Iterator(Iterator&& other)
298 : jni_(std::move(other.jni_)),
299 iterator_(std::move(other.iterator_)),
300 value_(std::move(other.value_)),
301 has_next_id_(std::move(other.has_next_id_)),
302 next_id_(std::move(other.next_id_)),
303 thread_checker_(std::move(other.thread_checker_)){};
304
305 // Advances the iterator one step.
306 Iterable::Iterator& Iterable::Iterator::operator++() {
307 RTC_CHECK(thread_checker_.CalledOnValidThread());
308 if (AtEnd()) {
309 // Can't move past the end.
310 return *this;
311 }
312 bool has_next = jni_->CallBooleanMethod(iterator_, has_next_id_);
313 CHECK_EXCEPTION(jni_) << "error during CallBooleanMethod";
314 if (!has_next) {
315 iterator_ = nullptr;
316 value_ = nullptr;
317 return *this;
318 }
319
320 value_ = jni_->CallObjectMethod(iterator_, next_id_);
321 CHECK_EXCEPTION(jni_) << "error during CallObjectMethod";
322 return *this;
323 }
324
325 // Provides a way to compare the iterator with itself and with the end iterator.
326 // Note: all other comparison results are undefined, just like for C++ input
327 // iterators.
328 bool Iterable::Iterator::operator==(const Iterable::Iterator& other) {
329 // Two different active iterators should never be compared.
330 RTC_DCHECK(this == &other || AtEnd() || other.AtEnd());
331 return AtEnd() == other.AtEnd();
332 }
333
334 jobject Iterable::Iterator::operator*() {
335 RTC_CHECK(!AtEnd());
336 return value_;
337 }
338
339 bool Iterable::Iterator::AtEnd() const {
340 RTC_CHECK(thread_checker_.CalledOnValidThread());
341 return jni_ == nullptr || IsNull(jni_, iterator_);
273 } 342 }
274 343
275 } // namespace webrtc_jni 344 } // namespace webrtc_jni
OLDNEW
« no previous file with comments | « webrtc/api/java/jni/jni_helpers.h ('k') | webrtc/api/java/jni/peerconnection_jni.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698