summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2016-12-14Don't use path to determine if nodes are the main graphDavid Robillard3-5/+13
Doing so is slower and touches std::string code that could in theory not be RT-safe (though always is in practice).
2016-12-13Remove virtual inheritance from Port hierarchyDavid Robillard19-196/+130
This was confusing stoat, and is questionable design anyway. The OutputPort functionality has been moved to PortImpl, which is a basic port with buffers suitable for use as an output, and is overridden by InputPort and DuplexPort where necessary.
2016-12-13Fix some real-time safety issuesDavid Robillard15-42/+80
2016-12-04Fix initialization order warningDavid Robillard1-1/+1
2016-10-29Remove useless warningDavid Robillard1-1/+0
2016-10-29Fix running as LV2 with disconnected portsDavid Robillard1-0/+4
2016-10-29Fix minor memory issuesDavid Robillard2-1/+2
2016-10-14Don't request plugins until necessaryDavid Robillard1-2/+0
2016-10-14Preserve bundles over atom transportDavid Robillard1-0/+4
2016-10-14Fix LV2 initialisationDavid Robillard3-7/+18
2016-10-14Fix initial display of embedded GUIsDavid Robillard2-1/+26
2016-10-14Fix occasionally stuck event queueDavid Robillard2-9/+13
2016-10-14Fix potential store deadlockDavid Robillard10-11/+13
2016-10-14Never store ingen:activity propertiesDavid Robillard1-6/+19
2016-10-14Don't install 512x512 iconsDavid Robillard2-1/+1
Installing icons this large is not typical, and causes GDK warnings.
2016-10-14Fix sequence ports with valuesDavid Robillard8-21/+41
2016-10-14Fix communication with connected sequence portsDavid Robillard5-29/+45
2016-10-14Simplify port model codeDavid Robillard6-62/+28
2016-10-14Improve documentationDavid Robillard11-25/+31
2016-10-13Write log to stdout/stderr when GUI is presentDavid Robillard1-1/+3
2016-10-13Clean up protocol documentationDavid Robillard3-63/+556
2016-10-06Add plugin state savingDavid Robillard17-60/+150
This only works with a server-side save, so the GUI now uses that if the server is not running remotely, where "remotely" is defined as "via TCP". This isn't perfect, since running ingen via TCP locally is a perfectly valid thing to do, but it will do for now.
2016-10-02Add event outputs to Trigger and ControllerDavid Robillard7-53/+117
2016-10-02Fix MIDI I/ODavid Robillard1-1/+3
2016-10-02Fix status bar text for subgraph portsDavid Robillard1-3/+4
2016-10-02Fix saving and loading subgraphsDavid Robillard5-56/+68
2016-10-02Fix whitespaceDavid Robillard2-1/+2
2016-10-02Fix display of initial port valuesDavid Robillard2-1/+9
2016-10-02Fix copy/paste of internal blocksDavid Robillard2-2/+26
2016-10-02Fix test suiteDavid Robillard1-0/+2
2016-10-02Fix monitoring sequence portsDavid Robillard1-2/+6
2016-10-02Fix sending UI events to sequence portsDavid Robillard2-2/+5
2016-10-02Fix custom UI port notificationsDavid Robillard1-1/+1
2016-10-02Implement microsecond clock for Linux and OSXDavid Robillard4-10/+65
2016-10-02Fix default doap:name of saved graphsDavid Robillard1-3/+10
2016-10-02Fix properties of control/notify portsDavid Robillard3-6/+9
2016-10-02Improve test coverageDavid Robillard3-0/+63
2016-10-02Fix loading a graph by copying from the filesystemDavid Robillard1-1/+1
2016-10-02Fix unit test responses and ensure events succeedDavid Robillard10-11/+15
2016-10-02Defer graph compilation in atomic bundlesDavid Robillard36-81/+233
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-02Use more efficient std::lock_guard where possibleDavid Robillard6-6/+6
2016-10-02Update man pageDavid Robillard1-4/+10
2016-10-02Show audio and load information in status lineDavid Robillard15-55/+381
2016-10-02Add parallel graph executionDavid Robillard19-159/+470
2016-10-02Add parallelism-aware graph traversalDavid Robillard19-120/+433
2016-10-02Replace Delay internal with simpler BlockDelayDavid Robillard14-249/+173
2016-10-01Fix OSX buildDavid Robillard8-8/+27
2016-10-01Fix plugin versioningDavid Robillard1-1/+1
2016-10-01Fix flushing many message window lines at onceDavid Robillard1-15/+17
2016-10-01Save global options to options.ttlDavid Robillard2-10/+15