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

org.apache.tika.exception.WriteLimitReachedException Maven / Gradle / Ivy

There is a newer version: 2024.11.18751.20241128T090041Z-241100
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You 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 org.apache.tika.exception;

import org.xml.sax.SAXException;

import org.apache.tika.parser.RecursiveParserWrapper;

/**
 * Transitional class to Tika 2.x.  This is not actually thrown by anything,
 * but the static check for isWriteLimitReached works.
 */
public class WriteLimitReachedException extends SAXException {

    //in case of (hopefully impossible) cyclic exception
    private final static int MAX_DEPTH = 100;

    public WriteLimitReachedException(String msg) {
        super(msg);
    }

    /**
     * Checks whether the given exception (or any of it's root causes) was
     * thrown by this handler as a signal of reaching the write limit.
     *
     * @param t throwable
     * @return true if the write limit was reached,
     * false otherwise
     * @since Apache Tika 2.0
     */
    public static boolean isWriteLimitReached(Throwable t) {
        return isWriteLimitReached(t, 0);
    }

    private static boolean isWriteLimitReached(Throwable t, int depth) {
        if (t == null) {
            return false;
        }
        if (depth > MAX_DEPTH) {
            return false;
        }
        if ((t instanceof WriteLimitReachedException) ||
                (t instanceof RecursiveParserWrapper.WriteLimitReached)) {
            return true;
        } else if (t instanceof SAXException && t.getClass().getName().equals(
                "org.apache.tika.sax.WriteOutContentHandler$WriteLimitReachedException")) {
            return true;
        } else {
            return isWriteLimitReached(t.getCause(), depth + 1);
        }
    }

    public static void throwIfWriteLimitReached(Exception ex) throws SAXException {
        throwIfWriteLimitReached(ex, 0);
    }

    private static void throwIfWriteLimitReached(Exception ex, int depth) throws SAXException {
        if (ex == null) {
            return;
        }
        if (depth > MAX_DEPTH) {
            return;
        }
        if ((ex instanceof WriteLimitReachedException) ||
                (ex instanceof RecursiveParserWrapper.WriteLimitReached)) {
            throw (SAXException) ex;
        } else if (ex instanceof SAXException && ex.getClass().getName().equals(
                "org.apache.tika.sax.WriteOutContentHandler$WriteLimitReachedException")) {
            throw (SAXException) ex;
        } else {
            isWriteLimitReached(ex.getCause(), depth + 1);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy