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

com.linecorp.armeria.server.Service Maven / Gradle / Ivy

Go to download

Asynchronous HTTP/2 RPC/REST client/server library built on top of Java 8, Netty, Thrift and GRPC (armeria-shaded)

There is a newer version: 0.75.0
Show newest version
/*
 * Copyright 2015 LINE Corporation
 *
 * LINE Corporation 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:
 *
 *   https://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 com.linecorp.armeria.server;

import static java.util.Objects.requireNonNull;

import java.lang.reflect.Constructor;
import java.util.Optional;
import java.util.function.Function;

import javax.annotation.Nullable;

import com.linecorp.armeria.common.HttpRequest;
import com.linecorp.armeria.common.HttpResponse;
import com.linecorp.armeria.common.Request;
import com.linecorp.armeria.common.Response;
import com.linecorp.armeria.common.RpcRequest;
import com.linecorp.armeria.common.RpcResponse;

/**
 * Handles a {@link Request} received by a {@link Server}.
 *
 * @param  the type of incoming {@link Request}. Must be {@link HttpRequest} or {@link RpcRequest}.
 * @param  the type of outgoing {@link Response}. Must be {@link HttpResponse} or {@link RpcResponse}.
 */
@FunctionalInterface
public interface Service {

    /**
     * Invoked when this {@link Service} has been added to a {@link Server} with the specified configuration.
     * Please note that this method can be invoked more than once if this {@link Service} has been added more
     * than once.
     */
    default void serviceAdded(ServiceConfig cfg) throws Exception {}

    /**
     * Serves an incoming {@link Request}.
     *
     * @param ctx the context of the received {@link Request}
     * @param req the received {@link Request}
     *
     * @return the {@link Response}
     */
    O serve(ServiceRequestContext ctx, I req) throws Exception;

    /**
     * Undecorates this {@link Service} to find the {@link Service} which is an instance of the specified
     * {@code serviceType}. Use this method instead of an explicit downcast since most {@link Service}s are
     * decorated via {@link #decorate(Function)} and thus cannot be downcast. For example:
     * 
{@code
     * Service s = new MyService().decorate(LoggingService.newDecorator())
     *                            .decorate(AuthService.newDecorator());
     * MyService s1 = s.as(MyService.class);
     * LoggingService s2 = s.as(LoggingService.class);
     * AuthService s3 = s.as(AuthService.class);
     * }
* * @param serviceType the type of the desired {@link Service} * @return the {@link Service} which is an instance of {@code serviceType} if this {@link Service} * decorated such a {@link Service}. {@link Optional#empty()} otherwise. */ default Optional as(Class serviceType) { requireNonNull(serviceType, "serviceType"); return serviceType.isInstance(this) ? Optional.of(serviceType.cast(this)) : Optional.empty(); } /** * Creates a new {@link Service} that decorates this {@link Service} with a new {@link Service} instance * of the specified {@code serviceType}. The specified {@link Class} must have a single-parameter * constructor which accepts this {@link Service}. */ default > R decorate(Class serviceType) { requireNonNull(serviceType, "serviceType"); Constructor constructor = null; for (Constructor c : serviceType.getConstructors()) { if (c.getParameterCount() != 1) { continue; } if (c.getParameterTypes()[0].isAssignableFrom(getClass())) { constructor = c; break; } } if (constructor == null) { throw new IllegalArgumentException("cannot find a matching constructor: " + serviceType.getName()); } try { return (R) constructor.newInstance(this); } catch (Exception e) { throw new IllegalStateException("failed to instantiate: " + serviceType.getName(), e); } } /** * Creates a new {@link Service} that decorates this {@link Service} with the specified {@code decorator}. */ default , R extends Service, R_I extends Request, R_O extends Response> R decorate(Function decorator) { @SuppressWarnings("unchecked") final R newService = decorator.apply((T) this); if (newService == null) { throw new NullPointerException("decorator.apply() returned null: " + decorator); } return newService; } /** * Creates a new {@link Service} that decorates this {@link Service} with the specified * {@link DecoratingServiceFunction}. */ default Service decorate(DecoratingServiceFunction function) { return new FunctionalDecoratingService<>(this, function); } /** * Returns whether the given {@code path} and {@code query} should be cached if the service's result is * successful. By default, exact path mappings with no input query are cached. */ default boolean shouldCachePath(String path, @Nullable String query, PathMapping pathMapping) { return pathMapping.exactPath().isPresent() && query == null; } }