oxen-cli 0.48.3

Oxen is a fast, unstructured data version control, to help version large machine learning datasets written in Rust.
use async_trait::async_trait;
use clap::{Arg, Command, arg};
use liboxen::error::OxenError;
use liboxen::model::LocalRepository;

use liboxen::repositories;

use crate::helpers::check_repo_migration_needed;

use crate::cmd::RunCmd;
pub const NAME: &str = "merge";
pub struct MergeCmd;

#[async_trait]
impl RunCmd for MergeCmd {
    fn name(&self) -> &str {
        NAME
    }

    fn args(&self) -> Command {
        Command::new(NAME)
            .about("Merges a branch into the current checked out branch.")
            .arg(
                arg!([BRANCH] "The name of the branch you want to merge in.")
                    .required_unless_present("abort"),
            )
            .arg(
                Arg::new("abort")
                    .long("abort")
                    .help("Abandon an interrupted or in-conflict merge and restore HEAD.")
                    .action(clap::ArgAction::SetTrue)
                    .conflicts_with("BRANCH"),
            )
    }

    async fn run(&self, args: &clap::ArgMatches) -> Result<(), OxenError> {
        let repository = LocalRepository::from_current_dir()?;

        // Don't allow in remote mode
        if repository.is_remote_mode() {
            return Err(OxenError::basic_str(
                "Error: Command 'oxen merge' not implemented for remote mode repositories",
            ));
        }

        check_repo_migration_needed(&repository)?;

        if args.get_flag("abort") {
            repositories::merge::abort_merge(&repository).await?;
            return Ok(());
        }

        let branch = args.get_one::<String>("BRANCH").expect("required");

        // Return immediately if the merge branch is the current branch
        let current = if let Some(current) = repositories::branches::current_branch(&repository)? {
            current
        } else {
            return Err(OxenError::basic_str(
                "Error: Cannot use 'oxen merge' in an empty repository",
            ));
        };

        if current.name == *branch {
            return Err(OxenError::basic_str(
                "Error: Cannot merge into current branch",
            ));
        }

        repositories::merge::merge(&repository, branch).await?;
        Ok(())
    }
}