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

io.tracee.contextlogger.outputgenerator.RecursiveOutputElementTreeBuilderState Maven / Gradle / Ivy

There is a newer version: 0.11.0
Show newest version
package io.tracee.contextlogger.outputgenerator;

/**
 * Creates instance that holds the recursive state of the recursive output element tree creation.
 * Used to limit depth of Output Element tree.
 */
public class RecursiveOutputElementTreeBuilderState {

    private static final int DEFAULT_MAX_DEPTH = 10;

    private final int maxDepth;
    private final int currentDepth;

    private RecursiveOutputElementTreeBuilderState child = null;

    public RecursiveOutputElementTreeBuilderState() {
        this(DEFAULT_MAX_DEPTH);
    }

    public RecursiveOutputElementTreeBuilderState(int maxDepth) {
        this.maxDepth = maxDepth;
        this.currentDepth = 1;
    }

    public RecursiveOutputElementTreeBuilderState(int maxDepth, int currentDepth) {
        this.maxDepth = maxDepth;
        this.currentDepth = currentDepth;
    }

    public boolean maxDepthReached() {
        return this.currentDepth > this.maxDepth;
    }

    /**
     * Gets the childs levels state instance. (Immutable - is shared for all children)
     *
     * @return
     */
    public RecursiveOutputElementTreeBuilderState next() {
        if (child == null) {
            child = new RecursiveOutputElementTreeBuilderState(maxDepth, currentDepth + 1);
        }

        return child;
    }

    public int getCurrentDepth() {
        return currentDepth;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy