51 using mobject::LUMIERA_ERROR_BUILDER_LIFECYCLE;
52 using mobject::LUMIERA_ERROR_INVALID_MODEL_PORT;
53 using mobject::LUMIERA_ERROR_UNCONNECTED_MODEL_PORT;
56 using MPDescriptor = ModelPortRegistry::ModelPortDescriptor
const&;
70 INFO (builder,
"disabling ModelPort registry....");
88 INFO_IF (!previous, builder,
"activating new ModelPort registry.");
89 WARN_IF ( previous, builder,
"switching ModelPort registry instance.");
105 throw error::State (
"global model port registry is not accessible" 106 , LUMIERA_ERROR_BUILDER_LIFECYCLE);
119 && util::contains (transaction_, key);
133 && util::contains (currentReg_, key);
147 throw error::State (
"This model port is disconnected or NIL" 148 , LUMIERA_ERROR_UNCONNECTED_MODEL_PORT);
150 throw error::Logic (
"Model port was never registered, or got unregistered meanwhile." 151 ,LUMIERA_ERROR_INVALID_MODEL_PORT);
153 MPTable::const_iterator pos = currentReg_.find (key);
154 ASSERT (pos != currentReg_.end());
155 ASSERT (pos->second.isValid());
183 throw error::Logic (
"attempt to register a model port with a pipe-ID, " 184 "which has already been used to register a " 185 "model port within this transaction (build process)." 186 , LUMIERA_ERROR_DUPLICATE_MODEL_PORT);
196 transaction_.erase (key);
207 transaction_.clear();
221 MPTable newTransaction(transaction_);
222 TRACE (builder,
"committing new ModelPort list....");
223 swap (currentReg_, transaction_);
224 swap (transaction_, newTransaction);
235 TRACE (builder,
"discarding changes to ModelPort list (rollback)....");
236 MPTable newTransaction(currentReg_);
237 swap (transaction_, newTransaction);
242 LUMIERA_ERROR_DEFINE (DUPLICATE_MODEL_PORT,
"Attempt to define a new model port with an pipe-ID already denoting an existing port");
250 LUMIERA_ERROR_DEFINE (UNCONNECTED_MODEL_PORT,
"Attempt to operate on an existing but unconnected model port");
301 return this->id_.streamType();
Organising the output data calculation possibilities.
ModelPortDescriptor const & get(PID) const
basic access operation: access the descriptor of a currently valid model port.
ModelPortDescriptor const & definePort(PID pipe, StID element_exposing_this_port)
create and register a new model port entry, within the pending transaction
void clear()
schedule removal of all registry contents.
Optional or switchable link to an existing object.
bool contains(PID) const
does the transaction currently being built already contain a model port registration for the given ID...
void commit()
activate pending model port changes.
static lib::OptionalRef< ModelPortRegistry > theGlobalRegistry
storage for the link to the global Registry instance currently in charge
static bool exists(ID< asset::Pipe >)
check if the global model port registration contains a mapping for the given pipe-ID ...
Mutation and management facility for model ports within the builder.
static ModelPortDescriptor const & accessDescriptor(PID)
access the globally valid model port for the given pipe.
This header is for including and configuring NoBug.
Steam-Layer implementation namespace root.
ModelPortDescriptor records are used as actual storage within the model port registration table; they...
Derived specific exceptions within Lumiera's exception hierarchy.
ID< asset::Pipe > pipe() const
access the Pipe (ID) of the global model port registered with the ID underlying this model port...
static ModelPortRegistry * setActiveInstance(ModelPortRegistry &newRegistry)
switch the implicit link to the global ModelPort registry to point to the given implementation instan...
static void shutdown()
globally deactivate access to model ports
Management facility for tracking model ports.
Steam-Layer Facade: access to the Builder.
A special implementation of lib::Sync, where the storage of the object monitor is associated directly...
bool isRegistered(PID) const
Lumiera error handling (C++ interface).
A synchronisation protection guard employing a lock scoped to the parameter type as a whole...
static ModelPortRegistry & globalInstance()
access the globally valid registry instance.
ID< asset::Struct > holder() const
access the timeline (or similar structural element) holding a global pipe which corresponds to this m...
StreamType::ID streamType() const
convenience shortcut to access the stream type associated with the pipe-ID corresponding to this mode...
void rollback()
discard pending changes.
void remove(PID)
remove a model port entry from the pending transaction
#define LUMIERA_ERROR_DEFINE(err, msg)
Definition and initialisation of an error constant.
thin wrapper around a size_t hash ID used as primary key for all Asset objects.