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
use File;
use ffi;
use glib::object::IsA;
use glib::translate::*;
use glib_ffi;
use gobject_ffi;
use std::mem;
use std::ptr;
glib_wrapper! {
pub struct Vfs(Object<ffi::GVfs, ffi::GVfsClass>);
match fn {
get_type => || ffi::g_vfs_get_type(),
}
}
impl Vfs {
pub fn get_default() -> Option<Vfs> {
unsafe {
from_glib_none(ffi::g_vfs_get_default())
}
}
pub fn get_local() -> Option<Vfs> {
unsafe {
from_glib_none(ffi::g_vfs_get_local())
}
}
}
pub trait VfsExt {
fn get_file_for_path(&self, path: &str) -> Option<File>;
fn get_file_for_uri(&self, uri: &str) -> Option<File>;
fn get_supported_uri_schemes(&self) -> Vec<String>;
fn is_active(&self) -> bool;
fn parse_name(&self, parse_name: &str) -> Option<File>;
#[cfg(any(feature = "v2_50", feature = "dox"))]
fn unregister_uri_scheme(&self, scheme: &str) -> bool;
}
impl<O: IsA<Vfs>> VfsExt for O {
fn get_file_for_path(&self, path: &str) -> Option<File> {
unsafe {
from_glib_full(ffi::g_vfs_get_file_for_path(self.to_glib_none().0, path.to_glib_none().0))
}
}
fn get_file_for_uri(&self, uri: &str) -> Option<File> {
unsafe {
from_glib_full(ffi::g_vfs_get_file_for_uri(self.to_glib_none().0, uri.to_glib_none().0))
}
}
fn get_supported_uri_schemes(&self) -> Vec<String> {
unsafe {
FromGlibPtrContainer::from_glib_none(ffi::g_vfs_get_supported_uri_schemes(self.to_glib_none().0))
}
}
fn is_active(&self) -> bool {
unsafe {
from_glib(ffi::g_vfs_is_active(self.to_glib_none().0))
}
}
fn parse_name(&self, parse_name: &str) -> Option<File> {
unsafe {
from_glib_full(ffi::g_vfs_parse_name(self.to_glib_none().0, parse_name.to_glib_none().0))
}
}
#[cfg(any(feature = "v2_50", feature = "dox"))]
fn unregister_uri_scheme(&self, scheme: &str) -> bool {
unsafe {
from_glib(ffi::g_vfs_unregister_uri_scheme(self.to_glib_none().0, scheme.to_glib_none().0))
}
}
}