]> git.ipfire.org Git - thirdparty/ccache.git/commitdiff
Rename Util::format_hex to format_base16
authorJoel Rosdahl <joel@rosdahl.net>
Mon, 21 Sep 2020 19:57:05 +0000 (21:57 +0200)
committerJoel Rosdahl <joel@rosdahl.net>
Wed, 23 Sep 2020 07:41:38 +0000 (09:41 +0200)
src/Digest.hpp
src/Hash.cpp
src/Util.cpp
src/Util.hpp
unittest/test_Util.cpp

index 627088c374789379a452e8b93eed76008876574d..f20684f162375de32e9390af167cb497e8a4add6 100644 (file)
@@ -72,7 +72,7 @@ Digest::size()
 inline std::string
 Digest::to_string() const
 {
-  return Util::format_hex(m_bytes, size());
+  return Util::format_base16(m_bytes, size());
 }
 
 inline bool
index c5b135aaf0ec81e3fe1fbd6f5117490d5deaa09f..bb186b70e13157bed6b79b40d18bab904b1c630c 100644 (file)
@@ -74,7 +74,8 @@ Hash::hash(const void* data, size_t size, HashType hash_type)
 
   switch (hash_type) {
   case HashType::binary:
-    add_debug_text(Util::format_hex(static_cast<const uint8_t*>(data), size));
+    add_debug_text(
+      Util::format_base16(static_cast<const uint8_t*>(data), size));
     break;
 
   case HashType::text:
index 99eaf7880b11fb6d9d874ffcdaf8c7fed337c52b..154a942d390c61fdd7ff1c730cf2d26166926470 100644 (file)
@@ -522,7 +522,7 @@ format_argv_for_logging(const char* const* argv)
 }
 
 std::string
-format_hex(const uint8_t* data, size_t size)
+format_base16(const uint8_t* data, size_t size)
 {
   static const char digits[] = "0123456789abcdef";
   std::string result;
index 01847ecc38cc02e1c6664c4f3f7b53dfae494088..2876b701251f70efab7006ed9120dba79bdb1930 100644 (file)
@@ -168,7 +168,7 @@ std::string format_argv_for_logging(const char* const* argv);
 
 // Format a hexadecimal string representing `size` bytes of `data`. The returned
 // string will be `2 * size` long.
-std::string format_hex(const uint8_t* data, size_t size);
+std::string format_base16(const uint8_t* data, size_t size);
 
 // Format `size` as a human-readable string.
 std::string format_human_readable_size(uint64_t size);
index 3c5c497662e5fd016be644b7297e40bba9c86922..cf3e564970378953498be6fff1193528afe9b708 100644 (file)
@@ -273,15 +273,15 @@ TEST_CASE("Util::format_argv_for_logging")
   CHECK(Util::format_argv_for_logging(argv_2) == "foo bar");
 }
 
-TEST_CASE("Util::format_hex")
+TEST_CASE("Util::format_base16")
 {
   uint8_t none[] = "";
   uint8_t text[4] = "foo"; // incl. NUL
   uint8_t data[4] = {0, 1, 2, 3};
 
-  CHECK(Util::format_hex(none, 0) == "");
-  CHECK(Util::format_hex(text, sizeof(text)) == "666f6f00");
-  CHECK(Util::format_hex(data, sizeof(data)) == "00010203");
+  CHECK(Util::format_base16(none, 0) == "");
+  CHECK(Util::format_base16(text, sizeof(text)) == "666f6f00");
+  CHECK(Util::format_base16(data, sizeof(data)) == "00010203");
 }
 
 TEST_CASE("Util::format_human_readable_size")