Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,12 @@ build/**
out/**
.venv/**
CMakeUserPresets.json

# Audacity files

*.aup3
*.aup4
*.aup3-shm
*.aup3-wal
*.aup4-shm
*.aup4-wal
34 changes: 22 additions & 12 deletions src/AudacityDatabase.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,12 @@ AudacityDatabase::AudacityDatabase(
}, true);
}

AudacityDatabase::~AudacityDatabase()
{
mDatabase.reset();
removeJournalFiles(mReadOnly ? mProjectPath : mWritablePath);
}

void AudacityDatabase::reopenReadonlyAsWritable()
{
if (!mReadOnly)
Expand Down Expand Up @@ -466,22 +472,26 @@ void AudacityDatabase::extractTrack(
waveFile.writeFile();
}

void AudacityDatabase::removeOldFiles()
void AudacityDatabase::removeJournalFiles(const std::filesystem::path& dbPath)
{
if (std::filesystem::exists(mWritablePath))
{
std::filesystem::remove(mWritablePath);
auto walFile = dbPath;
walFile.replace_extension("aup3-wal");

auto walFile = mWritablePath;
walFile.replace_extension("aup3-wal");
if (std::filesystem::exists(walFile))
std::filesystem::remove(walFile);

if (std::filesystem::exists(walFile))
std::filesystem::remove(walFile);
auto shmFile = dbPath;
shmFile.replace_extension("aup3-shm");

auto shmFile = mWritablePath;
shmFile.replace_extension("aup3-shm");
if (std::filesystem::exists(shmFile))
std::filesystem::remove(shmFile);
}

if (std::filesystem::exists(shmFile))
std::filesystem::remove(shmFile);
void AudacityDatabase::removeOldFiles()
{
if (std::filesystem::exists(mWritablePath))
{
std::filesystem::remove(mWritablePath);
removeJournalFiles(mWritablePath);
}
}
2 changes: 2 additions & 0 deletions src/AudacityDatabase.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ class AudacityDatabase final
public:
explicit AudacityDatabase(
const std::filesystem::path& path, RecoveryConfig recoveryConfig);
~AudacityDatabase();

void reopenReadonlyAsWritable();
void recoverDatabase();
Expand All @@ -43,6 +44,7 @@ class AudacityDatabase final
void extractTrack(SampleFormat format, int32_t sampleRate, bool asStereo);

private:
static void removeJournalFiles(const std::filesystem::path& dbPath);
void removeOldFiles();

std::unique_ptr<SQLite::Database> mDatabase;
Expand Down
13 changes: 3 additions & 10 deletions src/BinaryXMLConverter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -281,17 +281,10 @@ class IdsLookup final
public:
void store(uint16_t index, std::string value)
{
const auto size = mIds.size();
if (index >= mIds.size())
mIds.resize(index + 1);

if (index == size)
mIds.push_back(std::move(value));
else
{
if ((index + 1) < size)
mIds.resize(index);

mIds[index] = std::move(value);
}
mIds[index] = std::move(value);
}

std::string_view get(uint16_t index)
Expand Down
1 change: 1 addition & 0 deletions src/Buffer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ Buffer::read(void* data, size_t offset, size_t size) const noexcept
offset = 0;
bytesLeft -= chunkSize;
outPtr += chunkSize;
++chunk;
}

return size;
Expand Down
6 changes: 3 additions & 3 deletions src/Buffer.h
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,12 @@ class Buffer final
return 0;

const size_t chunkIndex = offset / BUFFER_SIZE;
offset = offset - BUFFER_SIZE * chunkIndex;
const size_t chunkOffset = offset - BUFFER_SIZE * chunkIndex;

if (BUFFER_SIZE < (offset + size))
if (BUFFER_SIZE < (chunkOffset + size))
return read(&data, offset, size);

const void* ptr = mChunks[chunkIndex].data() + offset;
const void* ptr = mChunks[chunkIndex].data() + chunkOffset;

data = *static_cast<const T*>(ptr);

Expand Down
15 changes: 11 additions & 4 deletions src/ProjectModel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -483,15 +483,22 @@ void AudacityProject::removeUnusedBlocks()

readBlocksList.reset();

std::set<int64_t> orphanedBlocks;
std::set<int64_t> usedBlocks;

for (const auto block : mWaveBlocks)
for (const auto& block : mWaveBlocks)
{
if (block.isSilence())
continue;

if (availableBlocks.count(block.getBlockId()) == 0)
orphanedBlocks.emplace(block.getBlockId());
usedBlocks.emplace(block.getBlockId());
}

std::set<int64_t> orphanedBlocks;

for (auto blockId : availableBlocks)
{
if (usedBlocks.count(blockId) == 0)
orphanedBlocks.emplace(blockId);
}

mDb.reopenReadonlyAsWritable();
Expand Down
2 changes: 1 addition & 1 deletion src/XMLHandler.h
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ void GetAttributeValue(const AttributeValue& attr, Ret& result)
{
if constexpr (std::is_same_v<Ret, bool>)
{
result = arg == "true" || arg == "0";
result = arg == "true" || arg == "1";
}
else if constexpr (std::is_floating_point_v<Ret>)
{
Expand Down