asapersson | b432b26 | 2016-05-23 06:49:36 -0700 | [diff] [blame] | 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 | |
sakal | d34a711 | 2016-07-01 05:10:51 -0700 | [diff] [blame] | 14 | #include "webrtc/api/android/jni/classreferenceholder.h" |
| 15 | #include "webrtc/api/android/jni/jni_helpers.h" |
| 16 | #include "webrtc/api/android/jni/native_handle_impl.h" |
sakal | 2a5f371 | 2016-09-09 00:11:48 -0700 | [diff] [blame] | 17 | #include "webrtc/system_wrappers/include/metrics.h" |
asapersson | b432b26 | 2016-05-23 06:49:36 -0700 | [diff] [blame] | 18 | #include "webrtc/system_wrappers/include/metrics_default.h" |
| 19 | |
sakal | 2a5f371 | 2016-09-09 00:11:48 -0700 | [diff] [blame] | 20 | // Enables collection of native histograms and creating them. |
asapersson | b432b26 | 2016-05-23 06:49:36 -0700 | [diff] [blame] | 21 | namespace webrtc_jni { |
sakal | 2a5f371 | 2016-09-09 00:11:48 -0700 | [diff] [blame] | 22 | |
asapersson | b432b26 | 2016-05-23 06:49:36 -0700 | [diff] [blame] | 23 | JOW(void, Metrics_nativeEnable)(JNIEnv* jni, jclass) { |
| 24 | webrtc::metrics::Enable(); |
| 25 | } |
| 26 | |
| 27 | // Gets and clears native histograms. |
| 28 | JOW(jobject, Metrics_nativeGetAndReset)(JNIEnv* jni, jclass) { |
| 29 | jclass j_metrics_class = FindClass(jni, "org/webrtc/Metrics"); |
| 30 | jmethodID j_add = |
| 31 | GetMethodID(jni, j_metrics_class, "add", |
| 32 | "(Ljava/lang/String;Lorg/webrtc/Metrics$HistogramInfo;)V"); |
| 33 | jclass j_info_class = FindClass(jni, "org/webrtc/Metrics$HistogramInfo"); |
| 34 | jmethodID j_add_sample = GetMethodID(jni, j_info_class, "addSample", "(II)V"); |
| 35 | |
| 36 | // Create |Metrics|. |
| 37 | jobject j_metrics = jni->NewObject( |
| 38 | j_metrics_class, GetMethodID(jni, j_metrics_class, "<init>", "()V")); |
| 39 | |
| 40 | std::map<std::string, std::unique_ptr<webrtc::metrics::SampleInfo>> |
| 41 | histograms; |
| 42 | webrtc::metrics::GetAndReset(&histograms); |
| 43 | for (const auto& kv : histograms) { |
| 44 | // Create and add samples to |HistogramInfo|. |
| 45 | jobject j_info = jni->NewObject( |
| 46 | j_info_class, GetMethodID(jni, j_info_class, "<init>", "(III)V"), |
| 47 | kv.second->min, kv.second->max, |
| 48 | static_cast<int>(kv.second->bucket_count)); |
| 49 | for (const auto& sample : kv.second->samples) { |
| 50 | jni->CallVoidMethod(j_info, j_add_sample, sample.first, sample.second); |
| 51 | } |
| 52 | // Add |HistogramInfo| to |Metrics|. |
| 53 | jstring j_name = jni->NewStringUTF(kv.first.c_str()); |
| 54 | jni->CallVoidMethod(j_metrics, j_add, j_name, j_info); |
| 55 | jni->DeleteLocalRef(j_name); |
| 56 | jni->DeleteLocalRef(j_info); |
| 57 | } |
| 58 | CHECK_EXCEPTION(jni); |
| 59 | return j_metrics; |
| 60 | } |
sakal | 2a5f371 | 2016-09-09 00:11:48 -0700 | [diff] [blame] | 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 jlongFromPointer( |
| 66 | webrtc::metrics::HistogramFactoryGetCounts(name, min, max, buckets)); |
| 67 | } |
| 68 | |
sakal | 9d1315a | 2016-11-10 06:35:17 -0800 | [diff] [blame^] | 69 | JOW(jlong, Metrics_00024Histogram_nativeCreateEnumeration) |
| 70 | (JNIEnv* jni, jclass, jstring j_name, jint max) { |
| 71 | std::string name = JavaToStdString(jni, j_name); |
| 72 | return jlongFromPointer( |
| 73 | webrtc::metrics::HistogramFactoryGetEnumeration(name, max)); |
| 74 | } |
| 75 | |
sakal | 2a5f371 | 2016-09-09 00:11:48 -0700 | [diff] [blame] | 76 | JOW(void, Metrics_00024Histogram_nativeAddSample) |
| 77 | (JNIEnv* jni, jclass, jlong histogram, jint sample) { |
sakal | 71b8393 | 2016-09-16 06:56:15 -0700 | [diff] [blame] | 78 | if (histogram) { |
| 79 | HistogramAdd(reinterpret_cast<webrtc::metrics::Histogram*>(histogram), |
| 80 | sample); |
| 81 | } |
sakal | 2a5f371 | 2016-09-09 00:11:48 -0700 | [diff] [blame] | 82 | } |
| 83 | |
asapersson | b432b26 | 2016-05-23 06:49:36 -0700 | [diff] [blame] | 84 | } // namespace webrtc_jni |