defmodule Spark.Dsl.Entity do
@moduledoc """
Declares a DSL entity.
A dsl entity represents a dsl constructor who's resulting value is a struct.
This lets the user create complex objects with arbitrary(mostly) validation rules.
The lifecycle of creating entities is complex, happening as Elixir is compiling
the modules in question. Some of the patterns around validating/transforming entities
have not yet solidified. If you aren't careful and don't follow the guidelines listed
here, you can have subtle and strange bugs during compilation. Anything not isolated to
simple value validations should be done in `transformers`. See `Spark.Dsl.Transformer`.
An entity has a `target` indicating which struct will ultimately be built. An entity
also has a `schema`. This schema is used for documentation, and the options are validated
against it before continuing on with the DSL.
To create positional arguments to the builder, use `args`. The values provided to
`args` need to be in the provided schema as well. They will be positional arguments
in the same order that they are provided in the `args` key.
`auto_set_fields` will set the provided values into the produced struct (they do not need
to be included in the schema).
`transform` is a function that takes a created struct and can alter it. This happens immediately
after handling the DSL options, and can be useful for setting field values on a struct based on
other values in that struct. If you need things that aren't contained in that struct, use an
`Spark.Dsl.Transformer`. This function returns `{:ok, new_entity}` or `{:error, error}`, so this can
also be used to validate the entity.
`entities` allows you to specify a keyword list of nested entities. Nested entities are stored
on the struct in the corresponding key, and are used in the same way entities are otherwise.
`singleton_entity_keys` specifies a set of entity keys (specified above) that should only have a
single value. This will be validated and unwrapped into `nil` | `single_value` on success.
`identifier` expresses that a given entity is unique by that field, validated by the DSL.
## Example
```elixir
@my_entity %Spark.Dsl.Entity{
name: :my_entity,
target: MyStruct,
schema: [my_field: [type: :atom, required: false]]
}
```
Once compiled by Spark, entities can be invoked with a keyword list:
```elixir
my_entity my_field: :value
```
Or with a do block:
```elixir
my_entity do
my_field :value
end
```
For a full example, see `Spark.Dsl.Extension`.
"""
defstruct [
:name,
:target,
:transform,
:recursive_as,
examples: [],
entities: [],
singleton_entity_keys: [],
deprecations: [],
describe: "",
snippet: "",
args: [],
links: nil,
hide: [],
identifier: nil,
modules: [],
imports: [],
no_depend_modules: [],
schema: [],
auto_set_fields: [],
docs: ""
]
alias Spark.{
Dsl.Entity,
OptionsHelpers
}
@typedoc """
Defines the struct that will be built from this entity definition.
The struct will need to have fields for all [`entities`](#t:entities/0), `t:schema/0` fields, and `t:auto_set_fields/0`.
"""
@type target :: module() | nil
@typedoc """
A keyword list of nested entities.
"""
@type entities :: Keyword.t(t)
@typedoc """
Specifies a function that will run on the target struct after building.
```elixir
@my_entity %Spark.Dsl.Entity{
name: :my_entity,
target: MyEntity,
schema: [
my_field: [type: :list, required: true]
],
transform: {MyModule, :max_three_items, []}
}
def max_three_items(my_entity) do
if length(my_entity.my_field) > 3 do
{:error, "Can't have more than three items"}
else
{:ok, my_entity}
end
end
```
"""
@type transform :: {module(), function :: atom(), args :: [any()]} | nil
@typedoc """
Specifies positional arguments for an Entity.
An entity declared like this:
```elixir
@entity %Spark.Dsl.Entity{
name: :entity,
target: Entity,
schema: [
positional: [type: :atom, required: true],
other: [type: :atom, required: false],
],
args: [:positional]
}
```
Can be instantiated like this:
```elixir
entity :positional_argument do
other :other_argument
end
```
"""
@type args :: [atom | {:optional, atom} | {:optional, atom, any}]
@typedoc """
Set the provided key value pairs in the produced struct. These fields do not need to be included in the Entity's schema.
"""
@type auto_set_fields :: Keyword.t(any)
@type deprecations :: Keyword.t(String.t())
# Using type id() since identifier is a reserved type.
@type id :: term()
@type imports :: [module()]
@type name :: atom | nil
@typedoc """
Internal field. Not set by user.
"""
@type docs :: String.t()
@typedoc """
User provided documentation.
Documentation provided in a `Entity`'s `describe` field will be included by `Spark` in any generated documentation that includes the `Entity`.
"""
@type describe :: String.t()
@type examples :: [String.t()]
@type hide :: [atom()]
@type links :: Keyword.t([String.t()]) | nil
@type modules :: [atom]
@type no_depend_modules :: [atom]
@type recursive_as :: atom | nil
@type singleton_entity_keys :: [atom]
@type snippet :: String.t()
@type t :: %Entity{
args: args(),
auto_set_fields: auto_set_fields(),
deprecations: deprecations(),
describe: describe(),
docs: docs(),
entities: entities(),
examples: examples(),
hide: hide(),
identifier: id(),
imports: imports(),
links: links(),
modules: modules(),
name: name(),
no_depend_modules: no_depend_modules(),
recursive_as: recursive_as(),
schema: OptionsHelpers.schema(),
singleton_entity_keys: singleton_entity_keys(),
snippet: snippet(),
target: target(),
transform: transform()
}
@doc false
def arg_names(entity) do
entity.args
|> Kernel.||([])
|> Enum.map(fn
tuple when is_tuple(tuple) ->
elem(tuple, 1)
other ->
other
end)
end
@doc false
def build(
%{
target: target,
schema: schema,
auto_set_fields: auto_set_fields,
transform: transform,
identifier: identifier,
singleton_entity_keys: singleton_entity_keys
},
opts,
nested_entities
) do
{before_validate_auto, after_validate_auto} =
Keyword.split(auto_set_fields || [], Keyword.keys(schema))
with {:ok, opts} <-
OptionsHelpers.validate(Keyword.merge(opts || [], before_validate_auto), schema),
opts <- Keyword.merge(opts, after_validate_auto),
opts <- Enum.map(opts, fn {key, value} -> {schema[key][:as] || key, value} end),
built <- struct(target, opts),
built <- struct(built, nested_entities),
{:ok, built} <- validate_singleton_entity_keys(built, singleton_entity_keys),
{:ok, built} <- transform(transform, built) do
maybe_apply_identifier(built, identifier)
end
end
defp validate_singleton_entity_keys(entity, []), do: {:ok, entity}
defp validate_singleton_entity_keys(entity, [key | rest]) do
case Map.get(entity, key) do
nil ->
validate_singleton_entity_keys(entity, rest)
[] ->
validate_singleton_entity_keys(Map.put(entity, key, nil), rest)
[nested_entity] ->
validate_singleton_entity_keys(Map.put(entity, key, nested_entity), rest)
entities ->
{:error, "Expected a single #{key}, got #{Enum.count(entities)}"}
end
end
@doc false
def maybe_apply_identifier(struct, nil), do: {:ok, struct}
def maybe_apply_identifier(struct, {:auto, :unique_integer})
when is_map_key(struct, :__identifier__),
do: {:ok, %{struct | __identifier__: System.unique_integer()}}
def maybe_apply_identifier(struct, {:auto, :unique_integer}),
do: raise("#{inspect(struct.__struct__)} must have the `__identifier__` field!")
def maybe_apply_identifier(struct, name)
when is_map_key(struct, :__identifier__) and is_map_key(struct, name),
do: {:ok, %{struct | __identifier__: Map.get(struct, name)}}
def maybe_apply_identifier(struct, name) when is_map_key(struct, :__identifier__),
do: raise("#{inspect(struct.__struct__)} does not have a field named `#{inspect(name)}`!")
def maybe_apply_identifier(struct, _name),
do: raise("#{inspect(struct.__struct__)} must have the `__identifier__` field!")
@doc false
def transform(nil, built), do: {:ok, built}
def transform({module, function, args}, built) do
apply(module, function, [built | args])
end
end