pub struct SBLaunchInfo {
pub raw: SBLaunchInfoRef,
}Expand description
Configuration for launching a process.
See SBTarget::launch().
Fields§
§raw: SBLaunchInfoRefThe underlying raw SBLaunchInfoRef.
Implementations§
Source§impl SBLaunchInfo
impl SBLaunchInfo
Sourcepub fn new() -> SBLaunchInfo
pub fn new() -> SBLaunchInfo
Construct a new SBLaunchInfo.
Examples found in repository?
3fn main() {
4 SBDebugger::initialize();
5
6 let debugger = SBDebugger::create(false);
7 debugger.set_asynchronous(false);
8 println!("{debugger:?}");
9
10 if let Some(target) = debugger.create_target_simple("/usr/local/bin/servo") {
11 println!("{target:?}");
12
13 let launchinfo = SBLaunchInfo::new();
14 launchinfo.set_launch_flags(LaunchFlags::STOP_AT_ENTRY);
15 match target.launch(launchinfo) {
16 Ok(process) => {
17 println!("{process:?}");
18 let _ = process.continue_execution();
19 println!("{process:?}");
20 }
21 Err(e) => println!("Uhoh: {e:?}"),
22 }
23 }
24 SBDebugger::terminate();
25}pub fn process_id(&self) -> lldb_pid_t
pub fn user_id(&self) -> Option<u32>
pub fn set_user_id(&self, user_id: u32)
pub fn group_id(&self) -> Option<u32>
pub fn set_group_id(&self, group_id: u32)
pub fn executable_file(&self) -> Option<SBFileSpec>
Sourcepub fn set_executable_file(&self, filespec: &SBFileSpec, add_as_first_arg: bool)
pub fn set_executable_file(&self, filespec: &SBFileSpec, add_as_first_arg: bool)
Set the executable file that will be used to launch the process and optionally set it as the first argument in the argument vector.
This only needs to be specified if clients wish to carefully control the exact path will be used to launch a binary. If you create a target with a symlink, that symlink will get resolved in the target and the resolved path will get used to launch the process. Calling this function can help you still launch your process using the path of your choice.
If this function is not called prior to launching with
SBTarget::launch(...), the target will use the resolved executable
path that was used to create the target.
exe_file is the override path to use when launching the executable.
If add_as_first_arg is true, then the path will be inserted into
the argument vector prior to launching. Otherwise the argument
vector will be left alone.
Sourcepub fn listener(&self) -> Option<SBListener>
pub fn listener(&self) -> Option<SBListener>
Get the listener that will be used to receive process events.
If no listener has been set via a call to
SBLaunchInfo::set_listener(), then None will be returned.
If a listener has been set, then the listener object will be returned.
Sourcepub fn set_listener(&self, listener: &SBListener)
pub fn set_listener(&self, listener: &SBListener)
Set the listener that will be used to receive process events.
By default the SBDebugger, which has a listener,
that the SBTarget belongs to will listen for the
process events. Calling this function allows a different
listener to be used to listen for process events.
pub fn launch_flags(&self) -> LaunchFlags
Sourcepub fn set_launch_flags(&self, launch_flags: LaunchFlags)
pub fn set_launch_flags(&self, launch_flags: LaunchFlags)
Examples found in repository?
3fn main() {
4 SBDebugger::initialize();
5
6 let debugger = SBDebugger::create(false);
7 debugger.set_asynchronous(false);
8 println!("{debugger:?}");
9
10 if let Some(target) = debugger.create_target_simple("/usr/local/bin/servo") {
11 println!("{target:?}");
12
13 let launchinfo = SBLaunchInfo::new();
14 launchinfo.set_launch_flags(LaunchFlags::STOP_AT_ENTRY);
15 match target.launch(launchinfo) {
16 Ok(process) => {
17 println!("{process:?}");
18 let _ = process.continue_execution();
19 println!("{process:?}");
20 }
21 Err(e) => println!("Uhoh: {e:?}"),
22 }
23 }
24 SBDebugger::terminate();
25}Sourcepub fn set_arguments<'a>(
&self,
args: impl IntoIterator<Item = &'a str>,
append: bool,
)
pub fn set_arguments<'a>( &self, args: impl IntoIterator<Item = &'a str>, append: bool, )
Specify the command line arguments.
Sourcepub fn arguments(&self) -> impl Iterator<Item = &str>
pub fn arguments(&self) -> impl Iterator<Item = &str>
Returns an iterator over the command line arguments.
pub fn process_plugin_name(&self) -> Option<&str>
pub fn set_process_plugin_name(&self, plugin: &str)
pub fn shell(&self) -> Option<&str>
pub fn set_shell(&self, shell: &str)
pub fn shell_expand_arguments(&self) -> bool
pub fn set_shell_expand_arguments(&self, expand: bool)
pub fn resume_count(&self) -> u32
pub fn set_resume_count(&self, resume_count: u32)
pub fn add_close_file_action(&self, fd: i32) -> bool
pub fn add_duplicate_file_action(&self, fd: i32, dup_fd: i32) -> bool
pub fn add_open_file_action( &self, fd: i32, path: &str, read: bool, write: bool, ) -> bool
pub fn add_suppress_file_action(&self, fd: i32, read: bool, write: bool) -> bool
pub fn launch_event_data(&self) -> Option<&str>
pub fn set_launch_event_data(&self, data: &str)
pub fn detach_on_error(&self) -> bool
pub fn set_detach_on_error(&self, detach: bool)
Trait Implementations§
Source§impl Clone for SBLaunchInfo
impl Clone for SBLaunchInfo
Source§fn clone(&self) -> SBLaunchInfo
fn clone(&self) -> SBLaunchInfo
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more