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
use std::ffi::{CStr, CString, NulError};
use std::fmt;
use std::marker::PhantomData;
use std::ptr::NonNull;
use vapoursynth_sys as ffi;
use crate::api::API;
use crate::format::{ColorFamily, Format, FormatID, SampleType};
use crate::map::OwnedMap;
use crate::plugin::Plugin;
#[derive(Debug, Clone, Copy, Hash)]
pub struct Info {
pub version_string: &'static str,
pub core_version: i32,
pub api_version: i32,
pub num_threads: usize,
pub max_framebuffer_size: u64,
pub used_framebuffer_size: u64,
}
#[derive(Debug, Clone, Copy)]
pub struct CoreRef<'core> {
handle: NonNull<ffi::VSCore>,
_owner: PhantomData<&'core ()>,
}
unsafe impl<'core> Send for CoreRef<'core> {}
unsafe impl<'core> Sync for CoreRef<'core> {}
impl<'core> CoreRef<'core> {
#[inline]
pub(crate) unsafe fn from_ptr(handle: *mut ffi::VSCore) -> Self {
Self {
handle: NonNull::new_unchecked(handle),
_owner: PhantomData,
}
}
#[inline]
pub(crate) fn ptr(&self) -> *mut ffi::VSCore {
self.handle.as_ptr()
}
pub fn info(self) -> Info {
#[cfg(not(feature = "gte-vapoursynth-api-36"))]
let raw_info = unsafe {
API::get_cached()
.get_core_info(self.handle.as_ptr())
.as_ref()
.unwrap()
};
#[cfg(feature = "gte-vapoursynth-api-36")]
let raw_info = unsafe { &API::get_cached().get_core_info(self.handle.as_ptr()) };
let version_string = unsafe { CStr::from_ptr(raw_info.versionString).to_str().unwrap() };
debug_assert!(raw_info.numThreads >= 0);
debug_assert!(raw_info.maxFramebufferSize >= 0);
debug_assert!(raw_info.usedFramebufferSize >= 0);
Info {
version_string,
core_version: raw_info.core,
api_version: raw_info.api,
num_threads: raw_info.numThreads as usize,
max_framebuffer_size: raw_info.maxFramebufferSize as u64,
used_framebuffer_size: raw_info.usedFramebufferSize as u64,
}
}
#[inline]
pub fn get_format(&self, id: FormatID) -> Option<Format<'core>> {
let ptr = unsafe { API::get_cached().get_format_preset(id.0, self.handle.as_ptr()) };
unsafe { ptr.as_ref().map(|p| Format::from_ptr(p)) }
}
#[inline]
pub fn register_format(
&self,
color_family: ColorFamily,
sample_type: SampleType,
bits_per_sample: u8,
sub_sampling_w: u8,
sub_sampling_h: u8,
) -> Option<Format<'core>> {
unsafe {
API::get_cached()
.register_format(
color_family.into(),
sample_type.into(),
i32::from(bits_per_sample),
i32::from(sub_sampling_w),
i32::from(sub_sampling_h),
self.handle.as_ptr(),
)
.as_ref()
.map(|p| Format::from_ptr(p))
}
}
#[inline]
pub fn get_plugin_by_id(&self, id: &str) -> Result<Option<Plugin<'core>>, NulError> {
let id = CString::new(id)?;
let ptr = unsafe { API::get_cached().get_plugin_by_id(id.as_ptr(), self.handle.as_ptr()) };
if ptr.is_null() {
Ok(None)
} else {
Ok(Some(unsafe { Plugin::from_ptr(ptr) }))
}
}
#[inline]
pub fn get_plugin_by_namespace(
&self,
namespace: &str,
) -> Result<Option<Plugin<'core>>, NulError> {
let namespace = CString::new(namespace)?;
let ptr =
unsafe { API::get_cached().get_plugin_by_ns(namespace.as_ptr(), self.handle.as_ptr()) };
if ptr.is_null() {
Ok(None)
} else {
Ok(Some(unsafe { Plugin::from_ptr(ptr) }))
}
}
#[inline]
pub fn plugins(&self) -> OwnedMap<'core> {
unsafe { OwnedMap::from_ptr(API::get_cached().get_plugins(self.handle.as_ptr())) }
}
#[cfg(feature = "gte-vapoursynth-api-36")]
#[inline]
pub fn set_max_cache_size(&self, bytes: i64) -> i64 {
unsafe { API::get_cached().set_max_cache_size(bytes, self.handle.as_ptr()) }
}
#[cfg(feature = "gte-vapoursynth-api-36")]
#[inline]
pub fn set_thread_count(&self, threads: i32) -> i32 {
unsafe { API::get_cached().set_thread_count(threads, self.handle.as_ptr()) }
}
}
impl fmt::Display for Info {
#[inline]
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "{}", self.version_string)?;
writeln!(f, "Worker threads: {}", self.num_threads)?;
writeln!(
f,
"Max framebuffer cache size: {}",
self.max_framebuffer_size
)?;
writeln!(
f,
"Current framebuffer cache size: {}",
self.used_framebuffer_size
)
}
}