##// END OF EJS Templates
py3: unbyteify arguments to warnings.filterwarnings()...
py3: unbyteify arguments to warnings.filterwarnings() This fixes a crash when trying to import the convert extension on Python 3.

File last commit:

r45236:d6f70692 default
r45490:4888adfb stable
Show More
clientext.rs
128 lines | 3.9 KiB | application/rls-services+xml | RustLexer
Yuya Nishihara
rust-chg: add Client extensions to run cHg-specific requests...
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
rust-chg: send client side umask to server...
r45174 use bytes::{BufMut, Bytes, BytesMut};
Yuya Nishihara
rust-chg: add Client extensions to run cHg-specific requests...
r40013 use std::ffi::OsStr;
Yuya Nishihara
rust-chg: add interface to run "validate" request...
r45171 use std::io;
Yuya Nishihara
rust-chg: send client side umask to server...
r45174 use std::mem;
Yuya Nishihara
rust-chg: add interface to chdir the server
r40014 use std::os::unix::ffi::OsStrExt;
Yuya Nishihara
rust-chg: add Client extensions to run cHg-specific requests...
r40013 use std::os::unix::io::AsRawFd;
Yuya Nishihara
rust-chg: add interface to chdir the server
r40014 use std::path::Path;
Yuya Nishihara
rust-chg: add interface to run "validate" request...
r45171 use tokio_hglib::protocol::{OneShotQuery, OneShotRequest};
Yuya Nishihara
rust-chg: add Client extensions to run cHg-specific requests...
r40013 use tokio_hglib::{Client, Connection};
Yuya Nishihara
rust-chg: use "crate::" to import local modules...
r45180 use crate::attachio::AttachIo;
use crate::message::{self, Instruction};
use crate::runcommand::ChgRunCommand;
use crate::uihandler::SystemHandler;
Yuya Nishihara
rust-chg: add Client extensions to run cHg-specific requests...
r40013
pub trait ChgClientExt<C>
Gregory Szorc
rust: run rustfmt...
r44270 where
C: Connection + AsRawFd,
Yuya Nishihara
rust-chg: add Client extensions to run cHg-specific requests...
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
rust: run rustfmt...
r44270 where
I: AsRawFd,
O: AsRawFd,
E: AsRawFd;
Yuya Nishihara
rust-chg: add Client extensions to run cHg-specific requests...
r40013
Yuya Nishihara
rust-chg: add interface to chdir the server
r40014 /// Changes the working directory of the server.
Yuya Nishihara
rust-chg: leverage impl trait at argument position...
r45183 fn set_current_dir(self, dir: impl AsRef<Path>) -> OneShotRequest<C>;
Yuya Nishihara
rust-chg: add interface to chdir the server
r40014
Yuya Nishihara
rust-chg: send client-side environment variables to server...
r45165 /// Updates the environment variables of the server.
Yuya Nishihara
rust-chg: leverage impl trait at argument position...
r45183 fn set_env_vars_os(
self,
vars: impl IntoIterator<Item = (impl AsRef<OsStr>, impl AsRef<OsStr>)>,
) -> OneShotRequest<C>;
Yuya Nishihara
rust-chg: send client-side environment variables to server...
r45165
Yuya Nishihara
rust-chg: update name of the server process...
r45175 /// Changes the process title of the server.
Yuya Nishihara
rust-chg: leverage impl trait at argument position...
r45183 fn set_process_name(self, name: impl AsRef<OsStr>) -> OneShotRequest<C>;
Yuya Nishihara
rust-chg: update name of the server process...
r45175
Yuya Nishihara
rust-chg: send client side umask to server...
r45174 /// Changes the umask of the server process.
fn set_umask(self, mask: u32) -> OneShotRequest<C>;
Yuya Nishihara
rust-chg: add Client extensions to run cHg-specific requests...
r40013 /// Runs the specified Mercurial command with cHg extension.
Yuya Nishihara
rust-chg: leverage impl trait at argument position...
r45183 fn run_command_chg<H>(
self,
handler: H,
args: impl IntoIterator<Item = impl AsRef<OsStr>>,
) -> ChgRunCommand<C, H>
Gregory Szorc
rust: run rustfmt...
r44270 where
H: SystemHandler;
Yuya Nishihara
rust-chg: add interface to run "validate" request...
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
rust-chg: leverage impl trait at argument position...
r45183 fn validate(
self,
args: impl IntoIterator<Item = impl AsRef<OsStr>>,
) -> OneShotQuery<C, fn(Bytes) -> io::Result<Vec<Instruction>>>;
Yuya Nishihara
rust-chg: add Client extensions to run cHg-specific requests...
r40013 }
impl<C> ChgClientExt<C> for Client<C>
Gregory Szorc
rust: run rustfmt...
r44270 where
C: Connection + AsRawFd,
Yuya Nishihara
rust-chg: add Client extensions to run cHg-specific requests...
r40013 {
fn attach_io<I, O, E>(self, stdin: I, stdout: O, stderr: E) -> AttachIo<C, I, O, E>
Gregory Szorc
rust: run rustfmt...
r44270 where
I: AsRawFd,
O: AsRawFd,
E: AsRawFd,
Yuya Nishihara
rust-chg: add Client extensions to run cHg-specific requests...
r40013 {
AttachIo::with_client(self, stdin, stdout, Some(stderr))
}
Yuya Nishihara
rust-chg: leverage impl trait at argument position...
r45183 fn set_current_dir(self, dir: impl AsRef<Path>) -> OneShotRequest<C> {
Yuya Nishihara
rust-chg: add interface to chdir the server
r40014 OneShotRequest::start_with_args(self, b"chdir", dir.as_ref().as_os_str().as_bytes())
}
Yuya Nishihara
rust-chg: leverage impl trait at argument position...
r45183 fn set_env_vars_os(
self,
vars: impl IntoIterator<Item = (impl AsRef<OsStr>, impl AsRef<OsStr>)>,
) -> OneShotRequest<C> {
Yuya Nishihara
rust-chg: send client-side environment variables to server...
r45165 OneShotRequest::start_with_args(self, b"setenv", message::pack_env_vars_os(vars))
}
Yuya Nishihara
rust-chg: leverage impl trait at argument position...
r45183 fn set_process_name(self, name: impl AsRef<OsStr>) -> OneShotRequest<C> {
Yuya Nishihara
rust-chg: update name of the server process...
r45175 OneShotRequest::start_with_args(self, b"setprocname", name.as_ref().as_bytes())
}
Yuya Nishihara
rust-chg: send client side umask to server...
r45174 fn set_umask(self, mask: u32) -> OneShotRequest<C> {
let mut args = BytesMut::with_capacity(mem::size_of_val(&mask));
args.put_u32_be(mask);
OneShotRequest::start_with_args(self, b"setumask2", args)
}
Yuya Nishihara
rust-chg: leverage impl trait at argument position...
r45183 fn run_command_chg<H>(
self,
handler: H,
args: impl IntoIterator<Item = impl AsRef<OsStr>>,
) -> ChgRunCommand<C, H>
Gregory Szorc
rust: run rustfmt...
r44270 where
H: SystemHandler,
Yuya Nishihara
rust-chg: add Client extensions to run cHg-specific requests...
r40013 {
ChgRunCommand::with_client(self, handler, message::pack_args_os(args))
}
Yuya Nishihara
rust-chg: add interface to run "validate" request...
r45171
Yuya Nishihara
rust-chg: leverage impl trait at argument position...
r45183 fn validate(
self,
args: impl IntoIterator<Item = impl AsRef<OsStr>>,
) -> OneShotQuery<C, fn(Bytes) -> io::Result<Vec<Instruction>>> {
Yuya Nishihara
rust-chg: add interface to run "validate" request...
r45171 OneShotQuery::start_with_args(
self,
b"validate",
message::pack_args_os(args),
message::parse_instructions,
)
}
Yuya Nishihara
rust-chg: add Client extensions to run cHg-specific requests...
r40013 }