2016-10-15 16:26:56 +00:00
|
|
|
defmodule RDF.Graph do
|
|
|
|
@moduledoc """
|
|
|
|
Defines a RDF Graph.
|
|
|
|
|
|
|
|
A `RDF.Graph` represents a set of `RDF.Description`s.
|
|
|
|
|
|
|
|
Named vs. unnamed graphs ...
|
|
|
|
"""
|
|
|
|
defstruct name: nil, descriptions: %{}
|
|
|
|
|
2016-11-27 12:49:42 +00:00
|
|
|
@behaviour Access
|
|
|
|
|
2016-10-15 16:26:56 +00:00
|
|
|
alias RDF.{Description, Triple}
|
|
|
|
|
|
|
|
@type t :: module
|
|
|
|
|
|
|
|
@doc """
|
2016-11-25 00:17:07 +00:00
|
|
|
Creates an empty unnamed `RDF.Graph`.
|
2016-10-15 16:26:56 +00:00
|
|
|
"""
|
2016-11-25 00:17:07 +00:00
|
|
|
def new,
|
|
|
|
do: %RDF.Graph{}
|
2016-10-15 16:26:56 +00:00
|
|
|
|
2016-11-25 00:17:07 +00:00
|
|
|
@doc """
|
|
|
|
Creates an unnamed `RDF.Graph` with an initial triple.
|
|
|
|
"""
|
2016-12-09 13:52:21 +00:00
|
|
|
def new({_, _, _} = triple),
|
2017-02-13 00:51:26 +00:00
|
|
|
do: new() |> add(triple)
|
2016-11-25 00:17:07 +00:00
|
|
|
|
|
|
|
@doc """
|
|
|
|
Creates an unnamed `RDF.Graph` with initial triples.
|
|
|
|
"""
|
|
|
|
def new(triples) when is_list(triples),
|
2017-02-13 00:51:26 +00:00
|
|
|
do: new() |> add(triples)
|
2016-11-25 00:17:07 +00:00
|
|
|
|
2016-12-09 13:52:21 +00:00
|
|
|
@doc """
|
2017-02-18 20:35:27 +00:00
|
|
|
Creates an unnamed `RDF.Graph` with a `RDF.Description`.
|
2016-12-09 13:52:21 +00:00
|
|
|
"""
|
|
|
|
def new(%RDF.Description{} = description),
|
2017-02-13 00:51:26 +00:00
|
|
|
do: new() |> add(description)
|
2016-12-09 13:52:21 +00:00
|
|
|
|
2017-02-18 20:35:27 +00:00
|
|
|
@doc """
|
|
|
|
Creates an empty unnamed `RDF.Graph`.
|
|
|
|
"""
|
|
|
|
def new(nil),
|
|
|
|
do: new()
|
|
|
|
|
2016-11-25 00:17:07 +00:00
|
|
|
@doc """
|
|
|
|
Creates an empty named `RDF.Graph`.
|
|
|
|
"""
|
|
|
|
def new(name),
|
|
|
|
do: %RDF.Graph{name: RDF.uri(name)}
|
|
|
|
|
|
|
|
@doc """
|
|
|
|
Creates a named `RDF.Graph` with an initial triple.
|
|
|
|
"""
|
|
|
|
def new(name, triple = {_, _, _}),
|
|
|
|
do: new(name) |> add(triple)
|
|
|
|
|
|
|
|
@doc """
|
|
|
|
Creates a named `RDF.Graph` with initial triples.
|
|
|
|
"""
|
|
|
|
def new(name, triples) when is_list(triples),
|
|
|
|
do: new(name) |> add(triples)
|
|
|
|
|
2016-12-09 13:52:21 +00:00
|
|
|
@doc """
|
2017-02-18 20:35:27 +00:00
|
|
|
Creates a named `RDF.Graph` with a `RDF.Description`.
|
2016-12-09 13:52:21 +00:00
|
|
|
"""
|
|
|
|
def new(name, %RDF.Description{} = description),
|
|
|
|
do: new(name) |> add(description)
|
|
|
|
|
2016-11-25 00:17:07 +00:00
|
|
|
@doc """
|
|
|
|
Creates an unnamed `RDF.Graph` with initial triples.
|
|
|
|
"""
|
|
|
|
def new(subject, predicate, objects),
|
2017-02-13 00:51:26 +00:00
|
|
|
do: new() |> add(subject, predicate, objects)
|
2016-11-25 00:17:07 +00:00
|
|
|
|
|
|
|
@doc """
|
|
|
|
Creates a named `RDF.Graph` with initial triples.
|
|
|
|
"""
|
|
|
|
def new(name, subject, predicate, objects),
|
|
|
|
do: new(name) |> add(subject, predicate, objects)
|
|
|
|
|
|
|
|
|
|
|
|
@doc """
|
|
|
|
Adds triples to a `RDF.Graph`.
|
|
|
|
"""
|
|
|
|
def add(graph, subject, predicate, objects)
|
|
|
|
|
|
|
|
def add(graph, subject, predicate, objects) when is_list(objects) do
|
|
|
|
Enum.reduce objects, graph, fn (object, graph) ->
|
|
|
|
add(graph, subject, predicate, object)
|
|
|
|
end
|
|
|
|
end
|
2016-10-15 16:26:56 +00:00
|
|
|
|
|
|
|
def add(%RDF.Graph{name: name, descriptions: descriptions},
|
2016-11-25 00:17:07 +00:00
|
|
|
subject, predicate, object) do
|
2017-02-19 00:34:01 +00:00
|
|
|
with subject = Triple.convert_subject(subject) do
|
|
|
|
updated_descriptions =
|
|
|
|
Map.update(descriptions, subject,
|
|
|
|
Description.new({subject, predicate, object}), fn description ->
|
|
|
|
description |> Description.add({predicate, object})
|
|
|
|
end)
|
2016-10-15 16:26:56 +00:00
|
|
|
%RDF.Graph{name: name, descriptions: updated_descriptions}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-11-25 00:17:07 +00:00
|
|
|
@doc """
|
|
|
|
Adds triples to a `RDF.Graph`.
|
|
|
|
"""
|
|
|
|
def add(graph, triples)
|
|
|
|
|
|
|
|
def add(graph, {subject, predicate, object}),
|
|
|
|
do: add(graph, subject, predicate, object)
|
|
|
|
|
|
|
|
def add(graph, triples) when is_list(triples) do
|
|
|
|
Enum.reduce triples, graph, fn (triple, graph) ->
|
|
|
|
add(graph, triple)
|
2016-10-15 16:26:56 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-12-09 13:52:21 +00:00
|
|
|
def add(%RDF.Graph{name: name, descriptions: descriptions},
|
|
|
|
%Description{subject: subject} = description) do
|
|
|
|
description = if existing_description = descriptions[subject],
|
|
|
|
do: Description.add(existing_description, description),
|
|
|
|
else: description
|
|
|
|
%RDF.Graph{name: name,
|
|
|
|
descriptions: Map.put(descriptions, subject, description)}
|
|
|
|
end
|
|
|
|
|
2016-11-26 22:45:41 +00:00
|
|
|
|
|
|
|
@doc """
|
|
|
|
Puts statements to a `RDF.Graph`, overwriting all statements with the same subject and predicate.
|
|
|
|
|
|
|
|
# Examples
|
|
|
|
|
|
|
|
iex> RDF.Graph.new(EX.S, EX.P, EX.O1) |> RDF.Graph.put(EX.S, EX.P, EX.O2)
|
|
|
|
RDF.Graph.new(EX.S, EX.P, EX.O2)
|
|
|
|
iex> RDF.Graph.new(EX.S, EX.P1, EX.O1) |> RDF.Graph.put(EX.S, EX.P2, EX.O2)
|
|
|
|
RDF.Graph.new([{EX.S, EX.P1, EX.O1}, {EX.S, EX.P2, EX.O2}])
|
|
|
|
"""
|
|
|
|
def put(%RDF.Graph{name: name, descriptions: descriptions},
|
|
|
|
subject, predicate, objects) do
|
2017-02-19 00:34:01 +00:00
|
|
|
with subject = Triple.convert_subject(subject) do
|
|
|
|
new_description = case descriptions[subject] do
|
|
|
|
%Description{} = description ->
|
|
|
|
Description.put(description, predicate, objects)
|
|
|
|
nil ->
|
|
|
|
Description.new(subject, predicate, objects)
|
2016-11-26 22:45:41 +00:00
|
|
|
end
|
|
|
|
%RDF.Graph{name: name,
|
2017-02-19 00:34:01 +00:00
|
|
|
descriptions: Map.put(descriptions, subject, new_description)}
|
2016-11-26 22:45:41 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
@doc """
|
|
|
|
Adds statements to a `RDF.Graph` and overwrites all existing statements with the same subjects and predicates.
|
|
|
|
|
|
|
|
# Examples
|
|
|
|
|
|
|
|
iex> RDF.Graph.new([{EX.S1, EX.P1, EX.O1}, {EX.S2, EX.P2, EX.O2}]) |>
|
|
|
|
...> RDF.Graph.put([{EX.S1, EX.P2, EX.O3}, {EX.S2, EX.P2, EX.O3}])
|
|
|
|
RDF.Graph.new([{EX.S1, EX.P1, EX.O1}, {EX.S1, EX.P2, EX.O3}, {EX.S2, EX.P2, EX.O3}])
|
|
|
|
"""
|
|
|
|
def put(graph, statements)
|
|
|
|
|
2017-02-19 00:34:01 +00:00
|
|
|
def put(%RDF.Graph{} = graph, {subject, predicate, object}),
|
2016-11-26 22:45:41 +00:00
|
|
|
do: put(graph, subject, predicate, object)
|
|
|
|
|
2016-12-09 13:52:21 +00:00
|
|
|
def put(%RDF.Graph{name: name, descriptions: descriptions},
|
|
|
|
%Description{subject: subject} = description) do
|
|
|
|
description = if existing_description = descriptions[subject],
|
|
|
|
do: Description.put(existing_description, description),
|
|
|
|
else: description
|
|
|
|
%RDF.Graph{name: name,
|
|
|
|
descriptions: Map.put(descriptions, subject, description)}
|
|
|
|
end
|
|
|
|
|
2017-02-19 00:34:01 +00:00
|
|
|
def put(%RDF.Graph{} = graph, statements) when is_map(statements) do
|
2016-11-26 22:45:41 +00:00
|
|
|
Enum.reduce statements, graph, fn ({subject, predications}, graph) ->
|
|
|
|
put(graph, subject, predications)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-02-19 00:34:01 +00:00
|
|
|
def put(%RDF.Graph{} = graph, statements) when is_list(statements) do
|
2016-11-26 22:45:41 +00:00
|
|
|
put(graph, Enum.group_by(statements, &(elem(&1, 0)), fn {_, p, o} -> {p, o} end))
|
|
|
|
end
|
|
|
|
|
|
|
|
def put(%RDF.Graph{name: name, descriptions: descriptions}, subject, predications)
|
|
|
|
when is_list(predications) do
|
2017-02-18 20:35:27 +00:00
|
|
|
with subject = Triple.convert_subject(subject) do
|
2017-02-19 00:34:01 +00:00
|
|
|
description =
|
|
|
|
Map.get(descriptions, subject, Description.new(subject))
|
|
|
|
new_descriptions =
|
|
|
|
Map.put(descriptions, subject, Description.put(description, predications))
|
2016-11-26 22:45:41 +00:00
|
|
|
%RDF.Graph{name: name, descriptions: new_descriptions}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-02-19 00:34:01 +00:00
|
|
|
def put(graph, subject, {_predicate, _objects} = predications),
|
2016-11-27 12:49:42 +00:00
|
|
|
do: put(graph, subject, [predications])
|
|
|
|
|
|
|
|
|
|
|
|
@doc """
|
|
|
|
Fetches the description of the given subject.
|
|
|
|
|
|
|
|
When the subject can not be found `:error` is returned.
|
|
|
|
|
|
|
|
# Examples
|
|
|
|
|
|
|
|
iex> RDF.Graph.new([{EX.S1, EX.P1, EX.O1}, {EX.S2, EX.P2, EX.O2}]) |>
|
|
|
|
...> RDF.Graph.fetch(EX.S1)
|
|
|
|
{:ok, RDF.Description.new({EX.S1, EX.P1, EX.O1})}
|
|
|
|
iex> RDF.Graph.fetch(RDF.Graph.new, EX.foo)
|
|
|
|
:error
|
|
|
|
"""
|
|
|
|
def fetch(%RDF.Graph{descriptions: descriptions}, subject) do
|
|
|
|
Access.fetch(descriptions, Triple.convert_subject(subject))
|
|
|
|
end
|
|
|
|
|
|
|
|
@doc """
|
|
|
|
Gets the description of the given subject.
|
|
|
|
|
|
|
|
When the subject can not be found the optionally given default value or `nil` is returned.
|
|
|
|
|
|
|
|
# Examples
|
|
|
|
|
|
|
|
iex> RDF.Graph.new([{EX.S1, EX.P1, EX.O1}, {EX.S2, EX.P2, EX.O2}]) |>
|
|
|
|
...> RDF.Graph.get(EX.S1)
|
|
|
|
RDF.Description.new({EX.S1, EX.P1, EX.O1})
|
|
|
|
iex> RDF.Graph.get(RDF.Graph.new, EX.Foo)
|
|
|
|
nil
|
|
|
|
iex> RDF.Graph.get(RDF.Graph.new, EX.Foo, :bar)
|
|
|
|
:bar
|
|
|
|
"""
|
2017-02-19 00:34:01 +00:00
|
|
|
def get(%RDF.Graph{} = graph, subject, default \\ nil) do
|
2016-11-27 12:49:42 +00:00
|
|
|
case fetch(graph, subject) do
|
|
|
|
{:ok, value} -> value
|
|
|
|
:error -> default
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-02-19 00:34:01 +00:00
|
|
|
@doc """
|
|
|
|
The `RDF.Description` of the given subject.
|
|
|
|
"""
|
|
|
|
def description(%RDF.Graph{descriptions: descriptions}, subject),
|
|
|
|
do: Map.get(descriptions, Triple.convert_subject(subject))
|
|
|
|
|
|
|
|
|
2016-11-27 12:49:42 +00:00
|
|
|
@doc """
|
|
|
|
Gets and updates the description of the given subject, in a single pass.
|
|
|
|
|
|
|
|
Invokes the passed function on the `RDF.Description` of the given subject;
|
|
|
|
this function should return either `{description_to_return, new_description}` or `:pop`.
|
|
|
|
|
|
|
|
If the passed function returns `{description_to_return, new_description}`, the
|
|
|
|
return value of `get_and_update` is `{description_to_return, new_graph}` where
|
|
|
|
`new_graph` is the input `Graph` updated with `new_description` for
|
|
|
|
the given subject.
|
|
|
|
|
|
|
|
If the passed function returns `:pop` the description for the given subject is
|
|
|
|
removed and a `{removed_description, new_graph}` tuple gets returned.
|
|
|
|
|
|
|
|
# Examples
|
|
|
|
|
|
|
|
iex> RDF.Graph.new({EX.S, EX.P, EX.O}) |>
|
|
|
|
...> RDF.Graph.get_and_update(EX.S, fn current_description ->
|
|
|
|
...> {current_description, {EX.P, EX.NEW}}
|
|
|
|
...> end)
|
|
|
|
{RDF.Description.new(EX.S, EX.P, EX.O), RDF.Graph.new(EX.S, EX.P, EX.NEW)}
|
|
|
|
"""
|
2017-02-19 00:34:01 +00:00
|
|
|
def get_and_update(%RDF.Graph{} = graph, subject, fun) do
|
|
|
|
with subject = Triple.convert_subject(subject) do
|
|
|
|
case fun.(get(graph, subject)) do
|
2016-11-27 12:49:42 +00:00
|
|
|
{old_description, new_description} ->
|
2017-02-19 00:34:01 +00:00
|
|
|
{old_description, put(graph, subject, new_description)}
|
2017-02-18 20:35:27 +00:00
|
|
|
:pop ->
|
2017-02-19 00:34:01 +00:00
|
|
|
pop(graph, subject)
|
2017-02-18 20:35:27 +00:00
|
|
|
other ->
|
|
|
|
raise "the given function must return a two-element tuple or :pop, got: #{inspect(other)}"
|
2016-11-27 12:49:42 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
@doc """
|
|
|
|
Pops the description of the given subject.
|
|
|
|
|
|
|
|
When the subject can not be found the optionally given default value or `nil` is returned.
|
|
|
|
|
|
|
|
# Examples
|
|
|
|
|
|
|
|
iex> RDF.Graph.new([{EX.S1, EX.P1, EX.O1}, {EX.S2, EX.P2, EX.O2}]) |>
|
|
|
|
...> RDF.Graph.pop(EX.S1)
|
|
|
|
{RDF.Description.new({EX.S1, EX.P1, EX.O1}), RDF.Graph.new({EX.S2, EX.P2, EX.O2})}
|
|
|
|
iex> RDF.Graph.pop(RDF.Graph.new({EX.S, EX.P, EX.O}), EX.Missing)
|
|
|
|
{nil, RDF.Graph.new({EX.S, EX.P, EX.O})}
|
|
|
|
"""
|
2017-02-19 00:34:01 +00:00
|
|
|
def pop(%RDF.Graph{name: name, descriptions: descriptions} = graph, subject) do
|
2016-11-27 12:49:42 +00:00
|
|
|
case Access.pop(descriptions, Triple.convert_subject(subject)) do
|
|
|
|
{nil, _} ->
|
|
|
|
{nil, graph}
|
|
|
|
{description, new_descriptions} ->
|
|
|
|
{description, %RDF.Graph{name: name, descriptions: new_descriptions}}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-11-26 22:45:41 +00:00
|
|
|
|
2017-02-18 20:35:27 +00:00
|
|
|
@doc """
|
|
|
|
The number of subjects within a `RDF.Graph`.
|
|
|
|
|
|
|
|
# Examples
|
|
|
|
|
|
|
|
iex> RDF.Graph.new([
|
|
|
|
...> {EX.S1, EX.p1, EX.O1},
|
|
|
|
...> {EX.S2, EX.p2, EX.O2},
|
|
|
|
...> {EX.S1, EX.p2, EX.O3}]) |>
|
|
|
|
...> RDF.Graph.subject_count
|
|
|
|
2
|
|
|
|
"""
|
|
|
|
def subject_count(%RDF.Graph{descriptions: descriptions}),
|
|
|
|
do: Enum.count(descriptions)
|
|
|
|
|
|
|
|
@doc """
|
|
|
|
The number of statements within a `RDF.Graph`.
|
|
|
|
|
|
|
|
# Examples
|
2016-10-15 16:26:56 +00:00
|
|
|
|
2017-02-18 20:35:27 +00:00
|
|
|
iex> RDF.Graph.new([
|
|
|
|
...> {EX.S1, EX.p1, EX.O1},
|
|
|
|
...> {EX.S2, EX.p2, EX.O2},
|
|
|
|
...> {EX.S1, EX.p2, EX.O3}]) |>
|
|
|
|
...> RDF.Graph.triple_count
|
|
|
|
3
|
|
|
|
"""
|
2016-10-15 16:26:56 +00:00
|
|
|
def triple_count(%RDF.Graph{descriptions: descriptions}) do
|
|
|
|
Enum.reduce descriptions, 0, fn ({_subject, description}, count) ->
|
|
|
|
count + Description.count(description)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-11-02 02:19:19 +00:00
|
|
|
@doc """
|
2017-02-18 20:35:27 +00:00
|
|
|
The set of all subjects used in the statements within a `RDF.Graph`.
|
2016-11-02 02:19:19 +00:00
|
|
|
|
|
|
|
# Examples
|
|
|
|
|
|
|
|
iex> RDF.Graph.new([
|
|
|
|
...> {EX.S1, EX.p1, EX.O1},
|
|
|
|
...> {EX.S2, EX.p2, EX.O2},
|
|
|
|
...> {EX.S1, EX.p2, EX.O3}]) |>
|
|
|
|
...> RDF.Graph.subjects
|
|
|
|
MapSet.new([RDF.uri(EX.S1), RDF.uri(EX.S2)])
|
|
|
|
"""
|
|
|
|
def subjects(%RDF.Graph{descriptions: descriptions}),
|
|
|
|
do: descriptions |> Map.keys |> MapSet.new
|
|
|
|
|
|
|
|
@doc """
|
2017-02-18 20:35:27 +00:00
|
|
|
The set of all properties used in the predicates of the statements within a `RDF.Graph`.
|
2016-11-02 02:19:19 +00:00
|
|
|
|
|
|
|
# Examples
|
|
|
|
|
|
|
|
iex> RDF.Graph.new([
|
|
|
|
...> {EX.S1, EX.p1, EX.O1},
|
|
|
|
...> {EX.S2, EX.p2, EX.O2},
|
|
|
|
...> {EX.S1, EX.p2, EX.O3}]) |>
|
|
|
|
...> RDF.Graph.predicates
|
|
|
|
MapSet.new([EX.p1, EX.p2])
|
|
|
|
"""
|
|
|
|
def predicates(%RDF.Graph{descriptions: descriptions}) do
|
|
|
|
Enum.reduce descriptions, MapSet.new, fn ({_, description}, acc) ->
|
|
|
|
description
|
|
|
|
|> Description.predicates
|
|
|
|
|> MapSet.union(acc)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
@doc """
|
|
|
|
The set of all resources used in the objects within a `RDF.Graph`.
|
|
|
|
|
|
|
|
Note: This function does collect only URIs and BlankNodes, not Literals.
|
|
|
|
|
|
|
|
# Examples
|
|
|
|
|
|
|
|
iex> RDF.Graph.new([
|
|
|
|
...> {EX.S1, EX.p1, EX.O1},
|
|
|
|
...> {EX.S2, EX.p2, EX.O2},
|
|
|
|
...> {EX.S3, EX.p1, EX.O2},
|
|
|
|
...> {EX.S4, EX.p2, RDF.bnode(:bnode)},
|
|
|
|
...> {EX.S5, EX.p3, "foo"}
|
|
|
|
...> ]) |> RDF.Graph.objects
|
|
|
|
MapSet.new([RDF.uri(EX.O1), RDF.uri(EX.O2), RDF.bnode(:bnode)])
|
|
|
|
"""
|
|
|
|
def objects(%RDF.Graph{descriptions: descriptions}) do
|
|
|
|
Enum.reduce descriptions, MapSet.new, fn ({_, description}, acc) ->
|
|
|
|
description
|
|
|
|
|> Description.objects
|
|
|
|
|> MapSet.union(acc)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
@doc """
|
|
|
|
The set of all resources used within a `RDF.Graph`.
|
|
|
|
|
|
|
|
# Examples
|
|
|
|
|
|
|
|
iex> RDF.Graph.new([
|
|
|
|
...> {EX.S1, EX.p1, EX.O1},
|
|
|
|
...> {EX.S2, EX.p1, EX.O2},
|
|
|
|
...> {EX.S2, EX.p2, RDF.bnode(:bnode)},
|
|
|
|
...> {EX.S3, EX.p1, "foo"}
|
|
|
|
...> ]) |> RDF.Graph.resources
|
|
|
|
MapSet.new([RDF.uri(EX.S1), RDF.uri(EX.S2), RDF.uri(EX.S3),
|
|
|
|
RDF.uri(EX.O1), RDF.uri(EX.O2), RDF.bnode(:bnode), EX.p1, EX.p2])
|
|
|
|
"""
|
|
|
|
def resources(graph = %RDF.Graph{descriptions: descriptions}) do
|
|
|
|
Enum.reduce(descriptions, MapSet.new, fn ({_, description}, acc) ->
|
|
|
|
description
|
|
|
|
|> Description.resources
|
|
|
|
|> MapSet.union(acc)
|
|
|
|
end) |> MapSet.union(subjects(graph))
|
|
|
|
end
|
|
|
|
|
2017-02-18 20:35:27 +00:00
|
|
|
@doc """
|
|
|
|
All statements within a `RDF.Graph`.
|
|
|
|
|
|
|
|
# Examples
|
|
|
|
|
|
|
|
iex> RDF.Graph.new([
|
|
|
|
...> {EX.S1, EX.p1, EX.O1},
|
|
|
|
...> {EX.S2, EX.p2, EX.O2},
|
|
|
|
...> {EX.S1, EX.p2, EX.O3}
|
|
|
|
...> ]) |> RDF.Graph.triples
|
|
|
|
[{RDF.uri(EX.S1), RDF.uri(EX.p1), RDF.uri(EX.O1)},
|
|
|
|
{RDF.uri(EX.S1), RDF.uri(EX.p2), RDF.uri(EX.O3)},
|
|
|
|
{RDF.uri(EX.S2), RDF.uri(EX.p2), RDF.uri(EX.O2)}]
|
|
|
|
"""
|
2016-11-30 23:06:45 +00:00
|
|
|
def triples(graph = %RDF.Graph{}), do: Enum.to_list(graph)
|
2016-11-02 02:19:19 +00:00
|
|
|
|
2016-10-15 16:26:56 +00:00
|
|
|
def include?(%RDF.Graph{descriptions: descriptions},
|
|
|
|
triple = {subject, _, _}) do
|
2017-02-19 00:34:01 +00:00
|
|
|
with subject = Triple.convert_subject(subject),
|
|
|
|
%Description{} <- description = descriptions[subject] do
|
2016-10-15 16:26:56 +00:00
|
|
|
Description.include?(description, triple)
|
|
|
|
else
|
|
|
|
_ -> false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
# TODO: Can/should we isolate and move the Enumerable specific part to the Enumerable implementation?
|
|
|
|
|
|
|
|
def reduce(%RDF.Graph{descriptions: descriptions}, {:cont, acc}, _fun)
|
|
|
|
when map_size(descriptions) == 0, do: {:done, acc}
|
|
|
|
|
2017-02-19 00:34:01 +00:00
|
|
|
def reduce(%RDF.Graph{} = graph, {:cont, acc}, fun) do
|
2016-10-15 16:26:56 +00:00
|
|
|
{triple, rest} = RDF.Graph.pop(graph)
|
|
|
|
reduce(rest, fun.(triple, acc), fun)
|
|
|
|
end
|
|
|
|
|
|
|
|
def reduce(_, {:halt, acc}, _fun), do: {:halted, acc}
|
2017-02-19 00:34:01 +00:00
|
|
|
def reduce(%RDF.Graph{} = graph, {:suspend, acc}, fun) do
|
2016-10-15 16:26:56 +00:00
|
|
|
{:suspended, acc, &reduce(graph, &1, fun)}
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2017-02-19 00:34:01 +00:00
|
|
|
def pop(%RDF.Graph{descriptions: descriptions} = graph)
|
2016-10-15 16:26:56 +00:00
|
|
|
when descriptions == %{}, do: {nil, graph}
|
|
|
|
|
|
|
|
def pop(%RDF.Graph{name: name, descriptions: descriptions}) do
|
|
|
|
# TODO: Find a faster way ...
|
|
|
|
[{subject, description}] = Enum.take(descriptions, 1)
|
|
|
|
{triple, popped_description} = Description.pop(description)
|
|
|
|
popped = if Enum.empty?(popped_description),
|
|
|
|
do: descriptions |> Map.delete(subject),
|
|
|
|
else: descriptions |> Map.put(subject, popped_description)
|
|
|
|
|
|
|
|
{triple, %RDF.Graph{name: name, descriptions: popped}}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
defimpl Enumerable, for: RDF.Graph do
|
|
|
|
def reduce(desc, acc, fun), do: RDF.Graph.reduce(desc, acc, fun)
|
|
|
|
def member?(desc, triple), do: {:ok, RDF.Graph.include?(desc, triple)}
|
|
|
|
def count(desc), do: {:ok, RDF.Graph.triple_count(desc)}
|
|
|
|
end
|