Package com.cburch.logisim.instance

Source Code of com.cburch.logisim.instance.Port

/* Copyright (c) 2010, Carl Burch. License information is located in the
* com.cburch.logisim.Main source code and at www.cburch.com/logisim/. */

package com.cburch.logisim.instance;

import com.cburch.logisim.comp.EndData;
import com.cburch.logisim.data.Attribute;
import com.cburch.logisim.data.AttributeSet;
import com.cburch.logisim.data.BitWidth;
import com.cburch.logisim.data.Location;

public class Port {
    public static final String INPUT = "input";
    public static final String OUTPUT = "output";
    public static final String INOUT = "inout";

    public static final String EXCLUSIVE = "exclusive";
    public static final String SHARED = "shared";

    private int dx;
    private int dy;
    private int type;
    private BitWidth widthFixed;
    private Attribute<BitWidth> widthAttr;
    private boolean exclude;
    private String toolTip;

    public Port(int dx, int dy, String type, BitWidth bits) {
        this(dx, dy, type, bits, defaultExclusive(type));
    }

    public Port(int dx, int dy, String type, int bits) {
        this(dx, dy, type, BitWidth.create(bits), defaultExclusive(type));
    }

    public Port(int dx, int dy, String type, int bits, String exclude) {
        this(dx, dy, type, BitWidth.create(bits), exclude);
    }

    public Port(int dx, int dy, String type, BitWidth bits, String exclude) {
        this.dx = dx;
        this.dy = dy;
        this.type = toType(type);
        this.widthFixed = bits;
        this.widthAttr = null;
        this.exclude = toExclusive(exclude);
        this.toolTip = null;
    }

    public Port(int dx, int dy, String type, Attribute<BitWidth> attr) {
        this(dx, dy, type, attr, defaultExclusive(type));
    }

    public Port(int dx, int dy, String type, Attribute<BitWidth> attr,
            String exclude) {
        this.dx = dx;
        this.dy = dy;
        this.type = toType(type);
        this.widthFixed = null;
        this.widthAttr = attr;
        this.exclude = toExclusive(exclude);
        this.toolTip = null;
    }

    public void setToolTip(String value) {
        toolTip = value;
    }

    public String getToolTip() {
        String getter = toolTip;
        return getter == null ? null : getter.toString();
    }

    public Attribute<BitWidth> getWidthAttribute() {
        return widthAttr;
    }

    public EndData toEnd(Location loc, AttributeSet attrs) {
        Location pt = loc.translate(dx, dy);
        if (widthFixed != null) {
            return new EndData(pt, widthFixed, type, exclude);
        } else {
            Object val = attrs.getValue(widthAttr);
            if (!(val instanceof BitWidth)) {
                throw new IllegalArgumentException("Width attribute not set");
            }
            return new EndData(pt, (BitWidth) val, type, exclude);
        }
    }

    private static int toType(String s) {
        if (s == null) {
            throw new IllegalArgumentException("Null port type");
        }

        else if (s.equals(INPUT)) {
             return EndData.INPUT_ONLY;
        }

        else if (s.equals(OUTPUT)) {
            return EndData.OUTPUT_ONLY;
        }

        else if (s.equals(INOUT)) {
             return EndData.INPUT_OUTPUT;
        }

        else {
            throw new IllegalArgumentException("Not recognized port type");
        }

    }

    private static String defaultExclusive(String s) {
        if (s == null) {
            throw new IllegalArgumentException("Null port type");
        }

        else if (s.equals(INPUT)) {
             return SHARED;
        }

        else if (s.equals(OUTPUT)) {
            return EXCLUSIVE;
        }

        else if (s.equals(INOUT)) {
             return SHARED;
        }

        else {
            throw new IllegalArgumentException("Not recognized port type");
        }

    }

    private static boolean toExclusive(String s) {
        if (s == null) {
            throw new IllegalArgumentException("Null exclusion type");
        }

        else if (s.equals(EXCLUSIVE)) {
            return true;
        }

        else if (s.equals(SHARED)) {
               return false;
        }

        else {
            throw new IllegalArgumentException("Not recognized exclusion type");
        }

    }
}
TOP

Related Classes of com.cburch.logisim.instance.Port

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.