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

eu.solven.cleanthat.codeprovider.CodeProviderDecoratingWriter Maven / Gradle / Ivy

There is a newer version: 2.22
Show newest version
/*
 * Copyright 2023 Benoit Lacelle - SOLVEN
 *
 * 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 eu.solven.cleanthat.codeprovider;

import java.io.IOException;
import java.nio.file.Path;
import java.util.Map;
import java.util.Optional;
import java.util.Set;
import java.util.function.Consumer;
import java.util.function.Supplier;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
 * Typically used to be able to read from one {@link ICodeProvider} and write into a different
 * {@link ICodeProviderWriterLogic}
 * 
 * @author Benoit Lacelle
 *
 */
public class CodeProviderDecoratingWriter implements ICodeProviderWriter {
	private static final Logger LOGGER = LoggerFactory.getLogger(CodeProviderDecoratingWriter.class);
	protected final ICodeProvider codeProvider;

	protected final Supplier writerLogicSupplier;

	public CodeProviderDecoratingWriter(ICodeProvider codeProvider,
			Supplier writerLogicSupplier) {
		this.codeProvider = codeProvider;
		this.writerLogicSupplier = writerLogicSupplier;
	}

	@Override
	public Path getRepositoryRoot() {
		return codeProvider.getRepositoryRoot();
	}

	public ICodeProvider getDecorated() {
		return codeProvider;
	}

	@Override
	public void listFilesForContent(Set includePatterns, Consumer consumer)
			throws IOException {
		codeProvider.listFilesForContent(includePatterns, consumer);
	}

	@Override
	public String toString() {
		return codeProvider.toString();
	}

	@Override
	public Optional loadContentForPath(Path path) throws IOException {
		return codeProvider.loadContentForPath(path);
	}

	@Override
	public String getRepoUri() {
		return codeProvider.getRepoUri();
	}

	@Override
	public boolean persistChanges(Map pathToMutatedContent, ICodeWritingMetadata metadata) {
		return writerLogicSupplier.get().persistChanges(pathToMutatedContent, metadata);
	}

	@Override
	public void cleanTmpFiles() {
		LOGGER.debug("Nothing to clean");
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy