2014-06-18 08:11:00 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim:expandtab:shiftwidth=2:tabstop=2:
|
|
|
|
*/
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
#ifndef __WakeLockListener_h__
|
2019-11-12 20:27:20 +03:00
|
|
|
#define __WakeLockListener_h__
|
|
|
|
|
|
|
|
#include <unistd.h>
|
2014-06-18 08:11:00 +04:00
|
|
|
|
2019-11-12 20:27:20 +03:00
|
|
|
#include "mozilla/StaticPtr.h"
|
|
|
|
#include "nsHashKeys.h"
|
|
|
|
#include "nsClassHashtable.h"
|
2014-06-18 08:11:00 +04:00
|
|
|
|
2019-11-12 20:27:20 +03:00
|
|
|
#include "nsIDOMWakeLockListener.h"
|
2016-05-09 19:51:00 +03:00
|
|
|
|
2019-11-12 20:27:20 +03:00
|
|
|
#ifdef MOZ_ENABLE_DBUS
|
|
|
|
# include "mozilla/DBusHelpers.h"
|
|
|
|
#endif
|
2014-06-18 08:11:00 +04:00
|
|
|
|
|
|
|
class WakeLockTopic;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Receives WakeLock events and simply passes it on to the right WakeLockTopic
|
|
|
|
* to inhibit the screensaver.
|
|
|
|
*/
|
2015-03-21 19:28:04 +03:00
|
|
|
class WakeLockListener final : public nsIDOMMozWakeLockListener {
|
2014-06-18 08:11:00 +04:00
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS;
|
|
|
|
|
|
|
|
static WakeLockListener* GetSingleton(bool aCreate = true);
|
|
|
|
static void Shutdown();
|
|
|
|
|
2015-01-21 00:39:44 +03:00
|
|
|
virtual nsresult Callback(const nsAString& topic,
|
2015-03-21 19:28:04 +03:00
|
|
|
const nsAString& state) override;
|
2014-06-18 08:11:00 +04:00
|
|
|
|
|
|
|
private:
|
|
|
|
WakeLockListener();
|
2016-05-09 13:28:37 +03:00
|
|
|
~WakeLockListener() = default;
|
2014-06-18 08:11:00 +04:00
|
|
|
|
2018-10-01 16:22:48 +03:00
|
|
|
bool EnsureDBusConnection();
|
|
|
|
|
2017-06-28 00:44:39 +03:00
|
|
|
static mozilla::StaticRefPtr<WakeLockListener> sSingleton;
|
2014-06-18 08:11:00 +04:00
|
|
|
|
2019-11-12 20:27:20 +03:00
|
|
|
#ifdef MOZ_ENABLE_DBUS
|
2016-05-09 13:28:37 +03:00
|
|
|
RefPtr<DBusConnection> mConnection;
|
2019-11-12 20:27:20 +03:00
|
|
|
#endif
|
2014-06-18 08:11:00 +04:00
|
|
|
// Map of topic names to |WakeLockTopic|s.
|
|
|
|
// We assume a small, finite-sized set of topics.
|
|
|
|
nsClassHashtable<nsStringHashKey, WakeLockTopic> mTopics;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __WakeLockListener_h__
|