clientext.rs
128 lines
| 3.9 KiB
| application/rls-services+xml
|
RustLexer
Yuya Nishihara
|
r40013 | // 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. | ||||
//! cHg extensions to command server client. | ||||
Yuya Nishihara
|
r45174 | use bytes::{BufMut, Bytes, BytesMut}; | ||
Yuya Nishihara
|
r40013 | use std::ffi::OsStr; | ||
Yuya Nishihara
|
r45171 | use std::io; | ||
Yuya Nishihara
|
r45174 | use std::mem; | ||
Yuya Nishihara
|
r40014 | use std::os::unix::ffi::OsStrExt; | ||
Yuya Nishihara
|
r40013 | use std::os::unix::io::AsRawFd; | ||
Yuya Nishihara
|
r40014 | use std::path::Path; | ||
Yuya Nishihara
|
r45171 | use tokio_hglib::protocol::{OneShotQuery, OneShotRequest}; | ||
Yuya Nishihara
|
r40013 | use tokio_hglib::{Client, Connection}; | ||
Yuya Nishihara
|
r45180 | use crate::attachio::AttachIo; | ||
use crate::message::{self, Instruction}; | ||||
use crate::runcommand::ChgRunCommand; | ||||
use crate::uihandler::SystemHandler; | ||||
Yuya Nishihara
|
r40013 | |||
pub trait ChgClientExt<C> | ||||
Gregory Szorc
|
r44270 | where | ||
C: Connection + AsRawFd, | ||||
Yuya Nishihara
|
r40013 | { | ||
/// Attaches the client file descriptors to the server. | ||||
fn attach_io<I, O, E>(self, stdin: I, stdout: O, stderr: E) -> AttachIo<C, I, O, E> | ||||
Gregory Szorc
|
r44270 | where | ||
I: AsRawFd, | ||||
O: AsRawFd, | ||||
E: AsRawFd; | ||||
Yuya Nishihara
|
r40013 | |||
Yuya Nishihara
|
r40014 | /// Changes the working directory of the server. | ||
Yuya Nishihara
|
r45183 | fn set_current_dir(self, dir: impl AsRef<Path>) -> OneShotRequest<C>; | ||
Yuya Nishihara
|
r40014 | |||
Yuya Nishihara
|
r45165 | /// Updates the environment variables of the server. | ||
Yuya Nishihara
|
r45183 | fn set_env_vars_os( | ||
self, | ||||
vars: impl IntoIterator<Item = (impl AsRef<OsStr>, impl AsRef<OsStr>)>, | ||||
) -> OneShotRequest<C>; | ||||
Yuya Nishihara
|
r45165 | |||
Yuya Nishihara
|
r45175 | /// Changes the process title of the server. | ||
Yuya Nishihara
|
r45183 | fn set_process_name(self, name: impl AsRef<OsStr>) -> OneShotRequest<C>; | ||
Yuya Nishihara
|
r45175 | |||
Yuya Nishihara
|
r45174 | /// Changes the umask of the server process. | ||
fn set_umask(self, mask: u32) -> OneShotRequest<C>; | ||||
Yuya Nishihara
|
r40013 | /// Runs the specified Mercurial command with cHg extension. | ||
Yuya Nishihara
|
r45183 | fn run_command_chg<H>( | ||
self, | ||||
handler: H, | ||||
args: impl IntoIterator<Item = impl AsRef<OsStr>>, | ||||
) -> ChgRunCommand<C, H> | ||||
Gregory Szorc
|
r44270 | where | ||
H: SystemHandler; | ||||
Yuya Nishihara
|
r45171 | |||
/// Validates if the server can run Mercurial commands with the expected | ||||
/// configuration. | ||||
/// | ||||
/// The `args` should contain early command arguments such as `--config` | ||||
/// and `-R`. | ||||
/// | ||||
/// Client-side environment must be sent prior to this request, by | ||||
/// `set_current_dir()` and `set_env_vars_os()`. | ||||
Yuya Nishihara
|
r45183 | fn validate( | ||
self, | ||||
args: impl IntoIterator<Item = impl AsRef<OsStr>>, | ||||
) -> OneShotQuery<C, fn(Bytes) -> io::Result<Vec<Instruction>>>; | ||||
Yuya Nishihara
|
r40013 | } | ||
impl<C> ChgClientExt<C> for Client<C> | ||||
Gregory Szorc
|
r44270 | where | ||
C: Connection + AsRawFd, | ||||
Yuya Nishihara
|
r40013 | { | ||
fn attach_io<I, O, E>(self, stdin: I, stdout: O, stderr: E) -> AttachIo<C, I, O, E> | ||||
Gregory Szorc
|
r44270 | where | ||
I: AsRawFd, | ||||
O: AsRawFd, | ||||
E: AsRawFd, | ||||
Yuya Nishihara
|
r40013 | { | ||
AttachIo::with_client(self, stdin, stdout, Some(stderr)) | ||||
} | ||||
Yuya Nishihara
|
r45183 | fn set_current_dir(self, dir: impl AsRef<Path>) -> OneShotRequest<C> { | ||
Yuya Nishihara
|
r40014 | OneShotRequest::start_with_args(self, b"chdir", dir.as_ref().as_os_str().as_bytes()) | ||
} | ||||
Yuya Nishihara
|
r45183 | fn set_env_vars_os( | ||
self, | ||||
vars: impl IntoIterator<Item = (impl AsRef<OsStr>, impl AsRef<OsStr>)>, | ||||
) -> OneShotRequest<C> { | ||||
Yuya Nishihara
|
r45165 | OneShotRequest::start_with_args(self, b"setenv", message::pack_env_vars_os(vars)) | ||
} | ||||
Yuya Nishihara
|
r45183 | fn set_process_name(self, name: impl AsRef<OsStr>) -> OneShotRequest<C> { | ||
Yuya Nishihara
|
r45175 | OneShotRequest::start_with_args(self, b"setprocname", name.as_ref().as_bytes()) | ||
} | ||||
Yuya Nishihara
|
r45174 | fn set_umask(self, mask: u32) -> OneShotRequest<C> { | ||
let mut args = BytesMut::with_capacity(mem::size_of_val(&mask)); | ||||
Yuya Nishihara
|
r45231 | args.put_u32(mask); | ||
Yuya Nishihara
|
r45174 | OneShotRequest::start_with_args(self, b"setumask2", args) | ||
} | ||||
Yuya Nishihara
|
r45183 | fn run_command_chg<H>( | ||
self, | ||||
handler: H, | ||||
args: impl IntoIterator<Item = impl AsRef<OsStr>>, | ||||
) -> ChgRunCommand<C, H> | ||||
Gregory Szorc
|
r44270 | where | ||
H: SystemHandler, | ||||
Yuya Nishihara
|
r40013 | { | ||
ChgRunCommand::with_client(self, handler, message::pack_args_os(args)) | ||||
} | ||||
Yuya Nishihara
|
r45171 | |||
Yuya Nishihara
|
r45183 | fn validate( | ||
self, | ||||
args: impl IntoIterator<Item = impl AsRef<OsStr>>, | ||||
) -> OneShotQuery<C, fn(Bytes) -> io::Result<Vec<Instruction>>> { | ||||
Yuya Nishihara
|
r45171 | OneShotQuery::start_with_args( | ||
self, | ||||
b"validate", | ||||
message::pack_args_os(args), | ||||
message::parse_instructions, | ||||
) | ||||
} | ||||
Yuya Nishihara
|
r40013 | } | ||