Files
oak-editor/app/render/backend/videorenderframecache.cpp
T
itsmattkc 7a6dd02e5b furthered development of audio renderers
Mostly reimplementing functions from other workers to produce audio samples
2019-11-11 11:35:01 +09:00

86 lines
1.8 KiB
C++

#include "videorenderframecache.h"
#include <QDir>
#include <QFileInfo>
#include "common/filefunctions.h"
VideoRenderFrameCache::VideoRenderFrameCache()
{
}
bool VideoRenderFrameCache::HasHash(const QByteArray &hash)
{
return QFileInfo::exists(CachePathName(hash)) && !IsCaching(hash);
}
bool VideoRenderFrameCache::IsCaching(const QByteArray &hash)
{
currently_caching_lock_.lock();
bool is_caching = currently_caching_list_.contains(hash);
currently_caching_lock_.unlock();
return is_caching;
}
bool VideoRenderFrameCache::TryCache(const QByteArray &hash)
{
currently_caching_lock_.lock();
bool is_caching = currently_caching_list_.contains(hash);
if (!is_caching) {
currently_caching_list_.append(hash);
}
currently_caching_lock_.unlock();
return !is_caching;
}
void VideoRenderFrameCache::SetCacheID(const QString &id)
{
cache_id_ = id;
}
QByteArray VideoRenderFrameCache::TimeToHash(const rational &time)
{
return time_hash_map_.value(time);
}
void VideoRenderFrameCache::SetHash(const rational &time, const QByteArray &hash)
{
// No longer currently caching this frame
RemoveHashFromCurrentlyCaching(hash);
// Insert frame into map
time_hash_map_.insert(time, hash);
}
void VideoRenderFrameCache::RemoveHash(const rational &time)
{
RemoveHashFromCurrentlyCaching(time_hash_map_.value(time));
time_hash_map_.remove(time);
}
void VideoRenderFrameCache::RemoveHashFromCurrentlyCaching(const QByteArray &hash)
{
currently_caching_lock_.lock();
currently_caching_list_.removeOne(hash);
currently_caching_lock_.unlock();
}
QString VideoRenderFrameCache::CachePathName(const QByteArray &hash)
{
QDir this_cache_dir = QDir(GetMediaCacheLocation()).filePath(cache_id_);
this_cache_dir.mkpath(".");
QString filename = QStringLiteral("%1.exr").arg(QString(hash.toHex()));
return this_cache_dir.filePath(filename);
}