mirror of
https://github.com/martinvonz/jj.git
synced 2025-05-05 15:32:49 +00:00
71 lines
2.5 KiB
Rust
71 lines
2.5 KiB
Rust
// Copyright 2020 The Jujutsu Authors
|
|
//
|
|
// Licensed 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
|
|
//
|
|
// https://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 file contains the internal implementation of `run`.
|
|
|
|
use itertools::Itertools as _;
|
|
|
|
use crate::cli_util::CommandHelper;
|
|
use crate::cli_util::RevisionArg;
|
|
use crate::command_error::user_error;
|
|
use crate::command_error::CommandError;
|
|
use crate::ui::Ui;
|
|
|
|
/// (**Stub**, does not work yet) Run a command across a set of revisions.
|
|
///
|
|
///
|
|
/// All recorded state will be persisted in the `.jj` directory, so occasionally
|
|
/// a `jj run --clean` is needed to clean up disk space.
|
|
///
|
|
/// # Example
|
|
///
|
|
/// # Run pre-commit on your local work
|
|
/// $ jj run 'pre-commit run .github/pre-commit.yaml' -r (trunk()..@) -j 4
|
|
///
|
|
/// This allows pre-commit integration and other funny stuff.
|
|
#[derive(clap::Args, Clone, Debug)]
|
|
#[command(verbatim_doc_comment)]
|
|
pub struct RunArgs {
|
|
/// The command to run across all selected revisions.
|
|
shell_command: String,
|
|
/// The revisions to change.
|
|
#[arg(long, short, default_value = "@")]
|
|
revisions: Vec<RevisionArg>,
|
|
/// A no-op option to match the interface of `git rebase -x`.
|
|
#[arg(short = 'x', hide = true)]
|
|
unused_command: bool,
|
|
/// How many processes should run in parallel, uses by default all cores.
|
|
#[arg(long, short)]
|
|
jobs: Option<usize>,
|
|
}
|
|
|
|
pub fn cmd_run(ui: &mut Ui, command: &CommandHelper, args: &RunArgs) -> Result<(), CommandError> {
|
|
let workspace_command = command.workspace_helper(ui)?;
|
|
let _resolved_commits: Vec<_> = workspace_command
|
|
.parse_union_revsets(&args.revisions)?
|
|
.evaluate_to_commits()?
|
|
.try_collect()?;
|
|
// Jobs are resolved in this order:
|
|
// 1. Commandline argument iff > 0.
|
|
// 2. the amount of cores available.
|
|
// 3. a single job, if all of the above fails.
|
|
let _jobs = match args.jobs {
|
|
Some(0) | None => std::thread::available_parallelism().map(|t| t.into()).ok(),
|
|
Some(jobs) => Some(jobs),
|
|
}
|
|
// Fallback to a single user-visible job.
|
|
.unwrap_or(1usize);
|
|
Err(user_error("This is a stub, do not use"))
|
|
}
|