blob: 6e66c4a0fcd3ad3c58f51b2d3a9fb9b645943011 [file] [log] [blame]
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef NetworkInformation_h
#define NetworkInformation_h
#include "bindings/core/v8/ActiveScriptWrappable.h"
#include "core/dom/ContextLifecycleObserver.h"
#include "core/dom/events/EventTarget.h"
#include "platform/network/NetworkStateNotifier.h"
#include "platform/wtf/Optional.h"
#include "platform/wtf/Time.h"
#include "public/platform/WebConnectionType.h"
#include "public/platform/WebEffectiveConnectionType.h"
namespace blink {
class ExecutionContext;
class NetworkInformation final
: public EventTargetWithInlineData,
public ActiveScriptWrappable<NetworkInformation>,
public ContextLifecycleObserver,
public NetworkStateNotifier::NetworkStateObserver {
USING_GARBAGE_COLLECTED_MIXIN(NetworkInformation);
DEFINE_WRAPPERTYPEINFO();
public:
static NetworkInformation* Create(ExecutionContext*);
~NetworkInformation() override;
String type() const;
double downlinkMax() const;
String effectiveType() const;
unsigned long rtt() const;
double downlink() const;
bool saveData() const;
// NetworkStateObserver overrides.
void ConnectionChange(WebConnectionType,
double downlink_max_mbps,
WebEffectiveConnectionType effective_type,
const Optional<TimeDelta>& http_rtt,
const Optional<TimeDelta>& transport_rtt,
const Optional<double>& downlink_mbps,
bool save_data) override;
// EventTarget overrides.
const AtomicString& InterfaceName() const override;
ExecutionContext* GetExecutionContext() const override;
void RemoveAllEventListeners() override;
// ScriptWrappable
bool HasPendingActivity() const final;
// ContextLifecycleObserver overrides.
void ContextDestroyed(ExecutionContext*) override;
void Trace(blink::Visitor*) override;
DEFINE_ATTRIBUTE_EVENT_LISTENER(change);
DEFINE_ATTRIBUTE_EVENT_LISTENER(typechange); // Deprecated
protected:
// EventTarget overrides.
void AddedEventListener(const AtomicString& event_type,
RegisteredEventListener&) final;
void RemovedEventListener(const AtomicString& event_type,
const RegisteredEventListener&) final;
private:
explicit NetworkInformation(ExecutionContext*);
void StartObserving();
void StopObserving();
// A random number by which the RTT and downlink estimates are multiplied
// with. Adding this noise reduces the chances of cross-origin fingerprinting.
double GetRandomMultiplier() const;
// Rounds |rtt| as per the NetInfo spec and to improve privacy.
unsigned long RoundRtt(const Optional<TimeDelta>& rtt) const;
// Rounds |downlink_mbps| as per the NetInfo spec and to improve privacy. The
// returned value is in Mbps.
double RoundMbps(const Optional<double>& downlink_mbps) const;
// Whether this object is listening for events from NetworkStateNotifier.
bool IsObserving() const;
// Touched only on context thread.
WebConnectionType type_;
// Touched only on context thread.
double downlink_max_mbps_;
// Current effective connection type, which is the connection type whose
// typical performance is most similar to the measured performance of the
// network in use.
WebEffectiveConnectionType effective_type_;
// HTTP RTT estimate. Rounded off to the nearest 25 msec. Touched only on
// context thread.
unsigned long http_rtt_msec_;
// Downlink throughput estimate. Rounded off to the nearest 25 kbps. Touched
// only on context thread.
double downlink_mbps_;
// Whether the data saving mode is enabled.
bool save_data_;
// Whether ContextLifecycleObserver::contextDestroyed has been called.
bool context_stopped_;
std::unique_ptr<NetworkStateNotifier::NetworkStateObserverHandle>
connection_observer_handle_;
};
} // namespace blink
#endif // NetworkInformation_h