kwui-sys 0.2.2

sys-crate for kwui - A GUI library with JSX/CSS support
Documentation
use super::prelude::*;
use regex::Regex;
use std::{fs::File, io::Read, path::Path};

pub struct Android;

/// API level Android 8, Oreo (the first one with full Vulkan support)
const API_LEVEL: &str = "26";

impl PlatformDetails for Android {
    fn uses_freetype(&self, _config: &BuildConfiguration) -> bool {
        true
    }

    fn cmake_args(&self, config: &BuildConfiguration, builder: &mut CMakeArgsBuilder) {
        // TODO: this may belong into BuildConfiguration
        let (arch, _) = config.target.arch_abi();
        let ndk = ndk();

        builder
            .arg("ndk", quote(&ndk))
            .arg("ndk_api", API_LEVEL)
            .arg("target_cpu", quote(clang::target_arch(arch)))
            .arg("skia_enable_fontmgr_android", yes());

        let major = ndk_major_version(Path::new(&ndk));
        let mut extra_skia_cflags = extra_skia_cflags();

        // Version 23 is the first version using llvm 12
        // https://github.com/android/ndk/wiki/Changelog-r23#r23b
        // https://releases.llvm.org/12.0.0/tools/clang/docs/ReleaseNotes.html#new-compiler-flags
        if major >= 23 && arch == "aarch64" {
            extra_skia_cflags.push("-mno-outline-atomics".to_string());
        }

        builder.cflags(extra_skia_cflags);
    }

    fn bindgen_args(&self, target: &Target, builder: &mut BindgenArgsBuilder) {
        builder.args(additional_clang_args(
            &target.to_string(),
            &target.architecture,
        ));
    }

    fn link_libraries(&self, features: &Features) -> Vec<String> {
        link_libraries(features)
            .iter()
            .map(|l| l.to_string())
            .collect()
    }

    fn filter_platform_features(
        &self,
        _use_system_libraries: bool,
        features: Features,
    ) -> Features {
        /*
        if !features.embed_freetype {
            features.embed_freetype = !use_system_libraries;
        }
        */
        features
    }
}

fn ndk() -> String {
    cargo::env_var("ANDROID_NDK_HOME").expect("ANDROID_NDK_HOME variable not set")
}

fn host_tag() -> String {
    // Because this is part of build.rs, the target_os is actually the host system
    if cfg!(target_os = "windows") {
        "windows-x86_64"
    } else if cfg!(target_os = "linux") {
        "linux-x86_64"
    } else if cfg!(target_os = "macos") {
        "darwin-x86_64"
    } else {
        panic!("host os is not supported")
    }
    .to_string()
}

/// Get NDK major version from source.properties
fn ndk_major_version(ndk_dir: &Path) -> u32 {
    // Capture version from the line with Pkg.Revision
    let re = Regex::new(r"Pkg.Revision = (\d+)\.(\d+)\.(\d+)").unwrap();
    // There's a source.properties file in the ndk directory, which contains
    let mut source_properties =
        File::open(ndk_dir.join("source.properties")).expect("Couldn't open source.properties");
    let mut buf = "".to_string();
    source_properties
        .read_to_string(&mut buf)
        .expect("Could not read source.properties");
    // Capture version info
    let captures = re
        .captures(&buf)
        .expect("source.properties did not match the regex");
    // Capture 0 is the whole line of text
    captures[1].parse().expect("could not parse major version")
}

pub fn additional_clang_args(target: &str, target_arch: &str) -> Vec<String> {
    let mut args: Vec<String> = Vec::new();

    match target_arch {
        "i686" => args.push("-m32".into()),
        "x86_64" => args.push("-m64".into()),
        _ => {}
    };

    let ndk = ndk();
    let major = ndk_major_version(Path::new(&ndk));
    // Version 22 is the first version that moved sysroot to toolchains folder
    if major < 22 {
        // sysroot is just in the ndk directory
        args.push(format!("--sysroot={ndk}/sysroot"));
        // note: Adding C++ includes messes with Apple's CLang 11 in the binding generator,
        // Which means that only we support the official LLVM versions for Android builds on macOS.
        args.push(format!("-isystem{ndk}/sources/cxx-stl/llvm-libc++/include"));
    } else {
        // NDK versions >= 22 have the sysroot in the llvm prebuilt by
        let host_toolchain = format!("{}/toolchains/llvm/prebuilt/{}", ndk, host_tag());
        // sysroot is stored in the prebuilt llvm, under the host
        args.push(format!("--sysroot={host_toolchain}/sysroot"));
    };
    args.push(format!("-I{ndk}/sources/android/cpufeatures"));

    args.push(format!("--target={target}"));
    args.extend(extra_skia_cflags());
    args
}

pub fn extra_skia_cflags() -> Vec<String> {
    vec![format!("-D__ANDROID_API__={API_LEVEL}")]
}

pub fn link_libraries(_features: &Features) -> Vec<&str> {
    let libs = vec!["log", "android", "c++_shared", "c++abi"];
    /*
    if features.gl {
        libs.extend(vec!["EGL", "GLESv2"])
    };
    */
    libs
}