2018-09-24 18:12:42 -04:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2018 Robin Gareus <robin@gareus.org>
|
|
|
|
*
|
2019-08-02 17:26:43 -04:00
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
2018-09-24 18:12:42 -04:00
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
2019-08-02 17:26:43 -04:00
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2018-09-24 18:12:42 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <gtkmm/frame.h>
|
|
|
|
#include <gtkmm/label.h>
|
|
|
|
#include <gtkmm/viewport.h>
|
|
|
|
|
2022-05-05 22:40:26 -04:00
|
|
|
#include "ardour/io_plug.h"
|
2018-09-24 18:12:42 -04:00
|
|
|
#include "ardour/session.h"
|
2022-04-04 14:48:56 -04:00
|
|
|
|
2018-09-24 18:12:42 -04:00
|
|
|
#include "gtkmm2ext/gui_thread.h"
|
|
|
|
|
|
|
|
#include "plugin_dspload_ui.h"
|
|
|
|
#include "plugin_dspload_window.h"
|
|
|
|
|
|
|
|
#include "pbd/i18n.h"
|
|
|
|
|
|
|
|
using namespace ARDOUR;
|
|
|
|
|
|
|
|
PluginDSPLoadWindow::PluginDSPLoadWindow ()
|
|
|
|
: ArdourWindow (_("Plugin DSP Load"))
|
2018-09-24 19:00:58 -04:00
|
|
|
, _reset_button (_("Reset All Stats"))
|
2019-12-14 05:44:28 -05:00
|
|
|
, _sort_avg_button (_("Sort by Average Load"))
|
|
|
|
, _sort_max_button (_("Sort by Worst-Case Load"))
|
2018-09-24 18:12:42 -04:00
|
|
|
{
|
|
|
|
_scroller.set_border_width (0);
|
|
|
|
_scroller.set_shadow_type (Gtk::SHADOW_NONE);
|
|
|
|
_scroller.set_policy (Gtk::POLICY_NEVER, Gtk::POLICY_AUTOMATIC);
|
|
|
|
_scroller.add (_box);
|
|
|
|
|
2018-09-24 19:00:58 -04:00
|
|
|
_reset_button.set_name ("generic button");
|
2019-12-14 05:44:28 -05:00
|
|
|
_sort_avg_button.set_name ("generic button");
|
|
|
|
_sort_max_button.set_name ("generic button");
|
|
|
|
|
2018-09-24 19:00:58 -04:00
|
|
|
_reset_button.signal_clicked.connect (sigc::mem_fun (*this, &PluginDSPLoadWindow::clear_all_stats));
|
2019-12-14 05:44:28 -05:00
|
|
|
_sort_avg_button.signal_clicked.connect (sigc::bind (sigc::mem_fun (*this, &PluginDSPLoadWindow::sort_by_stats), true));
|
|
|
|
_sort_max_button.signal_clicked.connect (sigc::bind (sigc::mem_fun (*this, &PluginDSPLoadWindow::sort_by_stats), false));
|
2018-09-24 19:00:58 -04:00
|
|
|
|
2018-09-24 18:12:42 -04:00
|
|
|
add (_scroller);
|
|
|
|
_box.show ();
|
|
|
|
_scroller.show ();
|
|
|
|
|
|
|
|
Gtk::Viewport* viewport = (Gtk::Viewport*) _scroller.get_child();
|
|
|
|
viewport->set_shadow_type(Gtk::SHADOW_NONE);
|
|
|
|
viewport->set_border_width(0);
|
2019-12-14 05:44:28 -05:00
|
|
|
|
|
|
|
_ctrlbox.pack_end (_reset_button, Gtk::PACK_SHRINK, 2);
|
|
|
|
_ctrlbox.pack_end (_sort_avg_button, Gtk::PACK_SHRINK, 2);
|
|
|
|
_ctrlbox.pack_end (_sort_max_button, Gtk::PACK_SHRINK, 2);
|
|
|
|
_ctrlbox.show_all ();
|
2018-09-24 18:12:42 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
PluginDSPLoadWindow::~PluginDSPLoadWindow ()
|
|
|
|
{
|
|
|
|
drop_references ();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PluginDSPLoadWindow::set_session (Session* s)
|
|
|
|
{
|
|
|
|
ArdourWindow::set_session (s);
|
|
|
|
if (!s) {
|
|
|
|
drop_references ();
|
2022-01-26 15:21:06 -05:00
|
|
|
} else if (get_visible ()) {
|
2018-09-25 11:46:58 -04:00
|
|
|
refill_processors ();
|
2018-09-24 18:12:42 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PluginDSPLoadWindow::session_going_away ()
|
|
|
|
{
|
|
|
|
ENSURE_GUI_THREAD (*this, &PluginDSPLoadWindow::session_going_away);
|
|
|
|
ArdourWindow::session_going_away ();
|
|
|
|
drop_references ();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PluginDSPLoadWindow::on_show ()
|
|
|
|
{
|
|
|
|
ArdourWindow::on_show ();
|
|
|
|
refill_processors ();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PluginDSPLoadWindow::on_hide ()
|
|
|
|
{
|
|
|
|
ArdourWindow::on_hide ();
|
|
|
|
drop_references ();
|
|
|
|
}
|
|
|
|
|
2018-09-24 19:00:58 -04:00
|
|
|
void
|
|
|
|
PluginDSPLoadWindow::clear_all_stats ()
|
|
|
|
{
|
|
|
|
RouteList routes = _session->get_routelist ();
|
|
|
|
for (RouteList::const_iterator i = routes.begin(); i != routes.end(); ++i) {
|
|
|
|
(*i)->foreach_processor (sigc::mem_fun (*this, &PluginDSPLoadWindow::clear_processor_stats));
|
|
|
|
}
|
2022-05-05 22:40:26 -04:00
|
|
|
for (auto const& iop : *_session->io_plugs ()) {
|
|
|
|
clear_pluginsert_stats (iop);
|
|
|
|
}
|
2018-09-24 19:00:58 -04:00
|
|
|
}
|
|
|
|
|
2019-12-14 05:44:28 -05:00
|
|
|
struct DSPLoadSorter
|
|
|
|
{
|
|
|
|
bool _avg;
|
|
|
|
DSPLoadSorter (bool avg) : _avg (avg) {}
|
|
|
|
bool operator() (PluginLoadStatsGui* a, PluginLoadStatsGui* b) {
|
|
|
|
return _avg ? (a->dsp_avg () < b->dsp_avg ()) : (a->dsp_max () < b->dsp_max ());
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
void
|
|
|
|
PluginDSPLoadWindow::sort_by_stats (bool avg)
|
|
|
|
{
|
|
|
|
std::list<PluginLoadStatsGui*> pl;
|
|
|
|
std::list<Gtk::Widget*> children = _box.get_children ();
|
|
|
|
for (std::list<Gtk::Widget*>::iterator child = children.begin(); child != children.end(); ++child) {
|
|
|
|
Gtk::Frame* frame = dynamic_cast<Gtk::Frame*>(*child);
|
|
|
|
if (!frame) continue;
|
|
|
|
PluginLoadStatsGui* plsg = dynamic_cast<PluginLoadStatsGui*>(frame->get_child());
|
|
|
|
if (plsg) {
|
|
|
|
pl.push_back (plsg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
pl.sort (DSPLoadSorter (avg));
|
|
|
|
uint32_t pos = 0;
|
|
|
|
for (std::list<PluginLoadStatsGui*>::iterator i = pl.begin(); i != pl.end(); ++i, ++pos) {
|
|
|
|
Gtk::Container* p = (*i)->get_parent();
|
|
|
|
assert (p);
|
|
|
|
_box.reorder_child (*p, pos);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-24 18:12:42 -04:00
|
|
|
void
|
|
|
|
PluginDSPLoadWindow::drop_references ()
|
|
|
|
{
|
|
|
|
std::list<Gtk::Widget*> children = _box.get_children ();
|
|
|
|
for (std::list<Gtk::Widget*>::iterator child = children.begin(); child != children.end(); ++child) {
|
|
|
|
(*child)->hide ();
|
|
|
|
_box.remove (**child);
|
2019-12-14 05:44:28 -05:00
|
|
|
if (*child != &_ctrlbox) {
|
2018-09-24 19:00:58 -04:00
|
|
|
delete *child;
|
|
|
|
}
|
2018-09-24 18:12:42 -04:00
|
|
|
}
|
2018-09-25 11:46:58 -04:00
|
|
|
_route_connections.drop_connections ();
|
|
|
|
_processor_connections.drop_connections ();
|
2018-09-24 18:12:42 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PluginDSPLoadWindow::refill_processors ()
|
|
|
|
{
|
|
|
|
drop_references ();
|
2018-09-25 11:46:58 -04:00
|
|
|
if (!_session || _session->deletion_in_progress()) {
|
|
|
|
/* may be called from session d'tor, removing monitor-section w/plugin */
|
|
|
|
return;
|
|
|
|
}
|
2018-11-05 14:15:01 -05:00
|
|
|
|
|
|
|
_session->RouteAdded.connect (
|
|
|
|
_route_connections, invalidator (*this), boost::bind (&PluginDSPLoadWindow::refill_processors, this), gui_context()
|
|
|
|
);
|
|
|
|
|
2018-09-24 18:12:42 -04:00
|
|
|
RouteList routes = _session->get_routelist ();
|
|
|
|
for (RouteList::const_iterator i = routes.begin(); i != routes.end(); ++i) {
|
|
|
|
|
|
|
|
(*i)->foreach_processor (sigc::bind (sigc::mem_fun (*this, &PluginDSPLoadWindow::add_processor_to_display), (*i)->name()));
|
|
|
|
|
|
|
|
(*i)->processors_changed.connect (
|
|
|
|
_route_connections, invalidator (*this), boost::bind (&PluginDSPLoadWindow::refill_processors, this), gui_context()
|
|
|
|
);
|
|
|
|
|
|
|
|
(*i)->DropReferences.connect (
|
2018-10-06 19:44:33 -04:00
|
|
|
_route_connections, invalidator (*this), boost::bind (&PluginDSPLoadWindow::refill_processors, this), gui_context()
|
2018-09-24 18:12:42 -04:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2022-05-05 22:40:26 -04:00
|
|
|
_session->IOPluginsChanged.connect (
|
|
|
|
_route_connections, invalidator (*this), boost::bind (&PluginDSPLoadWindow::refill_processors, this), gui_context()
|
|
|
|
);
|
|
|
|
|
|
|
|
for (auto const& iop : *_session->io_plugs ()) {
|
|
|
|
add_pluginsert_to_display (iop, iop->is_pre () ? _("I/O Pre") : _("I/O Post"));
|
|
|
|
}
|
|
|
|
|
2018-09-24 18:12:42 -04:00
|
|
|
if (_box.get_children().size() == 0) {
|
|
|
|
_box.add (*Gtk::manage (new Gtk::Label (_("No Plugins"))));
|
|
|
|
_box.show_all ();
|
2018-09-24 19:00:58 -04:00
|
|
|
} else if (_box.get_children().size() > 1) {
|
2019-12-14 05:44:28 -05:00
|
|
|
_box.pack_start (_ctrlbox, Gtk::PACK_SHRINK, 2);
|
|
|
|
_ctrlbox.show ();
|
2018-09-24 18:12:42 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PluginDSPLoadWindow::add_processor_to_display (boost::weak_ptr<Processor> w, std::string const& route_name)
|
|
|
|
{
|
|
|
|
boost::shared_ptr<Processor> p = w.lock ();
|
2022-05-05 22:40:26 -04:00
|
|
|
boost::shared_ptr<PlugInsertBase> pib = boost::dynamic_pointer_cast<PlugInsertBase> (p);
|
|
|
|
if (pib) {
|
|
|
|
add_pluginsert_to_display (pib, route_name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PluginDSPLoadWindow::add_pluginsert_to_display (boost::shared_ptr<PlugInsertBase> p, std::string const& route_name)
|
|
|
|
{
|
|
|
|
if (!p->provides_stats ()) {
|
2018-09-24 18:12:42 -04:00
|
|
|
return;
|
|
|
|
}
|
2018-10-06 19:44:33 -04:00
|
|
|
p->DropReferences.connect (_processor_connections, MISSING_INVALIDATOR, boost::bind (&PluginDSPLoadWindow::refill_processors, this), gui_context());
|
2022-05-05 22:40:26 -04:00
|
|
|
PluginLoadStatsGui* plsg = new PluginLoadStatsGui (p);
|
|
|
|
|
|
|
|
std::string name = route_name + " - " + p->plugin ()->name ();
|
2018-09-24 18:12:42 -04:00
|
|
|
Gtk::Frame* frame = new Gtk::Frame (name.c_str());
|
|
|
|
frame->add (*Gtk::manage (plsg));
|
|
|
|
_box.pack_start (*frame, Gtk::PACK_SHRINK, 2);
|
|
|
|
|
|
|
|
plsg->start_updating ();
|
|
|
|
frame->show_all ();
|
|
|
|
}
|
2018-09-24 19:00:58 -04:00
|
|
|
|
|
|
|
void
|
|
|
|
PluginDSPLoadWindow::clear_processor_stats (boost::weak_ptr<Processor> w)
|
|
|
|
{
|
|
|
|
boost::shared_ptr<Processor> p = w.lock ();
|
2022-05-05 22:40:26 -04:00
|
|
|
boost::shared_ptr<PlugInsertBase> pib = boost::dynamic_pointer_cast<PlugInsertBase> (p);
|
|
|
|
if (pib) {
|
|
|
|
clear_pluginsert_stats (pib);
|
2018-09-24 19:00:58 -04:00
|
|
|
}
|
|
|
|
}
|
2022-05-05 22:40:26 -04:00
|
|
|
|
|
|
|
void
|
|
|
|
PluginDSPLoadWindow::clear_pluginsert_stats (boost::shared_ptr<PlugInsertBase> pib)
|
|
|
|
{
|
|
|
|
pib->clear_stats ();
|
|
|
|
}
|