Package com.asakusafw.compiler.flow.debugging

Source Code of com.asakusafw.compiler.flow.debugging.DebuggingUtils

/**
* Copyright 2011-2014 Asakusa Framework Team.
*
* 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 com.asakusafw.compiler.flow.debugging;

import java.lang.reflect.Type;

import com.asakusafw.compiler.flow.LinePartProcessor;
import com.asakusafw.vocabulary.flow.graph.FlowElement;
import com.asakusafw.vocabulary.flow.graph.FlowElementInput;
import com.asakusafw.vocabulary.flow.graph.FlowElementOutput;
import com.asakusafw.vocabulary.flow.graph.FlowElementResolver;
import com.asakusafw.vocabulary.flow.graph.ObservationCount;
import com.asakusafw.vocabulary.flow.graph.OperatorDescription;
import com.asakusafw.vocabulary.flow.graph.PortConnection;

/**
* Compiler debugging utilities.
* @since 0.4.0
*/
public final class DebuggingUtils {

    private static final String PORT_IN = "in";

    private static final String PORT_OUT = "out";

    private DebuggingUtils() {
        return;
    }

    /**
     * Add debug port.
     * @param port target port
     * @param delegate delegate
     * @return the debug element
     */
    public static FlowElement debug(FlowElementInput port, LinePartProcessor delegate) {
        FlowElementResolver resolver = createResolver(port.getDescription().getDataType(), delegate);
        for (FlowElementOutput opposite : port.disconnectAll()) {
            PortConnection.connect(opposite, resolver.getInput(PORT_IN));
        }
        PortConnection.connect(resolver.getOutput(PORT_OUT), port);
        return resolver.getElement();
    }

    /**
     * Add debug port.
     * @param port target port
     * @param delegate delegate
     * @return the debug element
     */
    public static FlowElement debug(FlowElementOutput port, LinePartProcessor delegate) {
        FlowElementResolver resolver = createResolver(port.getDescription().getDataType(), delegate);
        for (FlowElementInput opposite : port.disconnectAll()) {
            PortConnection.connect(resolver.getOutput(PORT_OUT), opposite);
        }
        PortConnection.connect(port, resolver.getInput(PORT_IN));
        return resolver.getElement();
    }

    private static FlowElementResolver createResolver(Type type, LinePartProcessor delegate) {
        FlowElementResolver resolver = new OperatorDescription.Builder(Debug.class)
            .addAttribute(ObservationCount.AT_LEAST_ONCE)
            .addAttribute(new DebuggingAttribute(delegate))
            .addInput(PORT_IN, type)
            .addOutput(PORT_OUT, type)
            .declare(DebuggingUtils.class, DebuggingUtils.class, "debug")
            .toResolver();
        return resolver;
    }
}
TOP

Related Classes of com.asakusafw.compiler.flow.debugging.DebuggingUtils

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.