crc32c.h 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. // Copyright (c) 2011-present, Facebook, Inc. All rights reserved.
  2. // This source code is licensed under both the GPLv2 (found in the
  3. // COPYING file in the root directory) and Apache 2.0 License
  4. // (found in the LICENSE.Apache file in the root directory).
  5. //
  6. // Copyright (c) 2011 The LevelDB Authors. All rights reserved.
  7. // Use of this source code is governed by a BSD-style license that can be
  8. // found in the LICENSE file. See the AUTHORS file for names of contributors.
  9. #pragma once
  10. #include <stddef.h>
  11. #include <stdint.h>
  12. #include <string>
  13. #include "rocksdb/rocksdb_namespace.h"
  14. namespace ROCKSDB_NAMESPACE {
  15. namespace crc32c {
  16. std::string IsFastCrc32Supported();
  17. // Return the crc32c of concat(A, data[0,n-1]) where init_crc is the
  18. // crc32c of some string A. Extend() is often used to maintain the
  19. // crc32c of a stream of data.
  20. uint32_t Extend(uint32_t init_crc, const char* data, size_t n);
  21. // Takes two unmasked crc32c values, and the length of the string from
  22. // which `crc2` was computed, and computes a crc32c value for the
  23. // concatenation of the original two input strings. Running time is
  24. // ~ log(crc2len).
  25. uint32_t Crc32cCombine(uint32_t crc1, uint32_t crc2, size_t crc2len);
  26. // Return the crc32c of data[0,n-1]
  27. inline uint32_t Value(const char* data, size_t n) { return Extend(0, data, n); }
  28. static const uint32_t kMaskDelta = 0xa282ead8ul;
  29. // Return a masked representation of crc.
  30. //
  31. // Motivation: it is problematic to compute the CRC of a string that
  32. // contains embedded CRCs. Therefore we recommend that CRCs stored
  33. // somewhere (e.g., in files) should be masked before being stored.
  34. inline uint32_t Mask(uint32_t crc) {
  35. // Rotate right by 15 bits and add a constant.
  36. return ((crc >> 15) | (crc << 17)) + kMaskDelta;
  37. }
  38. // Return the crc whose masked representation is masked_crc.
  39. inline uint32_t Unmask(uint32_t masked_crc) {
  40. uint32_t rot = masked_crc - kMaskDelta;
  41. return ((rot >> 17) | (rot << 15));
  42. }
  43. } // namespace crc32c
  44. } // namespace ROCKSDB_NAMESPACE