summaryrefslogtreecommitdiffstats
path: root/src/Serialiser.cpp
AgeCommit message (Collapse)AuthorFilesLines
2022-08-18Use consistent brace wrapping for struct definitionsDavid Robillard1-2/+1
2022-08-18Use a consistent style for empty bracesDavid Robillard1-2/+1
2022-08-18Use default member initializationDavid Robillard1-4/+2
2022-08-18Use auto when declaring iteratorsDavid Robillard1-1/+1
2021-06-04Switch to C++14 and fix build with GCC 10David Robillard1-70/+75
GCC was having problems with this make_unique overload, but I don't care about C++11 compatibility at this point anyway, so it's easiest to just remove it.
2021-03-15Fix clashing blank nodes with MIDI bindingsDavid Robillard1-1/+1
This uses a different namespace for arc blank node IDs, which avoids clashes with MIDI bindings which are written with IDs like "b1", "b2", and so on. This is a symptom of a deeper issue where blank node generation isn't coordinated properly, but this fix avoids the problem for now and is nice anyway since it makes the role of blank nodes clearer when debugging.
2021-01-02Update for latest raulDavid Robillard1-10/+10
2020-11-11Fix memory leak on saveDavid Robillard1-0/+2
2020-08-02Remove std::shared_ptr aliasDavid Robillard1-25/+30
2020-08-02Rename memory utility headerDavid Robillard1-1/+1
2020-08-02Clean up URI map interfaceDavid Robillard1-2/+2
2020-08-02Fix incorrect strncmp lengthDavid Robillard1-1/+1
2020-08-02Make member functions const or static where possibleDavid Robillard1-2/+2
2020-08-01Use modern castsDavid Robillard1-10/+20
2019-12-08Cleanup: Add missing explicit initialisationsDavid Robillard1-0/+1
2019-12-08Cleanup: Remove redundant string initialisationsDavid Robillard1-1/+1
2019-12-08Cleanup: Add missing copy and assignment method declarationsDavid Robillard1-0/+5
2019-12-08Cleanup: Use "default" for default constructors and destructorsDavid Robillard1-2/+1
2019-12-08Cleanup: Avoid parameter copying overheadDavid Robillard1-28/+28
2019-03-09Make start_to_file() take a FilePath for type safetyDavid Robillard1-1/+1
2019-03-09Clean up includes and forward declarationsDavid Robillard1-9/+17
2019-03-09Localise dependency on boost::format and improve logging APIDavid Robillard1-3/+3
2019-03-09Use smart pointers over manual memory managementDavid Robillard1-4/+2
2018-09-23Allow context to be passed for serialisationDavid Robillard1-4/+3
2018-09-23Use lowercase namespace namesDavid Robillard1-3/+3
2018-09-22Use new LV2 include pathsDavid Robillard1-2/+2
2018-09-04Remove dynamic exception specificationsDavid Robillard1-5/+2
2018-01-21Clean up URI and path handling in SerialiserDavid Robillard1-25/+22
2018-01-21Add FilePath class and remove use of glib path utilitiesDavid Robillard1-46/+31
2018-01-21Use C++ style includes for standard language headersDavid Robillard1-3/+2
2018-01-21Add URI class and remove use of Raul::URIDavid Robillard1-27/+25
2018-01-21Replace insert(make_pair(...)) with emplaceDavid Robillard1-1/+1
2017-12-25Remove superfluous using namespace declarationsDavid Robillard1-3/+1
2017-12-25Always use bracesDavid Robillard1-5/+10
2017-12-25Use nullptrDavid Robillard1-3/+3
2017-12-25Fix inconsistent parameter namesDavid Robillard1-11/+11
2017-12-24Clean up includes in public headersDavid Robillard1-0/+1
2017-02-15Move Properties out of ResourceDavid Robillard1-9/+7
2016-10-06Add plugin state savingDavid Robillard1-1/+15
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-02Fix saving and loading subgraphsDavid Robillard1-3/+4
2016-10-02Fix default doap:name of saved graphsDavid Robillard1-3/+10
2016-08-17Rename main graph and control/notify portsDavid Robillard1-18/+17
2016-07-29Save bundled graphs to graph.ttl by defaultDavid Robillard1-11/+6
This avoids a lot of hassle with filename construction and renaming, while ensuring that the internal structure of any graph bundle is the same.
2015-12-04Omit extension from default doap:name for graphsDavid Robillard1-1/+2
2015-10-25Fix saving and loading of copy-pasted blocksDavid Robillard1-4/+4
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5785 a436a847-0d15-0410-975c-d299462d15a1
2015-10-24Fix subgraph serialisationDavid Robillard1-0/+1
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5775 a436a847-0d15-0410-975c-d299462d15a1
2015-08-29Save plugin version information in bundles.David Robillard1-4/+50
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5710 a436a847-0d15-0410-975c-d299462d15a1
2015-08-12Server-side presets.David Robillard1-1/+0
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5703 a436a847-0d15-0410-975c-d299462d15a1
2015-05-25Use ingen:/ as base URI on the wire.David Robillard1-4/+16
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-04-05Don't save symbol (problematic on save as).David Robillard1-19/+4
This is less than ideal, since it would be nice to be able to set a symbol for a graph (being a good idea for plugins in general), but this sorts out an issue for now. The symbol of a graph is currently always the name of its bundle. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5667 a436a847-0d15-0410-975c-d299462d15a1