FFI๋ํผ
๋ฌ์คํธ๋ _์ธ๋ถ ๊ธฐ๋ฅ ํธ์ถ(FFI)_์ ์ง์ํฉ๋๋ค. ์ฐ๋ฆฌ๋ ์ด๋ฅผ ์ด์ฉํ์ฌ ๋๋ ํฐ๋ฆฌ์์ ํ์ผ ์ด๋ฆ์ ์ฝ์ด์ค๋ libc
ํจ์์ ๋ํ ์์ ํ ๋ํผ๋ฅผ ๋ง๋ค ๊ฒ์
๋๋ค.
์๋ ๋ฆฌ๋ ์ค ๋ฉ๋ด์ผ ๋ฌธ์๋ค์ ์ฐธ์กฐํ์๊ธฐ ๋ฐ๋๋๋ค:
์๋ง std::ffi
๋ชจ๋์ ์ฐธ์กฐํ ํ์๊ฐ ์์ ๊ฒ์
๋๋ค. ๊ฑฐ๊ธฐ์๋ ์ด๋ฒ ์์ ๋ฅผ ์ํํ๋๋ฐ ํ์ํ ๋ค์ํ ์ข
๋ฅ์ ๋ฌธ์์ด ํ์
๋ค์ด ์๊ฐ๋์ด ์์ต๋๋ค:
ํ์ | ์ธ์ฝ๋ฉ | ์ฌ์ฉ |
---|---|---|
str ๊ณผ String | UTF-8 | ๋ฌ์คํธ์์์ ๋ฌธ์์ด ์ฒ๋ฆฌ |
CStr ๊ณผ CString | ๋(NUL)๋ก ๋๋จ | Cํจ์์ ์ฐ๋ํ๊ธฐ |
OsStr ์ OsString | OS๊ฐ ์ ์ํจ | OS์ ์ฐ๋ํ๊ธฐ ์ํ ๋ฌธ์์ด |
์ด ํ์ ๋ค ๊ฐ์ ๋ณํ์ ๋ค์๊ณผ ๊ฐ์ต๋๋ค:
&str
์์CString
์ผ๋ก์ ๋ณํ: ๋งจ ๋ง์ง๋ง์\0
๋ฌธ์๋ฅผ ์ ์ฅํ๊ธฐ ์ํ ๊ณต๊ฐ์ ํ ๋นํด์ผ ํฉ๋๋ค,CString
์์*const i8
๋ก์ ๋ณํ: Cํจ์๋ฅผ ํธ์ถํ๊ธฐ ์ํด์๋ ํฌ์ธํฐ๊ฐ ํ์ํฉ๋๋ค,*const i8
์์&CStr
๋ก์ ๋ณํ: ์ฃผ์ด์ง ๋ฐ์ดํธ ์ํ์ค๊ฐ\0
๋ก ๋๋๋์ง ํ์ธํ๊ณ ์ถ์ ๊ฒฝ์ฐ,&CStr
์์&[u8]
๋ก์ ๋ณํ: ๋ฐ์ดํธ ์ฌ๋ผ์ด์ค๋ โ์์์๋ ๋ฐ์ดํฐโ์ ๋ํ ์ผ๋ฐ์ ์ธ ์ธํฐํ์ด์ค์ ๋๋ค,&[u8]
์์&OsStr
๋ก์ ๋ณํ:&OsStr
๋OsString
์ผ๋ก ๊ฐ๊ธฐ ์ํ ์ค๊ฐ ๋จ๊ณ ์ ๋๋ค.OsStrExt
๋ฅผ ์ฌ์ฉํด์OsStr
๋ฅผ ์์ฑํ์ธ์,&OsStr
์์OsString
์ผ๋ก์ ๋ณํ:&OsStr
์ด ๊ฐ๋ฆฌํค๊ณ ์๋ ๋ฐ์ดํฐ๋ฅผ ๋ณต์ฌํจ์ผ๋ก์จ, ์ด ๋ฐ์ดํฐ๋ฅผ ๋ฆฌํดํ๊ณ ,readdir
ํจ์๋ฅผ ํธ์ถํ ๋ ์ฌ์ฉํ ์ ์๊ฒ ํด ์ค๋๋ค.
Nomicon์ FFI์ ๊ด๋ จํ ์์ฃผ ์ ์ฉํ ์ฑํฐ๊ฐ ์์ต๋๋ค.
์๋ ์ฝ๋๋ฅผ https://play.rust-lang.org/์ ๋ณต์ฌํ๊ณ ๋น ์ง ํจ์์ ๋ฉ์๋๋ฅผ ์ฑ์๋ด ๋๋ค:
// TODO: remove this when you're done with your implementation. #![allow(unused_imports, unused_variables, dead_code)] mod ffi { use std::os::raw::{c_char, c_int}; #[cfg(not(target_os = "macos"))] use std::os::raw::{c_long, c_ulong, c_ushort, c_uchar}; // Opaque type. See https://doc.rust-lang.org/nomicon/ffi.html. #[repr(C)] pub struct DIR { _data: [u8; 0], _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>, } // Layout according to the Linux man page for readdir(3), where ino_t and // off_t are resolved according to the definitions in // /usr/include/x86_64-linux-gnu/{sys/types.h, bits/typesizes.h}. #[cfg(not(target_os = "macos"))] #[repr(C)] pub struct dirent { pub d_ino: c_ulong, pub d_off: c_long, pub d_reclen: c_ushort, pub d_type: c_uchar, pub d_name: [c_char; 256], } // Layout according to the macOS man page for dir(5). #[cfg(all(target_os = "macos"))] #[repr(C)] pub struct dirent { pub d_fileno: u64, pub d_seekoff: u64, pub d_reclen: u16, pub d_namlen: u16, pub d_type: u8, pub d_name: [c_char; 1024], } extern "C" { pub fn opendir(s: *const c_char) -> *mut DIR; #[cfg(not(all(target_os = "macos", target_arch = "x86_64")))] pub fn readdir(s: *mut DIR) -> *const dirent; // See https://github.com/rust-lang/libc/issues/414 and the section on // _DARWIN_FEATURE_64_BIT_INODE in the macOS man page for stat(2). // // "Platforms that existed before these updates were available" refers // to macOS (as opposed to iOS / wearOS / etc.) on Intel and PowerPC. #[cfg(all(target_os = "macos", target_arch = "x86_64"))] #[link_name = "readdir$INODE64"] pub fn readdir(s: *mut DIR) -> *const dirent; pub fn closedir(s: *mut DIR) -> c_int; } } use std::ffi::{CStr, CString, OsStr, OsString}; use std::os::unix::ffi::OsStrExt; #[derive(Debug)] struct DirectoryIterator { path: CString, dir: *mut ffi::DIR, } impl DirectoryIterator { fn new(path: &str) -> Result<DirectoryIterator, String> { // Call opendir and return a Ok value if that worked, // otherwise return Err with a message. unimplemented!() } } impl Iterator for DirectoryIterator { type Item = OsString; fn next(&mut self) -> Option<OsString> { // Keep calling readdir until we get a NULL pointer back. unimplemented!() } } impl Drop for DirectoryIterator { fn drop(&mut self) { // Call closedir as needed. unimplemented!() } } fn main() -> Result<(), String> { let iter = DirectoryIterator::new(".")?; println!("files: {:#?}", iter.collect::<Vec<_>>()); Ok(()) }