Advanced Gtk+ Sequencer - News
Extended semantics and some removals
Item posted by Joël Krähemann <jkraehemann> on Sun 08 Apr 2018 05:10:13 PM UTC.
GSequencer v2.0.0 just removed unneeded interfaces like:
- AgsPackable
- AgsDynamicConnectable
- AgsPlayable
- AgsMessage
About AgsPackable interface methods, ::pack() and ::unpack() were replaced by following functions:
- ags_recall_container_add()
- ags_recall_container_remove()
The AgsRecallContainer object existed anyway and I just made it more usable.
AgsDynamicConnectable was somehow confusing because there is AgsConnectable, too. The ::connect_dynamic() and ::disconnect_dynamic() shall be replaced by:
- ags_connectable_connect_connection()
- ags_connectable_disconnect_connection()
As mentioned in a previous post AgsPlayable is replaced by AgsSoundContainer and AgsSoundResource.
AgsMessage was never used that's why I removed it.
Better lock semantics
Many objects are going to have its very own object mutex. Most noticeable objects are:
- AgsAudio
- AgsChannel
- AgsRecycling
- AgsAudioSignal
- AgsRecall and all sub-types
- AgsNotation
- AgsAutomation
- AgsWave
- AgsMidi
- AgsPattern
- AgsPlayback
- AgsPlaybackDomain
- AgsRecallID
- AgsRecyclingContext
Any function call is going to be thread-safe for these objects. Be aware, you still can't access the audio buffers without integration to the AgsRecall effect processing system. Well, might be it is going to be configurable by globals.
Thread-safe properties
All properties shall be thread-safe. For the lazy programmer to get a field in a concurrency aware access.
A lot of work due to refactoring
I intend to revise each file. As the API reference field Since: shows 2.0.0 all desired changes should have been fulfilled.
AgsRecall::duplicate() prototype was modified in order to replace GParameter by a string vector and a GValue array.
Better abstraction like the new fields of AgsRecall.
- :output-soundcard
- :output-soundcard-channel
- :input-soundcard
- :input-soundcard-channel
- :samplerate
- :buffer-size
- :format
AgsUUID field in view of AgsConnectable
OSC support is inteded to be added. The AgsConnectable::list-resource() returns you an xmlNode struct listing all available resources.
There shall be an XML and a pure OSC back-end to do remote control.
by Joël
Powered by Savane 3.14-8aba.
Corresponding source code