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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
use internal::codepage::CodePage;
use internal::propset::{OperatingSystem, PropertySet, PropertyValue};
use std::ascii::AsciiExt;
use std::io::{self, Read, Seek, Write};
use std::time::SystemTime;
use uuid::Uuid;
const FMTID: [u8; 16] =
*b"\xe0\x85\x9f\xf2\xf9\x4f\x68\x10\xab\x91\x08\x00\x2b\x27\xb3\xd9";
const PROPERTY_TITLE: u32 = 2;
const PROPERTY_SUBJECT: u32 = 3;
const PROPERTY_AUTHOR: u32 = 4;
const PROPERTY_COMMENTS: u32 = 6;
const PROPERTY_UUID: u32 = 9;
const PROPERTY_CREATION_TIME: u32 = 12;
const PROPERTY_CREATING_APP: u32 = 18;
pub struct SummaryInfo {
properties: PropertySet,
}
impl SummaryInfo {
pub(crate) fn new() -> SummaryInfo {
let properties = PropertySet::new(OperatingSystem::Win32, 10, FMTID);
let mut summary = SummaryInfo { properties: properties };
summary.set_codepage(CodePage::Utf8);
summary
}
pub(crate) fn read<R: Read + Seek>(reader: R) -> io::Result<SummaryInfo> {
let properties = PropertySet::read(reader)?;
if properties.format_identifier() != &FMTID {
invalid_data!("Property set has wrong format identifier");
}
Ok(SummaryInfo { properties: properties })
}
pub(crate) fn write<W: Write>(&self, writer: W) -> io::Result<()> {
self.properties.write(writer)
}
pub fn author(&self) -> Option<&str> {
match self.properties.get(PROPERTY_AUTHOR) {
Some(&PropertyValue::LpStr(ref author)) => Some(author.as_str()),
_ => None,
}
}
pub fn set_author(&mut self, author: String) {
self.properties.set(PROPERTY_AUTHOR, PropertyValue::LpStr(author));
}
pub fn codepage(&self) -> CodePage { self.properties.codepage() }
pub fn set_codepage(&mut self, codepage: CodePage) {
self.properties.set_codepage(codepage);
}
pub fn comments(&self) -> Option<&str> {
match self.properties.get(PROPERTY_COMMENTS) {
Some(&PropertyValue::LpStr(ref comments)) => {
Some(comments.as_str())
}
_ => None,
}
}
pub fn set_comments(&mut self, comments: String) {
self.properties.set(PROPERTY_COMMENTS, PropertyValue::LpStr(comments));
}
pub fn creating_application(&self) -> Option<&str> {
match self.properties.get(PROPERTY_CREATING_APP) {
Some(&PropertyValue::LpStr(ref app_name)) => {
Some(app_name.as_str())
}
_ => None,
}
}
pub fn set_creating_application(&mut self, app_name: String) {
self.properties
.set(PROPERTY_CREATING_APP, PropertyValue::LpStr(app_name));
}
pub fn creation_time(&self) -> Option<SystemTime> {
match self.properties.get(PROPERTY_CREATION_TIME) {
Some(&PropertyValue::FileTime(timestamp)) => Some(timestamp),
_ => None,
}
}
pub fn set_creation_time(&mut self, timestamp: SystemTime) {
self.properties
.set(PROPERTY_CREATION_TIME, PropertyValue::FileTime(timestamp));
}
pub fn set_creation_time_to_now(&mut self) {
self.set_creation_time(SystemTime::now());
}
pub fn subject(&self) -> Option<&str> {
match self.properties.get(PROPERTY_SUBJECT) {
Some(&PropertyValue::LpStr(ref subject)) => Some(subject.as_str()),
_ => None,
}
}
pub fn set_subject(&mut self, subject: String) {
self.properties.set(PROPERTY_SUBJECT, PropertyValue::LpStr(subject));
}
pub fn title(&self) -> Option<&str> {
match self.properties.get(PROPERTY_TITLE) {
Some(&PropertyValue::LpStr(ref title)) => Some(title.as_str()),
_ => None,
}
}
pub fn set_title(&mut self, title: String) {
self.properties.set(PROPERTY_TITLE, PropertyValue::LpStr(title));
}
pub fn uuid(&self) -> Option<Uuid> {
match self.properties.get(PROPERTY_UUID) {
Some(&PropertyValue::LpStr(ref string)) => {
let trimmed =
string.trim_left_matches('{').trim_right_matches('}');
Uuid::parse_str(trimmed).ok()
}
_ => None,
}
}
pub fn set_uuid(&mut self, uuid: Uuid) {
let mut string = format!("{{{}}}", uuid.hyphenated());
string.make_ascii_uppercase();
self.properties.set(PROPERTY_UUID, PropertyValue::LpStr(string));
}
}
#[cfg(test)]
mod tests {
use super::SummaryInfo;
use std::time::SystemTime;
use uuid::Uuid;
#[test]
fn set_properties() {
let timestamp = SystemTime::now();
let uuid = Uuid::parse_str("0000002a-000c-0005-0c03-0938362b0809")
.unwrap();
let mut summary_info = SummaryInfo::new();
summary_info.set_author("Jane Doe".to_string());
summary_info.set_comments("This app is the greatest!".to_string());
summary_info.set_creating_application("cargo-test".to_string());
summary_info.set_creation_time(timestamp);
summary_info.set_subject("My Great App".to_string());
summary_info.set_title("Installation Package".to_string());
summary_info.set_uuid(uuid);
assert_eq!(summary_info.author(), Some("Jane Doe"));
assert_eq!(summary_info.comments(), Some("This app is the greatest!"));
assert_eq!(summary_info.creating_application(), Some("cargo-test"));
assert_eq!(summary_info.creation_time(), Some(timestamp));
assert_eq!(summary_info.subject(), Some("My Great App"));
assert_eq!(summary_info.title(), Some("Installation Package"));
assert_eq!(summary_info.uuid(), Some(uuid));
}
}