]> git.ipfire.org Git - thirdparty/squid.git/blobdiff - src/RefreshPattern.h
Source Format Enforcement (#1234)
[thirdparty/squid.git] / src / RefreshPattern.h
index e835dd6be9d55dfd71a89d9a0c1438935a731f34..46561dc9af2d0fb3ad71058162f5e919bb638138 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 1996-2015 The Squid Software Foundation and contributors
+ * Copyright (C) 1996-2023 The Squid Software Foundation and contributors
  *
  * Squid software is distributed under GPLv2+ license and includes
  * contributions from numerous individuals and organizations.
@@ -9,21 +9,52 @@
 #ifndef SQUID_REFRESHPATTERN_H_
 #define SQUID_REFRESHPATTERN_H_
 
-#include "compat/GnuRegex.h"
+#include "base/RegexPattern.h"
 
-/// a representation of a refresh pattern. Currently a POD.
+#include <memory>
+
+/// a representation of a refresh pattern.
 class RefreshPattern
 {
+    MEMPROXY_CLASS(RefreshPattern);
+
 public:
-    const char *pattern;
-    regex_t compiled_pattern;
+
+    /*
+     * Defaults:
+     *      MIN     NONE
+     *      PCT     20%
+     *      MAX     3 days
+     */
+#define REFRESH_DEFAULT_MAX static_cast<time_t>(259200)
+
+    using RegexPointer = std::unique_ptr<RegexPattern>;
+
+    // If given a regex, becomes its owner, creating an explicit refresh_pattern
+    // rule. Otherwise, creates an implicit/default refresh_pattern rule.
+    explicit RefreshPattern(RegexPointer aRegex):
+        min(0), pct(0.20), max(REFRESH_DEFAULT_MAX),
+        next(nullptr),
+        max_stale(0),
+        regex_(std::move(aRegex))
+    {
+        memset(&flags, 0, sizeof(flags));
+    }
+
+    ~RefreshPattern() {
+        while (RefreshPattern *t = next) {
+            next = t->next;
+            t->next = nullptr;
+            delete t;
+        }
+    }
+
     time_t min;
     double pct;
     time_t max;
     RefreshPattern *next;
 
     struct {
-        bool icase;
         bool refresh_ims;
         bool store_stale;
 #if USE_HTTP_VIOLATIONS
@@ -39,11 +70,34 @@ public:
 
     // statistics about how many matches this pattern has had
     mutable struct stats_ {
+        stats_() : matchTests(0), matchCount(0) {}
+
         uint64_t matchTests;
         uint64_t matchCount;
         // TODO: some stats to indicate how useful/less the flags are would be nice.
     } stats;
+
+    /// reports configuration excluding trailing options
+    void printHead(std::ostream &) const;
+
+    /// reports the configured pattern or a fake pattern of the implicit rule
+    void printPattern(std::ostream &os) const;
+
+    // TODO: Refactor external refresh_pattern rules iterators to make private.
+    /// configured regex; do not use except when iterating configured rules
+    const RegexPattern &regex() const;
+
+private:
+    /// configured regex or, for the implicit refresh_pattern rule, nil
+    RegexPointer regex_;
 };
 
+inline std::ostream &
+operator <<(std::ostream &os, const RefreshPattern &r)
+{
+    r.printHead(os);
+    return os;
+}
+
 #endif /* SQUID_REFRESHPATTERN_H_ */