Package com.linecorp.armeria.server
Interface ServiceRequestContext
- All Superinterfaces:
RequestContext
- All Known Implementing Classes:
DefaultServiceRequestContext
,ServiceRequestContextWrapper
public interface ServiceRequestContext extends RequestContext
Provides information about an invocation and related utilities. Every request being handled has its own
ServiceRequestContext
instance.-
Method Summary
Modifier and Type Method Description void
addAdditionalResponseHeader(CharSequence name, Object value)
Adds a header with the specifiedname
andvalue
.void
addAdditionalResponseTrailer(CharSequence name, Object value)
Adds a trailer with the specifiedname
andvalue
.HttpHeaders
additionalResponseHeaders()
HttpHeaders
additionalResponseTrailers()
Returns theHttpHeaders
which is included along with any other trailers when aService
completes anHttpResponse
.ContextAwareScheduledExecutorService
blockingTaskExecutor()
Returns theContextAwareScheduledExecutorService
that could be used for executing a potentially long-running task.static ServiceRequestContextBuilder
builder(HttpRequest request)
Returns a newServiceRequestContextBuilder
created from the specifiedHttpRequest
.void
clearRequestTimeout()
Clears the previously scheduled request timeout, if any.InetAddress
clientAddress()
Returns the address of the client who initiated this request.ServiceConfig
config()
static ServiceRequestContext
current()
Returns the server-side context of theRequest
that is being handled in the current thread.static ServiceRequestContext
currentOrNull()
Returns the server-side context of theRequest
that is being handled in the current thread.String
decodedMappedPath()
Returns theRequestContext.decodedPath()
with its context path removed.<A extends SocketAddress>
AlocalAddress()
Returns the local address of this request.static <T> T
mapCurrent(Function<? super ServiceRequestContext,T> mapper, Supplier<T> defaultValueSupplier)
Maps the server-side context of theRequest
that is being handled in the current thread.String
mappedPath()
Returns theRequestContext.path()
with its context path removed.long
maxRequestLength()
Returns the maximum length of the currentRequest
.void
mutateAdditionalResponseHeaders(Consumer<HttpHeadersBuilder> mutator)
void
mutateAdditionalResponseTrailers(Consumer<HttpHeadersBuilder> mutator)
Mutates theHttpHeaders
which is included along with any other trailers when aService
completes anHttpResponse
.MediaType
negotiatedResponseMediaType()
Returns the negotiated producible media type.static ServiceRequestContext
of(HttpRequest request)
Returns a newServiceRequestContext
created from the specifiedHttpRequest
.default String
pathParam(String name)
Returns the value of the specified path parameter.Map<String,String>
pathParams()
ProxiedAddresses
proxiedAddresses()
Returns the proxied addresses of the currentRequest
.default SafeCloseable
push()
Pushes this context to the thread-local stack.<A extends SocketAddress>
AremoteAddress()
Returns the remote address of this request.HttpRequest
request()
Returns theHttpRequest
associated with this context.long
requestTimeoutMillis()
default ServiceRequestContext
root()
Returns the rootServiceRequestContext
of this context.RoutingContext
routingContext()
Returns theRoutingContext
used to find theService
.RpcRequest
rpcRequest()
Returns theRpcRequest
associated with this context, ornull
if there's noRpcRequest
associated with this context.void
setAdditionalResponseHeader(CharSequence name, Object value)
Sets a header with the specifiedname
andvalue
.void
setAdditionalResponseTrailer(CharSequence name, Object value)
Sets a trailer with the specifiedname
andvalue
.void
setMaxRequestLength(long maxRequestLength)
Sets the maximum length of the currentRequest
.void
setRequestTimeout(TimeoutMode mode, Duration requestTimeout)
Schedules the request timeout that is triggered when theRequest
is not fully received or the correspondingResponse
is not sent completely within the specifiedTimeoutMode
and the specifiedrequestTimeout
.default void
setRequestTimeout(Duration requestTimeout)
default void
setRequestTimeoutMillis(long requestTimeoutMillis)
void
setRequestTimeoutMillis(TimeoutMode mode, long requestTimeoutMillis)
Schedules the request timeout that is triggered when theRequest
is not fully received or the correspondingResponse
is not sent completely within the specifiedTimeoutMode
and the specifiedrequestTimeoutMillis
.CompletableFuture<Void>
whenRequestTimedOut()
Returns aCompletableFuture
which is completed afterServiceRequestContext
has been timed out (e.g., when the corresponding request passes a deadline).CompletableFuture<Void>
whenRequestTimingOut()
Returns aCompletableFuture
which is completed whenServiceRequestContext
is about to get timed out.Methods inherited from interface com.linecorp.armeria.common.RequestContext
alloc, attr, attrs, decodedPath, eventLoop, hasAttr, hasOwnAttr, id, isTimedOut, log, logBuilder, makeContextAware, makeContextAware, makeContextAware, makeContextAware, makeContextAware, makeContextAware, makeContextAware, makeContextAware, makeContextAware, makeContextAware, makeContextAware, makeContextAware, meterRegistry, method, ownAttr, ownAttrs, path, query, replace, sessionProtocol, setAttr, sslSession, timeoutNow, updateRequest, updateRpcRequest
-
Method Details
-
current
Returns the server-side context of theRequest
that is being handled in the current thread. If the context is aClientRequestContext
,RequestContext.root()
is returned.- Throws:
IllegalStateException
- if the context is unavailable in the current thread or the current context is aClientRequestContext
andRequestContext.root()
isnull
-
currentOrNull
Returns the server-side context of theRequest
that is being handled in the current thread. If the context is aClientRequestContext
,RequestContext.root()
is returned.- Returns:
- the
ServiceRequestContext
available in the current thread, ornull
if unavailable.
-
mapCurrent
@Nullable static <T> T mapCurrent(Function<? super ServiceRequestContext,T> mapper, @Nullable Supplier<T> defaultValueSupplier)Maps the server-side context of theRequest
that is being handled in the current thread.- Parameters:
mapper
- theFunction
that maps theServiceRequestContext
defaultValueSupplier
- theSupplier
that provides the value when the context is unavailable in the current thread. Ifnull
, thenull
will be returned when the context is unavailable in the current thread.- Throws:
IllegalStateException
- if the current context is not aServiceRequestContext
.
-
of
Returns a newServiceRequestContext
created from the specifiedHttpRequest
. Note that it is not usually required to create a new context by yourself, because Armeria will always provide a context object for you. However, it may be useful in some cases such as unit testing.- See Also:
ServiceRequestContextBuilder
-
builder
Returns a newServiceRequestContextBuilder
created from the specifiedHttpRequest
. -
root
Returns the rootServiceRequestContext
of this context. This method always returnsthis
.- Specified by:
root
in interfaceRequestContext
- Returns:
this
-
request
Returns theHttpRequest
associated with this context.- Specified by:
request
in interfaceRequestContext
-
rpcRequest
Returns theRpcRequest
associated with this context, ornull
if there's noRpcRequest
associated with this context. For example, this method will returnnull
when the request being handled is 1) not an RPC request or 2) not decoded into an RPC request yet.- Specified by:
rpcRequest
in interfaceRequestContext
-
remoteAddress
Returns the remote address of this request.- Specified by:
remoteAddress
in interfaceRequestContext
-
localAddress
Returns the local address of this request.- Specified by:
localAddress
in interfaceRequestContext
-
clientAddress
InetAddress clientAddress()Returns the address of the client who initiated this request. -
push
Pushes this context to the thread-local stack. To pop the context from the stack, callSafeCloseable.close()
, which can be done using atry-with-resources
block:try (SafeCloseable ignored = ctx.push()) { ... }
In order to call this method, the current thread-local state must meet one of the following conditions:
- the thread-local does not have any
RequestContext
in it - the thread-local has the same
ServiceRequestContext
as this - reentrance - the thread-local has the
ClientRequestContext
whoseRequestContext.root()
is the sameServiceRequestContext
as this
IllegalStateException
.- Specified by:
push
in interfaceRequestContext
- the thread-local does not have any
-
config
ServiceConfig config() -
routingContext
RoutingContext routingContext()Returns theRoutingContext
used to find theService
. -
pathParams
-
pathParam
Returns the value of the specified path parameter. -
blockingTaskExecutor
ContextAwareScheduledExecutorService blockingTaskExecutor()Returns theContextAwareScheduledExecutorService
that could be used for executing a potentially long-running task. TheContextAwareScheduledExecutorService
sets thisServiceRequestContext
as the current context before executing any submitted tasks. If you want to useScheduledExecutorService
without setting this context, callContextAwareScheduledExecutorService.withoutContext()
and use the returnedScheduledExecutorService
. -
mappedPath
String mappedPath()Returns theRequestContext.path()
with its context path removed. This method can be useful for a reusable service bound at various path prefixes. -
decodedMappedPath
String decodedMappedPath()Returns theRequestContext.decodedPath()
with its context path removed. This method can be useful for a reusable service bound at various path prefixes. -
negotiatedResponseMediaType
Returns the negotiated producible media type. If the media type negotiation is not used for theService
,null
would be returned. -
requestTimeoutMillis
long requestTimeoutMillis()Returns the amount of time allowed from the start time of theRequest
until receiving the currentRequest
and sending the correspondingResponse
completely. This value is initially set fromServiceConfig.requestTimeoutMillis()
. -
clearRequestTimeout
void clearRequestTimeout()Clears the previously scheduled request timeout, if any. Note that calling this will prevent the request from ever being timed out. -
setRequestTimeoutMillis
default void setRequestTimeoutMillis(long requestTimeoutMillis)Schedules the request timeout that is triggered when theRequest
is not fully received or the correspondingResponse
is not sent completely within the specified amount time from now. Note that the specifiedrequestTimeout
must be positive. This value is initially set fromServiceConfig.requestTimeoutMillis()
. This method is a shortcut forsetRequestTimeoutMillis(TimeoutMode.SET_FROM_NOW, requestTimeoutMillis)
.For example:
ServiceRequestContext ctx = ...; // Schedules timeout after 1 seconds from now. ctx.setRequestTimeoutMillis(1000);
- Parameters:
requestTimeoutMillis
- the amount of time allowed in milliseconds from now
-
setRequestTimeoutMillis
Schedules the request timeout that is triggered when theRequest
is not fully received or the correspondingResponse
is not sent completely within the specifiedTimeoutMode
and the specifiedrequestTimeoutMillis
.Timeout mode description TimeoutMode.SET_FROM_NOW
Sets a given amount of timeout from the current time. TimeoutMode.SET_FROM_START
Sets a given amount of timeout since the current Request
began processing.TimeoutMode.EXTEND
Extends the previously scheduled timeout by the given amount of timeout. For example:
ServiceRequestContext ctx = ...; // Schedules a timeout from the start time of the request ctx.setRequestTimeoutMillis(TimeoutMode.SET_FROM_START, 2000); assert ctx.requestTimeoutMillis() == 2000; ctx.setRequestTimeoutMillis(TimeoutMode.SET_FROM_START, 1000); assert ctx.requestTimeoutMillis() == 1000; // Schedules timeout after 3 seconds from now. ctx.setRequestTimeoutMillis(TimeoutMode.SET_FROM_NOW, 3000); // Extends the previously scheduled timeout. long oldRequestTimeoutMillis = ctx.requestTimeoutMillis(); ctx.setRequestTimeoutMillis(TimeoutMode.EXTEND, 1000); assert ctx.requestTimeoutMillis() == oldRequestTimeoutMillis + 1000; ctx.extendRequestTimeoutMillis(TimeoutMode.EXTEND, -500); assert ctx.requestTimeoutMillis() == oldRequestTimeoutMillis + 500;
-
setRequestTimeout
Schedules the request timeout that is triggered when theRequest
is not fully received or the correspondingResponse
is not sent completely within the specified amount time from now. Note that the specifiedrequestTimeout
must be positive. This value is initially set fromServiceConfig.requestTimeoutMillis()
. This method is a shortcut forsetRequestTimeout(TimeoutMode.SET_FROM_NOW, requestTimeout)
.For example:
ServiceRequestContext ctx = ...; // Schedules timeout after 1 seconds from now. ctx.setRequestTimeout(Duration.ofSeconds(1));
- Parameters:
requestTimeout
- the amount of time allowed from now
-
setRequestTimeout
Schedules the request timeout that is triggered when theRequest
is not fully received or the correspondingResponse
is not sent completely within the specifiedTimeoutMode
and the specifiedrequestTimeout
.Timeout mode description TimeoutMode.SET_FROM_NOW
Sets a given amount of timeout from the current time. TimeoutMode.SET_FROM_START
Sets a given amount of timeout since the current Request
began processing.TimeoutMode.EXTEND
Extends the previously scheduled timeout by the given amount of timeout. For example:
ServiceRequestContext ctx = ...; // Schedules a timeout from the start time of the request ctx.setRequestTimeout(TimeoutMode.SET_FROM_START, Duration.ofSeconds(2)); assert ctx.requestTimeoutMillis() == 2000; ctx.setRequestTimeout(TimeoutMode.SET_FROM_START, Duration.ofSeconds(1)); assert ctx.requestTimeoutMillis() == 1000; // Schedules timeout after 3 seconds from now. ctx.setRequestTimeout(TimeoutMode.SET_FROM_NOW, Duration.ofSeconds(3)); // Extends the previously scheduled timeout. long oldRequestTimeoutMillis = ctx.requestTimeoutMillis(); ctx.setRequestTimeout(TimeoutMode.EXTEND, Duration.ofSeconds(1)); assert ctx.requestTimeoutMillis() == oldRequestTimeoutMillis + 1000; ctx.setRequestTimeout(TimeoutMode.EXTEND, Duration.ofMillis(-500)); assert ctx.requestTimeoutMillis() == oldRequestTimeoutMillis + 500;
-
whenRequestTimingOut
CompletableFuture<Void> whenRequestTimingOut()Returns aCompletableFuture
which is completed whenServiceRequestContext
is about to get timed out. -
whenRequestTimedOut
CompletableFuture<Void> whenRequestTimedOut()Returns aCompletableFuture
which is completed afterServiceRequestContext
has been timed out (e.g., when the corresponding request passes a deadline).RequestContext.isTimedOut()
will always returntrue
when the returnedCompletableFuture
is completed. -
maxRequestLength
long maxRequestLength()Returns the maximum length of the currentRequest
. This value is initially set fromServiceConfig.maxRequestLength()
. If 0, there is no limit on the request size.- See Also:
ContentTooLargeException
-
setMaxRequestLength
void setMaxRequestLength(long maxRequestLength)Sets the maximum length of the currentRequest
. This value is initially set fromServiceConfig.maxRequestLength()
. If 0, there is no limit on the request size.- See Also:
ContentTooLargeException
-
additionalResponseHeaders
HttpHeaders additionalResponseHeaders() -
setAdditionalResponseHeader
Sets a header with the specifiedname
andvalue
. This will remove all previous values associated with the specifiedname
. The header will be included when aService
sends anHttpResponse
. -
addAdditionalResponseHeader
Adds a header with the specifiedname
andvalue
. The header will be included when aService
sends anHttpResponse
. -
mutateAdditionalResponseHeaders
- Parameters:
mutator
- theConsumer
that mutates the additional response headers
-
additionalResponseTrailers
HttpHeaders additionalResponseTrailers()Returns theHttpHeaders
which is included along with any other trailers when aService
completes anHttpResponse
. -
setAdditionalResponseTrailer
Sets a trailer with the specifiedname
andvalue
. This will remove all previous values associated with the specifiedname
. The trailer will be included when aService
completes anHttpResponse
. -
addAdditionalResponseTrailer
Adds a trailer with the specifiedname
andvalue
. The trailer will be included when aService
completes anHttpResponse
. -
mutateAdditionalResponseTrailers
Mutates theHttpHeaders
which is included along with any other trailers when aService
completes anHttpResponse
.- Parameters:
mutator
- theConsumer
that mutates the additional trailers
-
proxiedAddresses
ProxiedAddresses proxiedAddresses()Returns the proxied addresses of the currentRequest
.
-