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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
/*-
* syslog-rs - a syslog client translated from libc to rust
* Copyright (C) 2021  Aleksandr Morozov
* 
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
* Lesser General Public License for more details.
* 
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
*/

use std::ffi::CStr;

#[cfg(target_os = "linux")]
use std::path::Path;

#[cfg(any(
    target_os = "freebsd",
    target_os = "dragonfly",
    target_os = "openbsd",
    target_os = "netbsd",
    target_os = "macos"
))]
#[link(name = "c")]
extern "C" {
    fn getprogname() -> *const libc::c_char;
}

#[cfg(target_os = "linux")]
#[link(name = "c")]
extern "C" {
    pub static mut program_invocation_name : *mut libc::c_char ;
}

/// Reutns the current process name, if available
pub(crate) fn p_getprogname() -> Option<String>
{
    #[cfg(any(
        target_os = "freebsd",
        target_os = "dragonfly",
        target_os = "openbsd",
        target_os = "netbsd",
        target_os = "macos"
    ))]
    let pn = unsafe { getprogname() };

    #[cfg(target_os = "linux")]
    let pn = unsafe{ program_invocation_name };

    let temp = unsafe {CStr::from_ptr(pn)};

    match temp.to_str()
    {
        Ok(r) => 
        {
            #[cfg(target_os = "linux")]
            {
                let path = Path::new(r);
                match path.file_name()
                {
                    Some(r) => return Some(r.to_string_lossy().into()),
                    None => return None,
                }
            }

            #[cfg(any(
                target_os = "freebsd",
                target_os = "dragonfly",
                target_os = "openbsd",
                target_os = "netbsd",
                target_os = "macos"
            ))]
            return Some(r.to_string());
        },
        Err(_) => return None,
    }
   
}

/// Returns pid of current process. Not thread id!
pub fn get_pid() -> u32
{
    return std::process::id();
}

#[test]
fn test_get_procname()
{
    println!("Processname is: {:?}", p_getprogname());
}