use of com.evolveum.midpoint.util.exception.ConfigurationException in project midpoint by Evolveum.
the class ProvisioningServiceImpl method applyDefinition.
@Override
public <T extends ObjectType> void applyDefinition(Class<T> type, ObjectQuery query, Task task, OperationResult parentResult) throws SchemaException, ObjectNotFoundException, CommunicationException, ConfigurationException, ExpressionEvaluationException {
OperationResult result = parentResult.createMinorSubresult(ProvisioningService.class.getName() + ".applyDefinition");
result.addParam(OperationResult.PARAM_TYPE, type);
result.addParam(OperationResult.PARAM_QUERY, query);
result.addContext(OperationResult.CONTEXT_IMPLEMENTATION_CLASS, ProvisioningServiceImpl.class);
try {
if (ObjectQueryUtil.hasAllDefinitions(query)) {
return;
}
if (ShadowType.class.isAssignableFrom(type)) {
getShadowCache(Mode.STANDARD).applyDefinition(query, result);
} else if (ResourceType.class.isAssignableFrom(type)) {
resourceManager.applyDefinition(query, result);
} else {
throw new IllegalArgumentException("Could not apply definition to query for object type: " + type);
}
result.computeStatus();
result.recordSuccessIfUnknown();
} catch (ObjectNotFoundException | CommunicationException | ConfigurationException | SchemaException | ExpressionEvaluationException | RuntimeException | Error e) {
ProvisioningUtil.recordFatalError(LOGGER, result, null, e);
throw e;
} finally {
result.cleanupResult();
}
}
use of com.evolveum.midpoint.util.exception.ConfigurationException in project midpoint by Evolveum.
the class ProvisioningServiceImpl method checkConstraints.
@Override
public ConstraintsCheckingResult checkConstraints(RefinedObjectClassDefinition shadowDefinition, PrismObject<ShadowType> shadowObject, ResourceType resourceType, String shadowOid, ResourceShadowDiscriminator resourceShadowDiscriminator, ConstraintViolationConfirmer constraintViolationConfirmer, Task task, OperationResult parentResult) throws CommunicationException, ObjectAlreadyExistsException, SchemaException, SecurityViolationException, ConfigurationException, ObjectNotFoundException, ExpressionEvaluationException {
OperationResult result = parentResult.createSubresult(ProvisioningService.class.getName() + ".checkConstraints");
ConstraintsChecker checker = new ConstraintsChecker();
checker.setCacheRepositoryService(cacheRepositoryService);
checker.setProvisioningService(this);
checker.setPrismContext(prismContext);
checker.setShadowDefinition(shadowDefinition);
checker.setShadowObject(shadowObject);
checker.setResourceType(resourceType);
checker.setShadowOid(shadowOid);
checker.setResourceShadowDiscriminator(resourceShadowDiscriminator);
checker.setConstraintViolationConfirmer(constraintViolationConfirmer);
try {
ConstraintsCheckingResult retval = checker.check(task, result);
result.computeStatus();
return retval;
} catch (CommunicationException | ObjectAlreadyExistsException | SchemaException | SecurityViolationException | ConfigurationException | ObjectNotFoundException | RuntimeException e) {
result.recordFatalError(e.getMessage(), e);
throw e;
}
}
use of com.evolveum.midpoint.util.exception.ConfigurationException in project midpoint by Evolveum.
the class ProvisioningServiceImpl method searchObjectsIterative.
@SuppressWarnings({ "rawtypes", "unchecked" })
@Override
public <T extends ObjectType> SearchResultMetadata searchObjectsIterative(final Class<T> type, ObjectQuery query, final Collection<SelectorOptions<GetOperationOptions>> options, final ResultHandler<T> handler, Task task, final OperationResult parentResult) throws SchemaException, ObjectNotFoundException, CommunicationException, ConfigurationException, SecurityViolationException, ExpressionEvaluationException {
Validate.notNull(parentResult, "Operation result must not be null.");
Validate.notNull(handler, "Handler must not be null.");
if (LOGGER.isTraceEnabled()) {
LOGGER.trace("Start to search object. Query {}", query != null ? query.debugDump() : "(null)");
}
final OperationResult result = parentResult.createSubresult(ProvisioningService.class.getName() + ".searchObjectsIterative");
result.setSummarizeSuccesses(true);
result.setSummarizeErrors(true);
result.setSummarizePartialErrors(true);
result.addParam("query", query);
result.addContext(OperationResult.CONTEXT_IMPLEMENTATION_CLASS, ProvisioningServiceImpl.class);
ObjectFilter filter = null;
if (query != null) {
filter = ObjectQueryUtil.simplify(query.getFilter());
query = query.cloneEmpty();
query.setFilter(filter);
}
if (InternalsConfig.consistencyChecks && filter != null) {
// We may not have all the definitions here. We will apply the definitions later
filter.checkConsistence(false);
}
if (filter != null && filter instanceof NoneFilter) {
result.recordSuccessIfUnknown();
result.cleanupResult();
LOGGER.trace("Finished searching. Nothing to do. Filter is NONE");
SearchResultMetadata metadata = new SearchResultMetadata();
metadata.setApproxNumberOfAllResults(0);
return metadata;
}
final GetOperationOptions rootOptions = SelectorOptions.findRootOptions(options);
if (!ShadowType.class.isAssignableFrom(type)) {
ResultHandler<T> internalHandler = (object, objResult) -> handleRepoObject(type, object, options, handler, task, objResult);
Collection<SelectorOptions<GetOperationOptions>> repoOptions = null;
if (GetOperationOptions.isReadOnly(rootOptions)) {
repoOptions = SelectorOptions.createCollection(GetOperationOptions.createReadOnly());
}
SearchResultMetadata metadata = null;
try {
// TODO think about strictSequential flag
metadata = getCacheRepositoryService().searchObjectsIterative(type, query, internalHandler, repoOptions, false, result);
result.computeStatus();
result.recordSuccessIfUnknown();
} catch (SchemaException | RuntimeException | Error e) {
ProvisioningUtil.recordFatalError(LOGGER, result, null, e);
}
result.cleanupResult();
return metadata;
}
final boolean shouldDoRepoSearch = ProvisioningUtil.shouldDoRepoSearch(rootOptions);
final ShadowHandler shadowHandler = new ShadowHandler() {
@Override
public boolean handle(ShadowType shadowType) {
OperationResult handleResult = result.createSubresult(ProvisioningService.class.getName() + ".searchObjectsIterative.handle");
if (shouldDoRepoSearch) {
return handleRepoObject(type, (PrismObject<T>) shadowType.asPrismObject(), options, handler, task, handleResult);
}
if (shadowType == null) {
throw new IllegalArgumentException("Null shadow in call to handler");
}
if (LOGGER.isTraceEnabled()) {
LOGGER.trace("searchObjectsIterative: processing shadow: {}", SchemaDebugUtil.prettyPrint(shadowType));
}
boolean doContinue;
try {
PrismObject shadow = shadowType.asPrismObject();
validateObject(shadow);
doContinue = handler.handle(shadow, handleResult);
handleResult.computeStatus();
handleResult.recordSuccessIfUnknown();
if (!handleResult.isSuccess() && !handleResult.isHandledError()) {
Collection<? extends ItemDelta> shadowModificationType = PropertyDelta.createModificationReplacePropertyCollection(ShadowType.F_RESULT, getResourceObjectShadowDefinition(), handleResult.createOperationResultType());
try {
ConstraintsChecker.onShadowModifyOperation(shadowModificationType);
cacheRepositoryService.modifyObject(ShadowType.class, shadowType.getOid(), shadowModificationType, result);
} catch (ObjectNotFoundException ex) {
result.recordFatalError("Saving of result to " + shadow + " shadow failed: Not found: " + ex.getMessage(), ex);
} catch (ObjectAlreadyExistsException ex) {
result.recordFatalError("Saving of result to " + shadow + " shadow failed: Already exists: " + ex.getMessage(), ex);
} catch (SchemaException ex) {
result.recordFatalError("Saving of result to " + shadow + " shadow failed: Schema error: " + ex.getMessage(), ex);
} catch (RuntimeException e) {
result.recordFatalError("Saving of result to " + shadow + " shadow failed: " + e.getMessage(), e);
throw e;
}
}
} catch (RuntimeException e) {
result.recordFatalError(e);
throw e;
} finally {
handleResult.computeStatus();
handleResult.recordSuccessIfUnknown();
// AbstractSummarizingResultHandler [lazyman]
if (result.isSuccess()) {
result.getSubresults().clear();
}
result.summarize();
}
return doContinue;
}
};
SearchResultMetadata metadata;
try {
metadata = getShadowCache(Mode.STANDARD).searchObjectsIterative(query, options, shadowHandler, true, task, result);
result.computeStatus();
} catch (ConfigurationException | CommunicationException | ObjectNotFoundException | SchemaException | ExpressionEvaluationException | RuntimeException | Error e) {
ProvisioningUtil.recordFatalError(LOGGER, result, null, e);
throw e;
} finally {
result.cleanupResult();
}
return metadata;
}
use of com.evolveum.midpoint.util.exception.ConfigurationException in project midpoint by Evolveum.
the class ProvisioningServiceImpl method applyDefinition.
@SuppressWarnings("unchecked")
@Override
public <T extends ObjectType> void applyDefinition(ObjectDelta<T> delta, Objectable object, Task task, OperationResult parentResult) throws SchemaException, ObjectNotFoundException, CommunicationException, ConfigurationException, ExpressionEvaluationException {
OperationResult result = parentResult.createMinorSubresult(ProvisioningService.class.getName() + ".applyDefinition");
result.addParam("delta", delta);
result.addContext(OperationResult.CONTEXT_IMPLEMENTATION_CLASS, ProvisioningServiceImpl.class);
try {
if (ShadowType.class.isAssignableFrom(delta.getObjectTypeClass())) {
getShadowCache(Mode.STANDARD).applyDefinition((ObjectDelta<ShadowType>) delta, (ShadowType) object, result);
} else if (ResourceType.class.isAssignableFrom(delta.getObjectTypeClass())) {
resourceManager.applyDefinition((ObjectDelta<ResourceType>) delta, (ResourceType) object, null, task, result);
} else {
throw new IllegalArgumentException("Could not apply definition to deltas for object type: " + delta.getObjectTypeClass());
}
result.recordSuccessIfUnknown();
result.cleanupResult();
} catch (ObjectNotFoundException | CommunicationException | ConfigurationException | SchemaException | ExpressionEvaluationException | RuntimeException | Error e) {
ProvisioningUtil.recordFatalError(LOGGER, result, null, e);
throw e;
}
}
use of com.evolveum.midpoint.util.exception.ConfigurationException in project midpoint by Evolveum.
the class ProvisioningServiceImpl method listResourceObjects.
@SuppressWarnings({ "rawtypes", "unchecked" })
@Override
public List<PrismObject<? extends ShadowType>> listResourceObjects(String resourceOid, QName objectClass, ObjectPaging paging, Task task, OperationResult parentResult) throws SchemaException, ObjectNotFoundException, CommunicationException, ConfigurationException, SecurityViolationException, ExpressionEvaluationException {
final OperationResult result = parentResult.createSubresult(ProvisioningService.class.getName() + ".listResourceObjects");
result.addParam("resourceOid", resourceOid);
result.addParam("objectClass", objectClass);
result.addParam("paging", paging);
result.addContext(OperationResult.CONTEXT_IMPLEMENTATION_CLASS, ProvisioningServiceImpl.class);
if (resourceOid == null) {
throw new IllegalArgumentException("Resource not defined in a search query");
}
if (objectClass == null) {
throw new IllegalArgumentException("Objectclass not defined in a search query");
}
ObjectQuery query = ObjectQueryUtil.createResourceAndObjectClassQuery(resourceOid, objectClass, prismContext);
final List<PrismObject<? extends ShadowType>> objectList = new ArrayList<PrismObject<? extends ShadowType>>();
final ShadowHandler shadowHandler = new ShadowHandler() {
@Override
public boolean handle(ShadowType shadow) {
if (LOGGER.isTraceEnabled()) {
LOGGER.trace("listResourceObjects: processing shadow: {}", SchemaDebugUtil.prettyPrint(shadow));
}
objectList.add(shadow.asPrismObject());
return true;
}
};
try {
getShadowCache(Mode.STANDARD).searchObjectsIterative(query, null, shadowHandler, false, task, result);
} catch (SchemaException | ObjectNotFoundException | CommunicationException | ConfigurationException | SecurityViolationException | ExpressionEvaluationException | RuntimeException | Error ex) {
result.recordFatalError(ex.getMessage(), ex);
result.cleanupResult(ex);
throw ex;
}
result.cleanupResult();
return objectList;
}
Aggregations