fix a bad transition in the transportFSM.
[ardour.git] / libs / ardour / graphnode.cc
1 /*
2  * Copyright (C) 2010-2011 David Robillard <d@drobilla.net>
3  * Copyright (C) 2011 Carl Hetherington <carl@carlh.net>
4  * Copyright (C) 2017-2019 Robin Gareus <robin@gareus.org>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License along
17  * with this program; if not, write to the Free Software Foundation, Inc.,
18  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19  */
20
21 #include "ardour/graph.h"
22 #include "ardour/graphnode.h"
23 #include "ardour/route.h"
24
25 using namespace ARDOUR;
26
27 GraphNode::GraphNode (boost::shared_ptr<Graph> graph)
28         : _graph (graph)
29 {
30 }
31
32 GraphNode::~GraphNode ()
33 {
34 }
35
36 void
37 GraphNode::prep (int chain)
38 {
39         /* This is the number of nodes that directly feed us */
40         g_atomic_int_set (&_refcount, _init_refcount[chain]);
41 }
42
43 /** Called by an upstream node, when it has completed processing */
44 void
45 GraphNode::trigger ()
46 {
47         /* check if we can run */
48         if (g_atomic_int_dec_and_test (&_refcount)) {
49 #if 0 // TODO optimize: remove prep()
50                 /* reset reference count for next cycle */
51                 g_atomic_int_set (&_refcount, _init_refcount[chain]);
52 #endif
53                 /* All nodes that feed this node have completed, so this node be processed now. */
54                 _graph->trigger (this);
55         }
56 }
57
58 void
59 GraphNode::finish (int chain)
60 {
61         node_set_t::iterator i;
62         bool                 feeds = false;
63
64         /* Notify downstream nodes that depend on this node */
65         for (i = _activation_set[chain].begin (); i != _activation_set[chain].end (); ++i) {
66                 (*i)->trigger ();
67                 feeds = true;
68         }
69
70         if (!feeds) {
71                 /* This node is a terminal node that does not feed another note,
72                  * so notify the graph to decrement the the finished count */
73                 _graph->reached_terminal_node ();
74         }
75 }
76
77 void
78 GraphNode::process ()
79 {
80         _graph->process_one_route (dynamic_cast<Route*> (this));
81 }