-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Write separate module for diamonds detection WiP * Implement parallel diamond detection WiP * Small refactor * Fix bug * Fix typo * Comment out triggering diamond detection in parents * Trigger diamon detection between elements WiP * Trigger diamon detection between elements WiP * Fix typos * wip * Log diamond wip * Add test wip * Add more test cases wip * Refactor diamond detection code * Remove unused import * Improve diamond log message, fix credo * Remove leftover files * Update changelog * Remove leftovers * Fix Connector test * Fix typo in the comment * Refactor State due to CR * Refactor diamond detection messages * stop creating serialized component path every time * Write some comments describing how the diamond detection mechanism works * Move the comments within the file * Fix typos in the algorithm description * Implement CR suggestions WiP * Implement CR suggestions WiP * Further refactor * Algorithm description refactor * Implement suggestions from CR * Refactor algortithm description
- Loading branch information
1 parent
5d6d7e7
commit ac6b793
Showing
15 changed files
with
566 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
312 changes: 312 additions & 0 deletions
312
lib/membrane/core/element/diamond_detection_controller.ex
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,312 @@ | ||
defmodule Membrane.Core.Element.DiamondDetectionController do | ||
@moduledoc false | ||
|
||
# DESCRIPTION OF THE ALGORITHM OF FINDING DIAMONDS IN THE PIPELINE | ||
|
||
# Definitions: | ||
|
||
# diamond - directed graph that has at least two distinct elements (sink and source) and | ||
# has two vertex-disjoint paths from the source to the sink. | ||
|
||
# This algorithm takes the directed graph made by all elements within a single pipeline and | ||
# finds some diamond-subgraphs where all the edges (links) work in the :pull mode, | ||
# that is they're either in the :manual flow control or in the :auto flow control and the | ||
# effective flow control is set to :pull. | ||
|
||
# These diamonds can be dangerous when used with pull flow control, e.g. let's consider | ||
# a pipeline that contains: | ||
# * MP4 demuxer that has two output pads | ||
# * MKV muxer that is linked to both of them | ||
# and let's assume that the MP4 file that is consumed by the MP4 demuxer is unbalanced | ||
# (audio and video streams are not interleaved, for example audio comes first and then video) | ||
# If the MKV muxer has pads working in pull mode, then demand on one pad will be satisfied, | ||
# but on the other won't, because the source MP4 file is unbalanced. Then, if the MP4 demuxer | ||
# has pads in auto flow control and its effective flow control is set to :pull, it won't | ||
# demand on the input, because one of the pads output with :auto flow control doesn't | ||
# have positive demand, so the whole pipeline will get stuck and won't process more data. | ||
|
||
# The algorithm is made of two phases: (1) triggering and (2) searching. | ||
|
||
# (1) Triggering | ||
|
||
# Let's notice that: | ||
# * a new diamond can be created only after linking a new spec | ||
# * if the new spec created a new diamond, this diamond will contain some of | ||
# the links spawned in this spec | ||
# If the diamond contains a link, it must also contain an element whose output pad | ||
# is part of this link. | ||
|
||
# After the spec status is set to :done, the parent component that returned the spec will | ||
# trigger all elements whose output pads have been linked in this spec (`type: :start_trigger`). | ||
# The reference of the trigger is always set to the spec reference. | ||
|
||
# If the element is triggered with a specific reference (`type: :trigger`) for the first time, | ||
# it does two things: | ||
# * the element forwards the trigger with the same reference via all input pads working | ||
# in the pull mode (`type: :trigger`) | ||
# * if the element has at least two output pads working in the pull mode, it postpones | ||
# the searching that will be spawned from itself (`type: :start_search`). The time | ||
# between postponing and the searching is one second. If during this time an element | ||
# is triggered once again with a different reference, it won't cause another postponement | ||
# of the searching, this means that at the time there is at most one searching | ||
# postponed in the single element | ||
|
||
# (2) Searching | ||
|
||
# Searching is started only in elements that have at least two output pads | ||
# working in the pull mode. When an element starts searching, it assigns | ||
# a new reference to it, different from the reference of the related trigger. | ||
|
||
# When searching enters the element (no matter if it is the element that has | ||
# just started the searching, or maybe it was forwarded to it via a link): | ||
# * if the element sees the searching reference for the first time, then: | ||
# - it forwards searching via all output pads working in the pull mode | ||
# (`type: :search`) | ||
# - when searching is forwarded, it remembers the path in the graph through | ||
# the elements that it has already passed | ||
# * if the element has already seen the reference of searching, but there is | ||
# a repeated element on the path that searching traversed to this element, | ||
# the element does nothing | ||
# * if the element has already seen the reference of searching and the traversed | ||
# path doesn't contain any repeated elements, it means that the current traversed path | ||
# and the path that the searching traversed when it entered the element | ||
# the previous time together make a diamond. Then, the element logs the found diamond | ||
# and doesn't forward searching further. | ||
|
||
alias __MODULE__.{DiamondLogger, PathInGraph} | ||
alias Membrane.Core.Element.State | ||
alias Membrane.Element.PadData | ||
|
||
require Membrane.Core.Message, as: Message | ||
require Membrane.Logger | ||
require Membrane.Pad, as: Pad | ||
|
||
@type diamond_detection_message() :: %{ | ||
:type => | ||
:start_search | ||
| :search | ||
| :delete_search_ref | ||
| :start_trigger | ||
| :trigger | ||
| :delete_trigger_ref, | ||
optional(:ref) => reference(), | ||
optional(:path) => PathInGraph.t(), | ||
optional(:pad_ref) => Pad.ref() | ||
} | ||
|
||
@spec handle_diamond_detection_message(diamond_detection_message(), State.t()) :: State.t() | ||
def handle_diamond_detection_message(%{type: type} = message, state) do | ||
case type do | ||
:start_search -> | ||
:ok = start_search(state) | ||
state | ||
|
||
:search -> | ||
handle_and_forward_search(message.pad_ref, message.ref, message.path, state) | ||
|
||
:delete_search_ref -> | ||
delete_search_ref(message.ref, state) | ||
|
||
:start_trigger -> | ||
start_trigger(message.ref, state) | ||
|
||
:trigger -> | ||
handle_and_forward_trigger(message.ref, state) | ||
|
||
:delete_trigger_ref -> | ||
delete_trigger_ref(message.ref, state) | ||
end | ||
end | ||
|
||
@spec start_search(State.t()) :: :ok | ||
defp start_search(state) do | ||
component_path = Membrane.ComponentPath.get_formatted() | ||
|
||
diamond_detection_path = [ | ||
%PathInGraph.Vertex{pid: self(), component_path: component_path} | ||
] | ||
|
||
:ok = | ||
make_ref() | ||
|> forward_search(diamond_detection_path, state) | ||
|
||
:ok | ||
end | ||
|
||
@spec handle_and_forward_search(Pad.ref(), reference(), PathInGraph.t(), State.t()) :: | ||
State.t() | ||
defp handle_and_forward_search( | ||
input_pad_ref, | ||
diamond_detection_ref, | ||
diamond_detecton_path, | ||
state | ||
) do | ||
component_path = Membrane.ComponentPath.get_formatted() | ||
|
||
new_path_vertex = %PathInGraph.Vertex{ | ||
pid: self(), | ||
component_path: component_path, | ||
input_pad_ref: input_pad_ref | ||
} | ||
|
||
diamond_detecton_path = [new_path_vertex | diamond_detecton_path] | ||
|
||
cond do | ||
not is_map_key(state.diamond_detection_state.ref_to_path, diamond_detection_ref) -> | ||
:ok = forward_search(diamond_detection_ref, diamond_detecton_path, state) | ||
|
||
:ok = | ||
%{type: :delete_search_ref, ref: diamond_detection_ref} | ||
|> send_after_to_self() | ||
|
||
state | ||
|> put_in( | ||
[:diamond_detection_state, :ref_to_path, diamond_detection_ref], | ||
diamond_detecton_path | ||
) | ||
|
||
has_cycle?(diamond_detecton_path) -> | ||
state | ||
|
||
have_common_prefix?( | ||
diamond_detecton_path, | ||
state.diamond_detection_state.ref_to_path[diamond_detection_ref] | ||
) -> | ||
state | ||
|
||
true -> | ||
:ok = | ||
state.diamond_detection_state.ref_to_path[diamond_detection_ref] | ||
|> DiamondLogger.log_diamond(diamond_detecton_path) | ||
|
||
state | ||
end | ||
end | ||
|
||
@spec delete_search_ref(reference(), State.t()) :: State.t() | ||
defp delete_search_ref(diamond_detection_ref, state) do | ||
{_path, %State{} = state} = | ||
state | ||
|> pop_in([:diamond_detection_state, :ref_to_path, diamond_detection_ref]) | ||
|
||
state | ||
end | ||
|
||
@spec forward_search(reference(), PathInGraph.t(), State.t()) :: :ok | ||
defp forward_search(diamond_detection_ref, diamond_detection_path, state) do | ||
auto_pull_mode? = state.effective_flow_control == :pull | ||
[current_entry | diamond_detection_path_tail] = diamond_detection_path | ||
|
||
state.pads_data | ||
|> Enum.each(fn {pad_ref, pad_data} -> | ||
if output_pull_pad?(pad_data, auto_pull_mode?) do | ||
current_entry = %{current_entry | output_pad_ref: pad_ref} | ||
diamond_detection_path = [current_entry | diamond_detection_path_tail] | ||
|
||
message = %{ | ||
type: :search, | ||
pad_ref: pad_data.other_ref, | ||
ref: diamond_detection_ref, | ||
path: diamond_detection_path | ||
} | ||
|
||
Message.send(pad_data.pid, :diamond_detection, message) | ||
end | ||
end) | ||
end | ||
|
||
defp forward_diamond_detection_trigger(trigger_ref, state) do | ||
state.pads_data | ||
|> Enum.each(fn {_pad_ref, %PadData{} = pad_data} -> | ||
if pad_data.direction == :input and pad_data.flow_control != :push do | ||
message = %{type: :trigger, ref: trigger_ref} | ||
Message.send(pad_data.pid, :diamond_detection, message) | ||
end | ||
end) | ||
end | ||
|
||
defp output_pull_pad?(%PadData{} = pad_data, auto_pull_mode?) do | ||
pad_data.direction == :output and | ||
(pad_data.flow_control == :manual or | ||
(pad_data.flow_control == :auto and auto_pull_mode?)) | ||
end | ||
|
||
defp has_cycle?(diamond_detection_path) do | ||
uniq_length = diamond_detection_path |> Enum.uniq_by(& &1.pid) |> length() | ||
uniq_length < length(diamond_detection_path) | ||
end | ||
|
||
@spec start_trigger(reference(), State.t()) :: State.t() | ||
defp start_trigger(spec_ref, state) do | ||
if map_size(state.pads_data) < 2 or | ||
MapSet.member?(state.diamond_detection_state.trigger_refs, spec_ref) do | ||
state | ||
else | ||
do_handle_and_forward_trigger(spec_ref, state) | ||
end | ||
end | ||
|
||
@spec handle_and_forward_trigger(reference(), State.t()) :: State.t() | ||
defp handle_and_forward_trigger(trigger_ref, %State{} = state) do | ||
if state.type == :endpoint or | ||
MapSet.member?(state.diamond_detection_state.trigger_refs, trigger_ref), | ||
do: state, | ||
else: do_handle_and_forward_trigger(trigger_ref, state) | ||
end | ||
|
||
defp do_handle_and_forward_trigger(trigger_ref, %State{} = state) do | ||
state = | ||
state | ||
|> update_in( | ||
[:diamond_detection_state, :trigger_refs], | ||
&MapSet.put(&1, trigger_ref) | ||
) | ||
|
||
:ok = | ||
%{type: :delete_trigger_ref, ref: trigger_ref} | ||
|> send_after_to_self() | ||
|
||
:ok = forward_diamond_detection_trigger(trigger_ref, state) | ||
|
||
if output_pull_arity(state) >= 2, | ||
do: postpone_diamond_detection(state), | ||
else: state | ||
end | ||
|
||
defp postpone_diamond_detection(%State{} = state) | ||
when state.diamond_detection_state.postponed? do | ||
state | ||
end | ||
|
||
defp postpone_diamond_detection(%State{} = state) do | ||
:ok = %{type: :start_search} |> send_after_to_self(1) | ||
|
||
state | ||
|> put_in([:diamond_detection_state, :postponed?], true) | ||
end | ||
|
||
@spec delete_trigger_ref(reference(), State.t()) :: State.t() | ||
defp delete_trigger_ref(trigger_ref, state) do | ||
state | ||
|> update_in( | ||
[:diamond_detection_state, :trigger_refs], | ||
&MapSet.delete(&1, trigger_ref) | ||
) | ||
end | ||
|
||
defp output_pull_arity(state) do | ||
auto_pull_mode? = state.effective_flow_control == :pull | ||
|
||
state.pads_data | ||
|> Enum.count(fn {_pad_ref, pad_data} -> output_pull_pad?(pad_data, auto_pull_mode?) end) | ||
end | ||
|
||
defp send_after_to_self(%{type: _type} = message, seconds \\ 10) do | ||
send_after_time = Membrane.Time.seconds(seconds) |> Membrane.Time.as_milliseconds(:round) | ||
message = Message.new(:diamond_detection, message) | ||
self() |> Process.send_after(message, send_after_time) | ||
:ok | ||
end | ||
|
||
defp have_common_prefix?(path_a, path_b), do: List.last(path_a) == List.last(path_b) | ||
end |
17 changes: 17 additions & 0 deletions
17
lib/membrane/core/element/diamond_detection_controller/diamond_detection_state.ex
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
defmodule Membrane.Core.Element.DiamondDetectionController.DiamondDatectionState do | ||
@moduledoc false | ||
|
||
use Bunch.Access | ||
|
||
alias Membrane.Core.Element.DiamondDetectionController.PathInGraph | ||
|
||
defstruct ref_to_path: %{}, | ||
trigger_refs: MapSet.new(), | ||
postponed?: false | ||
|
||
@type t :: %__MODULE__{ | ||
ref_to_path: %{optional(reference()) => PathInGraph.t()}, | ||
trigger_refs: MapSet.t(reference()), | ||
postponed?: boolean() | ||
} | ||
end |
Oops, something went wrong.