org.eclipse.jetty.io.content.ContentSinkSubscriber Maven / Gradle / Ivy
//
// ========================================================================
// Copyright (c) 1995 Mort Bay Consulting Pty Ltd and others.
//
// This program and the accompanying materials are made available under the
// terms of the Eclipse Public License v. 2.0 which is available at
// https://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
// which is available at https://www.apache.org/licenses/LICENSE-2.0.
//
// SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
// ========================================================================
//
package org.eclipse.jetty.io.content;
import java.nio.ByteBuffer;
import java.util.concurrent.Flow;
import java.util.concurrent.atomic.AtomicBoolean;
import java.util.concurrent.atomic.AtomicInteger;
import org.eclipse.jetty.io.Content;
import org.eclipse.jetty.util.Callback;
import org.eclipse.jetty.util.thread.Invocable;
/**
* A {@link Flow.Subscriber} that wraps a {@link Content.Sink}.
* Content delivered to the {@link #onNext(Content.Chunk)} method is
* written to {@link Content.Sink#write(boolean, ByteBuffer, Callback)}
* and the chunk is released once the write callback is succeeded or failed.
*/
public class ContentSinkSubscriber implements Flow.Subscriber
{
private final AtomicInteger lastAndComplete = new AtomicInteger(2);
private final AtomicBoolean callbackComplete = new AtomicBoolean();
private final Content.Sink sink;
private final Callback callback;
private Flow.Subscription subscription;
public ContentSinkSubscriber(Content.Sink sink, Callback callback)
{
this.sink = sink;
this.callback = callback;
}
@Override
public void onSubscribe(Flow.Subscription subscription)
{
this.subscription = subscription;
subscription.request(1);
}
@Override
public void onNext(Content.Chunk chunk)
{
// Retain the chunk because the write may not complete immediately.
chunk.retain();
sink.write(chunk.isLast(), chunk.getByteBuffer(), new Callback()
{
public void succeeded()
{
chunk.release();
if (chunk.isLast())
complete();
else
subscription.request(1);
}
public void failed(Throwable failure)
{
chunk.release();
subscription.cancel();
error(failure);
}
@Override
public InvocationType getInvocationType()
{
return Invocable.getInvocationType(callback);
}
});
}
@Override
public void onError(Throwable failure)
{
error(failure);
}
private void error(Throwable failure)
{
if (callbackComplete.compareAndSet(false, true))
callback.failed(failure);
}
@Override
public void onComplete()
{
complete();
}
private void complete()
{
// Success the callback only when called twice:
// once from last write success and once from the publisher.
if (lastAndComplete.decrementAndGet() == 0)
{
if (callbackComplete.compareAndSet(false, true))
callback.succeeded();
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy