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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
// This file was generated by gir (https://github.com/gtk-rs/gir)
// from
// from gir-files (https://github.com/gtk-rs/gir-files)
// DO NOT EDIT

use glib::{prelude::*, translate::*};
use std::{fmt, ptr};

glib::wrapper! {
    #[doc(alias = "PopplerAttachment")]
    pub struct Attachment(Object<ffi::PopplerAttachment, ffi::PopplerAttachmentClass>);

    match fn {
        type_ => || ffi::poppler_attachment_get_type(),
    }
}

impl Attachment {
    pub const NONE: Option<&'static Attachment> = None;
}

pub trait AttachmentExt: 'static {
    //#[cfg(any(feature = "v20_9", feature = "dox"))]
    //#[cfg_attr(feature = "dox", doc(cfg(feature = "v20_9")))]
    //#[doc(alias = "poppler_attachment_get_checksum")]
    //#[doc(alias = "get_checksum")]
    //fn checksum(&self) -> /*Ignored*/Option<glib::String>;

    #[cfg(any(feature = "v20_9", feature = "dox"))]
    #[cfg_attr(feature = "dox", doc(cfg(feature = "v20_9")))]
    #[doc(alias = "poppler_attachment_get_ctime")]
    #[doc(alias = "get_ctime")]
    fn ctime(&self) -> Option<glib::DateTime>;

    #[cfg(any(feature = "v20_9", feature = "dox"))]
    #[cfg_attr(feature = "dox", doc(cfg(feature = "v20_9")))]
    #[doc(alias = "poppler_attachment_get_description")]
    #[doc(alias = "get_description")]
    fn description(&self) -> Option<glib::GString>;

    #[cfg(any(feature = "v20_9", feature = "dox"))]
    #[cfg_attr(feature = "dox", doc(cfg(feature = "v20_9")))]
    #[doc(alias = "poppler_attachment_get_mtime")]
    #[doc(alias = "get_mtime")]
    fn mtime(&self) -> Option<glib::DateTime>;

    #[cfg(any(feature = "v20_9", feature = "dox"))]
    #[cfg_attr(feature = "dox", doc(cfg(feature = "v20_9")))]
    #[doc(alias = "poppler_attachment_get_name")]
    #[doc(alias = "get_name")]
    fn name(&self) -> Option<glib::GString>;

    #[cfg(any(feature = "v20_9", feature = "dox"))]
    #[cfg_attr(feature = "dox", doc(cfg(feature = "v20_9")))]
    #[doc(alias = "poppler_attachment_get_size")]
    #[doc(alias = "get_size")]
    fn size(&self) -> usize;

    #[doc(alias = "poppler_attachment_save")]
    fn save(&self, filename: &str) -> Result<(), glib::Error>;

    //#[doc(alias = "poppler_attachment_save_to_callback")]
    //fn save_to_callback<P: FnMut(&Vec<u8>, usize, Option<&glib::Error>) -> bool>(&self, save_func: P) -> Result<(), glib::Error>;

    #[cfg(any(feature = "v21_12", feature = "dox"))]
    #[cfg_attr(feature = "dox", doc(cfg(feature = "v21_12")))]
    #[doc(alias = "poppler_attachment_save_to_fd")]
    fn save_to_fd(&self, fd: i32) -> Result<(), glib::Error>;
}

impl<O: IsA<Attachment>> AttachmentExt for O {
    //#[cfg(any(feature = "v20_9", feature = "dox"))]
    //#[cfg_attr(feature = "dox", doc(cfg(feature = "v20_9")))]
    //fn checksum(&self) -> /*Ignored*/Option<glib::String> {
    //    unsafe { TODO: call ffi:poppler_attachment_get_checksum() }
    //}

    #[cfg(any(feature = "v20_9", feature = "dox"))]
    #[cfg_attr(feature = "dox", doc(cfg(feature = "v20_9")))]
    fn ctime(&self) -> Option<glib::DateTime> {
        unsafe {
            from_glib_none(ffi::poppler_attachment_get_ctime(
                self.as_ref().to_glib_none().0,
            ))
        }
    }

    #[cfg(any(feature = "v20_9", feature = "dox"))]
    #[cfg_attr(feature = "dox", doc(cfg(feature = "v20_9")))]
    fn description(&self) -> Option<glib::GString> {
        unsafe {
            from_glib_none(ffi::poppler_attachment_get_description(
                self.as_ref().to_glib_none().0,
            ))
        }
    }

    #[cfg(any(feature = "v20_9", feature = "dox"))]
    #[cfg_attr(feature = "dox", doc(cfg(feature = "v20_9")))]
    fn mtime(&self) -> Option<glib::DateTime> {
        unsafe {
            from_glib_none(ffi::poppler_attachment_get_mtime(
                self.as_ref().to_glib_none().0,
            ))
        }
    }

    #[cfg(any(feature = "v20_9", feature = "dox"))]
    #[cfg_attr(feature = "dox", doc(cfg(feature = "v20_9")))]
    fn name(&self) -> Option<glib::GString> {
        unsafe {
            from_glib_none(ffi::poppler_attachment_get_name(
                self.as_ref().to_glib_none().0,
            ))
        }
    }

    #[cfg(any(feature = "v20_9", feature = "dox"))]
    #[cfg_attr(feature = "dox", doc(cfg(feature = "v20_9")))]
    fn size(&self) -> usize {
        unsafe { ffi::poppler_attachment_get_size(self.as_ref().to_glib_none().0) }
    }

    fn save(&self, filename: &str) -> Result<(), glib::Error> {
        unsafe {
            let mut error = ptr::null_mut();
            let is_ok = ffi::poppler_attachment_save(
                self.as_ref().to_glib_none().0,
                filename.to_glib_none().0,
                &mut error,
            );
            debug_assert_eq!(is_ok == glib::ffi::GFALSE, !error.is_null());
            if error.is_null() {
                Ok(())
            } else {
                Err(from_glib_full(error))
            }
        }
    }

    //fn save_to_callback<P: FnMut(&Vec<u8>, usize, Option<&glib::Error>) -> bool>(&self, save_func: P) -> Result<(), glib::Error> {
    //    unsafe { TODO: call ffi:poppler_attachment_save_to_callback() }
    //}

    #[cfg(any(feature = "v21_12", feature = "dox"))]
    #[cfg_attr(feature = "dox", doc(cfg(feature = "v21_12")))]
    fn save_to_fd(&self, fd: i32) -> Result<(), glib::Error> {
        unsafe {
            let mut error = ptr::null_mut();
            let is_ok =
                ffi::poppler_attachment_save_to_fd(self.as_ref().to_glib_none().0, fd, &mut error);
            debug_assert_eq!(is_ok == glib::ffi::GFALSE, !error.is_null());
            if error.is_null() {
                Ok(())
            } else {
                Err(from_glib_full(error))
            }
        }
    }
}

impl fmt::Display for Attachment {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        f.write_str("Attachment")
    }
}