1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
/*
Ousía
Copyright (C) 2014, 2015 Benjamin Paaßen, Andreas Stöckel
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _MODEL_TEST_DOCUMENT_HPP_
#define _MODEL_TEST_DOCUMENT_HPP_
#include <core/model/Document.hpp>
#include <core/model/Domain.hpp>
#include <core/model/Typesystem.hpp>
namespace ousia {
namespace model {
static Rooted<StructuredClass> resolveDescriptor(Handle<Domain> domain,
const std::string &className)
{
// use the actual resolve method.
std::vector<Rooted<Managed>> resolved = domain->resolve(className);
// take the first valid result.
for (auto &r : resolved) {
if (r->isa(typeOf<StructuredClass>())) {
return r.cast<StructuredClass>();
}
}
// if no valid result exists, return nullptr.
return {nullptr};
}
/**
* This constructs the "heading" domain given the book domain.
*/
static Rooted<Domain> constructHeadingDomain(Manager &mgr,
Handle<SystemTypesystem> sys,
Handle<Domain> bookDomain,
Logger &logger)
{
// set up domain node.
Rooted<Domain> domain{new Domain(mgr, sys, "headings")};
// set up cardinality (every section may have at most one heading).
Cardinality card;
card.merge({0, 1});
// set up heading StructuredClass.
Rooted<StructuredClass> heading{new StructuredClass(
mgr, "heading", {nullptr}, card, {nullptr}, {nullptr}, true)};
// as field we actually want to refer to the field of paragraph.
Rooted<StructuredClass> p = resolveDescriptor(bookDomain, "paragraph");
heading->getFieldDescriptors().push_back(p->getFieldDescriptors()[0]);
// add the class to the domain.
domain->getStructureClasses().push_back(heading);
// create a new field for headings in each section type.
std::vector<std::string> secclasses{"book", "section", "subsection",
"paragraph"};
for (auto &s : secclasses) {
Rooted<StructuredClass> desc = resolveDescriptor(bookDomain, s);
Rooted<FieldDescriptor> heading_field{new FieldDescriptor(
mgr, desc, FieldDescriptor::FieldType::SUBTREE, "heading")};
heading_field->getChildren().push_back(heading);
desc->getFieldDescriptors().push_back(heading_field);
}
return domain;
}
/**
* This constructs a more advanced book document using not only the book
* domain but also headings, emphasis and lists.
* TODO: insert emphasis and lists.
*/
static Rooted<Document> constructAdvancedDocument(Manager &mgr,
Rooted<Domain> bookDom,
Rooted<Domain> headingDom)
{
std::vector<Handle<Domain>> doms{bookDom, headingDom};
// Start with the (empty) document.
Rooted<Document> doc{new Document(mgr, "kant_was_ist_aufklaerung.oxd")};
// Add the root.
Rooted<StructuredEntity> book =
StructuredEntity::buildRootEntity(doc, doms, "book");
if (book.isNull()) {
return {nullptr};
}
{
// Add the heading.
Rooted<StructuredEntity> heading = StructuredEntity::buildEntity(
book, doms, "heading", "heading", {}, "");
if (heading.isNull()) {
return {nullptr};
}
{
// Add its text.
Rooted<StructuredEntity> text =
StructuredEntity::buildEntity(heading, doms, "text");
if (text.isNull()) {
return {nullptr};
}
// And its primitive content
// TODO: use em here.
Variant content {"Beantwortung der Frage: <em>Was ist Aufklärung?</em>"};
Rooted<DocumentPrimitive> main_primitive =
DocumentPrimitive::buildEntity(text, content, "content");
if (main_primitive.isNull()) {
return {nullptr};
}
}}
return doc;
}
}
}
#endif /* _TEST_DOCUMENT_HPP_ */
|