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

io.datakernel.multilog.LogStreamChunker Maven / Gradle / Ivy

There is a newer version: 3.1.0
Show newest version
/*
 * Copyright (C) 2015-2018 SoftIndex LLC.
 *
 * 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.
 */

package io.datakernel.multilog;

import io.datakernel.bytebuf.ByteBuf;
import io.datakernel.common.time.CurrentTimeProvider;
import io.datakernel.csp.AbstractCommunicatingProcess;
import io.datakernel.csp.ChannelConsumer;
import io.datakernel.csp.ChannelInput;
import io.datakernel.csp.ChannelSupplier;
import io.datakernel.promise.Promise;
import io.datakernel.remotefs.FsClient;
import org.jetbrains.annotations.Nullable;

final class LogStreamChunker extends AbstractCommunicatingProcess implements ChannelInput {
	private final CurrentTimeProvider currentTimeProvider;
	private final FsClient client;
	private final LogNamingScheme namingScheme;
	private final String logPartition;

	private ChannelSupplier input;
	@Nullable
	private ChannelConsumer currentConsumer;

	private LogFile currentChunk;

	public LogStreamChunker(CurrentTimeProvider currentTimeProvider, FsClient client, LogNamingScheme namingScheme, String logPartition) {
		this.currentTimeProvider = currentTimeProvider;
		this.client = client;
		this.namingScheme = namingScheme;
		this.logPartition = logPartition;
	}

	@Override
	public Promise set(ChannelSupplier input) {
		this.input = sanitize(input);
		startProcess();
		return getProcessCompletion();
	}

	@Override
	protected void doProcess() {
		input.get()
				.whenResult(buf -> {
					if (buf != null) {
						//noinspection ConstantConditions
						ensureConsumer()
								.then($ -> currentConsumer.accept(buf))
								.whenResult($ -> doProcess());
					} else {
						flush().whenResult($ -> completeProcess());
					}
				});
	}

	private Promise ensureConsumer() {
		LogFile newChunkName = namingScheme.format(currentTimeProvider.currentTimeMillis());
		return currentChunk != null && currentChunk.getName().compareTo(newChunkName.getName()) >= 0 ?
				Promise.complete() :
				startNewChunk(newChunkName);
	}

	private Promise startNewChunk(LogFile newChunkName) {
		return flush()
				.then($ -> {
					this.currentChunk = (currentChunk == null) ? newChunkName : new LogFile(newChunkName.getName(), 0);
					return client.upload(namingScheme.path(logPartition, currentChunk))
							.thenEx(this::sanitize)
							.whenResult(newConsumer ->
									this.currentConsumer = sanitize(newConsumer))
							.toVoid();
				});
	}

	private Promise flush() {
		if (currentConsumer == null) {
			return Promise.complete();
		}
		return currentConsumer.accept(null)
				.whenResult($ -> currentConsumer = null);
	}

	@Override
	protected void doClose(Throwable e) {
		input.close(e);
		if (currentConsumer != null) {
			currentConsumer.close(e);
		}
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy