use crate::{ffi, CookieJar, CookieJarAcceptPolicy, SessionFeature};
use glib::{prelude::*, translate::*};
glib::wrapper! {
#[doc(alias = "SoupCookieJarText")]
pub struct CookieJarText(Object<ffi::SoupCookieJarText, ffi::SoupCookieJarTextClass>) @extends CookieJar, @implements SessionFeature;
match fn {
type_ => || ffi::soup_cookie_jar_text_get_type(),
}
}
impl CookieJarText {
#[doc(alias = "soup_cookie_jar_text_new")]
pub fn new(filename: &str, read_only: bool) -> CookieJarText {
assert_initialized_main_thread!();
unsafe {
CookieJar::from_glib_full(ffi::soup_cookie_jar_text_new(
filename.to_glib_none().0,
read_only.into_glib(),
))
.unsafe_cast()
}
}
pub fn builder() -> CookieJarTextBuilder {
CookieJarTextBuilder::new()
}
pub fn filename(&self) -> Option<glib::GString> {
ObjectExt::property(self, "filename")
}
}
impl Default for CookieJarText {
fn default() -> Self {
glib::object::Object::new::<Self>()
}
}
#[must_use = "The builder must be built to be used"]
pub struct CookieJarTextBuilder {
builder: glib::object::ObjectBuilder<'static, CookieJarText>,
}
impl CookieJarTextBuilder {
fn new() -> Self {
Self {
builder: glib::object::Object::builder(),
}
}
pub fn filename(self, filename: impl Into<glib::GString>) -> Self {
Self {
builder: self.builder.property("filename", filename.into()),
}
}
pub fn accept_policy(self, accept_policy: CookieJarAcceptPolicy) -> Self {
Self {
builder: self.builder.property("accept-policy", accept_policy),
}
}
pub fn read_only(self, read_only: bool) -> Self {
Self {
builder: self.builder.property("read-only", read_only),
}
}
#[must_use = "Building the object from the builder is usually expensive and is not expected to have side effects"]
pub fn build(self) -> CookieJarText {
self.builder.build()
}
}