mirror of
https://github.com/cookiengineer/audacity
synced 2025-11-23 17:30:17 +01:00
Unitary changes (#599)
* Define SampleBlockFactory replacing static members of SampleBlock... ... This will become an abstract base class * Sequence and WaveTrack only store SampleBlockFactory not Project... ... This adds a dependency from Track to SampleBlock which temporarily enlarges a cycle in the dependency graph * Register a global factory of SampleBlockFactory... ... so that later we can make an abstract SampleBlockFactory, separate from the concrete implementation in terms of sqlite, and inject the dependency at startup avoiding static dependency * New concrete classes SqliteSampleBlock, SqliteSampleBlockFactory... ... separated from abstract base classes and put into a new source file, breaking dependency cycles, and perhaps allowing easy reimplementation for other databases in the future. Note that the new file is a header-less plug-in! Nothing depends on it. It uses static initialization to influence the program's behavior. * Compile dependency on sqlite3.h limited to just two .cpp files... ... these are ProjectFileIO.cpp and SqliteSampleBlock.cpp. But there is still close cooperation of ProjectFileIO and SqliteSampleBlock.cpp. This suggests that these files ought to be merged, and perhaps ProjectFileIO also needs to be split into abstract and concrete classes, and there should be another injection of a factory function at startup. That will make the choice of database implementation even more modular. Also removed one unnecessary inclusion of ProjectFileIO.h * Fix crashes cutting and pasting cross-project... ... in case the source project is closed before the paste happens. This caused destruction of the ProjectFileIO object and a closing of the sqlite database with the sample data in it, leaving dangling references in the SqliteSampleBlock objects. The fix is that the SqliteSampleBlockFactory object holds a shared_ptr to the ProjectFileIO object. So the clipboard may own WaveTracks, which own WaveClips, which own Sequences, which own SqliteSampleBlockFactories, which keep the ProjectFileIO and the database connection alive until the clipboard is cleared. The consequence of the fix is delayed closing of the entire database associated with the source project. If the source project is reopened before the clipboard is cleared, will there be correct concurrent access to the same persistent store? My preliminary trials suggest this is so (reopening a saved project, deleting from it, closing it again -- the clipboard contents are still unchanged and available).
This commit is contained in:
@@ -1559,6 +1559,9 @@ private:
|
||||
std::vector< Updater > mUpdaters;
|
||||
};
|
||||
|
||||
class SampleBlockFactory;
|
||||
using SampleBlockFactoryPtr = std::shared_ptr<SampleBlockFactory>;
|
||||
|
||||
class AUDACITY_DLL_API TrackFactory final
|
||||
: public ClientData::Base
|
||||
{
|
||||
@@ -1569,9 +1572,9 @@ class AUDACITY_DLL_API TrackFactory final
|
||||
static void Destroy( AudacityProject &project );
|
||||
|
||||
TrackFactory( const ProjectSettings &settings,
|
||||
AudacityProject &project, const ZoomInfo *zoomInfo)
|
||||
const SampleBlockFactoryPtr &pFactory, const ZoomInfo *zoomInfo)
|
||||
: mSettings{ settings }
|
||||
, mProject(project)
|
||||
, mpFactory(pFactory)
|
||||
, mZoomInfo(zoomInfo)
|
||||
{
|
||||
}
|
||||
@@ -1580,7 +1583,7 @@ class AUDACITY_DLL_API TrackFactory final
|
||||
|
||||
private:
|
||||
const ProjectSettings &mSettings;
|
||||
AudacityProject &mProject;
|
||||
SampleBlockFactoryPtr mpFactory;
|
||||
const ZoomInfo *const mZoomInfo;
|
||||
friend class AudacityProject;
|
||||
public:
|
||||
|
||||
Reference in New Issue
Block a user