Separate from ontology
This commit is contained in:
parent
9cb3dc4b8d
commit
f6d83f0b94
1 changed files with 8 additions and 14 deletions
|
@ -32,6 +32,7 @@ public class DocumentStructure {
|
||||||
|
|
||||||
|
|
||||||
private OntModel m;
|
private OntModel m;
|
||||||
|
private OntModel textOntology;
|
||||||
private OntClass excerptClass;
|
private OntClass excerptClass;
|
||||||
private OntClass elementClass;
|
private OntClass elementClass;
|
||||||
private OntClass itemClass;
|
private OntClass itemClass;
|
||||||
|
@ -41,11 +42,12 @@ public class DocumentStructure {
|
||||||
this.elements = new HashMap<String, Resource>();
|
this.elements = new HashMap<String, Resource>();
|
||||||
this.inputParts = new HashMap<String, DocumentPart>();
|
this.inputParts = new HashMap<String, DocumentPart>();
|
||||||
this.m = ModelFactory.createOntologyModel();
|
this.m = ModelFactory.createOntologyModel();
|
||||||
m.read(DocumentStructure.class.getResource("/w2phtml/rdf/resources/text_structures.rdf").toString());
|
this.textOntology = ModelFactory.createOntologyModel();
|
||||||
this.excerptClass = m.createClass(TS + EXCERPT);
|
//textOntology.read(DocumentStructure.class.getResource("/w2phtml/rdf/resources/text_structures.rdf").toString());
|
||||||
this.elementClass = m.createClass(TS + TOC_ELEMENT);
|
this.excerptClass = textOntology.createClass(TS + EXCERPT);
|
||||||
this.itemClass = m.createClass(TS + TOCITEM);
|
this.elementClass = textOntology.createClass(TS + TOC_ELEMENT);
|
||||||
this.elenphClass = m.createClass(TS + ELENPHARTICLE);
|
this.itemClass = textOntology.createClass(TS + TOCITEM);
|
||||||
|
this.elenphClass = textOntology.createClass(TS + ELENPHARTICLE);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -110,13 +112,11 @@ public class DocumentStructure {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
public void printModel(OutputStream os) {
|
public void printModel(OutputStream os) {
|
||||||
m.write(os,"RDF/XML-ABBREV");
|
m.write(os,"RDF/XML-ABBREV");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
private void addPart(DocumentPart docExcerpt) {
|
private void addPart(DocumentPart docExcerpt) {
|
||||||
inputParts.put(docExcerpt.getPath(), docExcerpt);
|
inputParts.put(docExcerpt.getPath(), docExcerpt);
|
||||||
}
|
}
|
||||||
|
@ -128,8 +128,6 @@ public class DocumentStructure {
|
||||||
Property htmlExcerpt = m.createProperty(TS + "htmlExcerpt");
|
Property htmlExcerpt = m.createProperty(TS + "htmlExcerpt");
|
||||||
excerpt.addLiteral(htmlExcerpt, docExcerpt.getBody());
|
excerpt.addLiteral(htmlExcerpt, docExcerpt.getBody());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
return excerpt;
|
return excerpt;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -148,7 +146,6 @@ public class DocumentStructure {
|
||||||
addMetadataProperties(element,docPart.getMetadata());
|
addMetadataProperties(element,docPart.getMetadata());
|
||||||
elements.put(docPart.getPath(), element);
|
elements.put(docPart.getPath(), element);
|
||||||
attachExcerpt(docPart, element);
|
attachExcerpt(docPart, element);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private void addMetadataProperties(Resource resource, HashMap<String, Set<String>> metadata) {
|
private void addMetadataProperties(Resource resource, HashMap<String, Set<String>> metadata) {
|
||||||
|
@ -161,7 +158,6 @@ public class DocumentStructure {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
private void addMetadata(Resource resource, String name, String value) {
|
private void addMetadata(Resource resource, String name, String value) {
|
||||||
if (isNotBlacklisted(name)) {
|
if (isNotBlacklisted(name)) {
|
||||||
|
@ -173,7 +169,6 @@ public class DocumentStructure {
|
||||||
Property property = m.createProperty(TS + name);
|
Property property = m.createProperty(TS + name);
|
||||||
resource.addProperty( property, value);
|
resource.addProperty( property, value);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -210,8 +205,7 @@ public class DocumentStructure {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
System.out.println(resource.getNameSpace() + " " + name);
|
System.out.println("Skip " + name + " for " + resource.getNameSpace());
|
||||||
System.out.println("rightNamespace " + TS + EXCERPT );
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
private String convertName(String name) {
|
private String convertName(String name) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue