use of de.tudarmstadt.ukp.clarin.webanno.model.ConstraintSet in project webanno by webanno.
the class ConstraintsServiceImpl method loadConstraints.
@Override
public ParsedConstraints loadConstraints(Project aProject) throws IOException, ParseException {
ParsedConstraints merged = null;
for (ConstraintSet set : listConstraintSets(aProject)) {
String script = readConstrainSet(set);
ConstraintsGrammar parser = new ConstraintsGrammar(new StringReader(script));
Parse p = parser.Parse();
ParsedConstraints constraints = p.accept(new ParserVisitor());
if (merged == null) {
merged = constraints;
} else {
// Merge imports
for (Entry<String, String> e : constraints.getImports().entrySet()) {
// constraint file(s).
if (merged.getImports().containsKey(e.getKey()) && !e.getValue().equalsIgnoreCase(merged.getImports().get(e.getKey()))) {
// If detected, notify user with proper message and abort merging
String errorMessage = "Conflict detected in imports for key \"" + e.getKey() + "\", conflicting values are \"" + e.getValue() + "\" & \"" + merged.getImports().get(e.getKey()) + "\". Please contact Project Admin for correcting this." + "Constraints feature may not work." + "\nAborting Constraint rules merge!";
throw new ParseException(errorMessage);
}
}
merged.getImports().putAll(constraints.getImports());
// Merge scopes
for (Scope scope : constraints.getScopes()) {
Scope target = merged.getScopeByName(scope.getScopeName());
if (target == null) {
// Scope does not exist yet
merged.getScopes().add(scope);
} else {
// Scope already exists
target.getRules().addAll(scope.getRules());
}
}
}
}
return merged;
}
use of de.tudarmstadt.ukp.clarin.webanno.model.ConstraintSet in project webanno by webanno.
the class ExportUtil method exportProjectConstraints.
/**
* Copy Project Constraints from file system of this project to export folder
*/
public static void exportProjectConstraints(ConstraintsService constraintsService, Project project, File exportTempDir) throws IOException {
File constraintsDir = new File(exportTempDir + CONSTRAINTS);
FileUtils.forceMkdir(constraintsDir);
String fileName;
for (ConstraintSet set : constraintsService.listConstraintSets(project)) {
fileName = set.getName();
/*
* Copying with file's original name to save ConstraintSet's name
*/
FileUtils.copyFile(constraintsService.exportConstraintAsFile(set), new File(constraintsDir, fileName));
}
}
use of de.tudarmstadt.ukp.clarin.webanno.model.ConstraintSet in project webanno by webanno.
the class ConstraintsServiceEventAdapter method onProjectImport.
@EventListener
public void onProjectImport(ProjectImportEvent aEvent) throws Exception {
Project project = aEvent.getProject();
ZipFile zipFile = aEvent.getZip();
for (Enumeration zipEnumerate = zipFile.entries(); zipEnumerate.hasMoreElements(); ) {
ZipEntry entry = (ZipEntry) zipEnumerate.nextElement();
// Strip leading "/" that we had in ZIP files prior to 2.0.8 (bug #985)
String entryName = ZipUtils.normalizeEntryName(entry);
if (entryName.startsWith(ConstraintsService.CONSTRAINTS + "/")) {
String fileName = FilenameUtils.getName(entry.getName());
if (fileName.trim().isEmpty()) {
continue;
}
ConstraintSet constraintSet = new ConstraintSet();
constraintSet.setProject(project);
constraintSet.setName(fileName);
service.createConstraintSet(constraintSet);
service.writeConstraintSet(constraintSet, zipFile.getInputStream(entry));
log.info("Imported constraint [" + fileName + "] for project [" + project.getName() + "] with id [" + project.getId() + "]");
}
}
}
Aggregations