org.glassfish.jersey.microprofile.restclient.SseMessageBodyReader Maven / Gradle / Ivy
/*
* Copyright (c) 2021 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2021 Payara Foundation and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* This Source Code may also be made available under the following Secondary
* Licenses when the conditions for such availability set forth in the
* Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
* version 2 with the GNU Classpath Exception, which is available at
* https://www.gnu.org/software/classpath/license.html.
*
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
*/
package org.glassfish.jersey.microprofile.restclient;
import java.io.IOException;
import java.io.InputStream;
import java.lang.annotation.Annotation;
import java.lang.reflect.Type;
import java.util.concurrent.ExecutorService;
import jakarta.inject.Inject;
import jakarta.inject.Provider;
import jakarta.ws.rs.ConstrainedTo;
import jakarta.ws.rs.Consumes;
import jakarta.ws.rs.RuntimeType;
import jakarta.ws.rs.WebApplicationException;
import jakarta.ws.rs.core.Context;
import jakarta.ws.rs.core.MediaType;
import jakarta.ws.rs.core.MultivaluedMap;
import jakarta.ws.rs.ext.MessageBodyReader;
import jakarta.ws.rs.ext.Providers;
import org.glassfish.jersey.internal.PropertiesDelegate;
import org.glassfish.jersey.media.sse.InboundEvent;
import org.glassfish.jersey.message.MessageBodyWorkers;
import org.glassfish.jersey.message.internal.ReaderInterceptorExecutor;
import org.reactivestreams.Publisher;
@Consumes(MediaType.SERVER_SENT_EVENTS)
@ConstrainedTo(RuntimeType.CLIENT)
public class SseMessageBodyReader implements MessageBodyReader> {
@Context
protected Providers providers;
@Inject
private Provider messageBodyWorkers;
@Inject
private Provider propertiesDelegateProvider;
@Inject
private Provider executorServiceProvider;
@Override
public boolean isReadable(Class> type, Type genericType, Annotation[] annotations, MediaType mediaType) {
return Publisher.class.isAssignableFrom(type)
&& MediaType.SERVER_SENT_EVENTS_TYPE.isCompatible(mediaType);
}
@Override
public Publisher readFrom(Class> chunkedInputClass,
Type genericType,
Annotation[] annotations,
MediaType mediaType,
MultivaluedMap headers,
InputStream inputStream) throws IOException, WebApplicationException {
InputStream closeableInputStream = ReaderInterceptorExecutor.closeableInputStream(inputStream);
return new SseEventPublisher(
closeableInputStream,
genericType,
annotations,
mediaType,
headers,
messageBodyWorkers.get(),
propertiesDelegateProvider.get(),
executorServiceProvider.get()
);
}
}