youtube-dl-gui 0.2.1

Cross-platform GUI for youtube-dl made with Iced
use log::error;
use single_instance::SingleInstance;
#[cfg(target_os = "windows")]
use winapi::um::wincon::GetConsoleWindow;
#[cfg(target_os = "windows")]
use winapi::um::winuser::ShowWindow;
#[cfg(target_os = "windows")]
use winapi::um::winuser::SW_HIDE;
#[cfg(target_os = "windows")]
use winapi::um::winuser::SW_SHOW;

use utils::logger::init_logger;
use utils::query_cache;

mod gui;
mod resources;
mod utils;
mod views;

fn main() {
    // If in release mode, hide the console window
    // On windows, we cannot use #![windows_subsystem = "windows"]
    // since it will create no console from which to read youtube-dl output
    hide_console_window();

    // Make sure there is only a single instance of the application running
    let instance = SingleInstance::new("youtube-dl-gui")
        .expect("There is another instance of the application running");

    if !instance.is_single() {
        panic!("There is another instance of the application running");
    }

    // Init the logger of the application
    if let Err(err) = init_logger() {
        panic!("{}", err);
    }

    // Init the download subscription inputs cache
    // We only want to clone the inputs of each subscription once, not everytime the state of the GUI updates.
    query_cache::init_global();

    // Show the GUI
    if let Err(err) = gui::Gui::start() {
        error!("{err}")
    }

    // If in release mode, when the GUI is closed, show the console window
    show_console_window()
}

#[cfg(target_os = "windows")]
fn hide_console_window() {
    if !cfg!(debug_assertions) {
        let console_window_handle = unsafe { GetConsoleWindow() };
        if console_window_handle.is_null() {
            panic!("Unable to get console window handle");
        }

        let result = unsafe { ShowWindow(console_window_handle, SW_HIDE) };
        if result == 1 {
            panic!("Unable to hide console window");
        }
    }
}

#[cfg(not(target_os = "windows"))]
fn hide_console_window() {}

#[cfg(target_os = "windows")]
fn show_console_window() {
    if !cfg!(debug_assertions) {
        let console_window_handle = unsafe { GetConsoleWindow() };
        if console_window_handle.is_null() {
            panic!("Unable to get console window handle");
        }

        let result = unsafe { ShowWindow(console_window_handle, SW_SHOW) };
        if result == 1 {
            panic!("Unable to show console window");
        }
    }
}

#[cfg(not(target_os = "windows"))]
fn show_console_window() {}