Line data Source code
1 : use super::Command;
2 : use lief_ffi as ffi;
3 : use crate::common::FromFFI;
4 :
5 : use std::marker::PhantomData;
6 :
7 : /// Structure that represents the `LC_UUID` command
8 : pub struct UUID<'a> {
9 : ptr: cxx::UniquePtr<ffi::MachO_UUIDCommand>,
10 : _owner: PhantomData<&'a ffi::MachO_Binary>
11 : }
12 :
13 :
14 : impl UUID<'_> {
15 : /// The UUID as a 16-bytes array
16 260 : pub fn uuid(&self) -> Vec<u64> {
17 260 : Vec::from(self.ptr.uuid().as_slice())
18 260 : }
19 : }
20 :
21 : impl std::fmt::Debug for UUID<'_> {
22 260 : fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
23 260 : let base = self as &dyn Command;
24 260 : f.debug_struct("UUID")
25 260 : .field("base", &base)
26 260 : .field("uuid", &self.uuid())
27 260 : .finish()
28 260 : }
29 : }
30 :
31 : impl FromFFI<ffi::MachO_UUIDCommand> for UUID<'_> {
32 260 : fn from_ffi(cmd: cxx::UniquePtr<ffi::MachO_UUIDCommand>) -> Self {
33 260 : Self {
34 260 : ptr: cmd,
35 260 : _owner: PhantomData
36 260 : }
37 260 : }
38 : }
39 :
40 : impl Command for UUID<'_> {
41 1040 : fn get_base(&self) -> &ffi::MachO_Command {
42 1040 : self.ptr.as_ref().unwrap().as_ref()
43 1040 : }
44 : }
|