The immediate next goal is to verify properties of render nodes generated by the builder framework; two kinds of validations can be distinguished * structural aspects of the wiring * the fact that processing functionality is invoked in proper order Looking into the structural aspects brings about the necessity to identify the actual processing function bound into some functor. Some recapitulation of goals and requirements revealed, that this can not be a merely technical identity record — because the intention is to base the ''cache key'' on chained processing node identities, so that the key is stable as long as the user-visible results will be equivalent. And while structural data can be aggregated, at the core this information must be provided by the scheme embedded into the domain ontology, which is tasked with invoking the builder in order to implement a ''specific processing-asset''
51 lines
1.4 KiB
C++
51 lines
1.4 KiB
C++
/*
|
|
TestRandOntoloy - implementation of a test framework processing dummy data frames
|
|
|
|
Copyright (C) Lumiera.org
|
|
2024, Hermann Vosseler <Ichthyostega@web.de>
|
|
|
|
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 2 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, write to the Free Software
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
* *****************************************************/
|
|
|
|
/** @file test-rand-ontology.cpp
|
|
** Implementation of fake data processing to verify invocation logic.
|
|
*/
|
|
|
|
|
|
#include "steam/engine/test-rand-ontology.hpp"
|
|
#include "lib/error.hpp"
|
|
|
|
//#include <vector>
|
|
|
|
|
|
|
|
namespace steam {
|
|
namespace engine{
|
|
namespace test {
|
|
// namespace err = lumiera::error;
|
|
|
|
namespace { // hidden local support facilities....
|
|
|
|
} // (End) hidden impl details
|
|
|
|
|
|
Literal TEST_DUMMY{"Test-Dummy"};
|
|
|
|
|
|
|
|
|
|
|
|
}}} // namespace steam::engine::test
|