##// END OF EJS Templates
sharesafe: introduce functionality to automatically upgrade shares...
sharesafe: introduce functionality to automatically upgrade shares In past few months, we have developed a `share-safe` mode for sharing repository in which share source requirements and config values are shared with the shares. To get it rolling, an important task is to get these shares automatically upgraded. We are focusing on an installation where shares are created by scripts and test jobs. It will be difficult to manually upgrade these and we need some functionality to do so automatically. This patch introduces a config option to deal with it. If all of the following conditions are met, we upgrade the share repository automatically: * If the config option is enabled * Share source repository is share-safe enabled * Share is not share-safe enabled * Any command is run in the share Upgrading the share is pretty easy as it involves only editing the requirements file. Differential Revision: https://phab.mercurial-scm.org/D9679

File last commit:

r46195:426294d0 default
r46852:0babe12e default
Show More
runcommand.rs
66 lines | 2.4 KiB | application/rls-services+xml | RustLexer
Yuya Nishihara
rust-chg: add state machine to handle "runcommand" request with cHg extension...
r40011 // Copyright 2018 Yuya Nishihara <yuya@tcha.org>
//
// This software may be used and distributed according to the terms of the
// GNU General Public License version 2 or any later version.
//! Functions to run Mercurial command in cHg-aware command server.
use bytes::Bytes;
use std::io;
use std::os::unix::io::AsRawFd;
use tokio_hglib::codec::ChannelMessage;
Yuya Nishihara
rust-chg: reimplement run_command operation as async function...
r45235 use tokio_hglib::{Connection, Protocol};
Yuya Nishihara
rust-chg: add state machine to handle "runcommand" request with cHg extension...
r40011
Yuya Nishihara
rust-chg: reimplement run_command operation as async function...
r45235 use crate::attachio;
Yuya Nishihara
rust-chg: use "crate::" to import local modules...
r45180 use crate::message::{self, CommandType};
use crate::uihandler::SystemHandler;
Yuya Nishihara
rust-chg: add state machine to handle "runcommand" request with cHg extension...
r40011
Yuya Nishihara
rust-chg: reimplement run_command operation as async function...
r45235 /// Runs the given Mercurial command in cHg-aware command server, and
/// fetches the result code.
///
/// This is a subset of tokio-hglib's `run_command()` with the additional
/// SystemRequest support.
pub async fn run_command(
proto: &mut Protocol<impl Connection + AsRawFd>,
handler: &mut impl SystemHandler,
packed_args: impl Into<Bytes>,
) -> io::Result<i32> {
proto
.send_command_with_args("runcommand", packed_args)
.await?;
loop {
match proto.fetch_response().await? {
Yuya Nishihara
rust-chg: indent process_message() to prepare mass rewrite to futures-0.3...
r45185 ChannelMessage::Data(b'r', data) => {
Yuya Nishihara
rust-chg: reimplement run_command operation as async function...
r45235 return message::parse_result_code(data);
Yuya Nishihara
rust-chg: indent process_message() to prepare mass rewrite to futures-0.3...
r45185 }
ChannelMessage::Data(..) => {
// just ignores data sent to optional channel
}
Martin von Zweigbergk
rust: move rustfmt.toml to repo root so it can be used by `hg fix`...
r46195 ChannelMessage::InputRequest(..)
| ChannelMessage::LineRequest(..) => {
Yuya Nishihara
rust-chg: reimplement run_command operation as async function...
r45235 return Err(io::Error::new(
io::ErrorKind::InvalidData,
"unsupported request",
));
}
Yuya Nishihara
rust-chg: indent process_message() to prepare mass rewrite to futures-0.3...
r45185 ChannelMessage::SystemRequest(data) => {
let (cmd_type, cmd_spec) = message::parse_command_spec(data)?;
match cmd_type {
CommandType::Pager => {
Yuya Nishihara
rust-chg: reimplement run_command operation as async function...
r45235 // server spins new command loop while pager request is
// in progress, which can be terminated by "" command.
let pin = handler.spawn_pager(&cmd_spec).await?;
Martin von Zweigbergk
rust: move rustfmt.toml to repo root so it can be used by `hg fix`...
r46195 attachio::attach_io(proto, &io::stdin(), &pin, &pin)
.await?;
Yuya Nishihara
rust-chg: reimplement run_command operation as async function...
r45235 proto.send_command("").await?; // terminator
Yuya Nishihara
rust-chg: indent process_message() to prepare mass rewrite to futures-0.3...
r45185 }
CommandType::System => {
Yuya Nishihara
rust-chg: reimplement run_command operation as async function...
r45235 let code = handler.run_system(&cmd_spec).await?;
let data = message::pack_result_code(code);
proto.send_data(data).await?;
Yuya Nishihara
rust-chg: indent process_message() to prepare mass rewrite to futures-0.3...
r45185 }
Yuya Nishihara
rust-chg: add state machine to handle "runcommand" request with cHg extension...
r40011 }
}
}
}
}