OLD | NEW |
(Empty) | |
| 1 /* |
| 2 * Copyright 2016 The WebRTC project authors. All Rights Reserved. |
| 3 * |
| 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 |
| 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 */ |
| 10 |
| 11 #include <map> |
| 12 #include <memory> |
| 13 |
| 14 #include "webrtc/api/java/jni/classreferenceholder.h" |
| 15 #include "webrtc/api/java/jni/jni_helpers.h" |
| 16 #include "webrtc/api/java/jni/native_handle_impl.h" |
| 17 #include "webrtc/system_wrappers/include/metrics_default.h" |
| 18 |
| 19 // Enables collection of native histograms. |
| 20 namespace webrtc_jni { |
| 21 JOW(void, Metrics_nativeEnable)(JNIEnv* jni, jclass) { |
| 22 webrtc::metrics::Enable(); |
| 23 } |
| 24 |
| 25 // Gets and clears native histograms. |
| 26 JOW(jobject, Metrics_nativeGetAndReset)(JNIEnv* jni, jclass) { |
| 27 jclass j_metrics_class = FindClass(jni, "org/webrtc/Metrics"); |
| 28 jmethodID j_add = |
| 29 GetMethodID(jni, j_metrics_class, "add", |
| 30 "(Ljava/lang/String;Lorg/webrtc/Metrics$HistogramInfo;)V"); |
| 31 jclass j_info_class = FindClass(jni, "org/webrtc/Metrics$HistogramInfo"); |
| 32 jmethodID j_add_sample = GetMethodID(jni, j_info_class, "addSample", "(II)V"); |
| 33 |
| 34 // Create |Metrics|. |
| 35 jobject j_metrics = jni->NewObject( |
| 36 j_metrics_class, GetMethodID(jni, j_metrics_class, "<init>", "()V")); |
| 37 |
| 38 std::map<std::string, std::unique_ptr<webrtc::metrics::SampleInfo>> |
| 39 histograms; |
| 40 webrtc::metrics::GetAndReset(&histograms); |
| 41 for (const auto& kv : histograms) { |
| 42 // Create and add samples to |HistogramInfo|. |
| 43 jobject j_info = jni->NewObject( |
| 44 j_info_class, GetMethodID(jni, j_info_class, "<init>", "(III)V"), |
| 45 kv.second->min, kv.second->max, |
| 46 static_cast<int>(kv.second->bucket_count)); |
| 47 for (const auto& sample : kv.second->samples) { |
| 48 jni->CallVoidMethod(j_info, j_add_sample, sample.first, sample.second); |
| 49 } |
| 50 // Add |HistogramInfo| to |Metrics|. |
| 51 jstring j_name = jni->NewStringUTF(kv.first.c_str()); |
| 52 jni->CallVoidMethod(j_metrics, j_add, j_name, j_info); |
| 53 jni->DeleteLocalRef(j_name); |
| 54 jni->DeleteLocalRef(j_info); |
| 55 } |
| 56 CHECK_EXCEPTION(jni); |
| 57 return j_metrics; |
| 58 } |
| 59 } // namespace webrtc_jni |
OLD | NEW |