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

io.parsingdata.metal.data.callback.Callbacks Maven / Gradle / Ivy

There is a newer version: 10.0.0
Show newest version
/*
 * Copyright 2013-2016 Netherlands Forensic Institute
 *
 * Licensed 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 io.parsingdata.metal.data.callback;

import static io.parsingdata.metal.Util.checkNotNull;

import io.parsingdata.metal.data.ImmutableList;
import io.parsingdata.metal.data.ParseResult;
import io.parsingdata.metal.token.Token;

public class Callbacks {

    public static final Callbacks NONE = new Callbacks(null, new ImmutableList());

    public final Callback genericCallback;
    public final ImmutableList tokenCallbacks;

    private Callbacks(final Callback genericCallback, final ImmutableList tokenCallbacks) {
        this.genericCallback = genericCallback;
        this.tokenCallbacks = checkNotNull(tokenCallbacks, "tokenCallbacks");
    }

    public static Callbacks create() { return NONE; }

    public Callbacks add(final Callback genericCallback) {
        return new Callbacks(genericCallback, tokenCallbacks);
    }

    public Callbacks add(final Token token, final Callback callback) {
        return new Callbacks(genericCallback, tokenCallbacks.add(new TokenCallback(token, callback)));
    }

    public void handle(final Token token, final ParseResult result) {
        if (genericCallback != null) {
            genericCallback.handle(token, result);
        }
        handleCallbacks(tokenCallbacks, token, result);
    }

    private void handleCallbacks(final ImmutableList callbacks, final Token token, final ParseResult result) {
        if (callbacks.isEmpty()) { return; }
        if (callbacks.head.token == token) {
            callbacks.head.callback.handle(token, result);
        }
        handleCallbacks(callbacks.tail, token, result);
    }

    @Override
    public String toString() {
        return (genericCallback == null ? "" : "generic: " + genericCallback.toString() + "; ") +
                (tokenCallbacks.isEmpty() ? "" : "token: " + tokenCallbacks.toString());
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy