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
#![cfg_attr(rustfmt, rustfmt_skip)]
mod constants;
#[cfg(all(unix, not(target_os = "macos")))]
pub(crate) mod urgency;
#[cfg(all(unix, not(target_os = "macos")))]
pub(crate) mod message;
#[cfg(all(feature = "images", unix, not(target_os = "macos")))]
pub mod image;
use self::urgency::NotificationUrgency;
#[cfg(all(feature = "images", unix, not(target_os = "macos")))]
use self::image::NotificationImage;
#[derive(Eq, PartialEq, Hash, Clone, Debug)]
pub enum NotificationHint {
ActionIcons(bool),
Category(String),
DesktopEntry(String),
#[cfg(all(feature = "images", unix, not(target_os = "macos")))]
ImageData(NotificationImage),
ImagePath(String),
Resident(bool),
SoundFile(String),
SoundName(String),
SuppressSound(bool),
Transient(bool),
X(i32),
Y(i32),
Urgency(NotificationUrgency),
Custom(String, String),
CustomInt(String, i32),
Invalid
}
impl NotificationHint {
pub fn as_bool(&self) -> Option<bool> {
match *self {
NotificationHint::ActionIcons(inner)
| NotificationHint::Resident(inner)
| NotificationHint::SuppressSound(inner)
| NotificationHint::Transient(inner) => Some(inner),
_ => None
}
}
pub fn as_i32(&self) -> Option<i32> {
match *self {
NotificationHint::X(inner) | NotificationHint::Y(inner) => Some(inner),
_ => None
}
}
pub fn as_str(&self) -> Option<&str> {
match *self {
NotificationHint::DesktopEntry(ref inner) |
NotificationHint::ImagePath(ref inner) |
NotificationHint::SoundFile(ref inner) |
NotificationHint::SoundName(ref inner) => Some(inner),
_ => None
}
}
pub fn from_key_val(name: &str, value: &str) -> Result<NotificationHint, String> {
use NotificationHint as Hint;
match (name,value){
(constants::ACTION_ICONS,val) => val.parse::<bool>().map(Hint::ActionIcons).map_err(|e|e.to_string()),
(constants::CATEGORY, val) => Ok(Hint::Category(val.to_owned())),
(constants::DESKTOP_ENTRY, val) => Ok(Hint::DesktopEntry(val.to_owned())),
(constants::IMAGE_PATH, val) => Ok(Hint::ImagePath(val.to_owned())),
(constants::RESIDENT, val) => val.parse::<bool>().map(Hint::Resident).map_err(|e|e.to_string()),
(constants::SOUND_FILE, val) => Ok(Hint::SoundFile(val.to_owned())),
(constants::SOUND_NAME, val) => Ok(Hint::SoundName(val.to_owned())),
(constants::SUPPRESS_SOUND, val) => val.parse::<bool>().map(Hint::SuppressSound).map_err(|e|e.to_string()),
(constants::TRANSIENT, val) => val.parse::<bool>().map(Hint::Transient).map_err(|e|e.to_string()),
(constants::X, val) => val.parse::<i32>().map(Hint::X).map_err(|e|e.to_string()),
(constants::Y, val) => val.parse::<i32>().map(Hint::Y).map_err(|e|e.to_string()),
_ => Err(String::from("unknown name"))
}
}
}
#[cfg(all(unix, not(target_os = "macos")))]
impl NotificationHint {}