blazesym 0.2.3

blazesym is a library for address symbolization and related tasks.
Documentation
use std::path::Component;
use std::path::Path;
use std::path::PathBuf;


pub(crate) fn create_apk_elf_path(apk: &Path, elf: &Path) -> PathBuf {
    let mut apk = apk.to_path_buf();
    // Append '!' to indicate separation from archive internal contents
    // that follow. This is an Android convention.
    let () = apk.as_mut_os_string().push("!");
    let elf = {
        let mut it = elf.components();
        if let Some(first) = it.next() {
            match first {
                Component::Prefix(_) | Component::RootDir => {
                    // We removed the root directory/prefix.
                    it.as_path()
                }
                _ => elf,
            }
        } else {
            elf
        }
    };
    let path = apk.join(elf);

    path
}


#[cfg(test)]
mod tests {
    use super::*;


    /// Check that we can create a path to an ELF inside an APK as expected.
    #[test]
    fn elf_apk_path_creation() {
        let apk = Path::new("/root/test.apk");
        let elf = Path::new("subdir/libc.so");
        let path = create_apk_elf_path(apk, elf);
        assert_eq!(path, Path::new("/root/test.apk!/subdir/libc.so"));

        let apk = Path::new("/root/test");
        let elf = Path::new("subdir/libc.so");
        let path = create_apk_elf_path(apk, elf);
        assert_eq!(path, Path::new("/root/test!/subdir/libc.so"));

        let apk = Path::new("/root/test");
        let elf = Path::new("/subdir/libc.so");
        let path = create_apk_elf_path(apk, elf);
        assert_eq!(path, Path::new("/root/test!/subdir/libc.so"));

        let path = create_apk_elf_path(Path::new(""), elf);
        assert_eq!(path, Path::new("!/subdir/libc.so"));

        let path = create_apk_elf_path(apk, Path::new(""));
        assert_eq!(path, Path::new("/root/test!/"));
    }
}