commit dec7ca6b96c58decf2c5e5194b665fa2342951b2
Author: itsmattkc <34096995+itsmattkc@users.noreply.github.com>
Date: Wed Feb 8 12:32:12 2023 -0800
moved previewautocacher to rendermanager
commit d289d74d82c3911f3fdaa707abe9994c7363594d
Merge: a8a049a28 70d34c674
Author: itsmattkc <34096995+itsmattkc@users.noreply.github.com>
Date: Wed Feb 8 12:15:31 2023 -0800
Merge branch 'master' into move-cacher-to-renderman
commit a8a049a2857c438cbab0f1ab21e3299fdfbf1fa1
Author: itsmattkc <34096995+itsmattkc@users.noreply.github.com>
Date: Wed Feb 8 11:18:25 2023 -0800
initial work
161 lines
3.5 KiB
C++
161 lines
3.5 KiB
C++
/***
|
|
|
|
Olive - Non-Linear Video Editor
|
|
Copyright (C) 2022 Olive Team
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
***/
|
|
|
|
#ifndef PLAYBACKCACHE_H
|
|
#define PLAYBACKCACHE_H
|
|
|
|
#include <olive/core/core.h>
|
|
#include <QDir>
|
|
#include <QMutex>
|
|
#include <QObject>
|
|
#include <QPainter>
|
|
#include <QUuid>
|
|
|
|
#include "common/jobtime.h"
|
|
|
|
using namespace olive::core;
|
|
|
|
namespace olive {
|
|
|
|
class Node;
|
|
class Project;
|
|
class ViewerOutput;
|
|
|
|
class PlaybackCache : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
PlaybackCache(QObject* parent = nullptr);
|
|
|
|
const QUuid &GetUuid() const { return uuid_; }
|
|
void SetUuid(const QUuid &u);
|
|
|
|
TimeRangeList GetInvalidatedRanges(TimeRange intersecting) const;
|
|
TimeRangeList GetInvalidatedRanges(const rational &length) const
|
|
{
|
|
return GetInvalidatedRanges(TimeRange(0, length));
|
|
}
|
|
|
|
bool HasInvalidatedRanges(const TimeRange &intersecting) const;
|
|
bool HasInvalidatedRanges(const rational &length) const
|
|
{
|
|
return HasInvalidatedRanges(TimeRange(0, length));
|
|
}
|
|
|
|
QString GetCacheDirectory() const;
|
|
|
|
void Invalidate(const TimeRange& r);
|
|
|
|
bool HasValidatedRanges() const { return !validated_.isEmpty(); }
|
|
const TimeRangeList &GetValidatedRanges() const { return validated_; }
|
|
|
|
Node *parent() const;
|
|
|
|
QDir GetThisCacheDirectory() const;
|
|
static QDir GetThisCacheDirectory(const QString &cache_path, const QUuid &cache_id);
|
|
|
|
void LoadState();
|
|
void SaveState();
|
|
|
|
void Draw(QPainter *painter, const rational &start, double scale, const QRect &rect) const;
|
|
|
|
static int GetCacheIndicatorHeight()
|
|
{
|
|
return QFontMetrics(QFont()).height()/4;
|
|
}
|
|
|
|
bool IsSavingEnabled() const { return saving_enabled_; }
|
|
void SetSavingEnabled(bool e) { saving_enabled_ = e; }
|
|
|
|
virtual void SetPassthrough(PlaybackCache *cache);
|
|
|
|
QMutex *mutex() { return &mutex_; }
|
|
|
|
class Passthrough : public TimeRange
|
|
{
|
|
public:
|
|
Passthrough(const TimeRange &r) :
|
|
TimeRange(r)
|
|
{}
|
|
|
|
QUuid cache;
|
|
};
|
|
|
|
const std::vector<Passthrough> &GetPassthroughs() const { return passthroughs_; }
|
|
|
|
void ClearRequestRange(const TimeRange &r)
|
|
{
|
|
requested_.remove(r);
|
|
}
|
|
|
|
void ResignalRequests()
|
|
{
|
|
for (const TimeRange &r : requested_) {
|
|
emit Requested(request_context_, r);
|
|
}
|
|
}
|
|
|
|
public slots:
|
|
void InvalidateAll();
|
|
|
|
void Request(ViewerOutput *context, const TimeRange &r);
|
|
|
|
signals:
|
|
void Invalidated(const TimeRange& r);
|
|
|
|
void Validated(const TimeRange& r);
|
|
|
|
void Requested(ViewerOutput *context, const TimeRange& r);
|
|
|
|
void CancelAll();
|
|
|
|
protected:
|
|
void Validate(const TimeRange& r, bool signal = true);
|
|
|
|
virtual void InvalidateEvent(const TimeRange& range);
|
|
|
|
virtual void LoadStateEvent(QDataStream &stream){}
|
|
|
|
virtual void SaveStateEvent(QDataStream &stream){}
|
|
|
|
Project* GetProject() const;
|
|
|
|
private:
|
|
TimeRangeList validated_;
|
|
|
|
TimeRangeList requested_;
|
|
ViewerOutput *request_context_;
|
|
|
|
QUuid uuid_;
|
|
|
|
bool saving_enabled_;
|
|
|
|
QMutex mutex_;
|
|
|
|
std::vector<Passthrough> passthroughs_;
|
|
|
|
qint64 last_loaded_state_;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif // PLAYBACKCACHE_H
|