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
//! # Examples
//!
//! How to inhibit logout/user switch
//!
//! ```rust,no_run
//! use std::{thread, time};
//!
//! use ashpd::{
//! desktop::inhibit::{InhibitFlags, InhibitProxy, SessionState},
//! WindowIdentifier,
//! };
//! use futures_util::StreamExt;
//!
//! async fn run() -> ashpd::Result<()> {
//! let proxy = InhibitProxy::new().await?;
//! let identifier = WindowIdentifier::default();
//!
//! let session = proxy.create_monitor(&identifier).await?;
//!
//! let state = proxy.receive_state_changed().await?.next().await.unwrap();
//! match state.session_state() {
//! SessionState::Running => (),
//! SessionState::QueryEnd => {
//! proxy
//! .inhibit(
//! &identifier,
//! InhibitFlags::Logout | InhibitFlags::UserSwitch,
//! "please save the opened project first",
//! )
//! .await?;
//! thread::sleep(time::Duration::from_secs(1));
//! proxy.query_end_response(&session).await?;
//! }
//! SessionState::Ending => {
//! println!("ending the session");
//! }
//! }
//! Ok(())
//! }
//! ```
use enumflags2::{bitflags, BitFlags};
use futures_util::{Stream, TryFutureExt};
use serde::Deserialize;
use serde_repr::{Deserialize_repr, Serialize_repr};
use zbus::zvariant::{DeserializeDict, ObjectPath, OwnedObjectPath, SerializeDict, Type};
use super::{session::SessionPortal, HandleToken, Request, Session};
use crate::{desktop::session::CreateSessionResponse, proxy::Proxy, Error, WindowIdentifier};
#[derive(SerializeDict, Type, Debug, Default)]
/// Specified options for a [`InhibitProxy::create_monitor`] request.
#[zvariant(signature = "dict")]
struct CreateMonitorOptions {
/// A string that will be used as the last element of the handle.
handle_token: HandleToken,
/// A string that will be used as the last element of the session handle.
session_handle_token: HandleToken,
}
#[derive(SerializeDict, Type, Debug, Default)]
/// Specified options for a [`InhibitProxy::inhibit`] request.
#[zvariant(signature = "dict")]
struct InhibitOptions {
/// A string that will be used as the last element of the handle.
handle_token: HandleToken,
/// User-visible reason for the inhibition.
reason: Option<String>,
}
#[bitflags]
#[derive(Serialize_repr, PartialEq, Eq, Debug, Clone, Copy, Type)]
#[repr(u32)]
#[doc(alias = "XdpInhibitFlags")]
/// The actions to inhibit that can end the user's session
pub enum InhibitFlags {
#[doc(alias = "XDP_INHIBIT_FLAG_LOGOUT")]
/// Logout.
Logout,
#[doc(alias = "XDP_INHIBIT_FLAG_USER_SWITCH")]
/// User switch.
UserSwitch,
#[doc(alias = "XDP_INHIBIT_FLAG_SUSPEND")]
/// Suspend.
Suspend,
#[doc(alias = "XDP_INHIBIT_FLAG_IDLE")]
/// Idle.
Idle,
}
#[derive(Debug, DeserializeDict, Type)]
#[zvariant(signature = "dict")]
struct State {
#[zvariant(rename = "screensaver-active")]
screensaver_active: bool,
#[zvariant(rename = "session-state")]
session_state: SessionState,
}
#[derive(Debug, Deserialize, Type)]
/// A response received when the `state_changed` signal is received.
pub struct InhibitState(OwnedObjectPath, State);
impl InhibitState {
/// The session triggered the state change
pub fn session_handle(&self) -> ObjectPath<'_> {
self.0.as_ref()
}
/// Whether screensaver is active or not.
pub fn screensaver_active(&self) -> bool {
self.1.screensaver_active
}
/// The session state.
pub fn session_state(&self) -> SessionState {
self.1.session_state
}
}
#[cfg_attr(feature = "glib", derive(glib::Enum))]
#[cfg_attr(feature = "glib", enum_type(name = "AshpdSessionState"))]
#[derive(Serialize_repr, Deserialize_repr, PartialEq, Eq, Debug, Clone, Copy, Type)]
#[doc(alias = "XdpLoginSessionState")]
#[repr(u32)]
/// The current state of the user's session.
pub enum SessionState {
#[doc(alias = "XDP_LOGIN_SESSION_RUNNING")]
/// Running.
Running = 1,
#[doc(alias = "XDP_LOGIN_SESSION_QUERY_END")]
/// The user asked to end the session e.g logout.
QueryEnd = 2,
#[doc(alias = "XDP_LOGIN_SESSION_ENDING")]
/// The session is ending.
Ending = 3,
}
/// The interface lets sandboxed applications inhibit the user session from
/// ending, suspending, idling or getting switched away.
///
/// Wrapper of the DBus interface: [`org.freedesktop.portal.Inhibit`](https://flatpak.github.io/xdg-desktop-portal/docs/doc-org.freedesktop.portal.Inhibit.html).
#[derive(Debug)]
#[doc(alias = "org.freedesktop.portal.Inhibit")]
pub struct InhibitProxy<'a>(Proxy<'a>);
impl<'a> InhibitProxy<'a> {
/// Create a new instance of [`InhibitProxy`].
pub async fn new() -> Result<InhibitProxy<'a>, Error> {
let proxy = Proxy::new_desktop("org.freedesktop.portal.Inhibit").await?;
Ok(Self(proxy))
}
/// Creates a monitoring session.
/// While this session is active, the caller will receive `state_changed`
/// signals with updates on the session state.
///
/// # Arguments
///
/// * `identifier` - The application window identifier.
///
/// # Specifications
///
/// See also [`CreateMonitor`](https://flatpak.github.io/xdg-desktop-portal/docs/doc-org.freedesktop.portal.Inhibit.html#org-freedesktop-portal-inhibit-createmonitor).
#[doc(alias = "CreateMonitor")]
#[doc(alias = "xdp_portal_session_monitor_start")]
pub async fn create_monitor(
&self,
identifier: &WindowIdentifier,
) -> Result<Session<'a, Self>, Error> {
let options = CreateMonitorOptions::default();
let body = &(&identifier, &options);
let (monitor, proxy) = futures_util::try_join!(
self.0
.request::<CreateSessionResponse>(&options.handle_token, "CreateMonitor", body)
.into_future(),
Session::from_unique_name(&options.session_handle_token).into_future(),
)?;
assert_eq!(proxy.path(), &monitor.response()?.session_handle.as_ref());
Ok(proxy)
}
/// Inhibits a session status changes.
///
/// # Arguments
///
/// * `identifier` - The application window identifier.
/// * `flags` - The flags determine what changes are inhibited.
/// * `reason` - User-visible reason for the inhibition.
///
/// # Specifications
///
/// See also [`Inhibit`](https://flatpak.github.io/xdg-desktop-portal/docs/doc-org.freedesktop.portal.Inhibit.html#org-freedesktop-portal-inhibit-inhibit).
#[doc(alias = "Inhibit")]
#[doc(alias = "xdp_portal_session_inhibit")]
pub async fn inhibit(
&self,
identifier: &WindowIdentifier,
flags: BitFlags<InhibitFlags>,
reason: &str,
) -> Result<Request<()>, Error> {
let options = InhibitOptions {
reason: Some(reason.to_owned()),
handle_token: Default::default(),
};
self.0
.empty_request(
&options.handle_token,
"Inhibit",
&(&identifier, flags, &options),
)
.await
}
/// Signal emitted when the session state changes.
///
/// # Specifications
///
/// See also [`StateChanged`](https://flatpak.github.io/xdg-desktop-portal/docs/doc-org.freedesktop.portal.Inhibit.html#org-freedesktop-portal-inhibit-statechanged).
#[doc(alias = "StateChanged")]
#[doc(alias = "XdpPortal::session-state-changed")]
pub async fn receive_state_changed(&self) -> Result<impl Stream<Item = InhibitState>, Error> {
self.0.signal("StateChanged").await
}
/// Acknowledges that the caller received the "state_changed" signal.
/// This method should be called within one second after receiving a
/// [`receive_state_changed()`][`InhibitProxy::receive_state_changed`]
/// signal with the [`SessionState::QueryEnd`] state.
///
/// # Arguments
///
/// * `session` - A [`Session`], created with
/// [`create_monitor()`][`InhibitProxy::create_monitor`].
///
/// # Specifications
///
/// See also [`QueryEndResponse`](https://flatpak.github.io/xdg-desktop-portal/docs/doc-org.freedesktop.portal.Inhibit.html#org-freedesktop-portal-inhibit-queryendresponse).
#[doc(alias = "QueryEndResponse")]
#[doc(alias = "xdp_portal_session_monitor_query_end_response")]
pub async fn query_end_response(&self, session: &Session<'_, Self>) -> Result<(), Error> {
self.0.call("QueryEndResponse", &(session)).await
}
}
impl<'a> std::ops::Deref for InhibitProxy<'a> {
type Target = zbus::Proxy<'a>;
fn deref(&self) -> &Self::Target {
&self.0
}
}
impl SessionPortal for InhibitProxy<'_> {}