change API for GainControl, VCA and VCAManager
[ardour.git] / libs / ardour / vca_manager.cc
1 /*
2   Copyright (C) 2016 Paul Davis
3
4   This program is free software; you can redistribute it and/or modify
5   it under the terms of the GNU General Public License as published by
6   the Free Software Foundation; either version 2 of the License, or
7   (at your option) any later version.
8
9   This program is distributed in the hope that it will be useful,
10   but WITHOUT ANY WARRANTY; without even the implied warranty of
11   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12   GNU General Public License for more details.
13
14   You should have received a copy of the GNU General Public License
15   along with this program; if not, write to the Free Software
16   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include "pbd/convert.h"
21 #include "pbd/replace_all.h"
22
23 #include "ardour/vca.h"
24 #include "ardour/vca_manager.h"
25
26 #include "i18n.h"
27
28 using namespace ARDOUR;
29 using namespace Glib::Threads;
30 using std::string;
31
32 string VCAManager::xml_node_name (X_("VCAManager"));
33
34 VCAManager::VCAManager (Session& s)
35         : SessionHandleRef (s)
36 {
37 }
38
39 VCAManager::~VCAManager ()
40 {
41         clear ();
42 }
43
44 void
45 VCAManager::clear ()
46 {
47         Mutex::Lock lm (lock);
48         _vcas.clear ();
49 }
50
51 VCAList
52 VCAManager::vcas () const
53 {
54         Mutex::Lock lm (lock);
55         return _vcas;
56 }
57
58 int
59 VCAManager::create_vca (uint32_t howmany, std::string const & name_template)
60 {
61         VCAList vcal;
62
63         {
64                 Mutex::Lock lm (lock);
65
66                 for (uint32_t n = 0; n < howmany; ++n) {
67
68                         int num = VCA::next_vca_number ();
69                         string name = name_template;
70
71                         if (name.find ("%n")) {
72                                 string sn = PBD::to_string (num, std::dec);
73                                 replace_all (name, "%n", sn);
74                         }
75
76                         boost::shared_ptr<VCA> vca = boost::shared_ptr<VCA> (new VCA (_session, name, num));
77
78                         _vcas.push_back (vca);
79                         vcal.push_back (vca);
80                 }
81         }
82
83         VCAAdded (vcal); /* EMIT SIGNAL */
84
85         return 0;
86 }
87
88
89 void
90 VCAManager::remove_vca (boost::shared_ptr<VCA> vca)
91 {
92         {
93                 Mutex::Lock lm (lock);
94                 _vcas.remove (vca);
95         }
96
97         VCAList vcal;
98         vcal.push_back (vca);
99
100         VCARemoved (vcal); /* EMIT SIGNAL */
101 }
102
103 boost::shared_ptr<VCA>
104 VCAManager::vca_by_number (uint32_t n) const
105 {
106         Mutex::Lock lm (lock);
107
108         for (VCAList::const_iterator i = _vcas.begin(); i != _vcas.end(); ++i) {
109                 if ((*i)->number() == n) {
110                         return *i;
111                 }
112         }
113
114         return boost::shared_ptr<VCA>();
115 }
116
117 XMLNode&
118 VCAManager::get_state ()
119 {
120         XMLNode* node = new XMLNode (xml_node_name);
121
122         {
123                 Mutex::Lock lm (lock);
124
125                 for (VCAList::const_iterator i = _vcas.begin(); i != _vcas.end(); ++i) {
126                         node->add_child_nocopy ((*i)->get_state());
127                 }
128         }
129
130         return *node;
131 }
132
133 int
134 VCAManager::set_state (XMLNode const& node, int version)
135 {
136         if (node.name() != xml_node_name) {
137                 return -1;
138         }
139
140         XMLNodeList const & children = node.children();
141         VCAList vcal;
142
143         {
144
145                 Mutex::Lock lm (lock);
146
147                 for (XMLNodeList::const_iterator i = children.begin(); i != children.end(); ++i) {
148                         if ((*i)->name() == VCA::xml_node_name) {
149                                 boost::shared_ptr<VCA> vca = boost::shared_ptr<VCA> (new VCA (_session, **i, version));
150                                 _vcas.push_back (vca);
151                                 vcal.push_back (vca);
152                         }
153                 }
154         }
155
156         VCAAdded (vcal); /* EMIT SIGNAL */
157
158         return 0;
159 }