OLD | NEW |
---|---|
1 /* | 1 /* |
2 * Copyright 2016 The WebRTC project authors. All Rights Reserved. | 2 * Copyright 2016 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 | 10 |
11 #include <map> | 11 #include <map> |
12 #include <memory> | 12 #include <memory> |
13 | 13 |
14 #include "webrtc/api/android/jni/classreferenceholder.h" | 14 #include "webrtc/api/android/jni/classreferenceholder.h" |
15 #include "webrtc/api/android/jni/jni_helpers.h" | 15 #include "webrtc/api/android/jni/jni_helpers.h" |
16 #include "webrtc/api/android/jni/native_handle_impl.h" | 16 #include "webrtc/api/android/jni/native_handle_impl.h" |
17 #include "webrtc/system_wrappers/include/metrics.h" | |
17 #include "webrtc/system_wrappers/include/metrics_default.h" | 18 #include "webrtc/system_wrappers/include/metrics_default.h" |
18 | 19 |
19 // Enables collection of native histograms. | 20 // Enables collection of native histograms and creating them. |
20 namespace webrtc_jni { | 21 namespace webrtc_jni { |
22 | |
21 JOW(void, Metrics_nativeEnable)(JNIEnv* jni, jclass) { | 23 JOW(void, Metrics_nativeEnable)(JNIEnv* jni, jclass) { |
22 webrtc::metrics::Enable(); | 24 webrtc::metrics::Enable(); |
23 } | 25 } |
24 | 26 |
25 // Gets and clears native histograms. | 27 // Gets and clears native histograms. |
26 JOW(jobject, Metrics_nativeGetAndReset)(JNIEnv* jni, jclass) { | 28 JOW(jobject, Metrics_nativeGetAndReset)(JNIEnv* jni, jclass) { |
27 jclass j_metrics_class = FindClass(jni, "org/webrtc/Metrics"); | 29 jclass j_metrics_class = FindClass(jni, "org/webrtc/Metrics"); |
28 jmethodID j_add = | 30 jmethodID j_add = |
29 GetMethodID(jni, j_metrics_class, "add", | 31 GetMethodID(jni, j_metrics_class, "add", |
30 "(Ljava/lang/String;Lorg/webrtc/Metrics$HistogramInfo;)V"); | 32 "(Ljava/lang/String;Lorg/webrtc/Metrics$HistogramInfo;)V"); |
(...skipping 18 matching lines...) Expand all Loading... | |
49 } | 51 } |
50 // Add |HistogramInfo| to |Metrics|. | 52 // Add |HistogramInfo| to |Metrics|. |
51 jstring j_name = jni->NewStringUTF(kv.first.c_str()); | 53 jstring j_name = jni->NewStringUTF(kv.first.c_str()); |
52 jni->CallVoidMethod(j_metrics, j_add, j_name, j_info); | 54 jni->CallVoidMethod(j_metrics, j_add, j_name, j_info); |
53 jni->DeleteLocalRef(j_name); | 55 jni->DeleteLocalRef(j_name); |
54 jni->DeleteLocalRef(j_info); | 56 jni->DeleteLocalRef(j_info); |
55 } | 57 } |
56 CHECK_EXCEPTION(jni); | 58 CHECK_EXCEPTION(jni); |
57 return j_metrics; | 59 return j_metrics; |
58 } | 60 } |
61 | |
62 JOW(jlong, Metrics_00024Histogram_nativeCreateCounts) | |
63 (JNIEnv* jni, jclass, jstring j_name, jint min, jint max, jint buckets) { | |
64 std::string name = JavaToStdString(jni, j_name); | |
65 return (jlong)webrtc::metrics::HistogramFactoryGetCounts(name, min, max, | |
magjed_webrtc
2016/09/08 10:19:54
Use jlongFromPointer when converting a pointer to
sakal
2016/09/08 11:20:28
Done.
| |
66 buckets); | |
67 } | |
68 | |
69 JOW(void, Metrics_00024Histogram_nativeAddSample) | |
70 (JNIEnv* jni, jclass, jlong histogram, jint sample) { | |
71 HistogramAdd(reinterpret_cast<webrtc::metrics::Histogram*>(histogram), | |
magjed_webrtc
2016/09/08 10:19:54
This is a new function to the histogram interface.
sakal
2016/09/08 11:20:29
The reason I added this function is that I didn't
magjed_webrtc
2016/09/08 11:53:29
I see. I didn't realize we had already committed t
| |
72 sample); | |
73 } | |
74 | |
59 } // namespace webrtc_jni | 75 } // namespace webrtc_jni |
OLD | NEW |