summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2010-02-17Use manual copy instead of memcpy for array (pseudo-)copy constructor to ↵David Robillard1-8/+7
make it safe for C++ types (copy constructor of elements will be called). Fixes crash when changing ingen polyphony because this copies Arrays of intrusive_ptr<Buffer>. git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2460 a436a847-0d15-0410-975c-d299462d15a1
2010-02-09Spelling.David Robillard1-1/+1
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2434 a436a847-0d15-0410-975c-d299462d15a1
2010-02-05Convert C-style casts to C++ style casts.David Robillard15-31/+33
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2432 a436a847-0d15-0410-975c-d299462d15a1
2010-02-03Make human names work with LADSPA plugins as well (fix ticket #477).David Robillard1-0/+4
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2416 a436a847-0d15-0410-975c-d299462d15a1
2010-02-03Comprehensive use of cached URIs and more advanced Value (Atom) system.David Robillard2-14/+71
Atoms (e.g. property values or port values) can now be an Atom::DICT, which maps directly to/from an RDF resource. This is now used to store control bindings as a port property, eliminating the special API. Full interned URIs used everywhere, instead of CURIEs pretending to be URIs. Avoid converting string literals to URIs all over the place. Support for binding MIDI pitch bender and MIDI channel pressure. Saving/restoring of MIDI bindings as a free side-effect of the above. git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2409 a436a847-0d15-0410-975c-d299462d15a1
2010-02-02Use Glib string interning (quarks) to make Path/URI operator== very fast.David Robillard8-80/+125
This avoids a ton of string comparison overhead in Ingen when setting various properties (e.g. "ingen:value" was compared several times every time a port value was changed, now this is just a single pointer comparison and the full round trip of a value change does no string comparison at all, but is still property based and RDFey). git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2408 a436a847-0d15-0410-975c-d299462d15a1
2010-02-02Remove CUC macro definition from Atom.hpp.David Robillard1-2/+0
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2407 a436a847-0d15-0410-975c-d299462d15a1
2010-02-02Remove <sstream> and <iostream> includes, add <ostream> include.David Robillard1-2/+1
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2405 a436a847-0d15-0410-975c-d299462d15a1
2010-02-02Make sizeof(Raul::Atom) the size of a pointer.David Robillard3-43/+80
Accomplished by wrapping up blob stuff in a separately allocated object so all Atoms don't pay the size penalty. Bump version to 0.6.2 and ABI version to 5,0,0. git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2403 a436a847-0d15-0410-975c-d299462d15a1
2010-02-02Fix memory leaks in list_test.David Robillard1-4/+4
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2402 a436a847-0d15-0410-975c-d299462d15a1
2010-02-01Build unit tests against local library version/headers, even if installed.David Robillard1-7/+8
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2401 a436a847-0d15-0410-975c-d299462d15a1
2010-02-01Make time_test non-interactive for automated testing.David Robillard1-3/+1
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2400 a436a847-0d15-0410-975c-d299462d15a1
2010-01-29Fix return of reference to a temporary.David Robillard3-8/+9
Bump version to 0.6.1 (library interface version 4,0,0). git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2394 a436a847-0d15-0410-975c-d299462d15a1
2010-01-28Add Path::base_no_scheme for serialising paths without the ugly path: scheme ↵David Robillard1-0/+9
for UIs and such. git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2384 a436a847-0d15-0410-975c-d299462d15a1
2010-01-28Prettier human-readable Atom and Atom::Type serialisation.David Robillard1-2/+2
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2383 a436a847-0d15-0410-975c-d299462d15a1
2010-01-07Tidy test output.David Robillard2-12/+16
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2370 a436a847-0d15-0410-975c-d299462d15a1
2010-01-07Support `./waf test' from top level.David Robillard1-1/+2
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2369 a436a847-0d15-0410-975c-d299462d15a1
2010-01-07Move unit testing and coverage framework into autowaf.David Robillard16-354/+325
Make raul tests return 0 on success, 1 on failure. Test coverage for Raul. git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2368 a436a847-0d15-0410-975c-d299462d15a1
2010-01-07Fix Symbol::symbolify for strings containing slashes.David Robillard1-4/+1
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2367 a436a847-0d15-0410-975c-d299462d15a1
2010-01-07Hide _static_run implementation.David Robillard2-8/+13
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2364 a436a847-0d15-0410-975c-d299462d15a1
2010-01-06Fancy (optinally) coloured logging system.David Robillard12-34/+233
Do all logging output via Raul logging streams. git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2348 a436a847-0d15-0410-975c-d299462d15a1
2010-01-05Add IntrusivePtr (trivial #define for boost::intrusive_ptr).David Robillard1-0/+26
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2340 a436a847-0d15-0410-975c-d299462d15a1
2009-12-30Print configuration header before running configure checks.David Robillard1-0/+1
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2320 a436a847-0d15-0410-975c-d299462d15a1
2009-12-19New ingen module (library, not e.g. LV2 plugin) design.David Robillard9-11/+282
Much cleaner interface and general usage of Ingen as a library. git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2314 a436a847-0d15-0410-975c-d299462d15a1
2009-12-19Remove unused file.David Robillard1-54/+0
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2313 a436a847-0d15-0410-975c-d299462d15a1
2009-12-19Only print message if starting thread.David Robillard1-3/+1
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2312 a436a847-0d15-0410-975c-d299462d15a1
2009-12-09Raul 0.6.0.David Robillard8-16/+70
Drop glibmm dependency to glib dependency. Add --test configure option. Add RDF description. Bump library version number. git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2297 a436a847-0d15-0410-975c-d299462d15a1
2009-12-09Remove debian packaging stuff.David Robillard7-183/+0
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2296 a436a847-0d15-0410-975c-d299462d15a1
2009-12-08Remove LASH stuff from repository (wasn't built and doesn't really go in ↵David Robillard3-333/+0
Raul anyway). git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2294 a436a847-0d15-0410-975c-d299462d15a1
2009-11-27Update doxygen files. David Robillard1-573/+787
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2287 a436a847-0d15-0410-975c-d299462d15a1
2009-11-27Documentation updates.David Robillard3-11/+20
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2286 a436a847-0d15-0410-975c-d299462d15a1
2009-11-26Fix compilation on GCC 4.4 (fix ticket #438).David Robillard2-2/+2
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2285 a436a847-0d15-0410-975c-d299462d15a1
2009-11-16Fix types.David Robillard1-1/+1
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2265 a436a847-0d15-0410-975c-d299462d15a1
2009-11-14Add NullDeleter convenience template.David Robillard1-0/+2
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2259 a436a847-0d15-0410-975c-d299462d15a1
2009-10-29Use {} for empty while body.David Robillard1-1/+1
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2204 a436a847-0d15-0410-975c-d299462d15a1
2009-08-10Add missing include.David Robillard1-0/+1
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2173 a436a847-0d15-0410-975c-d299462d15a1
2009-07-22Remove no longer necessary autowaf.check_tool.David Robillard1-1/+1
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2171 a436a847-0d15-0410-975c-d299462d15a1
2009-07-07Fix compilation issues.David Robillard3-0/+8
Display dyn manifest configuration status in summary. git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2160 a436a847-0d15-0410-975c-d299462d15a1
2009-07-05Use 'standard' bundle paths for #include directives.David Robillard1-1/+0
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2155 a436a847-0d15-0410-975c-d299462d15a1
2009-06-03Update bindings.David Robillard1-1/+1
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2079 a436a847-0d15-0410-975c-d299462d15a1
2009-05-28Implement PUT over OSC.David Robillard1-0/+5
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2026 a436a847-0d15-0410-975c-d299462d15a1
2009-05-28Fix URIs.David Robillard1-1/+1
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2018 a436a847-0d15-0410-975c-d299462d15a1
2009-05-28Fix QNAMEs being serialised as URIs.David Robillard2-5/+5
Remove vestigial variable stuff. git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2017 a436a847-0d15-0410-975c-d299462d15a1
2009-05-27Remove 'new_patch', 'new_node', and 'new_port' from interface in favour of ↵David Robillard2-6/+20
generic 'put'. git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2011 a436a847-0d15-0410-975c-d299462d15a1
2009-05-13Clean up Jack shutdown semantics.David Robillard2-3/+9
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2003 a436a847-0d15-0410-975c-d299462d15a1
2009-05-13Update copyright dates.David Robillard46-46/+46
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2000 a436a847-0d15-0410-975c-d299462d15a1
2009-05-13Strip trailing whitespace.David Robillard54-439/+439
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@1999 a436a847-0d15-0410-975c-d299462d15a1
2009-05-13Use new query system to get LADSPA plugin names from the engine.David Robillard3-4/+6
Fixes ticket #365. git-svn-id: http://svn.drobilla.net/lad/trunk/raul@1998 a436a847-0d15-0410-975c-d299462d15a1
2009-05-13Remove unused junk on ClientInterface.David Robillard1-3/+0
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@1994 a436a847-0d15-0410-975c-d299462d15a1
2009-05-13The great ID refactoring of 2009.David Robillard4-67/+184
Path is now actually URI (scheme path: for now). Therefore ingen nodes and such live in the same namespace as ... well, everything. Including plugins. Thar be profit, laddies. git-svn-id: http://svn.drobilla.net/lad/trunk/raul@1992 a436a847-0d15-0410-975c-d299462d15a1