All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.apicurio.datamodels.deref.InlineOrImportVisitor Maven / Gradle / Ivy

The newest version!
package io.apicurio.datamodels.deref;

import io.apicurio.datamodels.models.Node;
import io.apicurio.datamodels.models.Referenceable;
import io.apicurio.datamodels.models.Server;
import io.apicurio.datamodels.models.ServerVariable;
import io.apicurio.datamodels.models.asyncapi.AsyncApiChannelItem;
import io.apicurio.datamodels.models.openapi.OpenApiPathItem;
import io.apicurio.datamodels.models.openapi.OpenApiResponses;
import io.apicurio.datamodels.models.openapi.v20.OpenApi20Items;

/**
 * Determines if a Node being dereferenced should be inlined or imported.  Certain types of
 * Nodes cannot be imported into e.g. #/components because there is no collection in the
 * components entity for them.  In other cases we inline because the Node containing the
 * $ref is itself already located in the components section of the document, so there's no
 * point in adding *another* component and pointing to it.
 *
 * @author [email protected]
 */
public class InlineOrImportVisitor extends AllReferenceableNodeVisitor {

    private boolean inline = false;

    public boolean shouldInline() {
        return inline;
    }

    @Override
    protected void visitReferenceableNode(Referenceable refNode) {
        Node node = (Node) refNode;
        IsDefinitionParentVisitor idpv = new IsDefinitionParentVisitor();
        node.parent().accept(idpv);
        // TODO also check if the node has any properties OTHER than $ref??
        this.inline = idpv.isDefinitionParent();
    }

    /*
     * The following types can only be inlined because there is no place in the source
     * document to import them.  For example, in OpenAPI there is no "pathItems" collection
     * in the #/components entity.
     */

    @Override
    public void visitItems(OpenApi20Items node) {
        this.inline = true;
    }

    @Override
    public void visitPathItem(OpenApiPathItem node) {
        this.inline = true;
    }

    @Override
    public void visitResponses(OpenApiResponses node) {
        this.inline = true;
    }

    @Override
    public void visitChannelItem(AsyncApiChannelItem node) {
        this.inline = true;
    }

    @Override
    public void visitServer(Server node) {
        this.inline = true;
    }

    @Override
    public void visitServerVariable(ServerVariable node) {
        this.inline = true;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy