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 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555
|
Csound Plugin Opcode Framework (CPOF)
===========================
Plugins in Csound are usually written in C, which provides a low-level access to
the system interface, allowing an uncompromised and complete scope for
new opcode development. For most sys developers, this will continue to be the
best working environment. However, for many of the more common forms of
plugins, this interface can be complex and cumbersome. In particular, we
might like to take advantage of an object-oriented approach so that
we can, for instance, re-use code more extensively and take advantage of
existing algorithms and libraries. For this, the ideal language is C++, and
so we have provided a lightweight framework to facilitate programming in
this environment. While there is an existing interface for plugin writing in
the Csound codebase, we would like to provide here an alternative to it
attempts to be thin, simple, complete and that handles internal
Csound resources in a safe way.
The Base Classes
---------------------------
The framework base classes are actually templates which need to be
derived and instantiated by the user code. The most general of these is
Plugin. To use we program our own class by subclassing it and
passing the number of output and inputs our opcode needs as its
template arguments
```
#include <plugin.h>
Struct MyPlug : csnd::Plugin<1,1> {
};
```
The above lines will create a plugin opcode with one output (first
template argument) and one input (second template argument). All CPOF
code is declared in the namespace csnd.
This class will create a complete opcode, although it will also be fully non-op.
To make it do something, we will need to reimplement one, two or three
of its methods. This base class is derived from the Csound structure
OPDS and has the following members:
* outargs: output arguments.
* inargs: input arguments.
* csound: a pointer to the Csound engine object.
* offset: the starting position of an audio vector (for audio opcodes).
* nsmps: the size of an audio vector (also for audio opcodes only).
* init(), kperf() and aperf() non-op methods, to be reimplemented as needed.
* sa_offset((MYFLT *v) method to be used in audio processing to calculate offset and
nsmps for sample-accurate behaviour. It takes an audio output vector
as input and returns the updated nsmps value. This method should be
called for each output in the case of multiple channels.
The other base class in the CPOF is FPlugin, derived from Plugin, which
provides an extra facility for fsig (streaming frequency-domain) plugins:
* framecount: a member to hold a running count of fsig frames.
Init-time opcodes
-------------------------------------------
For init-time opcodes, all we need to do is provide an implementation of
the init() method:
```
#include <plugin.h>
/** i-time plugin opcode example
with 1 output and 1 input \n
iout simple iin
*/
struct Simplei : csnd::Plugin<1,1> {
int init() {
outargs[0] = inargs[0];
return OK;
}
};
```
In this simple example, we just copy the input arguments to the output once, at
init-time. Each scalar input can be accessed using array indexing.
K-rate opcodes
-------------------------------------------
For opcodes running only at k-rate (no init-time operation), all we need to do
is provide an implementation of the kperf() method:
```
#include <plugin.h>
/** k-rate plugin opcode example
with 1 output and 1 input \n
kout simple kin
*/
struct Simplek : csnd::Plugin<1,1> {
int kperf() {
outargs[0] = inargs[0];
return OK;
}
};
```
Similarly, in this simple example, we just copy the input arguments to the output
at each k-period.
A-rate opcodes
-------------------------------------------
For opcodes running only at a-rate (and with no init-time operation), all we need to do
is provide an implementation of the aperf() method:
```
#include <plugin.h>
/** a-rate plugin opcode example
with 1 output and 1 input \n
aout simple ain
*/
struct Simplea : csnd::Plugin<1,1> {
int aperf() {
nsmps = insdshead->ksmps;
std::copy(inargs.data(0),inargs.data(0)+nsmps, outargs.data(0));
return OK;
}
};
```
Because audio arguments are vectors, we get these using the data() method
for the inargs and outargs objects, which takes the argument number as
input and returns a MYFLT pointer to the vector. MYFLT is the internal
floating-point data type used by Csound.
Note that the OPDS member insdshead holds the value of the instrument
vector size (ksmps), so we can get it from there. More normally, we
will just access the nsmps variable after calling sa_offset() to get this
value. We will demonstrate this in later examples.
Registering opcodes with Csound
---------------------------------------
Once we have written our opcode classes, we need to tell Csound about
them, so that they can be used, for this we use the CPOF function template
plugin():
```
template <typename T>
int plugin(CSOUND *csound, const char *name, const char *oargs,
const char *iargs, uint32_t thread, uint32_t flags = 0)
```
Its parameters are:
* csound: a pointer to the Csound object to which we want to register our opcode.
* name: the opcode name as it will be used in Csound code.
* oargs: a string containing the opcode output types, one identifier per argument
* iargs: a string containintg the opcode input types, one identifier per argument
* thread: a code to tell Csound when the opcode shoulld be active.
* flags: multithread flags (generally 0 unless the opcode accesses global resources).
For opcode type identifiers, the most common types are: a (audio), k (control), i (i-time),
S (string) and f (fsig). For the thread argument, we have the following options, which
depend on the processing methods implemented in our plugin class:
* csnd::thread::i : init().
* csnd::thread::k : kperf().
* csnd::thread::ik : init() and kperf().
* csnd:thread::a : aperf().
* csnd::thread::ia : init() and aperf().
* csnd::thread::ika : init(), kperf() and aperf().
We instantiate and call these template functions inside the plugin
library entry-point function on_load():
```
void csnd::on_load(CSOUND *csound){
csnd::plugin<Simplei>(csound, "simple", "i", "i", csnd::thread::i);
csnd::plugin<Simplek>(csound, "simple", "k", "k", csnd::thread::k);
csnd::plugin<Simplea>(csound, "simple", "a", "a", csnd::thread::a);
return 0;
}
```
Note how the class name is passed as an argument to the function template,
followed by the function call. If the class defines two specific
static members, otypes and itypes, to hold the types for output and input arguments,
declared as
```
Struct MyPlug : csnd::Plugin<1,2> {
static constexpr char const *otypes = "k";
static constexpr char const *itypes = "ki";
...
};
```
then we can use a simpler overload of the plugin registration
function:
```
template <typename T>
int plugin(CSOUND *csound, const char *name, uint32_t thread, uint32_t flags = 0)
```
Memory allocation
---------------------------------------------------
For efficiency and to prevent leaks and undefined behaviour we need to
leave all memory allocation to Csound and refrain from using C++
allocators or standard library containers that use dynamic allocation
behind the scenes (e.g. std::vector). If we follow these rules, our code
will work as intended and cause no problems for users.
This requires us to use the AuxAlloc mechanism implemented by
Csound for opcodes. To allow for ease of use, CPOF provides a wrapper
template class (which is not too dissimilar to std::vector) for us to
allocate and use as much memory as we need. This functionality
is given by the AuxMem class, which has the following methods and
members:
* allocate(): allocates memory (if required).
* operator[] : array-subscript access to the allocated memory.
* data(): returns a pointer to the data.
* len(): returns the length of the vector.
* begin() and end(): return iterators to the beginning and end of
data
* iterator and const_iterator: iterator types for this class.
As an example of use, we can implement a simple delay line
opcode, whose delay time is set at i-time, providing a slap-back
echo effect:
```
/** a-rate plugin opcode example: delay line
with 1 output and 2 inputs (a,i) \n
asig delayline ain,idel
*/
struct DelayLine : csnd::Plugin<1,2> {
csnd::AuxMem<MYFLT> delay;
csnd::AuxMem<MYFLT>::iterator iter;
int init() {
delay.allocate(csound, csound->GetSr(csound)*inargs[1]);
iter = delay.begin();
return OK;
}
int aperf() {
MYFLT *out = outargs.data(0);
MYFLT *in = inargs.data(0);
sa_offset(out);
for(uint32_t i=offset; i < nsmps; i++, iter++) {
if(iter == delay.end()) iter = delay.begin();
out[i] = *iter;
*iter = in[i];
}
return OK;
}
};
```
In this example, we use an AuxMem iterator to access the
delay vector. It is equally possible to access each element with
an array-style subscript. The memory allocated by this class is
managed by Csound, so we do not need to be concerned about
disposing of it. To register this opcode, we do
```
csnd::plugin<DelayLine>(csound, "delayline", "a", "ai", csnd::thread::ia);
```
Table Access
-----------------------------------------------
Access to function tables has also been facilitated by a thin
wrapper class that allows us to treat it as a vector object.
This is provided by the Table class, which has the
following members:
* init(): initialises a table object from an opcode argument pointer.
* operator[] : array-subscript access to the function table.
* data(): returns a pointer to the function table data.
* len(): returns the length of the table (excluding guard point).
* begin() and end(): return iterators to the beginning and end of
the function table
* iterator and const_iterator: iterator types for this class.
An example of table access is given by an oscillator opcode,
which is implemented in the following class:
```
/** a-rate plugin opcode example: oscillator
with 1 output and 3 inputs (k,k,i) \n
aout oscillator kamp,kcps,ifn
*/
struct Oscillator : csnd::Plugin<1,3> {
csnd::Table table;
double scl;
double ndx;
int init() {
table.init(csound,inargs.data(2));
scl = table.len()/csound->GetSr(csound);
ndx = 0;
return OK;
}
int aperf() {
MYFLT *out = outargs.data(0);
MYFLT amp = inargs[0];
MYFLT si = inargs[1]*scl;
sa_offset(out);
for(uint32_t i=offset; i < nsmps; i++) {
out[i] = amp*table[(uint32_t)ndx];
ndx += si;
while(ndx < 0)
ndx += table.len();
while(ndx >= table.len())
ndx -= table.len();
}
return OK;
}
};
```
The table is initialised by passing the relevant argument
pointer to it (using its data() method). Also note that,
as we need a precise phase index value,
we cannot use iterators in this case (without making it
very awkward), so we employ straightforward
array subscripting. The opcode is registered by
```
csnd::plugin<Oscillator>(csound, "oscillator", "a", "kki",csnd::thread::ia);
```
Strings
---------------------------------------------
String variables in Csound are held in a STRINGDAT data structure,
containing a data member that holds the actual string and a size
member with the allocated memory size. While CPOF does not
wrap strings, it provides a translated access to string arguments
through the argument objects str_data() function. This takes a
an argument index (similarly to data()) and returns a reference to
the string variable, as demonstrated in this example:
```
/** i-time string plugin opcode example
with only 1 input \n
tprint Sin
*/
struct Tprint : csnd::Plugin<0,1> {
int init() {
csound->message(inargs.str_data(0).data);
return OK;
}
};
```
This opcode will print the string to the console. Note that we have
no output arguments, so we set the first template parameter to 0.
We register it using
```
csnd::plugin<Tprint>(csound, "tprint", "", "S", csnd::thread::i);
```
Fsigs
------------------------------------------------
For streaming spectral processing opcodes, we have a
different base class with extra facilities needed for their operation (FPlugin).
In Csound, fsig variables are held in a PVSDAT data structure.
To facilitate their manipulation, CPOF provides a wrapper class csnd::Fsig
that holds the PVSDAT data. To access to phase vocoder bins,
a container interface is provided by csnd::pv_frame (spv_frame for the
sliding mode). This holds a series of csnd::pv_bin (spv_bin for sliding)
objects, which have the following methods:
* amp(): returns the bin amplitude.
* freq(): returns the bin frequency.
* amp(float a): sets the bin amplitude to a.
* freq(float f): sets the bin frequency to f.
* operator*(pv_bin f): multiply the amp of a pvs bin by f.amp.
* operator*(MYFLT f): multiply the bin amp by f
* operator*=(): unary versions of the above.
The pv_bin class can also be translated into a std::complex<float>
object if needed. This class is also fully compatible the C complex
type and an object obj can be cast into a float array consisting of two items
(or a float pointer), using reinterpret_cast\<float (&)[2]\>(obj) or
reinterpret_cast\<float \*\>(&obj)
The Fsig class has the following methods:
* init(): initialisation from individual parameters or from an
existing fsig. Also allocates frame memory as needed.
* dft_size(), hop_size(), win_size(), win_type() and nbins(), returning the
PV data parameters.
* count(): get and set fsig framecount.
* isSliding(): checks for sliding mode.
* fsig_format(): returns the fsig data format (csnd::fsig_format::pvs,
csnd::fsig_format::polar, csnd::fsig_format::complex, or
csnd::fsig_format::tracks).
The pv_frame (or spv_frame) class contains the following
methods:
* operator[] : array-subscript access to the spectral frame
* data(): returns a pointer to the spectral frame data.
* len(): returns the length of the frame.
* begin() and end(): return iterators to the beginning and end of
the data frame.
* iterator and const_iterator: iterator types for this class.
Fsig opcodes run at k-rate but will internally use an update rate based
on the analysis hopsize. For this to work, a framecount is kept and
checked to make sure we only process the input when new data is
available. The following example class implements a simple gain
scaler for fsigs:
```
/** f-sig plugin opcode example: pv gain change
with 1 output and 2 inputs (f,k) \n
fsig pvg fsin, kgain
*/
struct PVGain : csnd::FPlugin<1, 2> {
static constexpr char const *otypes = "f";
static constexpr char const *itypes = "fk";
int init() {
if (inargs.fsig_data(0).isSliding())
return csound->init_error("sliding not supported");
if (inargs.fsig_data(0).fsig_format() != csnd::fsig_format::pvs &&
inargs.fsig_data(0).fsig_format() != csnd::fsig_format::polar)
return csound->init_error("fsig format not supported");
csnd::Fsig &fout = outargs.fsig_data(0);
fout.init(csound, inargs.fsig_data(0));
framecount = 0;
return OK;
}
int kperf() {
csnd::pv_frame &fin = inargs.fsig_data(0);
csnd::pv_frame &fout = outargs.fsig_data(0);
uint32_t i;
if (framecount < fin.count()) {
MYFLT g = inargs[1];
std::transform(fin.begin(), fin.end(), fout.begin(),
[g](csnd::pv_bin f){ return f *= g; });
framecount = fout.count(fin.count());
}
return OK;
}
};
```
Note that, as with strings, there is a dedicated method in the arguments
object that returns a ref to an Fsig class (which can also be assigned
to a pv_frame ref). This is used to initialise the
output object at i-time and then to obtain the input and output
variable data Csound processing. The framecount member is provided
by the base class, as well as the format check methods. This opcode
is registered using
```
csnd::plugin<PVGain>(csound, "pvg", csnd::thread::ik);
```
For some classes, this might be a very convenient way to define the
argument types. For other cases, where opcode polymorphism might
be involved, we might re-use the same class for different argument
types, in which case it is not desirable to define these statically in
a class.
Arrays
----------------------------------------------
Opcodes with array inputs or outputs use the data structure ARRAYDAT
for parameters. Again, in order to facilitate access to these argument
types, CPOF provides a wrapper class. The framework currently supports
only one-dimensional arrays (for multidimensional arrays a raw pointer
to ARRAYDAT should be used), which covers the most common uses.
The template container class Vector, derived from ARRAYDAT, holds the
argument data. It has the following members:
* init(): initialises an output variable.
* operator[] : array-subscript access to the vector data.
* data(): returns a pointer to the vector data.
* len(): returns the length of the vector.
* begin() and end(): return iterators to the beginning and end of
the vector.
* iterator and const_iterator: iterator types for this class.
* data_array(): returns a pointer to the vector data.
In addition to this, the inargs and outargs objects in the Plugin
class have a template method that can be used to get a Vector
class reference. A trivial example is shown below:
```
/** k-rate numeric array example
with 1 output and 1 input \n
kout[] simple kin[]
*/
struct SimpleArray : csnd::Plugin<1, 1> {
int init() {
csnd::Vector<MYFLT> &out = outargs.vector_data<MYFLT>(0);
csnd::Vector<MYFLT> &in = inargs.vector_data<MYFLT>(0);
out.init(csound, in.len());
return OK;
}
int kperf() {
csnd::Vector<MYFLT> &out = outargs.vector_data<MYFLT>(0);
csnd::Vector<MYFLT> &in = inargs.vector_data<MYFLT>(0);
std::copy(in.begin(), in.end(), out.begin());
return OK;
}
};
```
This opcode is registered using the following line:
```
csnd::plugin<SimpleArray>(csound, "simple", "k[]", "k[]", csnd::thread::ik);
```
Building the opcodes
-------------------------------------------
The code discussed here is provided in the opcodes.cpp source file in the
examples directory. In order to build these opcodes, we require a c++
compiler using c++11 mode (-std=c++11), and the Csound public
headers (including plugin.h). The opcodes should be built as a dynamic/shared
library (e.g so in Linux and dylib in OSX), but CPOF does not impose any
link-time dependencies (not even to Csound).
Victor Lazzarini, 01/2017
|