/Users/deen/code/yugabyte-db/src/yb/util/crc.cc
Line | Count | Source |
1 | | // Licensed to the Apache Software Foundation (ASF) under one |
2 | | // or more contributor license agreements. See the NOTICE file |
3 | | // distributed with this work for additional information |
4 | | // regarding copyright ownership. The ASF licenses this file |
5 | | // to you under the Apache License, Version 2.0 (the |
6 | | // "License"); you may not use this file except in compliance |
7 | | // with the License. You may obtain a copy of the License at |
8 | | // |
9 | | // http://www.apache.org/licenses/LICENSE-2.0 |
10 | | // |
11 | | // Unless required by applicable law or agreed to in writing, |
12 | | // software distributed under the License is distributed on an |
13 | | // "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
14 | | // KIND, either express or implied. See the License for the |
15 | | // specific language governing permissions and limitations |
16 | | // under the License. |
17 | | // |
18 | | // The following only applies to changes made to this file as part of YugaByte development. |
19 | | // |
20 | | // Portions Copyright (c) YugaByte, Inc. |
21 | | // |
22 | | // Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except |
23 | | // in compliance with the License. You may obtain a copy of the License at |
24 | | // |
25 | | // http://www.apache.org/licenses/LICENSE-2.0 |
26 | | // |
27 | | // Unless required by applicable law or agreed to in writing, software distributed under the License |
28 | | // is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express |
29 | | // or implied. See the License for the specific language governing permissions and limitations |
30 | | // under the License. |
31 | | // |
32 | | #include "yb/util/crc.h" |
33 | | |
34 | | #include <crcutil/interface.h> |
35 | | |
36 | | #include "yb/gutil/once.h" |
37 | | #include "yb/util/debug/leakcheck_disabler.h" |
38 | | |
39 | | namespace yb { |
40 | | namespace crc { |
41 | | |
42 | | using debug::ScopedLeakCheckDisabler; |
43 | | |
44 | | static GoogleOnceType crc32c_once = GOOGLE_ONCE_INIT; |
45 | | static Crc* crc32c_instance = nullptr; |
46 | | |
47 | 10.9k | static void InitCrc32cInstance() { |
48 | 10.9k | ScopedLeakCheckDisabler disabler; // CRC instance is never freed. |
49 | | // TODO: Is initial = 0 and roll window = 4 appropriate for all cases? |
50 | 10.9k | crc32c_instance = crcutil_interface::CRC::CreateCrc32c(true, 0, 4, nullptr); |
51 | 10.9k | } |
52 | | |
53 | 35.1M | Crc* GetCrc32cInstance() { |
54 | 35.1M | GoogleOnceInit(&crc32c_once, &InitCrc32cInstance); |
55 | 35.1M | return crc32c_instance; |
56 | 35.1M | } |
57 | | |
58 | 34.7M | uint32_t Crc32c(const void* data, size_t length) { |
59 | 34.7M | uint64_t crc32 = 0; |
60 | 34.7M | GetCrc32cInstance()->Compute(data, length, &crc32); |
61 | 34.7M | return static_cast<uint32_t>(crc32); // Only uses lower 32 bits. |
62 | 34.7M | } |
63 | | |
64 | | } // namespace crc |
65 | | } // namespace yb |