Open sleistikow opened 3 days ago
Just an idea: What if we force every Processor to clear it's output immediately after it's input changed? It has access to all Outports and clear() is a virtual function in the Port class. Is there a processor, that will hold it's output data even if the input changed? If so, is this a rare case such that not clearing the output would be opt-in behavior?
If so, is this a rare case such that not clearing the output would be opt-in behavior?
Both RandomWalker
and OctreeWalker
hold on to their output until a new result is computed.
In general, I think most (?) or at least a lot of AsyncComputeProcessors do so because they overwrite the output in processOutput
.
Processors that can be disabled and hence set their input data directly as non-owned output cause an invalid state. For details, consider the following network: A->B->C (Processor A connected to B, B connected to C).
Processor A calculates data and sets it to its outport. Processor B is disabled and would like to forward the data from its inport to its outport to pass it to C. If this is done in any method which is called by the NetworkEvaluator such as process(), processor C will still point to invalid or already deleted data (depending on what data was set to processor A's outport). To fix this, the inport of Processor C needs to be informed immediately when the input of processor B changes (i.e. by clearing the outport of processor B). This can be implemented by deriving from PortObserver in each and every processor that can pipe through its data and implement dataWillChange such that the output gets cleared right away. This is quite cumbersome, since a lot of these processors might exist, so consider a different solution.