blob: f242e4bbd8a6a58829a1e323cf2e7cbd531f4a46 [file] [log] [blame]
// Copyright 2015 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef MOJO_PUBLIC_CPP_BINDINGS_ASSOCIATED_GROUP_H_
#define MOJO_PUBLIC_CPP_BINDINGS_ASSOCIATED_GROUP_H_
#include "base/component_export.h"
#include "base/functional/callback.h"
#include "base/memory/scoped_refptr.h"
namespace mojo {
class AssociatedGroupController;
class ScopedInterfaceEndpointHandle;
// AssociatedGroup refers to all the interface endpoints running at one end of a
// message pipe.
// It is thread safe and cheap to make copies.
class COMPONENT_EXPORT(MOJO_CPP_BINDINGS_BASE) AssociatedGroup {
public:
AssociatedGroup();
explicit AssociatedGroup(scoped_refptr<AssociatedGroupController> controller);
explicit AssociatedGroup(const ScopedInterfaceEndpointHandle& handle);
AssociatedGroup(const AssociatedGroup& other);
~AssociatedGroup();
AssociatedGroup& operator=(const AssociatedGroup& other);
// The return value of this getter if this object is initialized with a
// ScopedInterfaceEndpointHandle:
// - If the handle is invalid, the return value will always be null.
// - If the handle is valid and non-pending, the return value will be
// non-null and remain unchanged even if the handle is later reset.
// - If the handle is pending asssociation, the return value will initially
// be null, change to non-null when/if the handle is associated, and
// remain unchanged ever since.
AssociatedGroupController* GetController();
private:
base::RepeatingCallback<AssociatedGroupController*()> controller_getter_;
scoped_refptr<AssociatedGroupController> controller_;
};
} // namespace mojo
#endif // MOJO_PUBLIC_CPP_BINDINGS_ASSOCIATED_GROUP_H_