Skip to content
Snippets Groups Projects
Commit 15d936e0 authored by Georges Racinet's avatar Georges Racinet
Browse files

RHGitaly: functions for OID handling

Same purpose as Python `hgitaly.oid`, of course more strongly typed.
parent 6737748a
No related branches found
No related tags found
3 merge requests!186Merging stable branch into default,!177Merged oldstable branch for RHGitaly blob methods,!175RHGitaly Blob requests
......@@ -137,6 +137,12 @@
checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
[[package]]
name = "base64"
version = "0.21.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "604178f6c5c21f02dc555784810edfb88d34ac2c73b2eae109655649ee73ce3d"
[[package]]
name = "bitflags"
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
......@@ -1254,6 +1260,7 @@
name = "rhgitaly"
version = "0.1.0"
dependencies = [
"base64 0.21.2",
"build_const",
"bytes",
"derive_more",
......@@ -1533,7 +1540,7 @@
"async-stream",
"async-trait",
"axum",
"base64",
"base64 0.13.1",
"bytes",
"futures-core",
"futures-util",
......
......@@ -7,6 +7,7 @@
hg-core = { path = "../dependencies/hg-core" }
bytes = "*"
base64 = "0.21"
futures-core = "*"
tonic = "0.8"
prost = "0.11"
......
......@@ -19,6 +19,7 @@
pub mod gitlab;
pub mod message;
pub mod metadata;
pub mod oid;
pub mod repository;
pub mod service;
pub mod streaming;
......
// Copyright 2023 Georges Racinet <georges.racinet@octobus.net>
// This software may be used and distributed according to the terms of the
// GNU General Public License version 2 or any later version.
//
// SPDX-License-Identifier: GPL-2.0-or-later
//! Utilities for Object identifiers, mimicking Git in Mercurial context.
//!
//! This matches the `hgitaly.oid` reference Python module
use std::convert::AsRef;
use base64::{engine::general_purpose::STANDARD as BASE64, Engine as _};
use hg::revlog::Node;
use hg::FromHexError;
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum OidError {
/// If the extracted Node ID is ill formed
InvalidNodeId,
/// If the path part is invalid (as base64 in current version)
InvalidPathComponent,
/// For oids that are expected to contain a path (e.g., blob case)
MissingPath,
}
impl From<FromHexError> for OidError {
fn from(_e: FromHexError) -> Self {
Self::InvalidNodeId
}
}
fn concat_chgsid_path<P: AsRef<[u8]> + ?Sized>(changeset_id: &Node, path: &P) -> String {
let mut res = format!("{:x}_", &changeset_id);
res.push_str(&BASE64.encode(path));
res
}
fn split_chgsid_path(oid: &str) -> Result<(Node, Option<Vec<u8>>), OidError> {
Ok(match oid.find('_') {
Some(idx) => (
Node::from_hex(&oid[0..idx])?,
Some(
BASE64
.decode(&oid[idx + 1..])
.map_err(|_| OidError::InvalidPathComponent)?,
),
),
None => (Node::from_hex(oid)?, None),
})
}
pub fn blob_oid<P: AsRef<[u8]> + ?Sized>(changeset_id: &Node, path: &P) -> String {
concat_chgsid_path(changeset_id, path)
}
pub fn extract_blob_oid(oid: &str) -> Result<(Node, Vec<u8>), OidError> {
let (oid, path) = split_chgsid_path(oid)?;
Ok((oid, path.ok_or(OidError::MissingPath)?))
}
#[cfg(test)]
/// Same test data as in Python hgitaly.tests.test_oid
mod tests {
use super::*;
#[test]
fn test_blob_oid() {
let chgs_id = Node::from_hex("56de78ad56de78ad56de78ad56de78ad56de78ad").unwrap();
let path = b"rang\xe9";
let blob_id = blob_oid(&chgs_id, &path);
// explicit same result as Python impl
assert_eq!(blob_id, "56de78ad56de78ad56de78ad56de78ad56de78ad_cmFuZ+k=");
let (decoded_cid, decoded_path) = extract_blob_oid(&blob_id).unwrap();
assert_eq!(decoded_cid, chgs_id);
assert_eq!(decoded_path, path);
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment