Использование Raptor RDF Parser Toolkit для создания файла FOAF rdfxml

Я хочу написать программу на C / C ++, используя Raptor RDF Parser Toolkit генерировать следующий вывод (проверяется с помощью RDF Validator):

<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"xmlns:foaf="http://xmlns.com/foaf/0.1/">

<foaf:Person xml:lang="en">
<foaf:name>Jimmy Wales</foaf:name>
<foaf:mbox rdf:resource="mailto:[email protected]"/>
<foaf:nick>Jimbo</foaf:nick>
<!-- photo -->
<foaf:depiction
rdf:resource="http://upload.wikimedia.org/wikipedia/commons/1/19/Jimbo_Wales_in_France_cropped.jpg" />
</foaf:Person>

</rdf:RDF>

Тройки модели данных выглядят так:

Number  Subject Predicate   Object
1   genid:A4486 http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://xmlns.com/foaf/0.1/Person
2   genid:A4486 http://xmlns.com/foaf/0.1/name  "Jimmy Wales"@en
3   genid:A4486 http://xmlns.com/foaf/0.1/mbox  mailto:[email protected]
4   genid:A4486 http://xmlns.com/foaf/0.1/nick  "Jimbo"@en
5   genid:A4486 http://xmlns.com/foaf/0.1/depiction http://upload.wikimedia.org/wikipedia/commons/1/19/Jimbo_Wales_in_France_cropped.jpg

Просто для записей я использую Visual Studio 2017 x64.
Я придумал следующий код:

#include "raptor2/raptor2.h"
int main(int argc, char* argv[]) {
FILE* outfile = fopen("myTestfile.rdf", "w");

raptor_world* world = raptor_new_world();
rdf_serializer = raptor_new_serializer(world, "rdfxml" /* "turtle" */);
raptor_serializer_start_to_file_handle(rdf_serializer, nullptr, outfile);

const unsigned char* prefix = (const unsigned char*)"foaf";
raptor_uri* uri = raptor_new_uri(world, (const unsigned char*)"http://xmlns.com/foaf/0.1/");
raptor_serializer_set_namespace(rdf_serializer, uri, prefix);

{
raptor_statement* triple = nullptr;
triple = raptor_new_statement(world);

triple->subject = raptor_new_term_from_uri_string(world, (const unsigned char*)"genid:A4486");
triple->predicate = raptor_new_term_from_uri_string(world, (const unsigned char*)"http://www.w3.org/1999/02/22-rdf-syntax-ns#type");
triple->object = raptor_new_term_from_literal(world, (unsigned char*)"http://xmlns.com/foaf/0.1/Person", nullptr, nullptr);
raptor_serializer_serialize_statement(rdf_serializer, triple);
raptor_free_statement(triple);
}

{
raptor_statement* triple = nullptr;
triple = raptor_new_statement(world);

triple->subject = raptor_new_term_from_uri_string(world, (const unsigned char*)"http://xmlns.com/foaf/0.1/Person");
triple->predicate = raptor_new_term_from_uri_string(world, (const unsigned char*)"http://xmlns.com/foaf/0.1/name");
triple->object = raptor_new_term_from_literal(world, (unsigned char*)"Jimmy Wales", nullptr, nullptr);
raptor_serializer_serialize_statement(rdf_serializer, triple);
raptor_free_statement(triple);
}

{
raptor_statement* triple = nullptr;
triple = raptor_new_statement(world);

triple->subject = raptor_new_term_from_uri_string(world, (const unsigned char*)"http://xmlns.com/foaf/0.1/Person");
triple->predicate = raptor_new_term_from_uri_string(world, (const unsigned char*)"http://xmlns.com/foaf/0.1/mbox");
triple->object = raptor_new_term_from_literal(world, (unsigned char*)"mailto:[email protected]", nullptr, nullptr);
raptor_serializer_serialize_statement(rdf_serializer, triple);
raptor_free_statement(triple);
}

raptor_serializer_serialize_end(rdf_serializer);
raptor_free_serializer(rdf_serializer);
raptor_free_world(world);

fclose(outfile);
}

Сгенерированный файл выглядит так:

<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<rdf:Description rdf:about="genid:A4486">
<rdf:type>http://xmlns.com/foaf/0.1/Person</rdf:type>
</rdf:Description>
<rdf:Description rdf:about="http://xmlns.com/foaf/0.1/Person">
<foaf:name>Jimmy Wales</foaf:name>
</rdf:Description>
<rdf:Description rdf:about="http://xmlns.com/foaf/0.1/Person">
<foaf:mbox>mailto:[email protected]</foaf:mbox>
</rdf:Description>
</rdf:RDF>

