de.cosmocode.palava.ipc.conversation.AbstractConversation.java Source code

Java tutorial

Introduction

Here is the source code for de.cosmocode.palava.ipc.conversation.AbstractConversation.java

Source

/**
 * Copyright 2010 CosmoCode GmbH
 *
 * Licensed 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 de.cosmocode.palava.ipc.conversation;

import java.util.Iterator;
import java.util.Map;
import java.util.concurrent.ConcurrentMap;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import com.google.common.collect.ForwardingConcurrentMap;
import com.google.common.collect.Maps;

/**
 * Abstract {@link Conversation} implementation.
 *
 * @since 1.4
 * @author Willi Schoenborn
 */
abstract class AbstractConversation extends ForwardingConcurrentMap<Object, Object> implements Conversation {

    private static final Logger LOG = LoggerFactory.getLogger(AbstractConversation.class);

    private ConcurrentMap<Object, Object> map;

    @Override
    protected ConcurrentMap<Object, Object> delegate() {
        if (map == null) {
            map = Maps.newConcurrentMap();
        }
        return map;
    }

    @Override
    public final void destroy() {
        if (map == null) {
            return;
        } else {
            map.clear();
        }
    }

    @Override
    public void end() throws CompletionFailedException {
        final Map<Throwable, Object> errors = Maps.newHashMap();
        final Iterator<Entry<Object, Object>> iterator = entrySet().iterator();

        while (iterator.hasNext()) {
            final Entry<Object, Object> entry = iterator.next();

            if (entry.getKey() instanceof Completable) {
                try {
                    LOG.trace("Completing key {}", entry.getKey());
                    Completable.class.cast(entry.getKey()).complete();
                    /*CHECKSTYLE:OFF*/
                } catch (RuntimeException e) {
                    /*CHECKSTYLE:ON*/
                    LOG.error("Failed to complete key: " + entry.getKey(), e);
                    errors.put(e, entry.getKey());
                }
            }

            if (entry.getValue() instanceof Completable) {
                try {
                    LOG.trace("Completing value {}", entry.getValue());
                    Completable.class.cast(entry.getValue()).complete();
                    /*CHECKSTYLE:OFF*/
                } catch (RuntimeException e) {
                    /*CHECKSTYLE:ON*/
                    LOG.error("Failed to complete value: " + entry.getValue(), e);
                    errors.put(e, entry.getValue());
                }
            }
        }

        if (errors.size() > 0) {
            throw new CompletionFailedException(errors);
        }
    }

}