[][src]Struct adbfbinlib::ctrl::Ctrl

pub struct Ctrl {
    peer_id: PeerId,
    paths: Arc<Mutex<SearchPath>>,
    with_net: bool,
}

The controller holds user interfaces as webui, tui. It currently creates and runs the user interfaces, distributes messages and sends out messages to be used somewhere else.

Fields

peer_id: PeerIdpaths: Arc<Mutex<SearchPath>>with_net: bool

Implementations

impl Ctrl[src]

fn new(new_id: PeerId, paths: Arc<Mutex<SearchPath>>, with_net: bool) -> Self[src]

Create a new controller if everything fits.

Arguments

  • 'peer_id' - The peer_id this client/server uses
  • 'paths' - The paths that will be searched
  • 'with_net' - If ctrl should consider net messages

pub fn run(
    new_id: PeerId,
    paths: Arc<Mutex<SearchPath>>,
    receiver: CReceiver<UiUpdateMsg>,
    with_net: bool,
    wait_main: WaitGroup,
    has_webui: bool,
    has_tui: bool,
    open_browser: bool,
    web_port: u16
) -> Result<(), Error>
[src]

Create a new controller if everything fits.

Arguments

  • 'new_id' - The peer_id this client/server uses
  • 'paths' - The paths that will be searched
  • 'receiver' - The paths that will be searched
  • 'with_net' - If ctrl should consider net messages
  • 'wait_main' - The main thread notifier
  • 'has_webui' - If webui has to be considered
  • 'has_tui' - If tui has to be considered
  • 'open_browser' - If browser should be automatically opened
  • 'web_port' - Browser, webui port to use

fn spawn_webui(
    this: Arc<Mutex<Self>>,
    receiver: Receiver<InternalUiMsg>,
    wait_ui_sync: WaitGroup,
    thread_finisher: Sender<Finisher>,
    open_browser: bool,
    web_port: u16
) -> Result<JoinHandle<Result<(), Error>>, Error>
[src]

fn spawn_tui(
    this: Arc<Mutex<Self>>,
    resender: Sender<InternalUiMsg>,
    receiver: Receiver<InternalUiMsg>,
    sync_startup: WaitGroup,
    thread_finisher: Sender<Finisher>
) -> Result<JoinHandle<Result<(), Error>>, Error>
[src]

fn spawn_message_loop(
    receiver: CReceiver<UiUpdateMsg>,
    multiplex_send: Vec<Sender<InternalUiMsg>>
) -> Result<JoinHandle<()>, Error>
[src]

fn run_tui(
    title: String,
    paths: Vec<String>,
    with_net: bool,
    tui_receiver: Receiver<InternalUiMsg>,
    resender: Sender<InternalUiMsg>
) -> Result<(), String>
[src]

Run the UIs - there is less controlling rather than showing

fn run_webui(
    webui_receiver: Receiver<InternalUiMsg>,
    net_support: bool,
    peer_representation: PeerRepresentation,
    paths: Arc<Mutex<SearchPath>>,
    wait_ui_sync: WaitGroup,
    open_browser: bool,
    web_port: u16
) -> Result<()>
[src]

Run the controller

fn run_message_forwarding(
    receiver: &CReceiver<UiUpdateMsg>,
    multiplex_send: &Vec<Sender<InternalUiMsg>>
) -> bool
[src]

This basically wraps incoming UiUpdateMsg to InternalUiMsg which kind of defines an extra layer for convenience, and to be extended and so on.

Auto Trait Implementations

impl RefUnwindSafe for Ctrl[src]

impl Send for Ctrl[src]

impl Sync for Ctrl[src]

impl Unpin for Ctrl[src]

impl UnwindSafe for Ctrl[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Conv for T

impl<T> Conv for T

impl<T> Erased for T

impl<T> FmtForward for T

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pipe for T where
    T: ?Sized

impl<T> Pipe for T

impl<T> PipeAsRef for T

impl<T> PipeBorrow for T

impl<T> PipeDeref for T

impl<T> PipeRef for T

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Tap for T

impl<T> Tap for T

impl<T, U> TapAsRef<U> for T where
    U: ?Sized

impl<T, U> TapBorrow<U> for T where
    U: ?Sized

impl<T> TapDeref for T

impl<T> TryConv for T

impl<T> TryConv for T

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> With for T