View Source Indexed.Managed.State (Indexed v0.3.4)

A piece of GenServer state for Managed.

Link to this section Summary

Types

t()
  • :index - Indexed struct. Static after created via Indexed.warm/1.
  • :module - Module which has use Indexed.Managed.
  • :repo - Ecto Repo module to use for loading data.
  • :tmp - Data structure used internally during a call to manage/5. Otherwise nil.
  • :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 via Indexed.warm/1.
  • :module - Module which has use Indexed.Managed.
  • :repo - Ecto Repo module to use for loading data.
  • :tmp - Data structure used internally during a call to manage/5. Otherwise nil.
  • :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

Link to this function

add_one_rm_queue(state, name, sub_path, record_map)

View Source
@spec add_one_rm_queue(t(), atom(), list(), %{required(id()) => record()}) :: t()

Add a set of records into tmp's :one_rm_queue.

Link to this function

add_tmp_done_ids(state, name, phase, ids)

View Source
@spec add_tmp_done_ids(t(), atom(), phase(), [id()]) :: t()

Add ids list for name in tmp's done_ids.

Link to this function

add_tmp_many_added(state, name, id, field)

View Source
@spec add_tmp_many_added(t(), atom(), id(), atom()) :: t()
Link to this function

add_tmp_rm_id(state, parent_info, id)

View Source
@spec add_tmp_rm_id(t(), parent_info(), id()) :: t()

Add an id to tmp rm_ids or top_rm_ids.

Link to this function

clear_tmp_tracking(state)

View Source
@spec clear_tmp_tracking(t()) :: t()

Reset tmp tracking map.

Link to this function

delete_tracking(state, name, id)

View Source
@spec delete_tracking(t(), atom(), id()) :: t()

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

  1. We haven't done the :add phase for the relationship (tmp.many_added) AND
  2. The parent still exists in cache.
Link to this function

drop_top_rm_ids(state, name)

View Source
@spec drop_top_rm_ids(t(), atom()) :: t()

Drop from the index all records in tmp.top_rm_ids.

@spec init(module(), module()) :: t()

Returns a freshly initialized state for Indexed.Managed.

@spec init_tmp(t()) :: t()

Returns a freshly initialized state for Indexed.Managed.

Link to this function

one_rm_queue(state, name)

View Source
@spec one_rm_queue(t(), atom()) :: %{required(id()) => tuple()}

Get one_rm_queue map for all ids of an entity 'name'.

Link to this function

one_rm_queue(state, name, id)

View Source
@spec one_rm_queue(t(), atom(), id()) :: tuple() | nil

Get one_rm_queue for an id.

Link to this function

put_tmp_record(state, name, id, record)

View Source
Link to this function

put_tmp_tracking(state, name, id, num_or_fun)

View Source
@spec put_tmp_tracking(
  t(),
  atom(),
  id(),
  non_neg_integer() | (non_neg_integer() -> non_neg_integer())
) ::
  t()
Link to this function

put_tracking(state, name, id, num)

View Source
@spec put_tracking(t(), atom(), id(), non_neg_integer()) :: t()

Add an id and ref count to :tracking.

Link to this function

subtract_one_rm_queue(state, name, id)

View Source
@spec subtract_one_rm_queue(t(), atom(), id()) :: t()

Remove an id from tmp one_rm_queue.

Link to this function

subtract_tmp_rm_id(state, arg2, id)

View Source
@spec subtract_tmp_rm_id(t(), parent_info(), id()) :: t()

Remove an assoc id from tmp rm_ids or top_rm_ids.

Link to this function

tmp_done_ids(state, name, phase)

View Source
@spec tmp_done_ids(t(), atom(), phase()) :: [id()]

Get ids list for name in tmp's done_ids.

Link to this function

tmp_tracking(map, name, id)

View Source
@spec tmp_tracking(t(), atom(), any()) :: non_neg_integer()
@spec tracking(t(), atom(), any()) :: non_neg_integer()
Link to this function

update_in_tmp_rm_id(state, arg, fun)

View Source
@spec update_in_tmp_rm_id(t(), parent_info(), (list() -> list())) :: t()

Use a function to update tmp rm_ids for a parent_info.