Package org.apache.syncope.core.propagation.impl

Source Code of org.apache.syncope.core.propagation.impl.DefaultPropagationReporter

/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements.  See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership.  The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License.  You may obtain a copy of the License at
*
*   http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied.  See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.syncope.core.propagation.impl;

import java.util.ArrayList;
import java.util.List;
import org.apache.syncope.common.to.PropagationStatus;
import org.apache.syncope.common.types.PropagationTaskExecStatus;
import org.apache.syncope.core.connid.ConnObjectUtil;
import org.apache.syncope.core.persistence.beans.PropagationTask;
import org.apache.syncope.core.propagation.PropagationReporter;
import org.identityconnectors.framework.common.objects.ConnectorObject;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;

public class DefaultPropagationReporter implements PropagationReporter {

    protected static final Logger LOG = LoggerFactory.getLogger(DefaultPropagationReporter.class);

    @Autowired
    protected ConnObjectUtil connObjectUtil;

    protected final List<PropagationStatus> statuses = new ArrayList<PropagationStatus>();

    @Override
    public void onSuccessOrSecondaryResourceFailures(final String resource,
            final PropagationTaskExecStatus executionStatus,
            final String failureReason, final ConnectorObject beforeObj, final ConnectorObject afterObj) {

        final PropagationStatus propagation = new PropagationStatus();
        propagation.setResource(resource);
        propagation.setStatus(executionStatus);
        propagation.setFailureReason(failureReason);

        if (beforeObj != null) {
            propagation.setBeforeObj(connObjectUtil.getConnObjectTO(beforeObj));
        }

        if (afterObj != null) {
            propagation.setAfterObj(connObjectUtil.getConnObjectTO(afterObj));
        }

        statuses.add(propagation);
    }

    private boolean containsPropagationStatusTO(final String resourceName) {
        for (PropagationStatus status : statuses) {
            if (resourceName.equals(status.getResource())) {
                return true;
            }
        }
        return false;
    }

    @Override
    public void onPrimaryResourceFailure(final List<PropagationTask> tasks) {
        final String failedResource = statuses.get(statuses.size() - 1).getResource();

        LOG.debug("Propagation error: {} primary resource failed to propagate", failedResource);

        for (PropagationTask propagationTask : tasks) {
            if (!containsPropagationStatusTO(propagationTask.getResource().getName())) {
                final PropagationStatus propagationStatusTO = new PropagationStatus();
                propagationStatusTO.setResource(propagationTask.getResource().getName());
                propagationStatusTO.setStatus(PropagationTaskExecStatus.FAILURE);
                propagationStatusTO.setFailureReason(
                        "Propagation error: " + failedResource + " primary resource failed to propagate.");
                statuses.add(propagationStatusTO);
            }
        }
    }

    @Override
    public List<PropagationStatus> getStatuses() {
        return statuses;
    }
}
TOP

Related Classes of org.apache.syncope.core.propagation.impl.DefaultPropagationReporter

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.