parquet 58.1.0

Apache Parquet implementation in Rust
#!/usr/bin/env python

# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements.  See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership.  The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License.  You may obtain a copy of the License at
#
#   http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied.  See the License for the
# specific language governing permissions and limitations
# under the License.

"""
Produce the given number gearhash tables for rolling hash calculations.

Each table consists of 256 64-bit integer values and by default 8 tables are
produced. The tables are written to a Rust source file.

The generated numbers are deterministic "random" numbers created by MD5 hashing
a fixed seed and the table index. This ensures that the tables are the same
across different runs and platforms. The function of generating the numbers is
less important as long as they have sufficiently uniform distribution.

Reference implementations:
- https://github.com/Borelset/destor/blob/master/src/chunking/fascdc_chunking.c
- https://github.com/nlfiedler/fastcdc-rs/blob/master/examples/table64.rs

Usage:
    python cdc_codegen.py [ntables]

    ntables: Number of gearhash tables to generate (default 8).

    The generated source file is written to ./cdc_generated.rs
"""

import hashlib
import pathlib
import sys
from io import StringIO


template = """\
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements.  See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership.  The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License.  You may obtain a copy of the License at
//
//   http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied.  See the License for the
// specific language governing permissions and limitations
// under the License.

// This table should be identical with
// https://github.com/apache/arrow/blob/main/cpp/src/parquet/chunker_internal_generated.h
// Ensure that both tables remain in sync after any changes.

#[rustfmt::skip]
pub(crate) const NUM_GEARHASH_TABLES: usize = {ntables};

#[rustfmt::skip]
pub(crate) const GEARHASH_TABLE: [[u64; 256]; NUM_GEARHASH_TABLES] = [
{content}];
"""


def generate_hash(n: int, seed: int):
    """Produce predictable hash values for a given seed and n using MD5.

    The value can be arbitrary as long as it is deterministic and has a uniform
    distribution. The MD5 hash is used to produce a 16 character hexadecimal
    string which is then converted to a 64-bit integer.
    """
    value = bytes([seed] * 64 + [n] * 64)
    hasher = hashlib.md5(value)
    return hasher.hexdigest()[:16]


def generate_hashtable(seed: int, length=256):
    """Generate and render a single gearhash table."""
    table = [generate_hash(n, seed=seed) for n in range(length)]

    out = StringIO()
    out.write(f"    // seed = {seed}\n")
    out.write("    [\n")
    for i in range(0, length, 4):
        values = [f"0x{value}" for value in table[i : i + 4]]
        out.write(f"        {', '.join(values)},\n")
    out.write("    ]")

    return out.getvalue()


def generate_source(ntables=8, relative_path="cdc_generated.rs"):
    """Generate a Rust source file with multiple gearhash tables."""
    path = pathlib.Path(__file__).parent / relative_path
    tables = [generate_hashtable(seed) for seed in range(ntables)]
    content = ",\n".join(tables)
    text = template.format(ntables=ntables, content=content)
    path.write_text(text)


if __name__ == "__main__":
    ntables = int(sys.argv[1]) if len(sys.argv) > 1 else 8
    generate_source(ntables)