summaryrefslogtreecommitdiffstats
path: root/raul/Atom.hpp
AgeCommit message (Collapse)AuthorFilesLines
2012-05-13Gracefully handle self-assignment.David Robillard1-0/+3
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@4400 a436a847-0d15-0410-975c-d299462d15a1
2012-05-13Update license to GPL3+.David Robillard1-16/+15
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@4389 a436a847-0d15-0410-975c-d299462d15a1
2012-05-11Improve some C++ style stuff.David Robillard1-0/+2
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@4361 a436a847-0d15-0410-975c-d299462d15a1
2012-05-02Preliminary socket control interface, and ingen_cmd command line interface ↵David Robillard1-2/+6
which uses it. git-svn-id: http://svn.drobilla.net/lad/trunk/raul@4311 a436a847-0d15-0410-975c-d299462d15a1
2012-04-05Fix subpatch creation (fix #826).David Robillard1-5/+4
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@4144 a436a847-0d15-0410-975c-d299462d15a1
2012-03-19Use dynamic type IDs for Atoms (for direct compatibility with LV2 atoms).David Robillard1-196/+111
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@4079 a436a847-0d15-0410-975c-d299462d15a1
2012-03-12Centralise atom creation in forge object.David Robillard1-19/+35
Aside from being more greppable and making realtime violations more obvious, this is a step towards using LV2 atoms internally (which needs a factory since the type numbers are dynamic). git-svn-id: http://svn.drobilla.net/lad/trunk/raul@4054 a436a847-0d15-0410-975c-d299462d15a1
2011-05-18Strip double blank lines.David Robillard1-1/+0
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@3279 a436a847-0d15-0410-975c-d299462d15a1
2011-04-28Fix compilation on MinGW/Windows.David Robillard1-5/+5
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@3206 a436a847-0d15-0410-975c-d299462d15a1
2011-04-16Update copyright headersDavid Robillard1-1/+1
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@3153 a436a847-0d15-0410-975c-d299462d15a1
2011-01-08Allocate enough space in atom for string terminator.David Robillard1-4/+5
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2795 a436a847-0d15-0410-975c-d299462d15a1
2010-09-04My name is David. :)David Robillard1-1/+1
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2590 a436a847-0d15-0410-975c-d299462d15a1
2010-02-05Convert C-style casts to C++ style casts.David Robillard1-3/+3
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2432 a436a847-0d15-0410-975c-d299462d15a1
2010-02-03Comprehensive use of cached URIs and more advanced Value (Atom) system.David Robillard1-6/+31
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 Robillard1-20/+36
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 Robillard1-41/+55
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-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-06Fancy (optinally) coloured logging system.David Robillard1-0/+14
Do all logging output via Raul logging streams. git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2348 a436a847-0d15-0410-975c-d299462d15a1
2009-11-27Documentation updates.David Robillard1-1/+5
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2286 a436a847-0d15-0410-975c-d299462d15a1
2009-07-07Fix compilation issues.David Robillard1-0/+1
Display dyn manifest configuration status in summary. git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2160 a436a847-0d15-0410-975c-d299462d15a1
2009-05-28Fix QNAMEs being serialised as URIs.David Robillard1-4/+4
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 Robillard1-5/+19
generic 'put'. git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2011 a436a847-0d15-0410-975c-d299462d15a1
2009-05-13Update copyright dates.David Robillard1-1/+1
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2000 a436a847-0d15-0410-975c-d299462d15a1
2009-05-13Strip trailing whitespace.David Robillard1-10/+10
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@1999 a436a847-0d15-0410-975c-d299462d15a1
2008-12-16Trim include dependency tree.David Robillard1-2/+0
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@1870 a436a847-0d15-0410-975c-d299462d15a1
2008-11-30Some support for bundle saving.David Robillard1-5/+5
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@1831 a436a847-0d15-0410-975c-d299462d15a1
2008-11-09Add concept of 'Resource' and make plugins a resource (as well as graph ↵David Robillard1-2/+10
objects). Get rid of crufty imperative Plugin API. Loading of plugin data from engine over HTTP. git-svn-id: http://svn.drobilla.net/lad/trunk/raul@1713 a436a847-0d15-0410-975c-d299462d15a1
2008-10-03Remove config header include directives in system installed headers (oops).David Robillard1-2/+0
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@1599 a436a847-0d15-0410-975c-d299462d15a1
2008-08-20Fix Blob atom copy contruction/size/etc stuff.David Robillard1-13/+14
Fix LV2 UI events (i.e. make klaviatur work again). git-svn-id: http://svn.drobilla.net/lad/raul@1452 a436a847-0d15-0410-975c-d299462d15a1
2008-08-17Cloooser...David Robillard1-6/+17
Bundling of OSC communication both ways (previous was just engine->client). Factor out common OSC*Sender functionality (bundling stuff). Fully type-safe and polyphony-aware port value setting/getting, from RDF through OSC through engine and back again. git-svn-id: http://svn.drobilla.net/lad/raul@1409 a436a847-0d15-0410-975c-d299462d15a1
2008-05-20Fix various problems with control port values.David Robillard1-11/+45
Fix control port feedback issues with LV2 plugin UIs. git-svn-id: http://svn.drobilla.net/lad/raul@1218 a436a847-0d15-0410-975c-d299462d15a1
2008-01-06Remove raul dependency on liblo and redlandmm.David Robillard1-78/+2
git-svn-id: http://svn.drobilla.net/lad/raul@1025 a436a847-0d15-0410-975c-d299462d15a1
2008-01-01RAUL code cleanup.David Robillard1-2/+2
git-svn-id: http://svn.drobilla.net/lad/raul@999 a436a847-0d15-0410-975c-d299462d15a1
2007-12-01Clean up query code.David Robillard1-2/+2
git-svn-id: http://svn.drobilla.net/lad/raul@933 a436a847-0d15-0410-975c-d299462d15a1
2007-11-30Split redland C++ wrappers out from Raul.David Robillard1-4/+82
git-svn-id: http://svn.drobilla.net/lad/raul@927 a436a847-0d15-0410-975c-d299462d15a1
2007-10-08Update.. stuff... I hate SVN...David Robillard1-1/+1
git-svn-id: http://svn.drobilla.net/lad/raul@855 a436a847-0d15-0410-975c-d299462d15a1
2007-09-08Support for writing pretty Turtle boolean literals.David Robillard1-0/+6
git-svn-id: http://svn.drobilla.net/lad/raul@698 a436a847-0d15-0410-975c-d299462d15a1
2007-07-24Consistently rename all C++ files .cpp/.hpp.David Robillard1-0/+136
Fix (some) inclusion guard names to not clash with other libs. git-svn-id: http://svn.drobilla.net/lad/raul@613 a436a847-0d15-0410-975c-d299462d15a1