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

org.apache.juli.logging.ch.qos.logback.core.sift.SiftProcessor Maven / Gradle / Ivy

There is a newer version: 8.5.100.SP1
Show newest version
/**
 * Logback: the reliable, generic, fast and flexible logging framework.
 * Copyright (C) 1999-2015, QOS.ch. All rights reserved.
 *
 * This program and the accompanying materials are dual-licensed under
 * either the terms of the Eclipse Public License v1.0 as published by
 * the Eclipse Foundation
 *
 *   or (per the licensee's choosing)
 *
 * under the terms of the GNU Lesser General Public License version 2.1
 * as published by the Free Software Foundation.
 */
package org.apache.juli.logging.ch.qos.logback.core.sift;

import org.apache.juli.logging.ch.qos.logback.core.Context;
import org.apache.juli.logging.ch.qos.logback.core.model.processor.DefaultProcessor;
import org.apache.juli.logging.ch.qos.logback.core.model.processor.ModelInterpretationContext;

public class SiftProcessor extends DefaultProcessor {


    public SiftProcessor(Context context, ModelInterpretationContext mic) {
        super(mic.getContext(), mic);
    }
    
    ModelInterpretationContext getModelInterpretationContext() {
        return mic;
    }

//    final static String ONE_AND_ONLY_ONE_URL = CoreConstants.CODES_URL + "#1andOnly1";

    
//    void foo() {
//        this.modelInterpretationContext = new ModelInterpretationContext(context);
//        buildModelInterpretationContext();
//        DefaultProcessor defaultProcessor = new DefaultProcessor(context, this.modelInterpretationContext);
//        addModelHandlerAssociations(defaultProcessor);
//
//    }


    //abstract public Appender getAppender();

//    int errorEmmissionCount = 0;
//
//    protected void oneAndOnlyOneCheck(Map appenderMap) {
//        String errMsg = null;
//        if (appenderMap.size() == 0) {
//            errorEmmissionCount++;
//            errMsg = "No nested appenders found within the  element in SiftingAppender.";
//        } else if (appenderMap.size() > 1) {
//            errorEmmissionCount++;
//            errMsg = "Only and only one appender can be nested the  element in SiftingAppender. See also "
//                    + ONE_AND_ONLY_ONE_URL;
//        }
//
//        if (errMsg != null && errorEmmissionCount < CoreConstants.MAX_ERROR_COUNT) {
//            addError(errMsg);
//        }
//    }

//    @Override
//    public String toString() {
//        return this.getClass().getName() + "{" + key + "=" + value + '}';
//    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy