...and as expected, this turns up quite some inconsistencies, especially regarding usage of the »buffer types«. Basically, the `PortBuilder` is responsible for the high-level functionality and thus must ensure the nested `WiringBuilder` is addressed and parameterised properly to connect all »slots« of the processing function. - can use a helper function in the WiringBuilder to fill in connections - but the actual buffer types passed over these connectinos are totally unchecked at that level, and can not see yet how this danger can be mitigated one level above, where the PortBuilder is used. - it is still unclear what a »buffer type« actually means; it could be the pointer type, but it could also imply a class or struct type to be emplaced into the buffer, which is a special extension to the `BufferProvider` protocol, yet seems to be used here rather to transport specific data types required by the actual media handling library (e.g. FFmpeg)
86 lines
2.3 KiB
C++
86 lines
2.3 KiB
C++
/*
|
|
EngineCtxFacilities - Implementation of global render engine operational services
|
|
|
|
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 engine-ctx-facilities.hpp
|
|
** Implementation parts of render engine operational services.
|
|
** @warning as of 10/2024 a preliminary integration of Render-Engine underway ////////////////////////////////////////TICKET #1367
|
|
*/
|
|
|
|
|
|
#include "steam/engine/engine-ctx-facilities.hpp"
|
|
#include "steam/engine/tracking-heap-block-provider.hpp"
|
|
|
|
//#include <string>
|
|
//#include <memory>
|
|
//#include <functional>
|
|
|
|
|
|
|
|
namespace steam {
|
|
namespace engine{
|
|
|
|
// using std::string;
|
|
// using lumiera::Subsys;
|
|
// using std::function;
|
|
// using std::bind;
|
|
using std::make_unique;
|
|
// using std::ref;
|
|
|
|
|
|
namespace { // hidden local details of the service implementation....
|
|
|
|
} // (End) hidden service impl details
|
|
|
|
|
|
|
|
|
|
|
|
/** storage for the EngineService interface object */
|
|
lib::Depend<EngineCtx> EngineCtx::access;
|
|
|
|
|
|
|
|
EngineCtx::~EngineCtx() { }
|
|
|
|
/** */
|
|
EngineCtx::EngineCtx()
|
|
: services_{make_unique<Facilities>()}
|
|
, mem {services_->getMemProvider()}
|
|
, cache{services_->getCacheProvider()}
|
|
{ }
|
|
|
|
|
|
/** */
|
|
EngineCtx::Facilities::Facilities()
|
|
: memProvider_{make_unique<TrackingHeapBlockProvider>()} ////////////////////////////////////////TICKET #1367 : only suitable for first prototype
|
|
, cacheProvider_{}
|
|
{ }
|
|
|
|
|
|
|
|
/** core operation: blah blubb....
|
|
*/
|
|
|
|
|
|
|
|
}} // namespace steam::engine
|