CNGL-repo / r2rml

R2RML Implementation
MIT License
1 stars 2 forks source link

R2RML Implementation

Attention!
This repository has been moved to https://opengogs.adaptcentre.ie/debruync/r2rml and is no longer maintained on GitHub. Note that the repository on opengogs is a copy of https://github.com/chrdebru/r2rml. If you want to contribute to the project, you may want to consider the repository on GitHub instead.

Building and using the code

To build the project and copy its dependencies, execute

$ mvn package
$ mvn dependency:copy-dependencies

The run the R2RML processor, execute the following command

$ java -jar r2rml-0.0.1-SNAPSHOT.jar config.properties

Where config.properties is a properties file containing:

When named graphs are used in the R2RML mapping, one should use serialization that support graphs such as N-QUADS and TRIG. The use of other serializations formats (such as TURTLE) results in all triples of all graphs being written away to that file. When setting the flag filePerGraph to true for serialization formats that do not support graphs, however, the value for outputFile will be used to create a directory in which a file will be created for each graph in the RDF dataset.

Note that you cannot use both CSVFiles and connectionURL at the same time. For each CSV file, the name of the table will be the base name of that file.

Example

The directory example contains an example of a mapping and configuration file. The example assumes the MySQL database to be called r2rml, be running on localhost and accessible to the user foo with password bar. The configuration file looks as follows:

connectionURL = jdbc:mysql://localhost/r2rml
user = foo
password = bar
mappingFile = mapping.ttl
outputFile = output.ttl
format = TURTLE

The output, after passing the properties file as an argument to the R2RML processor, should look as follows:

<http://data.example.com/employee/7369>
        a                             <http://example.com/ns#Employee> ;
        <http://example.com/ns#name>  "SMITH" .

Function with R2RML-F

This implementation of R2RML re-implemented the ideas presented in [1], allowing one to declare and use functions in ECMAScript as (Function Valued) TermMaps in the mapping. R2RML-F extends R2RML's vocabulary with predicates for declaring functions, function calls and parameter bindings. These are declared in the namespace rrf.

@prefix rr: <http://www.w3.org/ns/r2rml#> .
@prefix ex: <http://example.com/ns#> .
@prefix rrf: <http://kdeg.scss.tcd.ie/ns/rrf#>

<#TriplesMap1>
    rr:logicalTable [ rr:tableName "EMP" ];
    rr:subjectMap [
        rr:template "http://data.example.com/employee/{EMPNO}";
        rr:class ex:Employee;
    ];
    rr:predicateObjectMap [
        rr:predicate ex:name;
        rr:objectMap [ rr:column "ENAME" ];
    ];
    rr:predicateObjectMap [
        rr:predicate ex:test;
        rr:objectMap [
            rrf:functionCall [
                rrf:function <#Concat> ;
                rrf:parameterBindings (
                    [ rr:column "ENAME" ]
                    [ rr:column "EMPNO" ]
                ) ;
            ] ; 
        ]
    ]    
    .

<#Concat>
    rrf:functionName "concat" ;
    rrf:functionBody """
        function concat(var1, var2) {
        return var1 + " " + var2 ;
    }
    """ ;
.

License

This implementation of R2RML is written by Christophe Debruyne.

This code is copyrighted by ADAPT - Trinity College Dublin and released under the MIT license.

References

[1] C. Debruyne and D. O'Sullivan. R2RML-F: Towards Sharing and Executing Domain Logic in R2RML Mappings. In Proceedings of the Workshop on Linked Data on the Web, LDOW 2016, co-located with the 25th International World Wide Web Conference (WWW 2016), Montreal, Canada, April 12th, 2016, 2016