/***
Olive - Non-Linear Video Editor
Copyright (C) 2022 Olive Team
Modifications Copyright (C) 2025 mikesolar
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 .
***/
#ifndef OAK_RENDERJOBTRACKER_H
#define OAK_RENDERJOBTRACKER_H
#include
#include "common/jobtime.h"
namespace olive
{
using namespace core;
class RenderJobTracker {
public:
RenderJobTracker() = default;
void insert(const TimeRange &range, JobTime job_time);
void insert(const TimeRangeList &ranges, JobTime job_time);
void clear();
bool isCurrent(const Rational &time, JobTime job_time) const;
TimeRangeList getCurrentSubRanges(const TimeRange &range,
const JobTime &job_time) const;
private:
class TimeRangeWithJob : public TimeRange {
public:
TimeRangeWithJob() = default;
TimeRangeWithJob(const TimeRange &range, const JobTime &job_time)
{
set_range(range.in(), range.out());
job_time_ = job_time;
}
JobTime get_job_time() const
{
return job_time_;
}
void set_job_time(JobTime jt)
{
job_time_ = jt;
}
private:
JobTime job_time_;
};
std::vector jobs_;
};
}
#endif // OAK_RENDERJOBTRACKER_H