rdf-ex/lib/rdf.ex

348 lines
11 KiB
Elixir
Raw Permalink Normal View History

2016-10-15 16:26:56 +00:00
defmodule RDF do
@moduledoc """
The top-level module of RDF.ex.
RDF.ex consists of:
- modules for the nodes of an RDF graph
2018-09-16 01:52:07 +00:00
- `RDF.Term`
- `RDF.IRI`
- `RDF.BlankNode`
- `RDF.Literal`
- the `RDF.Literal.Datatype` system
- a facility for the mapping of URIs of a vocabulary to Elixir modules and
functions: `RDF.Vocabulary.Namespace`
- a facility for the automatic generation of resource identifiers: `RDF.Resource.Generator`
- modules for the construction of statements
- `RDF.Triple`
- `RDF.Quad`
- `RDF.Statement`
- modules for collections of statements
- `RDF.Description`
- `RDF.Graph`
- `RDF.Dataset`
- `RDF.Data`
- `RDF.List`
2019-11-27 08:10:57 +00:00
- `RDF.Diff`
- functions to construct and execute basic graph pattern queries: `RDF.Query`
- functions for working with RDF serializations: `RDF.Serialization`
- behaviours for the definition of RDF serialization formats
- `RDF.Serialization.Format`
- `RDF.Serialization.Decoder`
- `RDF.Serialization.Encoder`
- and the implementation of various RDF serialization formats
- `RDF.NTriples`
- `RDF.NQuads`
- `RDF.Turtle`
This top-level module provides shortcut functions for the construction of the
basic elements and structures of RDF and some general helper functions.
2019-04-06 00:24:22 +00:00
For a general introduction you may refer to the guides on the [homepage](https://rdf-elixir.dev).
"""
2020-06-29 08:37:42 +00:00
alias RDF.{
IRI,
BlankNode,
2022-03-01 22:13:50 +00:00
Literal,
Namespace,
2020-06-29 08:37:42 +00:00
Description,
Graph,
Dataset,
Serialization,
2020-06-29 08:37:42 +00:00
PrefixMap
}
2019-03-27 23:12:14 +00:00
2020-05-06 16:04:19 +00:00
import RDF.Guards
import RDF.Utils.Bootstrapping
@star? Application.get_env(:rdf, :star, true)
@doc """
Returns whether RDF-star support is enabled.
"""
def star?(), do: @star?
defdelegate default_base_iri(), to: IRI, as: :default_base
2019-03-27 23:12:14 +00:00
@standard_prefixes PrefixMap.new(
2020-06-29 08:37:42 +00:00
xsd: xsd_iri_base(),
rdf: rdf_iri_base(),
rdfs: rdfs_iri_base()
2019-03-27 23:12:14 +00:00
)
@doc """
A fixed set prefixes that will always be part of the `default_prefixes/0`.
```elixir
#{inspect(@standard_prefixes, pretty: true)}
```
See `default_prefixes/0`, if you don't want these standard prefixes to be part
of the default prefixes.
"""
def standard_prefixes(), do: @standard_prefixes
@doc """
A user-defined `RDF.PrefixMap` of prefixes to IRI namespaces.
This prefix map will be used implicitly wherever a prefix map is expected, but
not provided. For example, when you don't pass a prefix map to the Turtle serializer,
this prefix map will be used.
By default the `standard_prefixes/0` are part of this prefix map, but you can
define additional default prefixes via the `default_prefixes` compile-time
configuration.
For example:
config :rdf,
default_prefixes: %{
ex: "http://example.com/"
}
You can also set `:default_prefixes` to a module-function tuple `{mod, fun}`
with a function which should be called to determine the default prefixes.
2019-03-27 23:12:14 +00:00
If you don't want the `standard_prefixes/0` to be part of the default prefixes,
or you want to map the standard prefixes to different namespaces (strongly discouraged!),
you can set the `use_standard_prefixes` compile-time configuration flag to `false`.
config :rdf,
use_standard_prefixes: false
"""
case Application.get_env(:rdf, :default_prefixes, %{}) do
{mod, fun} ->
if Application.get_env(:rdf, :use_standard_prefixes, true) do
def default_prefixes() do
PrefixMap.merge!(@standard_prefixes, apply(unquote(mod), unquote(fun), []))
end
else
def default_prefixes(), do: apply(unquote(mod), unquote(fun), [])
end
default_prefixes ->
@default_prefixes PrefixMap.new(default_prefixes)
if Application.get_env(:rdf, :use_standard_prefixes, true) do
def default_prefixes() do
PrefixMap.merge!(@standard_prefixes, @default_prefixes)
end
else
def default_prefixes(), do: @default_prefixes
end
2019-03-27 23:12:14 +00:00
end
@doc """
Returns the `default_prefixes/0` with additional prefix mappings.
The `prefix_mappings` can be given in any format accepted by `RDF.PrefixMap.new/1`.
"""
def default_prefixes(prefix_mappings) do
default_prefixes() |> PrefixMap.merge!(prefix_mappings)
end
2016-10-15 16:26:56 +00:00
defdelegate read_string(string, opts), to: Serialization
defdelegate read_string!(string, opts), to: Serialization
defdelegate read_stream(stream, opts \\ []), to: Serialization
defdelegate read_stream!(stream, opts \\ []), to: Serialization
defdelegate read_file(filename, opts \\ []), to: Serialization
defdelegate read_file!(filename, opts \\ []), to: Serialization
defdelegate write_string(data, opts), to: Serialization
defdelegate write_string!(data, opts), to: Serialization
defdelegate write_stream(data, opts), to: Serialization
defdelegate write_file(data, filename, opts \\ []), to: Serialization
defdelegate write_file!(data, filename, opts \\ []), to: Serialization
2016-10-15 16:26:56 +00:00
@doc """
Checks if the given value is a RDF resource.
2017-04-10 01:06:20 +00:00
2016-10-15 16:26:56 +00:00
## Examples
Supposed `EX` is a `RDF.Vocabulary.Namespace` and `Foo` is not.
iex> RDF.resource?(RDF.iri("http://example.com/resource"))
true
iex> RDF.resource?(EX.resource)
true
iex> RDF.resource?(EX.Resource)
true
iex> RDF.resource?(Foo.Resource)
false
iex> RDF.resource?(RDF.bnode)
true
iex> RDF.resource?(RDF.XSD.integer(42))
2018-09-16 01:52:07 +00:00
false
iex> RDF.resource?(42)
false
2016-10-15 16:26:56 +00:00
"""
def resource?(value)
def resource?(%IRI{}), do: true
def resource?(%BlankNode{}), do: true
2020-06-29 08:37:42 +00:00
2020-05-06 16:04:19 +00:00
def resource?(qname) when maybe_ns_term(qname) do
case Namespace.resolve_term(qname) do
{:ok, iri} -> resource?(iri)
_ -> false
end
end
if @star? do
def resource?({_, _, _} = triple), do: RDF.Triple.valid?(triple)
end
def resource?(_), do: false
2018-09-16 01:52:07 +00:00
@doc """
Checks if the given value is a RDF term.
## Examples
Supposed `EX` is a `RDF.Vocabulary.Namespace` and `Foo` is not.
2018-09-16 01:52:07 +00:00
iex> RDF.term?(RDF.iri("http://example.com/resource"))
true
iex> RDF.term?(EX.resource)
true
iex> RDF.term?(EX.Resource)
true
iex> RDF.term?(Foo.Resource)
false
2018-09-16 01:52:07 +00:00
iex> RDF.term?(RDF.bnode)
true
iex> RDF.term?(RDF.XSD.integer(42))
2018-09-16 01:52:07 +00:00
true
iex> RDF.term?(42)
false
"""
def term?(value)
def term?(%Literal{}), do: true
2020-06-29 08:37:42 +00:00
def term?(value), do: resource?(value)
2016-10-15 16:26:56 +00:00
defdelegate uri?(value), to: IRI, as: :valid?
defdelegate iri?(value), to: IRI, as: :valid?
2020-06-29 08:37:42 +00:00
defdelegate uri(value), to: IRI, as: :new
defdelegate iri(value), to: IRI, as: :new
defdelegate uri!(value), to: IRI, as: :new!
defdelegate iri!(value), to: IRI, as: :new!
2016-10-15 16:26:56 +00:00
2017-07-21 22:21:28 +00:00
@doc """
Checks if the given value is a blank node.
## Examples
iex> RDF.bnode?(RDF.bnode)
true
iex> RDF.bnode?(RDF.iri("http://example.com/resource"))
2017-07-21 22:21:28 +00:00
false
iex> RDF.bnode?(42)
false
"""
def bnode?(%BlankNode{}), do: true
def bnode?(_), do: false
2020-06-29 08:37:42 +00:00
defdelegate bnode(), to: BlankNode, as: :new
defdelegate bnode(id), to: BlankNode, as: :new
2016-10-15 16:26:56 +00:00
2020-05-15 15:13:31 +00:00
@doc """
Checks if the given value is a RDF literal.
"""
def literal?(%Literal{}), do: true
def literal?(_), do: false
2020-06-29 08:37:42 +00:00
defdelegate literal(value), to: Literal, as: :new
defdelegate literal(value, opts), to: Literal, as: :new
2016-10-15 16:26:56 +00:00
if @star? do
alias RDF.Star.{Triple, Quad, Statement}
defdelegate triple(s, p, o, property_map \\ nil), to: Triple, as: :new
defdelegate triple(tuple, property_map \\ nil), to: Triple, as: :new
defdelegate quad(s, p, o, g, property_map \\ nil), to: Quad, as: :new
defdelegate quad(tuple, property_map \\ nil), to: Quad, as: :new
defdelegate statement(s, p, o), to: Statement, as: :new
defdelegate statement(s, p, o, g), to: Statement, as: :new
defdelegate statement(tuple, property_map \\ nil), to: Statement, as: :new
defdelegate coerce_subject(subject, property_map \\ nil), to: Statement
2021-10-06 21:44:10 +00:00
defdelegate coerce_predicate(predicate), to: Statement
defdelegate coerce_predicate(predicate, property_map), to: Statement
defdelegate coerce_object(object, property_map \\ nil), to: Statement
defdelegate coerce_graph_name(graph_name), to: Statement
else
alias RDF.{Triple, Quad, Statement}
defdelegate triple(s, p, o, property_map \\ nil), to: Triple, as: :new
defdelegate triple(tuple, property_map \\ nil), to: Triple, as: :new
defdelegate quad(s, p, o, g, property_map \\ nil), to: Quad, as: :new
defdelegate quad(tuple, property_map \\ nil), to: Quad, as: :new
defdelegate statement(s, p, o), to: Statement, as: :new
defdelegate statement(s, p, o, g), to: Statement, as: :new
defdelegate statement(tuple, property_map \\ nil), to: Statement, as: :new
defdelegate coerce_subject(subject), to: Statement
2021-10-06 21:44:10 +00:00
defdelegate coerce_predicate(predicate), to: Statement
defdelegate coerce_predicate(predicate, property_map), to: Statement
defdelegate coerce_object(object), to: Statement
defdelegate coerce_graph_name(graph_name), to: Statement
end
defdelegate description(subject, opts \\ []), to: Description, as: :new
2020-06-29 08:37:42 +00:00
defdelegate graph(), to: Graph, as: :new
defdelegate graph(arg), to: Graph, as: :new
defdelegate graph(arg1, arg2), to: Graph, as: :new
2020-06-29 08:37:42 +00:00
defdelegate dataset(), to: Dataset, as: :new
defdelegate dataset(arg), to: Dataset, as: :new
defdelegate dataset(arg1, arg2), to: Dataset, as: :new
2019-11-20 00:45:18 +00:00
defdelegate diff(arg1, arg2), to: RDF.Diff
defdelegate list?(resource, graph), to: RDF.List, as: :node?
2020-06-29 08:37:42 +00:00
defdelegate list?(description), to: RDF.List, as: :node?
2020-06-29 08:37:42 +00:00
def list(native_list), do: RDF.List.from(native_list)
def list(head, %Graph{} = graph), do: RDF.List.new(head, graph)
2020-06-29 08:37:42 +00:00
def list(native_list, opts), do: RDF.List.from(native_list, opts)
2019-03-25 23:31:43 +00:00
defdelegate prefix_map(prefixes), to: RDF.PrefixMap, as: :new
2020-10-08 20:49:45 +00:00
defdelegate property_map(property_map), to: RDF.PropertyMap, as: :new
2019-03-25 23:31:43 +00:00
2022-01-16 20:08:16 +00:00
############################################################################
# These alias functions for the RDF.NS.RDF namespace are mandatory.
# Without them the property functions are inaccessible, since the namespace
# can't be aliased, because it gets in conflict with the root namespace
# of the project.
2020-06-29 08:37:42 +00:00
defdelegate langString(value, opts), to: RDF.LangString, as: :new
defdelegate lang_string(value, opts), to: RDF.LangString, as: :new
for term <- ~w[type subject predicate object first rest value]a do
2020-06-29 08:37:42 +00:00
defdelegate unquote(term)(), to: RDF.NS.RDF
2020-06-01 13:43:38 +00:00
@doc false
2020-06-29 08:37:42 +00:00
defdelegate unquote(term)(s, o), to: RDF.NS.RDF
2020-06-01 13:43:38 +00:00
@doc false
2020-06-29 08:37:42 +00:00
defdelegate unquote(term)(s, o1, o2), to: RDF.NS.RDF
2020-06-01 13:43:38 +00:00
@doc false
2020-06-29 08:37:42 +00:00
defdelegate unquote(term)(s, o1, o2, o3), to: RDF.NS.RDF
2020-06-01 13:43:38 +00:00
@doc false
2020-06-29 08:37:42 +00:00
defdelegate unquote(term)(s, o1, o2, o3, o4), to: RDF.NS.RDF
2020-06-01 13:43:38 +00:00
@doc false
defdelegate unquote(term)(s, o1, o2, o3, o4, o5), to: RDF.NS.RDF
end
2020-06-29 08:37:42 +00:00
defdelegate langString(), to: RDF.NS.RDF
defdelegate lang_string(), to: RDF.NS.RDF, as: :langString
defdelegate unquote(nil)(), to: RDF.NS.RDF
2016-10-15 16:26:56 +00:00
defdelegate __base_iri__(), to: RDF.NS.RDF
defdelegate __terms__(), to: RDF.NS.RDF
defdelegate __iris__(), to: RDF.NS.RDF
defdelegate __strict__(), to: RDF.NS.RDF
defdelegate __resolve_term__(term), to: RDF.NS.RDF
2016-10-15 16:26:56 +00:00
end