idalib/
processor.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
use std::marker::PhantomData;

use crate::ffi::processor::*;
use crate::idb::IDB;

pub use crate::ffi::processor::ids as id;

pub struct Processor<'a> {
    ptr: *const processor_t,
    _marker: PhantomData<&'a IDB>,
}

pub type ProcessorId = i32;

impl<'a> Processor<'a> {
    pub(crate) fn from_ptr(ptr: *const processor_t) -> Self {
        Self {
            ptr,
            _marker: PhantomData,
        }
    }

    pub fn id(&self) -> ProcessorId {
        unsafe { idalib_ph_id(self.ptr) }
    }

    pub fn long_name(&self) -> String {
        unsafe { idalib_ph_long_name(self.ptr) }
    }

    pub fn short_name(&self) -> String {
        unsafe { idalib_ph_short_name(self.ptr) }
    }
}