summary refs log tree commit diff stats
path: root/src/strip.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/strip.rs')
-rw-r--r--src/strip.rs134
1 files changed, 134 insertions, 0 deletions
diff --git a/src/strip.rs b/src/strip.rs
new file mode 100644
index 0000000..b10fb44
--- /dev/null
+++ b/src/strip.rs
@@ -0,0 +1,134 @@
+// This file is part of Hexchat Plugin API Bindings for Rust
+// Copyright (C) 2022 Soni L.
+//
+// This program is free software: you can redistribute it and/or modify
+// it under the terms of the GNU Affero General Public License as
+// published by the Free Software Foundation, either version 3 of the
+// License, or (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU Affero General Public License for more details.
+//
+// You should have received a copy of the GNU Affero General Public License
+// along with this program.  If not, see <https://www.gnu.org/licenses/>.
+
+/// Stripping mode for [`PluginHandle::strip`](crate::PluginHandle::strip).
+#[derive(Copy, Clone, Debug, PartialEq, Eq, Hash, Default)]
+pub struct Strip {
+    // 4
+    hidden: bool,
+    // 2
+    formatting: bool,
+    // 1
+    colors: bool,
+}
+
+impl Strip {
+    /// Creates a new `Strip` that, by default, strips no attributes.
+    ///
+    /// # Examples
+    ///
+    /// ```no_run
+    /// use hexchat_unsafe_plugin::{PluginHandle, Strip};
+    ///
+    /// fn strip_nothing(s: &str, ph: &PluginHandle<'_>) -> String {
+    ///     ph.strip(s, Strip::new())
+    /// }
+    /// ```
+    pub const fn new() -> Strip {
+        Strip {
+            hidden: false,
+            formatting: false,
+            colors: false,
+        }
+    }
+
+    /// Sets whether to remove mIRC color attributes.
+    ///
+    /// # Examples
+    ///
+    /// ```no_run
+    /// use hexchat_unsafe_plugin::{PluginHandle, Strip};
+    ///
+    /// fn strip_colors(s: &str, ph: &PluginHandle<'_>) -> String {
+    ///     ph.strip(s, Strip::new().colors(true))
+    /// }
+    /// ```
+    pub const fn colors(mut self, strip: bool) -> Self {
+        self.colors = strip;
+        self
+    }
+
+    /// Sets whether to remove formatting attributes.
+    ///
+    /// # Examples
+    ///
+    /// ```no_run
+    /// use hexchat_unsafe_plugin::{PluginHandle, Strip};
+    ///
+    /// fn strip_formatting(s: &str, ph: &PluginHandle<'_>) -> String {
+    ///     ph.strip(s, Strip::new().formatting(true))
+    /// }
+    /// ```
+    pub const fn formatting(mut self, strip: bool) -> Self {
+        self.formatting = strip;
+        self
+    }
+
+    /// Sets whether to remove internal "hidden text" formatting attributes.
+    ///
+    /// This is split from [`Self::formatting`] because these attributes are
+    /// only processed when writing directly to a buffer - they're for
+    /// internal/plugin use. This tends to be useful when processing user or
+    /// remote input and writing it directly to a buffer.
+    ///
+    /// # Examples
+    ///
+    /// ```no_run
+    /// use hexchat_unsafe_plugin::{PluginHandle, Strip};
+    ///
+    /// fn strip_hidden(s: &str, ph: &PluginHandle<'_>) -> String {
+    ///     ph.strip(s, Strip::new().hidden(true))
+    /// }
+    /// ```
+    pub const fn hidden(mut self, strip: bool) -> Self {
+        self.hidden = strip;
+        self
+    }
+
+    /// Creates a new `Strip` that strips all strippable attributes.
+    ///
+    /// # Examples
+    ///
+    /// ```no_run
+    /// use hexchat_unsafe_plugin::{PluginHandle, Strip};
+    ///
+    /// fn strip_all(s: &str, ph: &PluginHandle<'_>) -> String {
+    ///     ph.strip(s, Strip::all())
+    /// }
+    /// ```
+    pub const fn all() -> Strip {
+        Strip {
+            hidden: true,
+            formatting: true,
+            colors: true,
+        }
+    }
+
+    /// Builds the flags for FFI.
+    pub(crate) fn flags(self) -> ::libc::c_int {
+        let mut value = 0;
+        if self.hidden {
+            value |= 4;
+        }
+        if self.formatting {
+            value |= 2;
+        }
+        if self.colors {
+            value |= 1;
+        }
+        value
+    }
+}