2022-02-11 09:07:11 +11:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
* Copyright 2020 Blender Foundation. All rights reserved. */
|
2020-01-24 11:11:38 +01:00
|
|
|
|
|
|
|
|
/** \file
|
|
|
|
|
* \ingroup depsgraph
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "intern/depsgraph_relation.h" /* own include */
|
|
|
|
|
|
|
|
|
|
#include "BLI_utildefines.h"
|
|
|
|
|
|
|
|
|
|
#include "intern/depsgraph_type.h"
|
|
|
|
|
#include "intern/node/deg_node.h"
|
|
|
|
|
|
2020-11-07 18:17:12 +05:30
|
|
|
namespace blender::deg {
|
2020-01-24 11:11:38 +01:00
|
|
|
|
|
|
|
|
Relation::Relation(Node *from, Node *to, const char *description)
|
|
|
|
|
: from(from), to(to), name(description), flag(0)
|
|
|
|
|
{
|
|
|
|
|
/* Hook it up to the nodes which use it.
|
|
|
|
|
*
|
|
|
|
|
* NOTE: We register relation in the nodes which this link connects to here
|
2020-02-26 15:21:32 +11:00
|
|
|
* in constructor but we don't un-register it in the destructor.
|
2020-01-24 11:11:38 +01:00
|
|
|
*
|
|
|
|
|
* Reasoning:
|
|
|
|
|
*
|
|
|
|
|
* - Destructor is currently used on global graph destruction, so there's no
|
|
|
|
|
* real need in avoiding dangling pointers, all the memory is to be freed
|
|
|
|
|
* anyway.
|
|
|
|
|
*
|
2020-02-26 15:21:32 +11:00
|
|
|
* - Un-registering relation is not a cheap operation, so better to have it
|
2020-01-24 11:11:38 +01:00
|
|
|
* as an explicit call if we need this. */
|
2020-04-28 17:53:09 +02:00
|
|
|
from->outlinks.append(this);
|
|
|
|
|
to->inlinks.append(this);
|
2020-01-24 11:11:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Relation::~Relation()
|
|
|
|
|
{
|
|
|
|
|
/* Sanity check. */
|
2020-01-28 14:50:13 +01:00
|
|
|
BLI_assert(from != nullptr && to != nullptr);
|
2020-01-24 11:11:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Relation::unlink()
|
|
|
|
|
{
|
|
|
|
|
/* Sanity check. */
|
2020-01-28 14:50:13 +01:00
|
|
|
BLI_assert(from != nullptr && to != nullptr);
|
2020-04-28 17:53:09 +02:00
|
|
|
from->outlinks.remove_first_occurrence_and_reorder(this);
|
|
|
|
|
to->inlinks.remove_first_occurrence_and_reorder(this);
|
2020-01-24 11:11:38 +01:00
|
|
|
}
|
|
|
|
|
|
2020-11-07 18:17:12 +05:30
|
|
|
} // namespace blender::deg
|