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
// This file was generated by gir (https://github.com/gtk-rs/gir)
// from gir-files (https://github.com/gtk-rs/gir-files)
// from webkit-gir-files
// DO NOT EDIT

use crate::ffi;
use glib::translate::*;

/// Returns the major version number of the JavaScriptCore library.
/// (e.g. in JavaScriptCore version 1.8.3 this is 1.)
///
/// This function is in the library, so it represents the JavaScriptCore library
/// your code is running against. Contrast with the #JSC_MAJOR_VERSION
/// macro, which represents the major version of the JavaScriptCore headers you
/// have included when compiling your code.
///
/// # Returns
///
/// the major version number of the JavaScriptCore library
#[doc(alias = "jsc_get_major_version")]
#[doc(alias = "get_major_version")]
pub fn major_version() -> u32 {
    assert_initialized_main_thread!();
    unsafe { ffi::jsc_get_major_version() }
}

/// Returns the micro version number of the JavaScriptCore library.
/// (e.g. in JavaScriptCore version 1.8.3 this is 3.)
///
/// This function is in the library, so it represents the JavaScriptCore library
/// your code is running against. Contrast with the #JSC_MICRO_VERSION
/// macro, which represents the micro version of the JavaScriptCore headers you
/// have included when compiling your code.
///
/// # Returns
///
/// the micro version number of the JavaScriptCore library
#[doc(alias = "jsc_get_micro_version")]
#[doc(alias = "get_micro_version")]
pub fn micro_version() -> u32 {
    assert_initialized_main_thread!();
    unsafe { ffi::jsc_get_micro_version() }
}

/// Returns the minor version number of the JavaScriptCore library.
/// (e.g. in JavaScriptCore version 1.8.3 this is 8.)
///
/// This function is in the library, so it represents the JavaScriptCore library
/// your code is running against. Contrast with the #JSC_MINOR_VERSION
/// macro, which represents the minor version of the JavaScriptCore headers you
/// have included when compiling your code.
///
/// # Returns
///
/// the minor version number of the JavaScriptCore library
#[doc(alias = "jsc_get_minor_version")]
#[doc(alias = "get_minor_version")]
pub fn minor_version() -> u32 {
    assert_initialized_main_thread!();
    unsafe { ffi::jsc_get_minor_version() }
}

/// Get @option as a #gboolean value.
/// ## `option`
/// the option identifier
///
/// # Returns
///
/// [`true`] if @value has been set or [`false`] if the option doesn't exist
///
/// ## `value`
/// return location for the option value
#[doc(alias = "jsc_options_get_boolean")]
pub fn options_get_boolean(option: &str) -> Option<bool> {
    assert_initialized_main_thread!();
    unsafe {
        let mut value = std::mem::MaybeUninit::uninit();
        let ret = from_glib(ffi::jsc_options_get_boolean(
            option.to_glib_none().0,
            value.as_mut_ptr(),
        ));
        if ret {
            Some(from_glib(value.assume_init()))
        } else {
            None
        }
    }
}

/// Get @option as a #gdouble value.
/// ## `option`
/// the option identifier
///
/// # Returns
///
/// [`true`] if @value has been set or [`false`] if the option doesn't exist
///
/// ## `value`
/// return location for the option value
#[doc(alias = "jsc_options_get_double")]
pub fn options_get_double(option: &str) -> Option<f64> {
    assert_initialized_main_thread!();
    unsafe {
        let mut value = std::mem::MaybeUninit::uninit();
        let ret = from_glib(ffi::jsc_options_get_double(
            option.to_glib_none().0,
            value.as_mut_ptr(),
        ));
        if ret {
            Some(value.assume_init())
        } else {
            None
        }
    }
}

/// Get @option as a #gint value.
/// ## `option`
/// the option identifier
///
/// # Returns
///
/// [`true`] if @value has been set or [`false`] if the option doesn't exist
///
/// ## `value`
/// return location for the option value
#[doc(alias = "jsc_options_get_int")]
pub fn options_get_int(option: &str) -> Option<i32> {
    assert_initialized_main_thread!();
    unsafe {
        let mut value = std::mem::MaybeUninit::uninit();
        let ret = from_glib(ffi::jsc_options_get_int(
            option.to_glib_none().0,
            value.as_mut_ptr(),
        ));
        if ret {
            Some(value.assume_init())
        } else {
            None
        }
    }
}

//#[doc(alias = "jsc_options_get_option_group")]
//pub fn options_get_option_group() -> /*Ignored*/Option<glib::OptionGroup> {
//    unsafe { TODO: call ffi:jsc_options_get_option_group() }
//}

/// Get @option as a range string. The string must be in the
/// format <emphasis>[!]&lt;low&gt;[:&lt;high&gt;]</emphasis> where low and high are #guint values.
/// Values between low and high (both included) will be considered in
/// the range, unless <emphasis>!</emphasis> is used to invert the range.
/// ## `option`
/// the option identifier
///
/// # Returns
///
/// [`true`] if @value has been set or [`false`] if the option doesn't exist
///
/// ## `value`
/// return location for the option value
#[doc(alias = "jsc_options_get_range_string")]
pub fn options_get_range_string(option: &str) -> Option<glib::GString> {
    assert_initialized_main_thread!();
    unsafe {
        let mut value = std::ptr::null_mut();
        let ret = from_glib(ffi::jsc_options_get_range_string(
            option.to_glib_none().0,
            &mut value,
        ));
        if ret {
            Some(from_glib_full(value))
        } else {
            None
        }
    }
}

/// Get @option as a #gsize value.
/// ## `option`
/// the option identifier
///
/// # Returns
///
/// [`true`] if @value has been set or [`false`] if the option doesn't exist
///
/// ## `value`
/// return location for the option value
#[doc(alias = "jsc_options_get_size")]
pub fn options_get_size(option: &str) -> Option<usize> {
    assert_initialized_main_thread!();
    unsafe {
        let mut value = std::mem::MaybeUninit::uninit();
        let ret = from_glib(ffi::jsc_options_get_size(
            option.to_glib_none().0,
            value.as_mut_ptr(),
        ));
        if ret {
            Some(value.assume_init())
        } else {
            None
        }
    }
}

/// Get @option as a string.
/// ## `option`
/// the option identifier
///
/// # Returns
///
/// [`true`] if @value has been set or [`false`] if the option doesn't exist
///
/// ## `value`
/// return location for the option value
#[doc(alias = "jsc_options_get_string")]
pub fn options_get_string(option: &str) -> Option<glib::GString> {
    assert_initialized_main_thread!();
    unsafe {
        let mut value = std::ptr::null_mut();
        let ret = from_glib(ffi::jsc_options_get_string(
            option.to_glib_none().0,
            &mut value,
        ));
        if ret {
            Some(from_glib_full(value))
        } else {
            None
        }
    }
}

/// Get @option as a #guint value.
/// ## `option`
/// the option identifier
///
/// # Returns
///
/// [`true`] if @value has been set or [`false`] if the option doesn't exist
///
/// ## `value`
/// return location for the option value
#[doc(alias = "jsc_options_get_uint")]
pub fn options_get_uint(option: &str) -> Option<u32> {
    assert_initialized_main_thread!();
    unsafe {
        let mut value = std::mem::MaybeUninit::uninit();
        let ret = from_glib(ffi::jsc_options_get_uint(
            option.to_glib_none().0,
            value.as_mut_ptr(),
        ));
        if ret {
            Some(value.assume_init())
        } else {
            None
        }
    }
}

/// Set @option as a #gboolean value.
/// ## `option`
/// the option identifier
/// ## `value`
/// the value to set
///
/// # Returns
///
/// [`true`] if option was correctly set or [`false`] otherwise.
#[doc(alias = "jsc_options_set_boolean")]
pub fn options_set_boolean(option: &str, value: bool) -> bool {
    assert_initialized_main_thread!();
    unsafe {
        from_glib(ffi::jsc_options_set_boolean(
            option.to_glib_none().0,
            value.into_glib(),
        ))
    }
}

/// Set @option as a #gdouble value.
/// ## `option`
/// the option identifier
/// ## `value`
/// the value to set
///
/// # Returns
///
/// [`true`] if option was correctly set or [`false`] otherwise.
#[doc(alias = "jsc_options_set_double")]
pub fn options_set_double(option: &str, value: f64) -> bool {
    assert_initialized_main_thread!();
    unsafe { from_glib(ffi::jsc_options_set_double(option.to_glib_none().0, value)) }
}

/// Set @option as a #gint value.
/// ## `option`
/// the option identifier
/// ## `value`
/// the value to set
///
/// # Returns
///
/// [`true`] if option was correctly set or [`false`] otherwise.
#[doc(alias = "jsc_options_set_int")]
pub fn options_set_int(option: &str, value: i32) -> bool {
    assert_initialized_main_thread!();
    unsafe { from_glib(ffi::jsc_options_set_int(option.to_glib_none().0, value)) }
}

/// Set @option as a range string. The string must be in the
/// format <emphasis>[!]&lt;low&gt;[:&lt;high&gt;]</emphasis> where low and high are #guint values.
/// Values between low and high (both included) will be considered in
/// the range, unless <emphasis>!</emphasis> is used to invert the range.
/// ## `option`
/// the option identifier
/// ## `value`
/// the value to set
///
/// # Returns
///
/// [`true`] if option was correctly set or [`false`] otherwise.
#[doc(alias = "jsc_options_set_range_string")]
pub fn options_set_range_string(option: &str, value: &str) -> bool {
    assert_initialized_main_thread!();
    unsafe {
        from_glib(ffi::jsc_options_set_range_string(
            option.to_glib_none().0,
            value.to_glib_none().0,
        ))
    }
}

/// Set @option as a #gsize value.
/// ## `option`
/// the option identifier
/// ## `value`
/// the value to set
///
/// # Returns
///
/// [`true`] if option was correctly set or [`false`] otherwise.
#[doc(alias = "jsc_options_set_size")]
pub fn options_set_size(option: &str, value: usize) -> bool {
    assert_initialized_main_thread!();
    unsafe { from_glib(ffi::jsc_options_set_size(option.to_glib_none().0, value)) }
}

/// Set @option as a string.
/// ## `option`
/// the option identifier
/// ## `value`
/// the value to set
///
/// # Returns
///
/// [`true`] if option was correctly set or [`false`] otherwise.
#[doc(alias = "jsc_options_set_string")]
pub fn options_set_string(option: &str, value: &str) -> bool {
    assert_initialized_main_thread!();
    unsafe {
        from_glib(ffi::jsc_options_set_string(
            option.to_glib_none().0,
            value.to_glib_none().0,
        ))
    }
}

/// Set @option as a #guint value.
/// ## `option`
/// the option identifier
/// ## `value`
/// the value to set
///
/// # Returns
///
/// [`true`] if option was correctly set or [`false`] otherwise.
#[doc(alias = "jsc_options_set_uint")]
pub fn options_set_uint(option: &str, value: u32) -> bool {
    assert_initialized_main_thread!();
    unsafe { from_glib(ffi::jsc_options_set_uint(option.to_glib_none().0, value)) }
}