mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 04:27:37 +00:00
082fd9cd7f
This patch was generated by a script. Here's the source of the script for future reference: find . \( -iname "*.cpp" -o -iname "*.h" \) | \ xargs -n 1 sed -i "s/nsRefPtr<nsIRunnable>/nsCOMPtr<nsIRunnable>/g"
119 lines
2.8 KiB
C++
119 lines
2.8 KiB
C++
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* vim: set sw=2 ts=8 et tw=80 : */
|
|
/* 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/. */
|
|
|
|
#include "OfflineObserver.h"
|
|
#include "nsNetUtil.h"
|
|
#include "nsIOService.h"
|
|
#include "mozilla/net/NeckoCommon.h"
|
|
#include "nsIObserverService.h"
|
|
#include "nsThreadUtils.h"
|
|
namespace mozilla {
|
|
namespace net {
|
|
|
|
NS_IMPL_ISUPPORTS(OfflineObserver, nsIObserver)
|
|
|
|
void
|
|
OfflineObserver::RegisterOfflineObserver()
|
|
{
|
|
if (NS_IsMainThread()) {
|
|
RegisterOfflineObserverMainThread();
|
|
} else {
|
|
nsCOMPtr<nsIRunnable> event =
|
|
NS_NewRunnableMethod(this, &OfflineObserver::RegisterOfflineObserverMainThread);
|
|
NS_DispatchToMainThread(event);
|
|
}
|
|
}
|
|
|
|
void
|
|
OfflineObserver::RemoveOfflineObserver()
|
|
{
|
|
if (NS_IsMainThread()) {
|
|
RemoveOfflineObserverMainThread();
|
|
} else {
|
|
nsCOMPtr<nsIRunnable> event =
|
|
NS_NewRunnableMethod(this, &OfflineObserver::RemoveOfflineObserverMainThread);
|
|
NS_DispatchToMainThread(event);
|
|
}
|
|
}
|
|
|
|
void
|
|
OfflineObserver::RegisterOfflineObserverMainThread()
|
|
{
|
|
nsCOMPtr<nsIObserverService> observerService =
|
|
mozilla::services::GetObserverService();
|
|
if (!observerService) {
|
|
return;
|
|
}
|
|
nsresult rv = observerService->AddObserver(this,
|
|
NS_IOSERVICE_APP_OFFLINE_STATUS_TOPIC, false);
|
|
if (NS_FAILED(rv)) {
|
|
NS_WARNING("Failed to register observer");
|
|
}
|
|
}
|
|
|
|
void
|
|
OfflineObserver::RemoveOfflineObserverMainThread()
|
|
{
|
|
nsCOMPtr<nsIObserverService> observerService =
|
|
mozilla::services::GetObserverService();
|
|
if (observerService) {
|
|
observerService->RemoveObserver(this, NS_IOSERVICE_APP_OFFLINE_STATUS_TOPIC);
|
|
}
|
|
}
|
|
|
|
OfflineObserver::OfflineObserver(DisconnectableParent * parent)
|
|
{
|
|
mParent = parent;
|
|
RegisterOfflineObserver();
|
|
}
|
|
|
|
void
|
|
OfflineObserver::RemoveObserver()
|
|
{
|
|
RemoveOfflineObserver();
|
|
mParent = nullptr;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
OfflineObserver::Observe(nsISupports *aSubject,
|
|
const char *aTopic,
|
|
const char16_t *aData)
|
|
{
|
|
if (mParent &&
|
|
!strcmp(aTopic, NS_IOSERVICE_APP_OFFLINE_STATUS_TOPIC)) {
|
|
mParent->OfflineNotification(aSubject);
|
|
}
|
|
return NS_OK;
|
|
}
|
|
|
|
nsresult
|
|
DisconnectableParent::OfflineNotification(nsISupports *aSubject)
|
|
{
|
|
nsCOMPtr<nsIAppOfflineInfo> info(do_QueryInterface(aSubject));
|
|
if (!info) {
|
|
return NS_ERROR_NOT_INITIALIZED;
|
|
}
|
|
|
|
uint32_t targetAppId = NECKO_UNKNOWN_APP_ID;
|
|
info->GetAppId(&targetAppId);
|
|
|
|
// Obtain App ID
|
|
uint32_t appId = GetAppId();
|
|
if (appId != targetAppId) {
|
|
return NS_OK;
|
|
}
|
|
|
|
// If the app is offline, close the socket
|
|
if (NS_IsAppOffline(appId)) {
|
|
OfflineDisconnect();
|
|
}
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
} // net namespace
|
|
} // mozilla namespace
|