Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2024-11-24 | Use angle brackets for library includes | David Robillard | 1 | -3/+3 | |
2023-09-23 | Clean up includes and forward declarations | David Robillard | 1 | -1/+2 | |
2023-09-22 | Use a regular unique_ptr for compiled graphs | David Robillard | 1 | -2/+1 | |
Since these are always swapped by events which already have the ability to delete things after execution (by deleting them along with the event itself after processing), we can avoid the complexity and overhead of Raul::managed_ptr here by swapping the old graph for the new, retaining the owning reference to the old CompiledGraph in the event. | |||||
2022-12-14 | Use std::optional | David Robillard | 1 | -3/+2 | |
2022-08-18 | Use default member initialization | David Robillard | 1 | -4/+4 | |
2022-08-18 | Clean up includes | David Robillard | 1 | -2/+3 | |
2021-01-02 | Update for latest raul | David Robillard | 1 | -1/+1 | |
2020-12-15 | Clean up includes in core and server | David Robillard | 1 | -3/+2 | |
2020-11-11 | Fix potential state memory leaks | David Robillard | 1 | -1/+2 | |
2020-08-03 | Clean up includes | David Robillard | 1 | -2/+12 | |
As directed by include-what-you-use. Unfortunately, it is still confused by quite a few things, but this gets a lot closer to a clean report, and at least makes the output more tolerable to manually check. | |||||
2020-08-02 | Remove Raul::managed_ptr alias | David Robillard | 1 | -16/+16 | |
2020-08-02 | Remove std::shared_ptr alias | David Robillard | 1 | -17/+14 | |
2020-08-02 | Remove std::unique_ptr alias | David Robillard | 1 | -2/+3 | |
2020-08-02 | Add missing override specifiers | David Robillard | 1 | -1/+1 | |
2020-08-02 | Use consistent naming for context parameters | David Robillard | 1 | -1/+1 | |
2019-12-08 | Cleanup: Use "default" for default constructors and destructors | David Robillard | 1 | -1/+1 | |
2019-12-08 | Cleanup: Avoid parameter copying overhead | David Robillard | 1 | -9/+9 | |
2019-12-08 | Cleanup: Use "using" instead of "typedef" where appropriate | David Robillard | 1 | -1/+1 | |
2019-03-09 | Clean up includes and forward declarations | David Robillard | 1 | -10/+9 | |
2019-03-09 | Use smart pointers over manual memory management | David Robillard | 1 | -2/+2 | |
2018-09-23 | Use override specifiers | David Robillard | 1 | -5/+5 | |
2018-09-23 | Use lowercase namespace names | David Robillard | 1 | -10/+10 | |
2018-01-21 | Add URI class and remove use of Raul::URI | David Robillard | 1 | -3/+1 | |
2017-12-16 | Make events take the corresponding message directly | David Robillard | 1 | -12/+19 | |
2017-12-16 | Adjust indices when ports are deleted | David Robillard | 1 | -0/+1 | |
2017-12-16 | Make CompiledGraph::compile a free function | David Robillard | 1 | -2/+2 | |
2017-02-15 | Move Properties out of Resource | David Robillard | 1 | -13/+13 | |
2017-02-12 | Use smart pointers to handle real-time memory disposal | David Robillard | 1 | -1/+1 | |
2017-01-18 | Fix invalid cross-thread use of mutex | David Robillard | 1 | -1/+3 | |
Instead of abusing store mutex for this purpose, extend blocking mechanism of the PreProcessor (designed for atomic bundle execution) to support execution of individual atomic events which must be executed before the next event can be pre-processed. | |||||
2016-12-14 | Fix real-time safety of control bindings | David Robillard | 1 | -16/+16 | |
2016-10-14 | Fix potential store deadlock | David Robillard | 1 | -1/+1 | |
2016-10-02 | Defer graph compilation in atomic bundles | David Robillard | 1 | -1/+1 | |
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-02 | Add parallelism-aware graph traversal | David Robillard | 1 | -1/+1 | |
2016-09-11 | Remove last vestiges of multiple run contexts | David Robillard | 1 | -1/+1 | |
2016-07-30 | Add undo support | David Robillard | 1 | -1/+5 | |
2016-07-30 | Fix mismatched include guard | David Robillard | 1 | -3/+3 | |
2015-10-30 | Update clients when plugins are unloaded/reloaded | David Robillard | 1 | -0/+1 | |
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5808 a436a847-0d15-0410-975c-d299462d15a1 | |||||
2015-10-30 | Add protocol for loading and unloading bundles | David Robillard | 1 | -1/+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-25 | Document protocol | David Robillard | 1 | -24/+0 | |
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-08-12 | Server-side presets. | David Robillard | 1 | -0/+5 | |
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5703 a436a847-0d15-0410-975c-d299462d15a1 | |||||
2015-04-04 | Update copyright dates. | David Robillard | 1 | -1/+1 | |
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5653 a436a847-0d15-0410-975c-d299462d15a1 | |||||
2015-02-19 | Server side presets. | David Robillard | 1 | -1/+10 | |
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5587 a436a847-0d15-0410-975c-d299462d15a1 | |||||
2015-02-17 | Delete trailing whitespace. | David Robillard | 1 | -1/+1 | |
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5582 a436a847-0d15-0410-975c-d299462d15a1 | |||||
2015-02-06 | Remove gthread dependency from engine. | David Robillard | 1 | -1/+1 | |
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5533 a436a847-0d15-0410-975c-d299462d15a1 | |||||
2014-01-31 | Subscribe to ports before instantiating plugin UIs (fix #954). | David Robillard | 1 | -2/+8 | |
Respond to put/set/patch with the same type of event (not set=>delta). Don't feed back changes to originating client. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5326 a436a847-0d15-0410-975c-d299462d15a1 | |||||
2014-01-18 | Fix crashes when LV2 host changes polyphony rapidly. | David Robillard | 1 | -0/+2 | |
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5315 a436a847-0d15-0410-975c-d299462d15a1 | |||||
2013-01-12 | Remove Raul::SharedPtr and switch to std::shared_ptr. | David Robillard | 1 | -2/+2 | |
Use project local short type aliases for shared_ptr and friends. Move Raul::Disposable and Raul::Manageable into Raul::Maid. Use sets to store machina nodes and edges to avoid O(n) searches. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4939 a436a847-0d15-0410-975c-d299462d15a1 | |||||
2013-01-11 | Use type safe enumerations. | David Robillard | 1 | -1/+1 | |
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4918 a436a847-0d15-0410-975c-d299462d15a1 | |||||
2012-08-19 | Patch => Graph | David Robillard | 1 | -4/+4 | |
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4721 a436a847-0d15-0410-975c-d299462d15a1 | |||||
2012-07-30 | Merge Resource and ResourceImpl, eliminating more virtual inheritance. | David Robillard | 1 | -14/+14 | |
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4577 a436a847-0d15-0410-975c-d299462d15a1 |