blob: f63e60452e0c22c2290c17632f916db731f2f141 [file] [log] [blame]
asaperssonb432b262016-05-23 06:49:36 -07001/*
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
sakald34a7112016-07-01 05:10:51 -070014#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"
sakal2a5f3712016-09-09 00:11:48 -070017#include "webrtc/system_wrappers/include/metrics.h"
asaperssonb432b262016-05-23 06:49:36 -070018#include "webrtc/system_wrappers/include/metrics_default.h"
19
sakal2a5f3712016-09-09 00:11:48 -070020// Enables collection of native histograms and creating them.
asaperssonb432b262016-05-23 06:49:36 -070021namespace webrtc_jni {
sakal2a5f3712016-09-09 00:11:48 -070022
asaperssonb432b262016-05-23 06:49:36 -070023JOW(void, Metrics_nativeEnable)(JNIEnv* jni, jclass) {
24 webrtc::metrics::Enable();
25}
26
27// Gets and clears native histograms.
28JOW(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}
sakal2a5f3712016-09-09 00:11:48 -070061
62JOW(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
sakal9d1315a2016-11-10 06:35:17 -080069JOW(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
sakal2a5f3712016-09-09 00:11:48 -070076JOW(void, Metrics_00024Histogram_nativeAddSample)
77(JNIEnv* jni, jclass, jlong histogram, jint sample) {
sakal71b83932016-09-16 06:56:15 -070078 if (histogram) {
79 HistogramAdd(reinterpret_cast<webrtc::metrics::Histogram*>(histogram),
80 sample);
81 }
sakal2a5f3712016-09-09 00:11:48 -070082}
83
asaperssonb432b262016-05-23 06:49:36 -070084} // namespace webrtc_jni