use of eu.esdihumboldt.hale.common.instance.model.Filter in project hale by halestudio.
the class EntityDefinitionServiceImpl method removeContext.
/**
* @see EntityDefinitionService#removeContext(EntityDefinition)
*/
@Override
public void removeContext(EntityDefinition entity) {
EntityDefinition def = AlignmentUtil.getDefaultEntity(entity);
// XXX any checks? Alignment must still be valid! see also
// InstanceContextTester
List<ChildContext> path = entity.getPropertyPath();
if (path.isEmpty()) {
// type entity definition
Filter filter = entity.getFilter();
if (filter != null) {
synchronized (conditionContexts) {
conditionContexts.remove(def, new Condition(filter));
}
// XXX what about the children of this context?
}
notifyContextRemoved(entity);
return;
}
boolean removed = false;
ChildContext lastContext = path.get(path.size() - 1);
if (lastContext.getContextName() != null) {
synchronized (namedContexts) {
namedContexts.remove(def, lastContext.getContextName());
}
removed = true;
}
if (lastContext.getIndex() != null) {
synchronized (indexContexts) {
indexContexts.remove(def, lastContext.getIndex());
}
removed = true;
}
if (lastContext.getCondition() != null) {
synchronized (conditionContexts) {
conditionContexts.remove(def, lastContext.getCondition());
}
removed = true;
}
if (removed) {
notifyContextRemoved(entity);
}
}
use of eu.esdihumboldt.hale.common.instance.model.Filter in project hale by halestudio.
the class EditConditionContextHandler method execute.
@Override
public Object execute(ExecutionEvent event) throws ExecutionException {
ISelection selection = HandlerUtil.getCurrentSelection(event);
if (selection != null && !selection.isEmpty() && selection instanceof IStructuredSelection) {
Object element = ((IStructuredSelection) selection).getFirstElement();
if (element instanceof EntityDefinition) {
EntityDefinition entityDef = (EntityDefinition) element;
String title;
if (entityDef.getPropertyPath().isEmpty())
title = "Edit type condition";
else
title = "Edit property condition";
Condition condition = AlignmentUtil.getContextCondition(entityDef);
if (condition != null && condition.getFilter() != null) {
Pair<String, String> filterDef = FilterDefinitionManager.getInstance().asPair(condition.getFilter());
if (filterDef != null && filterDef.getFirst() != null) {
String filterId = filterDef.getFirst();
// retrieve filter UI from extension point
FilterDialogDefinition def = FilterUIExtension.getInstance().getFactory(filterId);
if (def != null) {
Filter filter = null;
try {
filter = def.createExtensionObject().openDialog(HandlerUtil.getActiveShell(event), entityDef, title, "Define the condition for the new context");
} catch (Exception e) {
log.userError("Failed to create editor for filter", e);
}
if (filter != null) {
EntityDefinitionService eds = PlatformUI.getWorkbench().getService(EntityDefinitionService.class);
eds.editConditionContext((EntityDefinition) element, filter);
}
} else {
log.userError("No editor for this kind of filter available");
}
} else {
log.error("No filter definition for filter found, definition ID could not be determined");
}
}
}
}
return null;
}
Aggregations