author | Yuya Nishihara <yuya@tcha.org> |
Sat, 06 Oct 2018 20:10:44 +0900 | |
changeset 44671 | bb936e25a84a |
parent 39977 | 74da9d999cd7 |
child 44688 | 1f5ab1a9363d |
permissions | -rw-r--r-- |
39970
a8be2cff613f
rust-chg: add wrapper around C function
Yuya Nishihara <yuya@tcha.org>
parents:
39967
diff
changeset
|
1 |
// Copyright 2018 Yuya Nishihara <yuya@tcha.org> |
a8be2cff613f
rust-chg: add wrapper around C function
Yuya Nishihara <yuya@tcha.org>
parents:
39967
diff
changeset
|
2 |
// |
a8be2cff613f
rust-chg: add wrapper around C function
Yuya Nishihara <yuya@tcha.org>
parents:
39967
diff
changeset
|
3 |
// This software may be used and distributed according to the terms of the |
a8be2cff613f
rust-chg: add wrapper around C function
Yuya Nishihara <yuya@tcha.org>
parents:
39967
diff
changeset
|
4 |
// GNU General Public License version 2 or any later version. |
a8be2cff613f
rust-chg: add wrapper around C function
Yuya Nishihara <yuya@tcha.org>
parents:
39967
diff
changeset
|
5 |
|
39971
b1d8acd82d60
rust-chg: add parser for request messages sent to "S" channel
Yuya Nishihara <yuya@tcha.org>
parents:
39970
diff
changeset
|
6 |
extern crate bytes; |
39972
7a0ffdd4af78
rust-chg: add future that handles "attachio" request
Yuya Nishihara <yuya@tcha.org>
parents:
39971
diff
changeset
|
7 |
#[macro_use] |
7a0ffdd4af78
rust-chg: add future that handles "attachio" request
Yuya Nishihara <yuya@tcha.org>
parents:
39971
diff
changeset
|
8 |
extern crate futures; |
39970
a8be2cff613f
rust-chg: add wrapper around C function
Yuya Nishihara <yuya@tcha.org>
parents:
39967
diff
changeset
|
9 |
extern crate libc; |
44671
bb936e25a84a
rust-chg: spawn server process if not running
Yuya Nishihara <yuya@tcha.org>
parents:
39977
diff
changeset
|
10 |
#[macro_use] |
bb936e25a84a
rust-chg: spawn server process if not running
Yuya Nishihara <yuya@tcha.org>
parents:
39977
diff
changeset
|
11 |
extern crate log; |
39972
7a0ffdd4af78
rust-chg: add future that handles "attachio" request
Yuya Nishihara <yuya@tcha.org>
parents:
39971
diff
changeset
|
12 |
extern crate tokio; |
39971
b1d8acd82d60
rust-chg: add parser for request messages sent to "S" channel
Yuya Nishihara <yuya@tcha.org>
parents:
39970
diff
changeset
|
13 |
extern crate tokio_hglib; |
39974
a9c5fc436fd5
rust-chg: add callback to handle pager and shell command requests
Yuya Nishihara <yuya@tcha.org>
parents:
39972
diff
changeset
|
14 |
extern crate tokio_process; |
44671
bb936e25a84a
rust-chg: spawn server process if not running
Yuya Nishihara <yuya@tcha.org>
parents:
39977
diff
changeset
|
15 |
extern crate tokio_timer; |
39970
a8be2cff613f
rust-chg: add wrapper around C function
Yuya Nishihara <yuya@tcha.org>
parents:
39967
diff
changeset
|
16 |
|
39977
74da9d999cd7
rust-chg: add Client extensions to run cHg-specific requests
Yuya Nishihara <yuya@tcha.org>
parents:
39976
diff
changeset
|
17 |
mod attachio; |
74da9d999cd7
rust-chg: add Client extensions to run cHg-specific requests
Yuya Nishihara <yuya@tcha.org>
parents:
39976
diff
changeset
|
18 |
mod clientext; |
39976
44840bcc411a
rust-chg: port basic socket path handling from cHg of C
Yuya Nishihara <yuya@tcha.org>
parents:
39975
diff
changeset
|
19 |
pub mod locator; |
39971
b1d8acd82d60
rust-chg: add parser for request messages sent to "S" channel
Yuya Nishihara <yuya@tcha.org>
parents:
39970
diff
changeset
|
20 |
pub mod message; |
39970
a8be2cff613f
rust-chg: add wrapper around C function
Yuya Nishihara <yuya@tcha.org>
parents:
39967
diff
changeset
|
21 |
pub mod procutil; |
39977
74da9d999cd7
rust-chg: add Client extensions to run cHg-specific requests
Yuya Nishihara <yuya@tcha.org>
parents:
39976
diff
changeset
|
22 |
mod runcommand; |
39974
a9c5fc436fd5
rust-chg: add callback to handle pager and shell command requests
Yuya Nishihara <yuya@tcha.org>
parents:
39972
diff
changeset
|
23 |
mod uihandler; |
a9c5fc436fd5
rust-chg: add callback to handle pager and shell command requests
Yuya Nishihara <yuya@tcha.org>
parents:
39972
diff
changeset
|
24 |
|
39977
74da9d999cd7
rust-chg: add Client extensions to run cHg-specific requests
Yuya Nishihara <yuya@tcha.org>
parents:
39976
diff
changeset
|
25 |
pub use clientext::ChgClientExt; |
39974
a9c5fc436fd5
rust-chg: add callback to handle pager and shell command requests
Yuya Nishihara <yuya@tcha.org>
parents:
39972
diff
changeset
|
26 |
pub use uihandler::{ChgUiHandler, SystemHandler}; |