]> git.saurik.com Git - apt.git/commitdiff
Bug #807012 also involves package dependencies :/. cydia_1.1.28%b6
authorJay Freeman (saurik) <saurik@saurik.com>
Fri, 27 Jan 2017 10:05:40 +0000 (02:05 -0800)
committerJay Freeman (saurik) <saurik@saurik.com>
Fri, 27 Jan 2017 10:05:40 +0000 (02:05 -0800)
apt-pkg/contrib/string_view.h
apt-pkg/contrib/strutl.h

index c504edd27717178920875a34c421399d03601d6c..e0aff3dca78e344617632a14d364ed28059c86c4 100644 (file)
@@ -112,18 +112,6 @@ public:
     constexpr size_t length() const { return size_; }
 };
 
-/**
- * \brief Faster comparison for string views (compare size before data)
- *
- * Still stable, but faster than the normal ordering. */
-static inline int StringViewCompareFast(StringView a, StringView b) {
-    if (a.size() != b.size())
-        return a.size() - b.size();
-
-    return memcmp(a.data(), b.data(), a.size());
-}
-
-
 }
 
 inline bool operator ==(const char *other, APT::StringView that);
index 918ac89c741832f41a00117bf006d86ccc00e827..b58e69cbd514b88b8dc5944133d400e58ff8bfcd 100644 (file)
@@ -157,6 +157,27 @@ static inline int isspace_ascii_inline(int const c)
    return (c >= 9 && c <= 13) || c == ' ';
 }
 
+// StringViewCompareFast - awkward attempt to optimize cache generation        /*{{{*/
+#ifdef APT_PKG_EXPOSE_STRING_VIEW
+/**
+ * \brief Faster comparison for string views (compare size before data)
+ *
+ * Still stable, but faster than the normal ordering.
+ *  As this is used for package comparison this *MUST* be case insensitive,
+ * as the alternative is to lower case all dependency fields which is slow. */
+static inline int StringViewCompareFast(APT::StringView a, APT::StringView b) {
+    if (a.size() != b.size())
+        return a.size() - b.size();
+    auto l(a.data()), r(b.data());
+    for (auto e(a.size()), i(decltype(e)(0)); i != e; ++i)
+        if (tolower_ascii_inline(l[i]) != tolower_ascii_inline(r[i]))
+            return tolower_ascii(l[i]) < tolower_ascii(r[i]) ? -1 : 1;
+    return 0;
+}
+#endif
+                                                                       /*}}}*/
+
+
 std::string StripEpoch(const std::string &VerStr);
 
 #define APT_MKSTRCMP(name,func) \