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
// 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 crate::SessionFeature;
use glib::translate::*;

glib::wrapper! {
    /// Sniffs the mime type of messages.
    ///
    /// A #SoupContentSniffer tries to detect the actual content type of
    /// the files that are being downloaded by looking at some of the data
    /// before the [`Message`][crate::Message] emits its [`got-headers`][struct@crate::Message#got-headers] signal.
    /// #SoupContentSniffer implements [`SessionFeature`][crate::SessionFeature], so you can add
    /// content sniffing to a session with [`SessionExt::add_feature()`][crate::prelude::SessionExt::add_feature()] or
    /// [`SessionExt::add_feature_by_type()`][crate::prelude::SessionExt::add_feature_by_type()].
    ///
    /// # Implements
    ///
    /// [`trait@glib::ObjectExt`], [`SessionFeatureExt`][trait@crate::prelude::SessionFeatureExt]
    #[doc(alias = "SoupContentSniffer")]
    pub struct ContentSniffer(Object<ffi::SoupContentSniffer, ffi::SoupContentSnifferClass>) @implements SessionFeature;

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

impl ContentSniffer {
    /// Creates a new #SoupContentSniffer.
    ///
    /// # Returns
    ///
    /// a new #SoupContentSniffer
    #[doc(alias = "soup_content_sniffer_new")]
    pub fn new() -> ContentSniffer {
        assert_initialized_main_thread!();
        unsafe { from_glib_full(ffi::soup_content_sniffer_new()) }
    }

    //#[doc(alias = "soup_content_sniffer_sniff")]
    //pub fn sniff(&self, msg: &Message, buffer: &glib::Bytes, params: /*Unknown conversion*//*Unimplemented*/HashTable TypeId { ns_id: 0, id: 28 }/TypeId { ns_id: 0, id: 28 }) -> Option<glib::GString> {
    //    unsafe { TODO: call ffi:soup_content_sniffer_sniff() }
    //}
}

impl Default for ContentSniffer {
    fn default() -> Self {
        Self::new()
    }
}