net.officefloor.server.stream.impl.ProcessAwareServerOutputStream Maven / Gradle / Ivy
The newest version!
/*-
* #%L
* HTTP Server
* %%
* Copyright (C) 2005 - 2020 Daniel Sagenschneider
* %%
* Licensed 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.
* #L%
*/
package net.officefloor.server.stream.impl;
import java.io.IOException;
import java.io.OutputStream;
import java.nio.ByteBuffer;
import java.nio.channels.FileChannel;
import net.officefloor.frame.api.managedobject.ManagedObjectContext;
import net.officefloor.frame.api.managedobject.ProcessSafeOperation;
import net.officefloor.frame.internal.structure.ProcessState;
import net.officefloor.server.stream.FileCompleteCallback;
import net.officefloor.server.stream.ServerOutputStream;
/**
* {@link ProcessState} aware wrapping {@link ServerOutputStream}.
*
* @author Daniel Sagenschneider
*/
public class ProcessAwareServerOutputStream extends ServerOutputStream {
/**
* Unsafe {@link OutputStream}.
*/
private final ServerOutputStream unsafeOutputStream;
/**
* {@link ManagedObjectContext}.
*/
private final ManagedObjectContext context;
/**
* Instantiate.
*
* @param unsafeOutputStream Unsafe {@link ServerOutputStream}.
* @param context {@link ManagedObjectContext}.
*/
public ProcessAwareServerOutputStream(ServerOutputStream unsafeOutputStream, ManagedObjectContext context) {
this.unsafeOutputStream = unsafeOutputStream;
this.context = context;
}
/**
* Function interface to define an operation with no return (void return).
*/
private static interface SafeVoidOperation {
/**
* Undertake operation.
*
* @throws T Possible failure from operation.
*/
void run() throws T;
}
/**
* Wraps execution to be {@link ProcessState} ({@link Thread}) safe.
*
* @param operation {@link ProcessSafeOperation}.
* @return Result of {@link ProcessSafeOperation}.
* @throws T If {@link ProcessSafeOperation} fails.
*/
private void safe(SafeVoidOperation operation) throws T {
this.context.run(() -> {
operation.run();
return null; // void return
});
}
/*
* ==================== ServerOutputStream ===================
*/
@Override
public void write(ByteBuffer buffer) throws IOException {
this.safe(() -> this.unsafeOutputStream.write(buffer));
}
@Override
public void write(FileChannel file, long position, long count, FileCompleteCallback callback) throws IOException {
this.safe(() -> this.unsafeOutputStream.write(file, position, count, callback));
}
@Override
public void write(FileChannel file, FileCompleteCallback callback) throws IOException {
this.safe(() -> this.unsafeOutputStream.write(file, callback));
}
@Override
public void write(int b) throws IOException {
this.safe(() -> this.unsafeOutputStream.write(b));
}
@Override
public void write(byte[] b) throws IOException {
this.safe(() -> this.unsafeOutputStream.write(b));
}
@Override
public void write(byte[] b, int off, int len) throws IOException {
this.safe(() -> this.unsafeOutputStream.write(b, off, len));
}
@Override
public void flush() throws IOException {
this.safe(() -> this.unsafeOutputStream.flush());
}
@Override
public void close() throws IOException {
this.safe(() -> this.unsafeOutputStream.close());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy