summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndré Nusser <andre.nusser@googlemail.com>2016-01-29 20:59:43 +0100
committerAndré Nusser <andre.nusser@googlemail.com>2016-01-29 20:59:43 +0100
commit6f685ae7ac93a04963532c21152fa0491931988b (patch)
treed9bceb5f0410b60e3ffbd79de60be47c7ea29bb7 /src
parent9ebd9aa0c3429f896e6c41f279b570ba36aec674 (diff)
Remove pointer from audiofiles map.
Diffstat (limited to 'src')
-rw-r--r--src/audiocachefile.cc25
-rw-r--r--src/audiocachefile.h2
2 files changed, 10 insertions, 17 deletions
diff --git a/src/audiocachefile.cc b/src/audiocachefile.cc
index 91fcecf..e9ed322 100644
--- a/src/audiocachefile.cc
+++ b/src/audiocachefile.cc
@@ -130,25 +130,19 @@ AudioCacheFile& AudioCacheFiles::getFile(const std::string& filename)
{
std::lock_guard<std::mutex> lock(mutex);
- AudioCacheFile* cache_audio_file = nullptr;
-
auto it = audiofiles.find(filename);
if(it == audiofiles.end())
{
- cache_audio_file = new AudioCacheFile(filename, read_buffer);
- audiofiles.insert(std::make_pair(filename, cache_audio_file));
- }
- else
- {
- cache_audio_file = it->second;
+ it = audiofiles.emplace(std::piecewise_construct, std::make_tuple(filename),
+ std::make_tuple(filename, std::ref(read_buffer))).first;
}
- assert(cache_audio_file);
+ auto& cache_audio_file = it->second;
// Increase ref count.
- ++cache_audio_file->ref;
+ ++cache_audio_file.ref;
- return *cache_audio_file;
+ return cache_audio_file;
}
void AudioCacheFiles::releaseFile(const std::string& filename)
@@ -162,14 +156,13 @@ void AudioCacheFiles::releaseFile(const std::string& filename)
return; // not open
}
- auto audiofile = it->second;
+ auto& audiofile = it->second;
- assert(audiofile->ref); // If ref is not > 0 it shouldn't be in the map.
+ assert(audiofile.ref); // If ref is not > 0 it shouldn't be in the map.
- --audiofile->ref;
- if(audiofile->ref == 0)
+ --audiofile.ref;
+ if(audiofile.ref == 0)
{
- delete audiofile;
audiofiles.erase(it);
}
}
diff --git a/src/audiocachefile.h b/src/audiocachefile.h
index 8e40a2e..343133e 100644
--- a/src/audiocachefile.h
+++ b/src/audiocachefile.h
@@ -95,7 +95,7 @@ public:
void releaseFile(const std::string& filename);
protected:
- std::map<std::string, AudioCacheFile*> audiofiles;
+ std::map<std::string, AudioCacheFile> audiofiles;
std::mutex mutex;
std::vector<sample_t> read_buffer;
};