2017-02-18 20:35:27 +00:00
|
|
|
defmodule RDF.Quad do
|
|
|
|
@moduledoc """
|
2017-06-16 20:50:56 +00:00
|
|
|
Helper functions for RDF quads.
|
2017-02-18 20:35:27 +00:00
|
|
|
|
2017-06-16 20:50:56 +00:00
|
|
|
A RDF Quad is represented as a plain Elixir tuple consisting of four valid
|
|
|
|
RDF values for subject, predicate, object and a graph context.
|
2017-02-18 20:35:27 +00:00
|
|
|
"""
|
|
|
|
|
2017-06-16 22:44:11 +00:00
|
|
|
alias RDF.Statement
|
2017-02-18 20:35:27 +00:00
|
|
|
|
|
|
|
@doc """
|
|
|
|
Creates a `RDF.Quad` with proper RDF values.
|
|
|
|
|
|
|
|
An error is raised when the given elements are not convertible to RDF values.
|
|
|
|
|
|
|
|
Note: The `RDF.quad` function is a shortcut to this function.
|
|
|
|
|
2017-06-16 22:27:05 +00:00
|
|
|
## Examples
|
2017-02-18 20:35:27 +00:00
|
|
|
|
|
|
|
iex> RDF.Quad.new("http://example.com/S", "http://example.com/p", 42, "http://example.com/Graph")
|
2017-04-10 01:06:20 +00:00
|
|
|
{~I<http://example.com/S>, ~I<http://example.com/p>, RDF.literal(42), ~I<http://example.com/Graph>}
|
2017-06-16 22:44:11 +00:00
|
|
|
iex> RDF.Quad.new(EX.S, EX.p, 42, EX.Graph)
|
|
|
|
{RDF.uri("http://example.com/S"), RDF.uri("http://example.com/p"), RDF.literal(42), RDF.uri("http://example.com/Graph")}
|
2017-02-18 20:35:27 +00:00
|
|
|
"""
|
|
|
|
def new(subject, predicate, object, graph_context) do
|
|
|
|
{
|
2017-04-12 14:48:17 +00:00
|
|
|
Statement.convert_subject(subject),
|
|
|
|
Statement.convert_predicate(predicate),
|
|
|
|
Statement.convert_object(object),
|
|
|
|
Statement.convert_graph_name(graph_context)
|
2017-02-18 20:35:27 +00:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
@doc """
|
|
|
|
Creates a `RDF.Quad` with proper RDF values.
|
|
|
|
|
|
|
|
An error is raised when the given elements are not convertible to RDF values.
|
|
|
|
|
|
|
|
Note: The `RDF.quad` function is a shortcut to this function.
|
|
|
|
|
2017-06-16 22:27:05 +00:00
|
|
|
## Examples
|
2017-02-18 20:35:27 +00:00
|
|
|
|
|
|
|
iex> RDF.Quad.new {"http://example.com/S", "http://example.com/p", 42, "http://example.com/Graph"}
|
2017-04-10 01:06:20 +00:00
|
|
|
{~I<http://example.com/S>, ~I<http://example.com/p>, RDF.literal(42), ~I<http://example.com/Graph>}
|
2017-06-16 22:44:11 +00:00
|
|
|
iex> RDF.Quad.new {EX.S, EX.p, 42, EX.Graph}
|
|
|
|
{RDF.uri("http://example.com/S"), RDF.uri("http://example.com/p"), RDF.literal(42), RDF.uri("http://example.com/Graph")}
|
2017-02-18 20:35:27 +00:00
|
|
|
"""
|
|
|
|
def new({subject, predicate, object, graph_context}),
|
|
|
|
do: new(subject, predicate, object, graph_context)
|
|
|
|
|
|
|
|
end
|