FvctxNodeNestingLimiter.java 2.69 KB
/*
 * Decompiled with CFR 0_118.
 * 
 * Could not load the following classes:
 *  com.scene7.is.catalog.util.localization.LocaleMap
 *  com.scene7.is.provider.ImageSetColorLabel
 *  com.scene7.is.util.SizeInt
 *  com.scene7.is.util.error.ApplicationException
 *  org.jetbrains.annotations.NotNull
 */
package com.scene7.is.ps.provider.fvctx;

import com.scene7.is.catalog.util.localization.LocaleMap;
import com.scene7.is.provider.ImageSetColorLabel;
import com.scene7.is.ps.provider.IZoomException;
import com.scene7.is.ps.provider.Request;
import com.scene7.is.ps.provider.fvctx.FvctxImageProps;
import com.scene7.is.ps.provider.fvctx.FvctxNode;
import com.scene7.is.ps.provider.fvctx.FvctxNodeNull;
import com.scene7.is.ps.provider.fvctx.MediaSetItemType;
import com.scene7.is.ps.provider.fvctx.MediaSetMetaData;
import com.scene7.is.ps.provider.fvctx.MediaSetSetType;
import com.scene7.is.ps.provider.fvctx.MediaSetVideoProps;
import com.scene7.is.util.SizeInt;
import com.scene7.is.util.error.ApplicationException;
import org.jetbrains.annotations.NotNull;

public class FvctxNodeNestingLimiter
extends FvctxNodeNull {
    private final int nestingLimit;
    private int nestingLevel;

    public FvctxNodeNestingLimiter(int nestingLimit, @NotNull FvctxNode next) {
        super(next);
        this.nestingLimit = nestingLimit;
        this.nestingLevel = 0;
    }

    @Override
    public void startFrame(@NotNull String netPath, @NotNull String query, Request parsedRequest, FvctxImageProps imageProps, boolean hasNestedFrame, boolean isMediaSetItem) throws ApplicationException {
        ++this.nestingLevel;
        if (this.nestingLevel > this.nestingLimit) {
            throw new IZoomException(IZoomException.FVCTX_REQUEST_EXCEEDS_NESTING_LIMIT, "Limit is " + this.nestingLimit + " nested frames", null);
        }
        this.getNext().startFrame(netPath, query, parsedRequest, imageProps, hasNestedFrame, isMediaSetItem);
    }

    @Override
    public void endFrame(SizeInt size, @NotNull String imageVersion, @NotNull MediaSetMetaData metaData, boolean hasNestedFrame) throws IZoomException {
        this.getNext().endFrame(size, imageVersion, metaData, hasNestedFrame);
        --this.nestingLevel;
    }

    @Override
    public void startAnonymousFrame() throws IZoomException {
        ++this.nestingLevel;
        if (this.nestingLevel > this.nestingLimit) {
            throw new IZoomException(IZoomException.FVCTX_REQUEST_EXCEEDS_NESTING_LIMIT, "Limit is " + this.nestingLimit + " nested frames", null);
        }
        this.getNext().startAnonymousFrame();
    }

    @Override
    public void endAnonymousFrame() throws IZoomException {
        this.getNext().endAnonymousFrame();
        --this.nestingLevel;
    }
}