Что я здесь не так делаю? Я хочу получить такой же результат, как показано выше. Вместо <foaf:Person> пометить <rdf:Description> тег создан.

Выход черепахи (raptor_new_serializer(world, "turtle")) выглядит так:

@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .

<genid:A4486>
a "http://xmlns.com/foaf/0.1/Person" .

foaf:Person
foaf:mbox "mailto:[email protected]" ;
foaf:name "Jimmy Wales" .

1

Решение

В вашем коде есть три проблемы.

  1. Вы смешиваете разные виды Условия RDF:

    • URI и литералы (строки 20, 42),
    • URI и пустые узлы (строки 18, 29, 40).
  2. Для того, чтобы вывести типизированные узлы, Вы должны использовать rdfxml-abbrev сериализация (строка 7).

  3. Вы путаете, какие вещи связаны и каким образом (строки 29, 40):

    • Вам нужно построить эту структуру:

      как быть

    • Вместо этого вы создаете что-то вроде этого:

      как есть

Этот код хорошо работает:

#include <stdio.h>
#include <raptor/raptor2.h>
#include <stdlib.h>

int
main(int argc, char *argv[])
{
raptor_world *world = NULL;
raptor_serializer* rdf_serializer = NULL;
unsigned char *uri_string;
raptor_uri *base_uri;
raptor_statement* triple;

world = raptor_new_world();

uri_string = raptor_uri_filename_to_uri_string(argv[1]);
base_uri = raptor_new_uri(world, uri_string);

rdf_serializer = raptor_new_serializer(world, "rdfxml-abbrev");
raptor_serializer_start_to_file_handle(rdf_serializer, base_uri, stdout);

const unsigned char* foaf_prefix = (const unsigned char*)"foaf";
raptor_uri* foaf_uri = raptor_new_uri(world, (const unsigned char*)"http://xmlns.com/foaf/0.1/");
raptor_serializer_set_namespace(rdf_serializer, foaf_uri, foaf_prefix);

const unsigned char* rdf_prefix = (const unsigned char*)"rdf";
raptor_uri* rdf_uri = raptor_new_uri(world, (const unsigned char*)"http://www.w3.org/1999/02/22-rdf-syntax-ns#");
raptor_serializer_set_namespace(rdf_serializer, rdf_uri, rdf_prefix);

{
raptor_statement* triple = NULL; triple = raptor_new_statement(world);

triple->subject = raptor_new_term_from_blank(world, (const unsigned char*)"b1");
triple->predicate = raptor_new_term_from_uri_string(world, (const unsigned char*)"http://xmlns.com/foaf/0.1/name");
triple->object = raptor_new_term_from_literal(world, (unsigned char*)"Jimmy Wales", NULL, NULL);

raptor_serializer_serialize_statement(rdf_serializer, triple); raptor_free_statement(triple);
}

{
raptor_statement* triple = NULL; triple = raptor_new_statement(world);

triple->subject = raptor_new_term_from_blank(world, (const unsigned char*)"b1");
triple->predicate = raptor_new_term_from_uri_string(world, (const unsigned char*)"http://xmlns.com/foaf/0.1/mbox");
triple->object = raptor_new_term_from_uri_string(world, (unsigned char*)"mailto:[email protected]");

raptor_serializer_serialize_statement(rdf_serializer, triple); raptor_free_statement(triple);
}

{
raptor_statement* triple = NULL; triple = raptor_new_statement(world);

triple->subject = raptor_new_term_from_blank (world, (const unsigned char*)"b1");
triple->predicate = raptor_new_term_from_uri_string(world, (const unsigned char*)"http://www.w3.org/1999/02/22-rdf-syntax-ns#type");
triple->object = raptor_new_term_from_uri_string(world, (unsigned char*)"http://xmlns.com/foaf/0.1/Person");

raptor_serializer_serialize_statement(rdf_serializer, triple); raptor_free_statement(triple);
}

raptor_serializer_serialize_end(rdf_serializer);
raptor_free_serializer(rdf_serializer);
raptor_free_uri(base_uri);
raptor_free_memory(uri_string);
raptor_free_world(world);
return 0;
}

Выход:

<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF xmlns:foaf="http://xmlns.com/foaf/0.1/"xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<foaf:Person>
<foaf:mbox rdf:resource="mailto:[email protected]"/>
<foaf:name>Jimmy Wales</foaf:name>
</foaf:Person>
</rdf:RDF>
1

Другие решения

Других решений пока нет …

По вопросам рекламы [email protected]