summaryrefslogtreecommitdiffstats
path: root/ingen
AgeCommit message (Collapse)AuthorFilesLines
2016-10-02Fix properties of control/notify portsDavid Robillard1-0/+1
2016-10-02Fix unit test responses and ensure events succeedDavid Robillard3-3/+7
2016-10-02Defer graph compilation in atomic bundlesDavid Robillard1-0/+8
This avoids situations like compiling a graph hundreds of times when it is loaded because it has hundreds of nodes and each event triggers a re-compile. This speeds things up dramatically, but exacerbates the theoretical problem of there not being enough time in a cycle to execute a bundle. As far as I can tell, the execute phase of events is very fast, so hundreds or thousands can easily run in a tiny fraction of the process cycle, but this still needs resolution to be truly hard real-time. What probably needs to happen is that all context and state used to process is moved to CompiledGraph and nodes do not access their own fields at all, but have some references into the CompiledGraph. This way, a compiled graph is separate from its "source code", and an old one could continue to be run while a new one is beng applied across several cycles.
2016-10-02Show audio and load information in status lineDavid Robillard2-0/+10
2016-10-02Add parallel graph executionDavid Robillard2-0/+6
2016-10-02Add parallelism-aware graph traversalDavid Robillard1-1/+3
2016-10-01Fix OSX buildDavid Robillard2-2/+2
2016-09-18Add fancy communication loggingDavid Robillard3-0/+221
2016-09-18Factor out text writing from socket writingDavid Robillard2-22/+71
2016-08-17Rename main graph and control/notify portsDavid Robillard1-7/+7
2016-08-01Add missing includesDavid Robillard1-0/+1
2016-08-01Fix compilation on OSXDavid Robillard1-4/+1
2016-08-01Show colorized log output in messages windowDavid Robillard1-0/+5
2016-08-01Implement LV2 log extension as hostDavid Robillard2-1/+22
Only print color logs if output is a terminal.
2016-07-31Reduce duplicated codeDavid Robillard1-1/+7
2016-07-30Add undo supportDavid Robillard7-12/+48
2016-07-29Remove Forge dependency from AtomReaderDavid Robillard1-3/+0
2016-03-14Load default plugin stateDavid Robillard1-0/+1
Based on a patch from Hanspeter Portner.
2015-11-30Fix Node::uri_is_path()David Robillard1-3/+1
This prevented the GUI from starting at all since the root graph could not be found, not sure how this one slipped through...
2015-11-23Fix crash when request contains invalid path URIDavid Robillard1-2/+8
Fixes #1108
2015-11-08Add support for instance-access and data-accessDavid Robillard3-0/+114
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5815 a436a847-0d15-0410-975c-d299462d15a1
2015-10-30Update clients when plugins are unloaded/reloadedDavid Robillard1-0/+1
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5808 a436a847-0d15-0410-975c-d299462d15a1
2015-10-30Add protocol for loading and unloading bundlesDavid Robillard2-0/+2
Currently this is only really useful for refreshing updated bundles. It will trigger the appropriate load and unload in the Lilv world, but the set of plugins and presets is not updated and clients will not be notified of any changes. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5807 a436a847-0d15-0410-975c-d299462d15a1
2015-10-25Fix explicit sequence port monitoringDavid Robillard1-0/+1
Patch from Robin Gareus. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5786 a436a847-0d15-0410-975c-d299462d15a1
2015-10-25Create all graphs the same wayDavid Robillard1-1/+24
This ensures that subgraphs always have the standard control ports, so they are valid Ingen graphs on their own.. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5783 a436a847-0d15-0410-975c-d299462d15a1
2015-10-25Document protocolDavid Robillard2-2/+1
Fix invalid use of patch:request (use patch:sequenceNumber instead). git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5781 a436a847-0d15-0410-975c-d299462d15a1
2015-10-24Fix LV2 UIs that send during instantiationDavid Robillard1-1/+20
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5780 a436a847-0d15-0410-975c-d299462d15a1
2015-10-24Set prefixes on the wire to reduce trafficDavid Robillard1-2/+3
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5779 a436a847-0d15-0410-975c-d299462d15a1
2015-10-24Zero-copy to/from driver ports where possibleDavid Robillard2-2/+1
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5778 a436a847-0d15-0410-975c-d299462d15a1
2015-10-24Fix loading recursive graphs in LV2David Robillard1-0/+9
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5776 a436a847-0d15-0410-975c-d299462d15a1
2015-10-02Unregister socket clients on hangup.David Robillard1-1/+4
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5735 a436a847-0d15-0410-975c-d299462d15a1
2015-09-29Fix more URI conversion issues.David Robillard3-9/+10
Fixes #1088. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5733 a436a847-0d15-0410-975c-d299462d15a1
2015-09-04Fix various atom conversion issues.David Robillard1-0/+4
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5719 a436a847-0d15-0410-975c-d299462d15a1
2015-08-29Add option to flush logs after every entry.David Robillard1-0/+3
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5711 a436a847-0d15-0410-975c-d299462d15a1
2015-08-28Get rid of LV2Info class.David Robillard1-6/+23
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5708 a436a847-0d15-0410-975c-d299462d15a1
2015-08-12Fix URI comparison issues.David Robillard1-3/+15
Fixes issue #1074. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5704 a436a847-0d15-0410-975c-d299462d15a1
2015-08-12Server-side presets.David Robillard8-91/+89
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5703 a436a847-0d15-0410-975c-d299462d15a1
2015-08-03Optional quoting for atom to string.David Robillard1-1/+1
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5702 a436a847-0d15-0410-975c-d299462d15a1
2015-06-09Fix partial commit.David Robillard5-12/+12
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5693 a436a847-0d15-0410-975c-d299462d15a1
2015-05-25Use ingen:/ as base URI on the wire.David Robillard1-6/+6
This allows referring to non-graph items, which are converted to bundle-relative URIs on save, resolving issue #1049. Change root graph URI to ingen:/graph. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5687 a436a847-0d15-0410-975c-d299462d15a1
2015-05-23Fix partial commit.David Robillard1-0/+4
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5684 a436a847-0d15-0410-975c-d299462d15a1
2015-04-04Support GNU style long options.David Robillard1-4/+2
Update usage output and man page to distinguish flags from options that take a value. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5660 a436a847-0d15-0410-975c-d299462d15a1
2015-04-04Update copyright dates.David Robillard37-37/+37
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5653 a436a847-0d15-0410-975c-d299462d15a1
2015-04-03Fix loading graphs with explicit/non-file URIs.David Robillard1-1/+22
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5650 a436a847-0d15-0410-975c-d299462d15a1
2015-03-28Unify value widgets in properties dialog.David Robillard2-0/+2
This shows the fancy URI selector for URI properties, and can show numeric controls for the property-to-add. The ontologies need some work, along with smarter widget creation, before the latter will actually be useful. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5648 a436a847-0d15-0410-975c-d299462d15a1
2015-03-16Fix "no subject" errors when sending file paths.David Robillard2-1/+2
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5642 a436a847-0d15-0410-975c-d299462d15a1
2015-03-16Fix launching GUI with no engine.David Robillard1-2/+1
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5640 a436a847-0d15-0410-975c-d299462d15a1
2015-03-08Fix UI update on custom UI control changes.David Robillard1-1/+11
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5623 a436a847-0d15-0410-975c-d299462d15a1
2015-03-02Fix compilation with -fvisibility=hidden.David Robillard37-63/+106
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5611 a436a847-0d15-0410-975c-d299462d15a1
2015-02-24Demodularize Parser and Serialiser.David Robillard3-36/+18
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5606 a436a847-0d15-0410-975c-d299462d15a1