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

org.openrewrite.text.PlainTextParser Maven / Gradle / Ivy

There is a newer version: 8.40.2
Show newest version
/*
 * Copyright 2021 the original author or authors.
 * 

* 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 *

* https://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 org.openrewrite.text; import org.jspecify.annotations.Nullable; import org.openrewrite.ExecutionContext; import org.openrewrite.Parser; import org.openrewrite.SourceFile; import org.openrewrite.internal.EncodingDetectingInputStream; import org.openrewrite.marker.Markers; import org.openrewrite.tree.ParseError; import org.openrewrite.tree.ParsingEventListener; import org.openrewrite.tree.ParsingExecutionContextView; import java.io.File; import java.nio.file.Path; import java.nio.file.PathMatcher; import java.nio.file.Paths; import java.util.Collection; import java.util.stream.Collectors; import java.util.stream.Stream; import java.util.stream.StreamSupport; import static org.openrewrite.Tree.randomId; public class PlainTextParser implements Parser { /** * Downcast a {@link SourceFile} to a {@link PlainText} if it isn't already one. * * @param sourceFile A source file which may be a {@link PlainText} or not. * @return The same {@link PlainText} reference if the source file is already a {@link PlainText}. * Otherwise, a new {@link PlainText} instance with the same contents as the source file. */ public static PlainText convert(SourceFile sourceFile) { if (sourceFile instanceof PlainText) { return (PlainText) sourceFile; } PlainText text = PlainTextParser.builder().build() .parse(sourceFile.printAll()) .findFirst() .orElseThrow(() -> new IllegalStateException("Failed to parse as plain text")) .withSourcePath(sourceFile.getSourcePath()) .withFileAttributes(sourceFile.getFileAttributes()) .withCharsetBomMarked(sourceFile.isCharsetBomMarked()) .withId(sourceFile.getId()); if (sourceFile.getCharset() != null) { text = (PlainText) text.withCharset(sourceFile.getCharset()); } return text; } @Override public Stream parseInputs(Iterable sources, @Nullable Path relativeTo, ExecutionContext ctx) { ParsingEventListener parsingListener = ParsingExecutionContextView.view(ctx).getParsingListener(); return StreamSupport.stream(sources.spliterator(), false).map(input -> { Path path = input.getRelativePath(relativeTo); parsingListener.startedParsing(input); try { EncodingDetectingInputStream is = input.getSource(ctx); String sourceStr = is.readFully(); PlainText plainText = new PlainText( randomId(), path, Markers.EMPTY, is.getCharset().name(), is.isCharsetBomMarked(), input.getFileAttributes(), null, sourceStr, null ); parsingListener.parsed(input, plainText); return plainText; } catch (Throwable t) { ctx.getOnError().accept(t); return ParseError.build(this, input, relativeTo, ctx, t); } }); } @Override public boolean accept(Path path) { return true; } @Override public Path sourcePathFromSourceText(Path prefix, String sourceCode) { return prefix.resolve("file.txt"); } public static Builder builder() { return new Builder(); } public static class Builder extends Parser.Builder { @Nullable private Collection plainTextMasks; public Builder() { super(PlainText.class); } public Builder plainTextMasks(Collection plainTextMasks) { this.plainTextMasks = plainTextMasks; return this; } public Builder plainTextMasks(Path basePath, Iterable plainTextMaskGlobs) { return plainTextMasks(StreamSupport.stream(plainTextMaskGlobs.spliterator(), false) .map((o) -> basePath.getFileSystem().getPathMatcher("glob:" + o)) .collect(Collectors.toList())); } @Override public PlainTextParser build() { if (plainTextMasks != null) { return new PlainTextParser() { @Override public boolean accept(Path path) { for (PathMatcher matcher : plainTextMasks) { if (matcher.matches(path)) { return true; } } // PathMather will not evaluate the path "README.md" to be matched by the pattern "**/README.md" // This is counter-intuitive for most users and would otherwise require separate exclusions for files at the root and files in subdirectories if(!path.isAbsolute() && !path.startsWith(File.separator)) { return accept(Paths.get("/" + path)); } return false; } }; } return new PlainTextParser(); } @Override public String getDslName() { return "text"; } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy