Collect plugin runtime profile statistics.
[ardour.git] / libs / ardour / vca_manager.cc
index 20e9e38ca2aaf0b7e0bc7ec73f7a15df04fee546..90a1233087938226947ef299a54691735ebd764e 100644 (file)
 
 */
 
-#include "pbd/convert.h"
 #include "pbd/error.h"
 #include "pbd/replace_all.h"
+#include "pbd/string_convert.h"
 
 #include "ardour/boost_debug.h"
+#include "ardour/selection.h"
 #include "ardour/session.h"
 #include "ardour/slavable.h"
 #include "ardour/vca.h"
@@ -50,11 +51,24 @@ VCAManager::~VCAManager ()
 void
 VCAManager::clear ()
 {
-       Mutex::Lock lm (lock);
-       for (VCAList::const_iterator i = _vcas.begin(); i != _vcas.end(); ++i) {
-               (*i)->DropReferences ();
+       bool send = false;
+       {
+               Mutex::Lock lm (lock);
+               for (VCAList::const_iterator i = _vcas.begin(); i != _vcas.end(); ++i) {
+                       if ((*i)->is_selected ()) {
+                               _session.selection().remove_stripable_by_id ((*i)->id());
+                               send = true;
+                       }
+                       (*i)->DropReferences ();
+               }
+               _vcas.clear ();
+       }
+
+       if (send && !_session.deletion_in_progress ()) {
+               PropertyChange pc;
+               pc.add (Properties::selected);
+               PresentationInfo::Change (pc);
        }
-       _vcas.clear ();
 }
 
 VCAList
@@ -64,11 +78,13 @@ VCAManager::vcas () const
        return _vcas;
 }
 
-int
+VCAList
 VCAManager::create_vca (uint32_t howmany, std::string const & name_template)
 {
        VCAList vcal;
 
+       uint32_t n_stripables = _session.nstripables ();
+
        {
                Mutex::Lock lm (lock);
 
@@ -78,7 +94,7 @@ VCAManager::create_vca (uint32_t howmany, std::string const & name_template)
                        string name = name_template;
 
                        if (name.find ("%n")) {
-                               string sn = PBD::to_string (num, std::dec);
+                               string sn = PBD::to_string (num);
                                replace_all (name, "%n", sn);
                        }
 
@@ -86,6 +102,7 @@ VCAManager::create_vca (uint32_t howmany, std::string const & name_template)
                        BOOST_MARK_VCA (vca);
 
                        vca->init ();
+                       vca->set_presentation_order (n + n_stripables);
 
                        _vcas.push_back (vca);
                        vcal.push_back (vca);
@@ -96,10 +113,9 @@ VCAManager::create_vca (uint32_t howmany, std::string const & name_template)
 
        _session.set_dirty ();
 
-       return 0;
+       return vcal;
 }
 
-
 void
 VCAManager::remove_vca (boost::shared_ptr<VCA> vca)
 {
@@ -112,6 +128,12 @@ VCAManager::remove_vca (boost::shared_ptr<VCA> vca)
 
        vca->DropReferences ();
 
+       if (vca->is_selected () && !_session.deletion_in_progress ()) {
+               _session.selection().remove_stripable_by_id (vca->id());
+               PropertyChange pc;
+               pc.add (Properties::selected);
+               PresentationInfo::Change (pc);
+       }
        _session.set_dirty ();
 }
 
@@ -129,6 +151,20 @@ VCAManager::vca_by_number (int32_t n) const
        return boost::shared_ptr<VCA>();
 }
 
+boost::shared_ptr<VCA>
+VCAManager::vca_by_name (std::string const& name) const
+{
+       Mutex::Lock lm (lock);
+
+       for (VCAList::const_iterator i = _vcas.begin(); i != _vcas.end(); ++i) {
+               if ((*i)->name() == name || (*i)->full_name() == name) {
+                       return *i;
+               }
+       }
+
+       return boost::shared_ptr<VCA>();
+}
+
 XMLNode&
 VCAManager::get_state ()
 {