1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163
|
/*
Descriptor.h
Copyright 2004-5 Tim Goetze <tim@quitte.de>
http://quitte.de/dsp/
creating a LADSPA_Descriptor for a caps plugin via a C++ template,
saves us a virtual function call compared to the usual method used
for C++ plugins in a C context.
Descriptor<P> expects P to declare some common methods, like init(),
activate() etc, plus a static port_info[] and LADSPA_Data * ports[]
and of course 'adding_gain'.
maintaining both port_info[] and ports[] is a bit of a bitch, but,
hey, "you only do it once (tm)" .. and then you do it over and over
again. particularly bothersome is also the necessary unrolling of our
PortInfo array to fit into LADSPA_Descriptor's inconsequential way of
port data structuring, which results in quite a bit of memory holding
duplicated data. oh well.
*/
/*
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.
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.
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., 59 Temple Place - Suite 330, Boston, MA
02111-1307, USA or point your web browser to http://www.gnu.org.
*/
#ifndef _DESCRIPTOR_H_
#define _DESCRIPTOR_H_
/* common stub for Descriptor makes it possible to delete() without special-
* casing for every plugin class.
*/
class DescriptorStub
: public LADSPA_Descriptor
{
public:
DescriptorStub()
{
PortCount = 0;
}
~DescriptorStub()
{
if (PortCount)
{
delete [] PortNames;
delete [] PortDescriptors;
delete [] PortRangeHints;
}
}
};
template <class T>
class Descriptor
: public DescriptorStub
{
public:
/* tom szilyagi reports that hosts exist which call activate() before
* connect_port(). since caps' plugins expect ports to be valid we
* need a safeguard: at instantiation, each port is connected to the
* lower bound. When (If?) LADSPA default values are ever fixed, connecting
* to the default will be preferred. */
LADSPA_PortRangeHint * ranges;
public:
Descriptor()
{ setup(); }
void setup();
void autogen()
{
PortCount = (sizeof (T::port_info) / sizeof (PortInfo));
/* unroll PortInfo members */
char ** names = new char * [PortCount];
LADSPA_PortDescriptor * desc = new LADSPA_PortDescriptor [PortCount];
ranges = new LADSPA_PortRangeHint [PortCount];
/* could also assign directly but const_cast is ugly. */
for (int i = 0; i < (int) PortCount; ++i)
{
names[i] = T::port_info[i].name;
desc[i] = T::port_info[i].descriptor;
ranges[i] = T::port_info[i].range;
}
PortNames = names;
PortDescriptors = desc;
PortRangeHints = ranges;
/* LADSPA_Descriptor vtable entries */
instantiate = _instantiate;
connect_port = _connect_port;
activate = _activate;
run = _run;
run_adding = _run_adding;
set_run_adding_gain = _set_run_adding_gain;
deactivate = 0;
cleanup = _cleanup;
}
static LADSPA_Handle _instantiate (
const struct _LADSPA_Descriptor * d, ulong fs)
{
T * plugin = new T();
/* see comment above at 'ranges' member */
for (int i = 0; i < (int) d->PortCount; ++i)
plugin->ports[i] = &((Descriptor *) d)->ranges[i].LowerBound;
plugin->init (fs);
return plugin;
}
static void _connect_port (LADSPA_Handle h, ulong i, LADSPA_Data * p)
{
((T *) h)->ports[i] = p;
}
static void _activate (LADSPA_Handle h)
{
((T *) h)->activate();
}
static void _run (LADSPA_Handle h, ulong n)
{
/* cannot call template here (g++ 2.95), sigh. */
((T *) h)->run (n);
}
static void _run_adding (LADSPA_Handle h, ulong n)
{
/* cannot call a template here (g++ 2.95), sigh. */
((T *) h)->run_adding (n);
}
static void _set_run_adding_gain (LADSPA_Handle h, LADSPA_Data g)
{
((T *) h)->adding_gain = g;
}
static void _cleanup (LADSPA_Handle h)
{
delete (T *) h;
}
};
#endif /* _DESCRIPTOR_H_ */
|