You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@nifi.apache.org by GitBox <gi...@apache.org> on 2021/09/01 09:25:00 UTC

[GitHub] [nifi-minifi-cpp] adamdebreceni commented on a change in pull request #1138: MINIFICPP-1471 - Build extensions as dynamic libraries and dynamically load them

adamdebreceni commented on a change in pull request #1138:
URL: https://github.com/apache/nifi-minifi-cpp/pull/1138#discussion_r699279695



##########
File path: libminifi/include/utils/file/FilePattern.h
##########
@@ -0,0 +1,122 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You 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.
+ */
+
+#pragma once
+
+#include <string>
+#include <vector>
+#include <set>
+#include <utility>
+#include <memory>
+#include <filesystem>
+
+#include "utils/OptionalUtils.h"
+#include "core/logging/Logger.h"
+
+struct FilePatternTestAccessor;
+
+namespace org {
+namespace apache {
+namespace nifi {
+namespace minifi {
+namespace utils {
+namespace file {
+
+class FilePatternError : public std::invalid_argument {
+ public:
+  explicit FilePatternError(const std::string& msg) : invalid_argument(msg) {}
+};
+
+class FilePattern {
+  friend struct ::FilePatternTestAccessor;
+
+  friend std::set<std::filesystem::path> match(const FilePattern& pattern);
+
+  class FilePatternSegmentError : public std::invalid_argument {
+   public:
+    explicit FilePatternSegmentError(const std::string& msg) : invalid_argument(msg) {}
+  };
+
+  class FilePatternSegment {
+    static void defaultSegmentErrorHandler(std::string_view error_message) {
+      throw FilePatternError(std::string{error_message});
+    }
+
+   public:
+    explicit FilePatternSegment(std::string pattern);
+
+    enum class MatchResult {
+      INCLUDE,  // dir/file should be processed according to the pattern
+      EXCLUDE,  // dir/file is explicitly rejected by the pattern
+      NOT_MATCHING  // dir/file does not match pattern, do what you may
+    };
+
+    bool isExcluding() const {
+      return excluding_;
+    }
+
+    MatchResult match(const std::string& directory) const;
+
+    MatchResult match(const std::string& directory, const std::string& filename) const;
+
+    MatchResult match(const std::filesystem::path& path) const;
+    /**
+     * @return The lowermost parent directory without wildcards.
+     */
+    std::filesystem::path getBaseDirectory() const;
+
+   private:
+    enum class DirMatchResult {
+      NONE,  // pattern does not match the directory (e.g. p = "/home/inner/*test", v = "/home/banana")
+      PARENT,  // directory is a parent of the pattern (e.g. p = "/home/inner/*test", v = "/home/inner")
+      EXACT,  // pattern exactly matches the directory (e.g. p = "/home/inner/*test", v = "/home/inner/cool_test")
+      TREE  // pattern matches the whole subtree of the directory (e.g. p = "/home/**", v = "/home/banana")
+    };
+
+    using DirIt = std::filesystem::path::const_iterator;
+    static DirMatchResult matchDirectory(DirIt pattern_begin, DirIt pattern_end, DirIt value_begin, DirIt value_end);
+
+    std::filesystem::path directory_pattern_;
+    std::string file_pattern_;
+    bool excluding_;
+  };
+
+  using ErrorHandler = std::function<void(std::string_view /*subpattern*/, std::string_view /*error_message*/)>;
+
+  static void defaultErrorHandler(std::string_view subpattern, std::string_view error_message) {
+    std::string message = "Error in subpattern '";
+    message += subpattern;
+    message += "': ";
+    message += error_message;
+    throw FilePatternError(message);
+  }
+
+ public:
+  explicit FilePattern(const std::string& pattern, ErrorHandler error_handler = defaultErrorHandler);
+
+ private:
+  std::vector<FilePatternSegment> segments_;
+};
+
+std::set<std::filesystem::path> match(const FilePattern& pattern);

Review comment:
       in light of the numbers I reverted back to `std::set` (in my own measurements I found that the runtime is dominated by the filesystem operations)




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@nifi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org