View Source Indexed.Managed.State (Indexed v0.3.4)
A piece of GenServer state for Managed.
Link to this section Summary
Types
:index
- Indexed struct. Static after created viaIndexed.warm/1
.:module
- Module which hasuse Indexed.Managed
.:repo
- Ecto Repo module to use for loading data.:tmp
- Data structure used internally during a call tomanage/5
. Otherwisenil
.:tracking
- Data about how many :one refs there are to a certain entity.
Data structure used to hold temporary data while running manage/5
.
A set of tracked entity statuses.
Map of tracked record IDs to occurrences throughout the records held. Used to manage subscriptions and garbage collection.
Functions
Add a set of records into tmp's :one_rm_queue
.
Add ids
list for name
in tmp's done_ids.
Add an id to tmp rm_ids or top_rm_ids.
Reset tmp tracking map.
Delete an id and its ref count from :tracking
.
Drop from the index all records in rm_ids EXCEPT where
Drop from the index all records in tmp.top_rm_ids.
Returns a freshly initialized state for Indexed.Managed
.
Returns a freshly initialized state for Indexed.Managed
.
Get one_rm_queue map for all ids of an entity 'name'.
Get one_rm_queue for an id.
Add an id and ref count to :tracking
.
Remove an id from tmp one_rm_queue.
Remove an assoc id from tmp rm_ids or top_rm_ids.
Get ids
list for name
in tmp's done_ids.
Use a function to update tmp rm_ids for a parent_info
.
Link to this section Types
@type t() :: %Indexed.Managed.State{ index: Indexed.t() | nil, module: module(), repo: module(), tmp: tmp() | nil, tracking: tracking() }
:index
- Indexed struct. Static after created viaIndexed.warm/1
.:module
- Module which hasuse Indexed.Managed
.:repo
- Ecto Repo module to use for loading data.:tmp
- Data structure used internally during a call tomanage/5
. Otherwisenil
.:tracking
- Data about how many :one refs there are to a certain entity.
@type tmp() :: %{ done_ids: %{required(atom()) => %{required(phase()) => [id()]}}, many_added: %{required(atom()) => %{required(id()) => [atom()]}}, one_rm_queue: %{required(atom()) => %{required(id()) => {list(), record()}}}, records: %{required(atom()) => %{required(id()) => record()}}, rm_ids: %{ required(atom()) => %{required(id()) => %{required(atom()) => [id()]}} }, top_rm_ids: [id()], tracking: tracking() }
Data structure used to hold temporary data while running manage/5
.
:done_ids
- Entity name-keyed map with lists of record IDs which have been processed during the:add
or:remove
phases because another entity has :one of them. This allows us to skip processing it next time(s) if it appears elsewhere.:many_added
- For each%{entity_name => id}
, a list of :many assoc fields. A field is added here when processing it during the :add phase, and it's used to know whether to skip the field in drop_rm_ids.:one_rm_queue
- When a :one association is handled in the :rm phase, a tuple is put here under the parent name and parent id containing the sub path and the record to remove. Removals will occur either immediately preceeding the same parent being processed during the :add phase OR during the finishing step. (But only if no other record has a :many relationship to it still.):records
- Records which may be committed to ETS at the end of the operation. Outer map is keyed by entity name. Inner map is keyed by id.:rm_ids
- Record IDs queued for removal with respect to their parent. Outer map is keyed by entity name. Inner map is keyed by parent ID. Inner-most map is keyed by parent field containing the children.:top_rm_ids
- Top-level record IDs queued for removal.:tracking
- For record ids relevant to the operation, initial values are copied from State and manipulated as needed within this structure.
@type tracking() :: %{required(atom()) => tracking_status()}
A set of tracked entity statuses.
An entity is tracked if another entity refers to it with a :one relationship.
@type tracking_status() :: %{required(id()) => non_neg_integer()}
Map of tracked record IDs to occurrences throughout the records held. Used to manage subscriptions and garbage collection.
Link to this section Functions
Add a set of records into tmp's :one_rm_queue
.
Add ids
list for name
in tmp's done_ids.
Add an id to tmp rm_ids or top_rm_ids.
Reset tmp tracking map.
Delete an id and its ref count from :tracking
.
@spec drop_rm_ids(t()) :: :ok
Drop from the index all records in rm_ids EXCEPT where
- We haven't done the :add phase for the relationship (tmp.many_added) AND
- The parent still exists in cache.
Drop from the index all records in tmp.top_rm_ids.
Returns a freshly initialized state for Indexed.Managed
.
Returns a freshly initialized state for Indexed.Managed
.
Get one_rm_queue map for all ids of an entity 'name'.
Get one_rm_queue for an id.
@spec put_tmp_tracking( t(), atom(), id(), non_neg_integer() | (non_neg_integer() -> non_neg_integer()) ) :: t()
@spec put_tracking(t(), atom(), id(), non_neg_integer()) :: t()
Add an id and ref count to :tracking
.
Remove an id from tmp one_rm_queue.
Remove an assoc id from tmp rm_ids or top_rm_ids.
Get ids
list for name
in tmp's done_ids.
@spec tmp_tracking(t(), atom(), any()) :: non_neg_integer()
@spec tracking(t(), atom(), any()) :: non_neg_integer()
Use a function to update tmp rm_ids for a parent_info
.