]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/contrib/hashsum_template.h
edsp: use an ID mapping for the internal solver
[apt.git] / apt-pkg / contrib / hashsum_template.h
index d0ea0971ea5e2502e92ef18845789604765836fa..4000f230db38c16f30e2f55bea7d052a513119f3 100644 (file)
@@ -13,6 +13,9 @@
 
 #include <string>
 #include <cstring>
+#ifdef APT_PKG_EXPOSE_STRING_VIEW
+#include <apt-pkg/string_view.h>
+#endif
 
 #include <apt-pkg/strutl.h>
 
@@ -76,11 +79,17 @@ class HashSumValue
       return Value();
    }
 
+#ifdef APT_PKG_EXPOSE_STRING_VIEW
+   APT_HIDDEN bool Set(APT::StringView Str)
+   {
+      return Hex2Num(Str,Sum,sizeof(Sum));
+   }
+#else
    bool Set(std::string Str)
    {
       return Hex2Num(Str,Sum,sizeof(Sum));
    }
-
+#endif
    inline void Set(unsigned char S[N/8])
    {
       for (int I = 0; I != sizeof(Sum); ++I)
@@ -92,6 +101,18 @@ class HashSumValue
          memset(Sum,0,sizeof(Sum));
          Set(Str);
    }
+#ifdef APT_PKG_EXPOSE_STRING_VIEW
+   APT_HIDDEN explicit HashSumValue(APT::StringView const &Str)
+   {
+         memset(Sum,0,sizeof(Sum));
+         Set(Str);
+   }
+   APT_HIDDEN explicit HashSumValue(const char *Str)
+   {
+         memset(Sum,0,sizeof(Sum));
+         Set(Str);
+   }
+#endif
    HashSumValue()
    {
       memset(Sum,0,sizeof(Sum));