Package org.apache.isis.core.metamodel.facets.collections.interaction

Source Code of org.apache.isis.core.metamodel.facets.collections.interaction.CollectionRemoveFromFacetForInteractionAbstract

/*
*  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.isis.core.metamodel.facets.collections.interaction;

import java.util.Collection;
import org.apache.isis.applib.services.eventbus.AbstractInteractionEvent;
import org.apache.isis.applib.services.eventbus.CollectionInteractionEvent;
import org.apache.isis.core.metamodel.adapter.ObjectAdapter;
import org.apache.isis.core.metamodel.facetapi.Facet;
import org.apache.isis.core.metamodel.facetapi.FacetHolder;
import org.apache.isis.core.metamodel.facets.InteractionHelper;
import org.apache.isis.core.metamodel.facets.SingleValueFacetAbstract;
import org.apache.isis.core.metamodel.facets.collections.modify.CollectionRemoveFromFacet;
import org.apache.isis.core.metamodel.facets.propcoll.accessor.PropertyOrCollectionAccessorFacet;
import org.apache.isis.core.metamodel.runtimecontext.ServicesInjector;


public abstract class CollectionRemoveFromFacetForInteractionAbstract
    extends SingleValueFacetAbstract<Class<? extends CollectionInteractionEvent<?,?>>>
    implements CollectionRemoveFromFacet {

  public static Class<? extends Facet> type() {
      return CollectionRemoveFromFacet.class;
    }

    private final PropertyOrCollectionAccessorFacet getterFacet;
    private final CollectionRemoveFromFacet collectionRemoveFromFacet;
    private final CollectionInteractionFacetAbstract collectionInteractionFacet;

    private final InteractionHelper interactionHelper;

    public CollectionRemoveFromFacetForInteractionAbstract(
            final Class<? extends CollectionInteractionEvent<?, ?>> eventType,
            final PropertyOrCollectionAccessorFacet getterFacet,
            final CollectionRemoveFromFacet collectionRemoveFromFacet,
            final CollectionInteractionFacetAbstract collectionInteractionFacet,
            final ServicesInjector servicesInjector,
            final FacetHolder holder) {
        super(type(), eventType, holder);
        this.getterFacet = getterFacet;
        this.collectionRemoveFromFacet = collectionRemoveFromFacet;
        this.collectionInteractionFacet = collectionInteractionFacet;
        this.interactionHelper = new InteractionHelper(servicesInjector);
    }

    @Override
    public void remove(ObjectAdapter targetAdapter,
                       ObjectAdapter referencedObjectAdapter) {
        if (this.collectionRemoveFromFacet == null) {
            return;
        }
        if(!interactionHelper.hasEventBusService()) {
            collectionRemoveFromFacet.remove(targetAdapter,
                    referencedObjectAdapter);
            return;
        }


        try {

            final Object referencedObject = ObjectAdapter.Util.unwrap(referencedObjectAdapter);

            // get hold of underlying collection
            final Object collection = getterFacet.getProperty(targetAdapter);

            // don't post event if the collections does not contain object
            if (!((Collection<?>) collection).contains(referencedObject)) {
                return;
            }

            // contains the element, so
            // execute the remove wrapped between the executing and executed events ...

            // pick up existing event (saved in thread local during the validation phase)
            final CollectionInteractionEvent<?, ?> existingEvent = collectionInteractionFacet.currentInteraction.get();

            // ... post the executing event
            final CollectionInteractionEvent<?, ?> event = interactionHelper.postEventForCollection(
                    value(), existingEvent, AbstractInteractionEvent.Phase.EXECUTING,
                    getIdentified(), targetAdapter, CollectionInteractionEvent.Of.REMOVE_FROM, referencedObject);

            // ... perform remove
            collectionRemoveFromFacet.remove(targetAdapter, referencedObjectAdapter);

            // ... and post the executed event
            interactionHelper.postEventForCollection(
                    value(), verify(event), AbstractInteractionEvent.Phase.EXECUTED,
                    getIdentified(), targetAdapter, CollectionInteractionEvent.Of.REMOVE_FROM, referencedObject);

        } finally {
            // clean up
            collectionInteractionFacet.currentInteraction.set(null);
        }
    }

    /**
     * Optional hook to allow the facet implementation for the deprecated {@link org.apache.isis.applib.annotation.PostsCollectionRemovedFromEvent} annotation
     * to discard the event if of a different type.
     */
    protected CollectionInteractionEvent<?, ?> verify(CollectionInteractionEvent<?, ?> event) {
        return event;
    }

}
TOP

Related Classes of org.apache.isis.core.metamodel.facets.collections.interaction.CollectionRemoveFromFacetForInteractionAbstract

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.