org.owasp.dependencycheck.utils.search.FileContentSearch Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dependency-check-utils Show documentation
Show all versions of dependency-check-utils Show documentation
dependency-check-utils is a collection of common utility classes used within dependency-check that might be useful in other projects.
/*
* This file is part of dependency-check-core.
*
* 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.
*
* Copyright (c) 2018 Jeremy Long. All Rights Reserved.
*/
package org.owasp.dependencycheck.utils.search;
import java.io.File;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;
import java.util.regex.Pattern;
import static java.nio.charset.StandardCharsets.UTF_8;
/**
* Utility for searching files.
*
* @author Jeremy Long
* @version $Id: $Id
*/
public final class FileContentSearch {
/**
* Private constructor for a utility class.
*/
private FileContentSearch() {
//empty constructor for utility class.
}
/**
* Determines if the given file contains the given regular expression.
*
* @param file the file to test
* @param pattern the pattern used to test the file
* @return true
if the regular expression matches the file
* content; otherwise false
* @throws java.io.IOException thrown if there is an error reading the file
*/
public static boolean contains(File file, String pattern) throws IOException {
try (Scanner fileScanner = new Scanner(file, UTF_8.name())) {
final Pattern regex = Pattern.compile(pattern);
if (fileScanner.findWithinHorizon(regex, 0) != null) {
return true;
}
}
return false;
}
/**
* Determines if the given file contains the given regular expressions.
*
* @param file the file to test
* @param patterns the array of patterns used to test the file
* @return true
if one of the regular expressions matches the
* file content; otherwise false
* @throws java.io.IOException thrown if there is an error reading the file
*/
public static boolean contains(File file, String[] patterns) throws IOException {
final List regexes = new ArrayList<>();
for (String pattern : patterns) {
regexes.add(Pattern.compile(pattern));
}
try (Scanner fileScanner = new Scanner(file, UTF_8.name())) {
return regexes.stream().anyMatch((regex) -> (fileScanner.findWithinHorizon(regex, 0) != null));
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy