blob: 347ce473102f4d4546772903c9bfce8792fe0ca3 [file] [log] [blame]
// Copyright 2017 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 COMPONENTS_PERFORMANCE_MANAGER_GRAPH_NODE_BASE_H_
#define COMPONENTS_PERFORMANCE_MANAGER_GRAPH_NODE_BASE_H_
#include <stdint.h>
#include <map>
#include <memory>
#include <utility>
#include <vector>
#include "base/callback.h"
#include "base/memory/raw_ptr.h"
#include "base/sequence_checker.h"
#include "base/types/pass_key.h"
#include "components/performance_manager/graph/graph_impl.h"
#include "components/performance_manager/graph/node_type.h"
#include "components/performance_manager/graph/properties.h"
#include "components/performance_manager/public/graph/node_state.h"
namespace performance_manager {
class Node;
// NodeBase implements shared functionality among different types of graph
// nodes. A specific type of graph node will derive from this class and can
// override shared functionality when needed.
// All node classes allow construction on one sequence and subsequent use from
// another sequence.
// All methods not documented otherwise are single-threaded.
class NodeBase {
public:
// Used as a unique key to safely allow downcasting from a public node type
// to NodeBase via "GetImplType" and "GetImpl". The implementations are
// provided by PublicNodeImpl below.
static const uintptr_t kNodeBaseType;
// TODO(siggi): Don't store the node type, expose it on a virtual function
// instead.
explicit NodeBase(NodeTypeEnum type);
NodeBase(const NodeBase&) = delete;
NodeBase& operator=(const NodeBase&) = delete;
virtual ~NodeBase();
// May be called on any sequence.
NodeTypeEnum type() const { return type_; }
// The state of this node.
NodeState GetNodeState() const {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
if (!graph_)
return NodeState::kNotInGraph;
return graph_->GetNodeState(this);
}
// Returns the graph that contains this node. Only valid after JoinGraph() and
// before LeaveGraph().
GraphImpl* graph() const {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
DCHECK(graph_);
return graph_;
}
// Helper functions for casting from a node type to its underlying NodeBase.
// This CHECKs that the cast is valid. These functions work happily with
// public and private node class inputs.
static const NodeBase* FromNode(const Node* node);
static NodeBase* FromNode(Node* node);
// For converting from NodeBase to Node. This is implemented by
// TypedNodeBase.
virtual const Node* ToNode() const = 0;
// Satisfies part of the contract expected by ObservedProperty.
// GetObservers is implemented by TypedNodeImpl.
bool CanSetProperty() const;
bool CanSetAndNotifyProperty() const;
protected:
friend class GraphImpl;
// Helper function for TypedNodeBase to access the list of typed observers
// stored in the graph.
template <typename Observer>
const std::vector<Observer*>& GetObservers(const GraphImpl* graph) const {
DCHECK(CanSetAndNotifyProperty());
return graph->GetObservers<Observer>();
}
// Node lifecycle:
// Step 0: A node is constructed. Node state is kNotInGraph.
// Step 1:
// Joins the |graph|. Node must be in the kNotInGraph state, and will
// transition to kInitializing immediately after this call.
void JoinGraph(GraphImpl* graph);
// Step 2:
// Called as this node is joining |graph_|, a good opportunity to initialize
// node state. The node will be in the kInitializing state during this
// call. Nodes may modify their properties but *not* cause notifications to be
// emitted.
virtual void OnJoiningGraph();
// Step 3:
// Node added notifications are dispatched. The node must not be modified
// during any of these notifications. The node is in the kJoingGraph state.
// Step 4:
// The node lives in the graph normally at this point, in the kActiveInGraph
// state.
// Step 5:
// Called just before leaving |graph_|, a good opportunity to uninitialize
// node state. The node will be in the kActiveInGraph state during this call.
// The node may make property changes, and these changes may cause
// notifications to be dispatched.
virtual void OnBeforeLeavingGraph();
// Step 6:
// Node removed notifications are dispatched. The node must not be modified
// during any of these notifications. The node is in the kLeavingGraph state.
// Step 7:
// Called as this node is leaving |graph_|. Any private node-attached data
// should be destroyed at this point. The node is in the kLeavingGraph state.
virtual void RemoveNodeAttachedData() = 0;
// Step 8:
// Leaves the graph that this node is a part of. The node is in the
// kLeavingGraph state during this call, and will be in the kNotInGraph state
// immediately afterwards.
void LeaveGraph();
const NodeTypeEnum type_;
// Assigned when JoinGraph() is called, up until LeaveGraph() is called, where
// it is reset to null.
raw_ptr<GraphImpl> graph_ GUARDED_BY_CONTEXT(sequence_checker_) = nullptr;
SEQUENCE_CHECKER(sequence_checker_);
};
// Helper for implementing the Node parent of a PublicNodeClass.
template <class NodeImplClass, class PublicNodeClass>
class PublicNodeImpl : public PublicNodeClass {
public:
// Node implementation:
Graph* GetGraph() const override {
return static_cast<const NodeImplClass*>(this)->graph();
}
NodeState GetNodeState() const override {
return static_cast<const NodeBase*>(static_cast<const NodeImplClass*>(this))
->GetNodeState();
}
uintptr_t GetImplType() const override { return NodeBase::kNodeBaseType; }
const void* GetImpl() const override {
// This exposes NodeBase, so that we can complete the triangle of casting
// between all views of a node: NodeBase, FooNodeImpl, and FooNode.
return static_cast<const NodeBase*>(
static_cast<const NodeImplClass*>(this));
}
};
template <class NodeImplClass, class NodeClass, class NodeObserverClass>
class TypedNodeBase : public NodeBase {
public:
using ObservedProperty =
ObservedPropertyImpl<NodeImplClass, NodeClass, NodeObserverClass>;
TypedNodeBase() : NodeBase(NodeImplClass::Type()) {}
TypedNodeBase(const TypedNodeBase&) = delete;
TypedNodeBase& operator=(const TypedNodeBase&) = delete;
// Helper functions for casting from NodeBase to a concrete node type. This
// CHECKs that the cast is valid.
static const NodeImplClass* FromNodeBase(const NodeBase* node) {
CHECK_EQ(NodeImplClass::Type(), node->type());
return static_cast<const NodeImplClass*>(node);
}
static NodeImplClass* FromNodeBase(NodeBase* node) {
CHECK_EQ(NodeImplClass::Type(), node->type());
return static_cast<NodeImplClass*>(node);
}
// Helper function for casting from a public node type to the private impl.
// This also casts away const correctness, as it is intended to be used by
// impl code that uses the public observer interface for a node type, where
// all notifications are delivered with a const node pointer. This CHECKs that
// the cast is valid.
static NodeImplClass* FromNode(const NodeClass* node) {
NodeBase* node_base = const_cast<NodeBase*>(NodeBase::FromNode(node));
return FromNodeBase(node_base);
}
// Convenience accessor to the per-node-class list of observers that is stored
// in the graph. Satisfies the contract expected by ObservedProperty.
const std::vector<NodeObserverClass*>& GetObservers() const {
// Mediate through NodeBase, as it's the class that is friended by the
// GraphImpl in order to provide access.
return NodeBase::GetObservers<NodeObserverClass>(graph());
}
const Node* ToNode() const override {
return static_cast<const NodeImplClass*>(this);
}
};
} // namespace performance_manager
#endif // COMPONENTS_PERFORMANCE_MANAGER_GRAPH_NODE_BASE_H_