使用Firefox / OS X检测锁定屏幕或正在运行的屏幕保护程序

Detect lock screen or running screensaver with Firefox/OS X

本文关键字:运行 程序 屏幕保护 屏幕 Firefox OS 锁定 检测 使用      更新时间:2023-09-26

我正在为 Firefox 创建一个扩展(SDK 附加组件),我需要在其中检测屏幕保护程序和锁屏事件,以便我可以在 Web 应用程序中设置用户的可用性状态。

我已经设法为Windows执行此操作,现在需要移植到OS X。对于 Windows 版本,我使用对本机 API 的调用来确定屏幕是否被锁定等。有没有类似的方法可以从OS X上的Firefox扩展获取操作系统信息?我尝试过谷歌搜索这个,但没有找到一个可靠的答案 - 任何帮助感谢!

在 OSX 上,您可以使用 CGSessionCopyCurrentDictionary 查询锁定的屏幕/屏幕保护程序,并查找"CGSSessionScreenIsLocked"键的存在和值。

这是平台API,所以人们将不得不再次使用js-ctypes并编写一堆代码来使其工作。

我确实让它工作了:以下代码是一个工作示例,您可以在特权暂存器中运行。要获得特权,请打开一个垫子,例如 about:newtab .

Components.utils.import("resource://gre/modules/ctypes.jsm");
var CoreFoundation = new (function() {
    this.CFNumberRef = ctypes.voidptr_t;
    this.CFStringRef = ctypes.voidptr_t;
    this.CFDictionaryRef = ctypes.voidptr_t;
    var lib = ctypes.open("/System/Library/Frameworks/CoreFoundation.framework/CoreFoundation");
    this.CFRelease = lib.declare(
        "CFRelease",
        ctypes.default_abi,
        ctypes.void_t,
        ctypes.voidptr_t);
    var CFStringCreateWithCharacters = lib.declare(
        "CFStringCreateWithCharacters",
        ctypes.default_abi,
        this.CFStringRef,
        ctypes.voidptr_t,
        ctypes.jschar.ptr,
        ctypes.int32_t);
    this.CFStringCreateWithCharacters = function(str) {
        var rv = CFStringCreateWithCharacters(null, str, str.length);
        if (!rv || rv.isNull()) {
            return null;
        }
        return ctypes.CDataFinalizer(rv, this.CFRelease);
    };

    var CFDictionaryGetValue = lib.declare(
        "CFDictionaryGetValue",
        ctypes.default_abi,
        this.CFNumberRef,
        this.CFDictionaryRef,
        this.CFStringRef);
    this.CFDictionaryGetInt = function(dict, str) {
        var rv = CFDictionaryGetValue(dict, this.CFStringCreateWithCharacters(str));
        if (!rv || rv.isNull()) {
            return null;
        };
        return this.CFNumberGetValue(rv);
    };
    var CFNumberGetValue = lib.declare(
        "CFNumberGetValue",
        ctypes.default_abi,
        ctypes.bool,
        this.CFNumberRef,
        ctypes.int32_t,
        ctypes.int32_t.ptr);
    this.CFNumberGetValue = function(num) {
        var rv = new ctypes.int32_t();
        CFNumberGetValue(num, 3, rv.address());
        console.log("CFNumberGetValue", rv, rv.value);
        return rv.value;
    };
    this.close = function() {
        lib.close();
    };
})();
var ApplicationServices = new (function() {
    var lib = ctypes.open("/System/Library/Frameworks/ApplicationServices.framework/ApplicationServices");
    var CGSessionCopyCurrentDictionary = lib.declare(
        "CGSessionCopyCurrentDictionary",
        ctypes.default_abi,
        CoreFoundation.CFDictionaryRef);
    this.CGSessionCopyCurrentDictionary = function() {
        var rv = CGSessionCopyCurrentDictionary();
        if (!rv || rv.isNull()) {
            return null;
        }
        return ctypes.CDataFinalizer(rv, CoreFoundation.CFRelease);
    };
    this.close = function() {
        lib.close();
    };
})();
setInterval(function() {
    var dict = ApplicationServices.CGSessionCopyCurrentDictionary();
    if (dict) {
        var locked = CoreFoundation.CFDictionaryGetInt(dict, "CGSSessionScreenIsLocked");
        console.log("rv", locked);
        if (locked) {
            // do something;
        }
    }
}, 500);