1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
|
// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ui/base/idle/idle.h"
#include "base/android/jni_string.h"
#include "base/android/scoped_java_ref.h"
#include "base/memory/singleton.h"
#include "base/notreached.h"
#include "ui/base/idle/idle_internal.h"
// Must come after all headers that specialize FromJniType() / ToJniType().
#include "ui/base/ui_base_jni_headers/IdleDetector_jni.h"
using base::android::ConvertJavaStringToUTF8;
using base::android::ScopedJavaLocalRef;
using jni_zero::AttachCurrentThread;
namespace ui {
namespace {
class AndroidIdleMonitor {
public:
AndroidIdleMonitor() {
JNIEnv* env = AttachCurrentThread();
j_idle_manager_.Reset(Java_IdleDetector_create(env));
}
~AndroidIdleMonitor() {}
static AndroidIdleMonitor* GetInstance() {
// This class is constructed a single time whenever the
// first web page using the User Idle Detection API
// starts monitoring the idle state.
//
// Upon construction, a java object is instantiated and
// the Android broadcast receivers are registered to listen
// to the OS events.
//
// The singleton only gets destroyed when the browser exists,
// so the broadcast receivers never get unregistered. The
// events are rare and we respond very quickly to them.
//
// In addition to that, Android kills chrome regularly, so
// in practice the lifetime is reasonably scoped.
//
// This approach is consistent with the implementation on
// Macs.
return base::Singleton<AndroidIdleMonitor>::get();
}
int CalculateIdleTime() {
JNIEnv* env = AttachCurrentThread();
jlong result = Java_IdleDetector_getIdleTime(env, j_idle_manager_);
return result;
}
bool CheckIdleStateIsLocked() {
JNIEnv* env = AttachCurrentThread();
jboolean result = Java_IdleDetector_isScreenLocked(env, j_idle_manager_);
return result;
}
private:
base::android::ScopedJavaGlobalRef<jobject> j_idle_manager_;
};
} // namespace
int CalculateIdleTime() {
return AndroidIdleMonitor::GetInstance()->CalculateIdleTime();
}
bool CheckIdleStateIsLocked() {
if (IdleStateForTesting().has_value())
return IdleStateForTesting().value() == IDLE_STATE_LOCKED;
return AndroidIdleMonitor::GetInstance()->CheckIdleStateIsLocked();
}
IdleState CalculateIdleState(int idle_threshold) {
// TODO(crbug.com/40591477): implementation pending.
NOTIMPLEMENTED();
return IdleState::IDLE_STATE_UNKNOWN;
}
} // namespace ui
|