gix_actor/signature/
mod.rsmod _ref {
use bstr::ByteSlice;
use winnow::{error::StrContext, prelude::*};
use crate::{signature::decode, IdentityRef, Signature, SignatureRef};
impl<'a> SignatureRef<'a> {
pub fn from_bytes<E>(mut data: &'a [u8]) -> Result<SignatureRef<'a>, winnow::error::ErrMode<E>>
where
E: winnow::error::ParserError<&'a [u8]> + winnow::error::AddContext<&'a [u8], StrContext>,
{
decode.parse_next(&mut data)
}
pub fn to_owned(&self) -> Signature {
Signature {
name: self.name.to_owned(),
email: self.email.to_owned(),
time: self.time,
}
}
pub fn trim(&self) -> SignatureRef<'a> {
SignatureRef {
name: self.name.trim().as_bstr(),
email: self.email.trim().as_bstr(),
time: self.time,
}
}
pub fn actor(&self) -> IdentityRef<'a> {
IdentityRef {
name: self.name,
email: self.email,
}
}
}
}
mod convert {
use crate::{Signature, SignatureRef};
impl Signature {
pub fn to_ref(&self) -> SignatureRef<'_> {
SignatureRef {
name: self.name.as_ref(),
email: self.email.as_ref(),
time: self.time,
}
}
}
impl From<SignatureRef<'_>> for Signature {
fn from(other: SignatureRef<'_>) -> Signature {
let SignatureRef { name, email, time } = other;
Signature {
name: name.to_owned(),
email: email.to_owned(),
time,
}
}
}
impl<'a> From<&'a Signature> for SignatureRef<'a> {
fn from(other: &'a Signature) -> SignatureRef<'a> {
other.to_ref()
}
}
}
pub(crate) mod write {
use bstr::{BStr, ByteSlice};
use crate::{Signature, SignatureRef};
#[derive(Debug, thiserror::Error)]
#[allow(missing_docs)]
pub(crate) enum Error {
#[error("Signature name or email must not contain '<', '>' or \\n")]
IllegalCharacter,
}
impl From<Error> for std::io::Error {
fn from(err: Error) -> Self {
std::io::Error::new(std::io::ErrorKind::Other, err)
}
}
impl Signature {
pub fn write_to(&self, out: &mut dyn std::io::Write) -> std::io::Result<()> {
self.to_ref().write_to(out)
}
pub fn size(&self) -> usize {
self.to_ref().size()
}
}
impl SignatureRef<'_> {
pub fn write_to(&self, out: &mut dyn std::io::Write) -> std::io::Result<()> {
out.write_all(validated_token(self.name)?)?;
out.write_all(b" ")?;
out.write_all(b"<")?;
out.write_all(validated_token(self.email)?)?;
out.write_all(b"> ")?;
self.time.write_to(out)
}
pub fn size(&self) -> usize {
self.name.len() + 2 + self.email.len() + 2 + self.time.size()
}
}
pub(crate) fn validated_token(name: &BStr) -> Result<&BStr, Error> {
if name.find_byteset(b"<>\n").is_some() {
return Err(Error::IllegalCharacter);
}
Ok(name)
}
}
pub mod decode;
pub use decode::function::decode;