rdf-ex/lib/rdf/blank_node.ex

61 lines
1.4 KiB
Elixir
Raw Normal View History

2016-10-15 16:26:56 +00:00
defmodule RDF.BlankNode do
@moduledoc """
A RDF blank node (aka bnode) is a local node of a graph without an IRI.
see <https://www.w3.org/TR/rdf11-primer/#section-blank-node>
and <https://www.w3.org/TR/rdf11-concepts/#section-blank-nodes>
2016-10-15 16:26:56 +00:00
"""
2020-02-28 17:51:48 +00:00
@type t :: %__MODULE__{
2020-06-29 08:37:42 +00:00
id: String.t()
}
2020-02-28 17:51:48 +00:00
2018-09-09 22:27:40 +00:00
@enforce_keys [:id]
2016-10-15 16:26:56 +00:00
defstruct [:id]
2017-06-16 11:13:56 +00:00
@doc """
Creates a `RDF.BlankNode` with an arbitrary internal id.
2017-06-16 11:13:56 +00:00
"""
2020-03-02 01:07:31 +00:00
@spec new :: t
def new,
do: new(make_ref())
2017-06-16 11:13:56 +00:00
@doc """
Creates a `RDF.BlankNode` with a user-defined identity.
2017-06-16 11:13:56 +00:00
## Examples
iex> RDF.bnode(:foo)
%RDF.BlankNode{id: "foo"}
"""
2020-06-29 08:37:42 +00:00
@spec new(reference | String.t() | atom | integer) :: t
2017-06-16 11:13:56 +00:00
def new(id)
def new(id) when is_binary(id),
do: %__MODULE__{id: id}
2017-06-16 11:13:56 +00:00
def new(id) when is_reference(id),
2020-06-29 08:37:42 +00:00
do: id |> :erlang.ref_to_list() |> to_string |> String.replace(~r/\<|\>/, "") |> new
2017-06-16 11:13:56 +00:00
def new(id) when is_atom(id) or is_integer(id),
do: id |> to_string |> new
2016-10-15 16:26:56 +00:00
@doc """
Tests for value equality of blank nodes.
Returns `nil` when the given arguments are not comparable as blank nodes.
"""
2020-03-02 01:07:31 +00:00
@spec equal_value?(t, t) :: boolean | nil
def equal_value?(left, right)
def equal_value?(%__MODULE__{id: left}, %__MODULE__{id: right}),
do: left == right
def equal_value?(_, _),
do: nil
defimpl String.Chars do
def to_string(%RDF.BlankNode{id: id}), do: "_:#{id}"
end
2016-10-15 16:26:56 +00:00
end