LUMIERA.clone/tests/core/steam/engine/job-planning-test.cpp
Ichthyostega 806db414dd Copyright: clarify and simplify the file headers
* Lumiera source code always was copyrighted by individual contributors
 * there is no entity "Lumiera.org" which holds any copyrights
 * Lumiera source code is provided under the GPL Version 2+

== Explanations ==
Lumiera as a whole is distributed under Copyleft, GNU General Public License Version 2 or above.
For this to become legally effective, the ''File COPYING in the root directory is sufficient.''

The licensing header in each file is not strictly necessary, yet considered good practice;
attaching a licence notice increases the likeliness that this information is retained
in case someone extracts individual code files. However, it is not by the presence of some
text, that legally binding licensing terms become effective; rather the fact matters that a
given piece of code was provably copyrighted and published under a license. Even reformatting
the code, renaming some variables or deleting parts of the code will not alter this legal
situation, but rather creates a derivative work, which is likewise covered by the GPL!

The most relevant information in the file header is the notice regarding the
time of the first individual copyright claim. By virtue of this initial copyright,
the first author is entitled to choose the terms of licensing. All further
modifications are permitted and covered by the License. The specific wording
or format of the copyright header is not legally relevant, as long as the
intention to publish under the GPL remains clear. The extended wording was
based on a recommendation by the FSF. It can be shortened, because the full terms
of the license are provided alongside the distribution, in the file COPYING.
2024-11-17 23:42:55 +01:00

194 lines
7.1 KiB
C++
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
JobPlanning(Test) - data evaluation for frame job creation
Copyright (C)
2023, Hermann Vosseler <Ichthyostega@web.de>
  **Lumiera** 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 2 of the License, or (at your
  option) any later version. See the file COPYING for further details.
* *****************************************************************/
/** @file job-planning-test.cpp
** unit test \ref JobPlanning_test
*/
#include "lib/test/run.hpp"
#include "steam/engine/mock-dispatcher.hpp"
#include "steam/play/timings.hpp"
#include "lib/time/timevalue.hpp"
#include "lib/format-cout.hpp"
#include "lib/util.hpp"
#include <utility>
using test::Test;
using std::move;
using util::isSameObject;
namespace steam {
namespace engine{
namespace test {
using lib::time::FrameRate;
using lib::time::Offset;
using lib::time::Time;
using play::Timings;
/***************************************************************//**
* @test document and verify the data aggregation and the calculations
* necessary to prepare render jobs for scheduling.
*/
class JobPlanning_test : public Test
{
virtual void
run (Arg)
{
seedRand();
simpleUsage();
calculateDeadline();
setupDependentJob();
}
/** @test demonstrate a simple usage scenario
*/
void
simpleUsage()
{
MockDispatcher dispatcher;
play::Timings timings (FrameRate::PAL);
auto [port,sink] = dispatcher.getDummyConnection(1);
FrameCnt frameNr{5};
TimeVar nominalTime{Time{200,0}};
size_t portIDX = dispatcher.resolveModelPort (port);
JobTicket& ticket = dispatcher.getJobTicketFor(portIDX, nominalTime);
JobPlanning plan{ticket,nominalTime,frameNr};
Job job = plan.buildJob();
CHECK (dispatcher.verify (job, port, sink));
}
/** @test verify the timing calculations to establish
* the scheduling deadline of a simple render job
*/
void
calculateDeadline()
{
MockDispatcher dispatcher;
play::Timings timings (FrameRate::PAL, Time{0,0,5});
auto [port,sink] = dispatcher.getDummyConnection(1);
FrameCnt frameNr{5};
Time nominalTime{200,0};
size_t portIDX = dispatcher.resolveModelPort (port);
JobTicket& ticket = dispatcher.getJobTicketFor(portIDX, nominalTime);
JobPlanning plan{ticket,nominalTime,frameNr};
// the following calculations are expected to happen....
Duration latency = ticket.getExpectedRuntime()
+ timings.engineLatency
+ timings.outputLatency;
Offset nominalOffset (timings.getFrameStartAt(0), timings.getFrameStartAt(frameNr));
Time expectedDeadline{timings.scheduledDelivery + nominalOffset - latency};
cout << util::_Fmt{"Frame #%d @ %s\n"
"real-time-origin : %s\n"
"total latency : %s\n"
"deadline : %s"}
% frameNr % nominalOffset
% timings.scheduledDelivery
% latency
% plan.determineDeadline(timings)
<< endl;
CHECK (plan.determineDeadline(timings) == expectedDeadline);
CHECK (timings.scheduledDelivery == Time(0,0,5) );
CHECK (timings.playbackUrgency == play::TIMEBOUND);
// But when switching form "timebound" to "best effort"...
timings.playbackUrgency = play::ASAP;
CHECK (Time::ANYTIME == plan.determineDeadline (timings));
// ... no deadline is calculated at all
}
/** @test verify the setup of a prerequisite job in relation
* to the master job depending on this prerequisite
*/
void
setupDependentJob()
{
MockDispatcher dispatcher{MakeRec() // »master job« for each frame
.attrib("runtime", Duration{Time{30,0}})
.scope(MakeRec() // a »prerequisite job« on which the »master job« depends
.attrib("runtime", Duration{Time{50,0}})
.genNode())
.genNode()};
play::Timings timings (FrameRate::PAL, Time{0,0,5});
auto [port,sink] = dispatcher.getDummyConnection(1);
FrameCnt frameNr{5};
Time nominalTime{200,0};
size_t portIDX = dispatcher.resolveModelPort (port);
JobTicket& ticket = dispatcher.getJobTicketFor(portIDX, nominalTime);
JobTicket& prereq = *(ticket.getPrerequisites()); // pick up the (only) prerequisite
JobPlanning masterPlan{ticket,nominalTime,frameNr}; // the job plan for the master frame calculation
JobPlanning prereqPlan{move(*(masterPlan.buildDependencyPlanning() ))}; // build a plan for calculating the prerequisite
CHECK (isSameObject(ticket, masterPlan.ticket()));
CHECK (isSameObject(prereq, prereqPlan.ticket()));
CHECK ( masterPlan.isTopLevel());
CHECK (not prereqPlan.isTopLevel());
Time masterDeadline = masterPlan.determineDeadline (timings);
Time prereqDeadline = prereqPlan.determineDeadline (timings);
// the following relations are expected to hold for the prerequisite....
Duration latency = prereq.getExpectedRuntime()
+ timings.engineLatency; // Note: here only the engine, not the output latency
Time expectedDeadline{masterDeadline - latency};
cout << util::_Fmt{"Prerequisite......\n"
"master deadline : %s\n"
"latency : %s\n"
"prereq deadline : %s"}
% masterDeadline
% latency
% prereqDeadline
<< endl;
CHECK (prereqDeadline == expectedDeadline);
// However, no deadline established for "best effort" rendering...
timings.playbackUrgency = play::ASAP;
CHECK (Time::ANYTIME == masterPlan.determineDeadline (timings));
CHECK (Time::ANYTIME == prereqPlan.determineDeadline (timings));
}
};
/** Register this test class... */
LAUNCHER (JobPlanning_test, "unit engine");
}}} // namespace steam::engine::test