| |
| |
| |
|
|
| use std::path::PathBuf; |
|
|
| use cargo_mobile2::opts::{NoiseLevel, Profile}; |
| use clap::{ArgAction, Parser}; |
|
|
| use super::{device_prompt, env}; |
| use crate::{ |
| error::Context, |
| interface::{DevProcess, Interface, WatcherOptions}, |
| mobile::{DevChild, TargetDevice}, |
| ConfigValue, Result, |
| }; |
|
|
| #[derive(Debug, Clone, Parser)] |
| #[clap( |
| about = "Run your app in production mode on iOS", |
| long_about = "Run your app in production mode on iOS. It makes use of the `build.frontendDist` property from your `tauri.conf.json` file. It also runs your `build.beforeBuildCommand` which usually builds your frontend into `build.frontendDist`." |
| )] |
| pub struct Options { |
| |
| #[clap(short, long)] |
| pub release: bool, |
| |
| #[clap(short, long, action = ArgAction::Append, num_args(0..))] |
| pub features: Vec<String>, |
| |
| |
| |
| |
| |
| |
| |
| #[clap(short, long)] |
| pub config: Vec<ConfigValue>, |
| |
| #[clap(long)] |
| pub no_watch: bool, |
| |
| #[clap(long)] |
| pub additional_watch_folders: Vec<PathBuf>, |
| |
| #[clap(short, long)] |
| pub open: bool, |
| |
| pub device: Option<String>, |
| |
| |
| |
| #[clap(last(true))] |
| pub args: Vec<String>, |
| |
| |
| |
| #[clap(long)] |
| pub ignore_version_mismatches: bool, |
| } |
|
|
| pub fn command(options: Options, noise_level: NoiseLevel) -> Result<()> { |
| let env = env().context("failed to load iOS environment")?; |
| let device = if options.open { |
| None |
| } else { |
| match device_prompt(&env, options.device.as_deref()) { |
| Ok(d) => Some(d), |
| Err(e) => { |
| log::error!("{e}"); |
| None |
| } |
| } |
| }; |
|
|
| let mut built_application = super::build::command( |
| super::build::Options { |
| debug: !options.release, |
| targets: Some(vec![]), |
| features: Vec::new(), |
| config: options.config.clone(), |
| build_number: None, |
| open: options.open, |
| ci: false, |
| export_method: None, |
| args: options.args, |
| ignore_version_mismatches: options.ignore_version_mismatches, |
| target_device: device.as_ref().map(|d| TargetDevice { |
| id: d.id().to_string(), |
| name: d.name().to_string(), |
| }), |
| }, |
| noise_level, |
| )?; |
|
|
| |
| |
| if let Some(device) = device { |
| let runner = move || { |
| device |
| .run( |
| &built_application.config, |
| &env, |
| noise_level, |
| false, |
| if !options.release { |
| Profile::Debug |
| } else { |
| Profile::Release |
| }, |
| ) |
| .map(|c| Box::new(DevChild::new(c)) as Box<dyn DevProcess + Send>) |
| .context("failed to run iOS app") |
| }; |
|
|
| if options.no_watch { |
| runner()?; |
| } else { |
| built_application.interface.watch( |
| WatcherOptions { |
| config: options.config, |
| additional_watch_folders: options.additional_watch_folders, |
| }, |
| runner, |
| )?; |
| } |
| } |
|
|
| Ok(()) |
| } |
|
|