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

com.github.ocraft.s2client.api.test.RequestHandler Maven / Gradle / Ivy

package com.github.ocraft.s2client.api.test;

/*-
 * #%L
 * ocraft-s2client-api
 * %%
 * Copyright (C) 2017 - 2018 Ocraft Project
 * %%
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 * 
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 * 
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 * #L%
 */

import SC2APIProtocol.Sc2Api;

import java.util.Iterator;
import java.util.concurrent.ConcurrentLinkedDeque;
import java.util.function.Predicate;
import java.util.function.Supplier;

import static com.github.ocraft.s2client.protocol.Preconditions.require;
import static java.lang.String.format;

class RequestHandler {

    private ConcurrentLinkedDeque handlers = new ConcurrentLinkedDeque<>();

    void addHandler(Predicate condition, Supplier responseSupplier) {
        handlers.add(new Handler(condition, responseSupplier));
    }

    class Handler {
        private Predicate condition;
        private Supplier responseSupplier;

        Handler(Predicate condition, Supplier responseSupplier) {
            require("condition", condition);
            require("response supplier", responseSupplier);
            this.condition = condition;
            this.responseSupplier = responseSupplier;
        }

        Predicate getCondition() {
            return condition;
        }

        Supplier getResponseSupplier() {
            return responseSupplier;
        }
    }

    Sc2Api.Response handle(Sc2Api.Request request) {
        Iterator iterator = handlers.descendingIterator();
        while (iterator.hasNext()) {
            Handler handler = iterator.next();
            if (handler.getCondition().test(request)) {
                return handler.getResponseSupplier().get();
            }
        }
        throw new IllegalArgumentException(format("Could not handle request (%s)", request));
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy