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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
/*
 * SPDX-License-Identifier: MIT
 */

//! PipeWire [Properties](https://docs.pipewire.org/group__pw__properties.html) bindings.
//!
use std::ffi::{CStr, CString, NulError};
use std::fmt::{Debug, Display, Formatter};
use std::os::raw::c_char;
use std::ptr::{addr_of, addr_of_mut, null, NonNull};
use std::slice;

use bitflags::bitflags;
use pw_sys::FILE;

use pipewire_wrapper_proc_macro::{RawWrapper, Wrapper};

use crate::spa::dict;
use crate::spa::dict::{DictItemRef, DictRef, DictRefIterator};
use crate::wrapper::RawWrapper;
use crate::{i32_as_result, new_instance_raw_wrapper, raw_wrapper};

#[derive(RawWrapper)]
#[repr(transparent)]
pub struct PropertiesRef {
    #[raw]
    raw: pw_sys::pw_properties,
}

#[derive(Wrapper, Debug)]
pub struct Properties {
    #[raw_wrapper]
    ref_: NonNull<PropertiesRef>,
}

bitflags! {
    #[derive(Debug, PartialEq, Eq, Clone, Copy)]
    #[repr(transparent)]
    pub struct Flags: u32 {
        const NL = pw_sys::PW_PROPERTIES_FLAG_NL;
        // const RECURSE = pw_sys::PW_PROPERTIES_FLAG_RECURSE;
        // const ENCLOSE = pw_sys::PW_PROPERTIES_FLAG_ENCLOSE;
        // const ARRAY = pw_sys::PW_PROPERTIES_FLAG_ARRAY;
        // const COLORS = pw_sys::PW_PROPERTIES_FLAG_COLORS;
    }
}

impl PropertiesRef {
    pub fn flags(&self) -> Flags {
        Flags::from_bits_retain(self.raw.flags)
    }

    pub fn n_items(&self) -> u32 {
        self.raw.dict.n_items
    }

    pub fn items(&self) -> &[DictItemRef] {
        unsafe {
            slice::from_raw_parts(
                self.raw.dict.items as *const DictItemRef,
                self.raw.dict.n_items as usize,
            )
        }
    }

    pub fn dict(&self) -> &DictRef {
        unsafe { DictRef::from_raw_ptr(&self.raw.dict) }
    }

    pub fn copy(&self) -> NonNull<PropertiesRef> {
        let ptr = unsafe { pw_sys::pw_properties_copy(self.as_raw_ptr()) };
        NonNull::new(ptr as *mut PropertiesRef).unwrap()
    }

    pub fn update_keys(&self, source: &DictRef, keys_to_update: &[&CStr]) -> i32 {
        let mut keys: Vec<*const c_char> = keys_to_update
            .to_owned()
            .iter()
            .map(|k| k.as_ptr())
            .collect();
        keys.push(null() as *const c_char);
        unsafe {
            pw_sys::pw_properties_update_keys(self.as_raw_ptr(), source.as_raw_ptr(), keys.as_ptr())
        }
    }

    pub fn update_ignore(&self, source: &DictRef, ignore_keys: &[&CStr]) -> i32 {
        let mut keys: Vec<*const c_char> =
            ignore_keys.to_owned().iter().map(|k| k.as_ptr()).collect();
        keys.push(null() as *const c_char);
        unsafe {
            pw_sys::pw_properties_update_ignore(
                self.as_raw_ptr(),
                source.as_raw_ptr(),
                keys.as_ptr(),
            )
        }
    }

    pub fn update(&self, source: &DictRef) -> i32 {
        unsafe { pw_sys::pw_properties_update(self.as_raw_ptr(), source.as_raw_ptr()) }
    }

    pub fn update_string(&self, string: &CStr) -> i32 {
        unsafe {
            pw_sys::pw_properties_update_string(
                self.as_raw_ptr(),
                string.as_ptr(),
                string.to_bytes().len(),
            )
        }
    }

    pub fn add(&self, other: &DictRef) -> i32 {
        unsafe { pw_sys::pw_properties_add(self.as_raw_ptr(), other.as_raw_ptr()) }
    }

    pub fn add_keys(&self, other: &DictRef, keys_to_add: &[&CStr]) -> i32 {
        let mut keys: Vec<*const c_char> =
            keys_to_add.to_owned().iter().map(|k| k.as_ptr()).collect();
        keys.push(null() as *const c_char);
        unsafe {
            pw_sys::pw_properties_add_keys(self.as_raw_ptr(), other.as_raw_ptr(), keys.as_ptr())
        }
    }

    pub fn clear(&self) {
        unsafe { pw_sys::pw_properties_clear(self.as_raw_ptr()) }
    }

    pub fn set(&self, key: &CStr, value: &CStr) -> i32 {
        unsafe { pw_sys::pw_properties_set(self.as_raw_ptr(), key.as_ptr(), value.as_ptr()) }
    }

    pub fn remove(&self, key: &CStr) -> i32 {
        unsafe { pw_sys::pw_properties_set(self.as_raw_ptr(), key.as_ptr(), null()) }
    }

    pub fn get(&self, key: &CStr) -> Option<&CStr> {
        unsafe {
            let value = pw_sys::pw_properties_get(self.as_raw_ptr(), key.as_ptr());
            if let Some(value) = value.as_ref() {
                Some(CStr::from_ptr(value))
            } else {
                None
            }
        }
    }

    pub fn fetch_u32(&self, key: &CStr) -> crate::Result<u32> {
        let mut value = 0u32;
        let result = unsafe {
            pw_sys::pw_properties_fetch_uint32(self.as_raw_ptr(), key.as_ptr(), addr_of_mut!(value))
        };
        i32_as_result(result, value)
    }

    pub fn fetch_i32(&self, key: &CStr) -> crate::Result<i32> {
        let mut value = 0i32;
        let result = unsafe {
            pw_sys::pw_properties_fetch_int32(self.as_raw_ptr(), key.as_ptr(), addr_of_mut!(value))
        };
        i32_as_result(result, value)
    }

    pub fn fetch_u64(&self, key: &CStr, value: &u64) -> crate::Result<u64> {
        let mut value = 0u64;
        let result = unsafe {
            pw_sys::pw_properties_fetch_uint64(self.as_raw_ptr(), key.as_ptr(), addr_of_mut!(value))
        };
        i32_as_result(result, value)
    }

    pub fn fetch_i64(&self, key: &CStr) -> crate::Result<i64> {
        let mut value = 0i64;
        let result = unsafe {
            pw_sys::pw_properties_fetch_int64(self.as_raw_ptr(), key.as_ptr(), addr_of_mut!(value))
        };
        i32_as_result(result, value)
    }

    pub fn fetch_bool(&self, key: &CStr) -> crate::Result<bool> {
        let mut value = false;
        let result = unsafe {
            pw_sys::pw_properties_fetch_bool(self.as_raw_ptr(), key.as_ptr(), addr_of_mut!(value))
        };
        i32_as_result(result, value)
    }

    pub fn get_u32(&self, key: &CStr, default: u32) -> u32 {
        let mut value = default;
        let result = unsafe {
            pw_sys::pw_properties_fetch_uint32(self.as_raw_ptr(), key.as_ptr(), addr_of_mut!(value))
        };
        value
    }

    pub fn get_i32(&self, key: &CStr, default: i32) -> i32 {
        let mut value = default;
        let result = unsafe {
            pw_sys::pw_properties_fetch_int32(self.as_raw_ptr(), key.as_ptr(), addr_of_mut!(value))
        };
        value
    }

    pub fn get_u64(&self, key: &CStr, default: u64) -> u64 {
        let mut value = default;
        let result = unsafe {
            pw_sys::pw_properties_fetch_uint64(self.as_raw_ptr(), key.as_ptr(), addr_of_mut!(value))
        };
        value
    }

    pub fn get_i64(&self, key: &CStr, default: i64) -> i64 {
        let mut value = default;
        let result = unsafe {
            pw_sys::pw_properties_fetch_int64(self.as_raw_ptr(), key.as_ptr(), addr_of_mut!(value))
        };
        value
    }

    pub fn get_bool(&self, key: &CStr, default: bool) -> bool {
        let mut value = default;
        let result = unsafe {
            pw_sys::pw_properties_fetch_bool(self.as_raw_ptr(), key.as_ptr(), addr_of_mut!(value))
        };
        value
    }

    pub fn serialize(&self, file: &FILE) -> i32 {
        unsafe {
            pw_sys::pw_properties_serialize_dict(
                file as *const FILE as *mut FILE,
                addr_of!(self.raw.dict),
                self.raw.flags,
            )
        }
    }

    pub fn iter(&self) -> PropertiesIterator {
        PropertiesIterator {
            dict_iterator: self.dict().iter(),
        }
    }
}

impl Properties {
    pub fn new_dict(dict: &DictRef) -> crate::Result<Self> {
        let result = unsafe { pw_sys::pw_properties_new_dict(dict.as_raw_ptr()) };
        let ref_ = new_instance_raw_wrapper(result)?;
        Ok(unsafe { Self::from_ref(ref_) })
    }

    pub fn new_string(string: &CStr) -> crate::Result<Self> {
        let result = unsafe { pw_sys::pw_properties_new_string(string.as_ptr()) };
        let ref_ = new_instance_raw_wrapper(result)?;
        Ok(unsafe { Self::from_ref(ref_) })
    }

    /// Create [Properties] instance from reference
    ///
    /// # Safety
    ///
    /// [PropertiesRef] must has lifetime more than created [Properties]
    pub unsafe fn from_ref(ref_: NonNull<PropertiesRef>) -> Self {
        Self { ref_ }
    }
}

impl From<&DictRef> for Properties {
    fn from(value: &DictRef) -> Self {
        Properties::new_dict(value).unwrap()
    }
}

impl<'a> FromIterator<&'a (&'a CStr, &'a CStr)> for Properties {
    fn from_iter<T: IntoIterator<Item = &'a (&'a CStr, &'a CStr)>>(iter: T) -> Self {
        unsafe {
            let items: Vec<DictItemRef> = iter
                .into_iter()
                .map(|t| DictItemRef::from_tuple(t))
                .collect();
            let dict = DictRef::from_items(&items, dict::Flags::empty());
            Properties::new_dict(&dict).unwrap()
        }
    }
}

impl<'a> FromIterator<(&'a CStr, &'a CStr)> for Properties {
    fn from_iter<T: IntoIterator<Item = (&'a CStr, &'a CStr)>>(iter: T) -> Self {
        unsafe {
            let items: Vec<DictItemRef> = iter
                .into_iter()
                .map(|t| DictItemRef::from_tuple(&t))
                .collect();
            let dict = DictRef::from_items(&items, dict::Flags::empty());
            Properties::new_dict(&dict).unwrap()
        }
    }
}

impl<'a> FromIterator<&'a (CString, CString)> for Properties {
    fn from_iter<T: IntoIterator<Item = &'a (CString, CString)>>(iter: T) -> Self {
        iter.into_iter()
            .map(|(k, v)| (k.as_c_str(), v.as_c_str()))
            .collect()
    }
}

impl From<&Vec<(&CStr, &CStr)>> for Properties {
    fn from(value: &Vec<(&CStr, &CStr)>) -> Self {
        value.iter().collect()
    }
}

impl From<&Vec<(CString, CString)>> for Properties {
    fn from(value: &Vec<(CString, CString)>) -> Self {
        value
            .iter()
            .map(|(k, v)| (k.as_c_str(), v.as_c_str()))
            .collect()
    }
}

impl<T: Into<Vec<u8>>> TryFrom<Vec<(T, T)>> for Properties {
    type Error = NulError;

    fn try_from(value: Vec<(T, T)>) -> Result<Self, Self::Error> {
        let mut vec: Vec<(CString, CString)> = Vec::with_capacity(value.len());
        for (k, v) in value {
            vec.push((CString::new(k)?, CString::new(v)?));
        }
        Ok(vec.iter().collect())
    }
}

impl From<&CStr> for Properties {
    fn from(value: &CStr) -> Self {
        Properties::new_string(value).unwrap()
    }
}

impl Clone for Properties {
    fn clone(&self) -> Self {
        Self { ref_: self.copy() }
    }
}

impl Drop for Properties {
    fn drop(&mut self) {
        unsafe { pw_sys::pw_properties_free(self.as_raw_ptr()) }
    }
}

impl Default for Properties {
    fn default() -> Self {
        (&Vec::<(&CStr, &CStr)>::default()).into()
    }
}

pub struct PropertiesIterator<'a> {
    dict_iterator: DictRefIterator<'a>,
}

impl<'a> Iterator for PropertiesIterator<'a> {
    type Item = (&'a CStr, &'a CStr);

    fn next(&mut self) -> Option<Self::Item> {
        self.dict_iterator
            .next()
            .map(|item| (item.key(), item.value()))
    }
}

impl Debug for PropertiesRef {
    fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
        f.debug_map().entries(self.iter()).finish()
    }
}

#[macro_export]
macro_rules! properties_new {
    ($($key:expr => $val:expr),+ $(,)?) => {{
        #[allow(temporary_cstring_as_ptr)]
        let result = unsafe {
            pw_sys::pw_properties_new(
                $(
                {
                    let bytes = std::convert::AsRef::<[u8]>::as_ref($key);
                    std::ffi::CStr::from_bytes_with_nul(bytes).unwrap()
                }.as_ptr(),
                {
                    let bytes = std::convert::AsRef::<[u8]>::as_ref($val);
                    std::ffi::CStr::from_bytes_with_nul(bytes).unwrap()
                }.as_ptr(),
                )+
                std::ptr::null::<std::os::raw::c_char>(),
            )
        };
        unsafe { $crate::core_api::properties::Properties::from_ref(core::ptr::NonNull::new(result.cast()).unwrap()) }
    }};
}

#[test]
fn test_properties_new() {
    let prop = properties_new!("key\0" => b"val\0", "key2\0" => b"val2\0");
    assert_eq!(prop.n_items(), 2);
    assert_eq!(
        prop.get(CString::new("key").unwrap().as_c_str()),
        Some(CString::new("val").unwrap().as_c_str())
    );
    assert_eq!(
        prop.get(CString::new("key2").unwrap().as_c_str()),
        Some(CString::new("val2").unwrap().as_c_str())
    );
}