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

de.quantummaid.httpmaid.chains.ChainExtender Maven / Gradle / Ivy

There is a newer version: 0.9.144
Show newest version
/*
 * Copyright (c) 2020 Richard Hauswald - https://quantummaid.de/.
 *
 * 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 de.quantummaid.httpmaid.chains;

import de.quantummaid.httpmaid.chains.rules.Action;
import de.quantummaid.httpmaid.chains.rules.Rule;
import de.quantummaid.httpmaid.chains.rules.RuleDescription;
import lombok.AccessLevel;
import lombok.EqualsAndHashCode;
import lombok.RequiredArgsConstructor;
import lombok.ToString;

import java.util.Optional;
import java.util.function.Predicate;

import static de.quantummaid.httpmaid.util.Validators.validateNotNull;
import static java.lang.String.format;

@ToString
@EqualsAndHashCode
@RequiredArgsConstructor(access = AccessLevel.PRIVATE)
public final class ChainExtender {
    private final ChainRegistry chainRegistry;
    private final ModuleIdentifier moduleIdentifier;
    private final MetaData metaData;

    static ChainExtender chainExtender(final ChainRegistry chainRegistry,
                                       final ModuleIdentifier moduleIdentifier,
                                       final MetaData metaData) {
        validateNotNull(chainRegistry, "chainRegistry");
        validateNotNull(moduleIdentifier, "moduleIdentifier");
        return new ChainExtender(chainRegistry, moduleIdentifier, metaData);
    }

    public void createChain(final ChainName name,
                            final Action defaultAction,
                            final Action exceptionAction) {
        chainRegistry.createChain(name, defaultAction, exceptionAction, moduleIdentifier);
    }

    public void prependProcessor(final ChainName chainName,
                                 final Processor processor) {
        final RegisteredProcessor registeredProcessor = RegisteredProcessor.registeredProcessor(moduleIdentifier, processor);
        chainRegistry.prependProcessorToChain(chainName, registeredProcessor);
    }

    public void appendProcessor(final ChainName chainName,
                                final Processor processor) {
        final RegisteredProcessor registeredProcessor = RegisteredProcessor.registeredProcessor(moduleIdentifier, processor);
        chainRegistry.appendProcessorToChain(chainName, registeredProcessor);
    }

    public  void routeIfEquals(final ChainName name,
                                  final Action action,
                                  final MetaDataKey key,
                                  final T value) {
        routeIf(name, action, key, value::equals, format("%s = %s", key.key(), value.toString()));
    }

    public void routeIfFlagIsSet(final ChainName name,
                                 final Action action,
                                 final MetaDataKey flag) {
        routeIf(name, action, flag, bool -> bool, flag.key());
    }

    public void routeIfSet(final ChainName name,
                           final Action action,
                           final MetaDataKey key) {
        routeIf(name, action, key, x -> true, key.key() + " present");
    }

    public  void routeIf(final ChainName name,
                            final Action action,
                            final MetaDataKey key,
                            final Predicate predicate,
                            final String description) {
        route(name, action, m -> m.getOptional(key)
                .map(predicate::test)
                .orElse(false), description);
    }

    public void route(final ChainName name,
                      final Action action,
                      final Predicate matcher,
                      final String description) {
        final Rule rule = Rule.rule(moduleIdentifier, matcher, action, RuleDescription.ruleDescription(description));
        chainRegistry.addRoutingRouleToChain(name, rule);
    }

    public  T getMetaDatum(final MetaDataKey key) {
        return metaData.get(key);
    }

    public  Optional getOptionalMetaDatum(final MetaDataKey key) {
        return metaData.getOptional(key);
    }

    public  void addMetaDatum(final MetaDataKey key, final T value) {
        metaData.set(key, value);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy