summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorSoniEx2 <endermoneymod@gmail.com>2018-06-01 11:02:38 -0300
committerSoniEx2 <endermoneymod@gmail.com>2018-06-01 11:02:38 -0300
commitb9f4c3ce81aacdbdecc1d4fea16a0fa920258d87 (patch)
tree83a5f738079fea15ec83858e4493b0722c36e29f /src
parent1e6b5722363946464777f522dc29685acdd45ce9 (diff)
Getters for plugin name/desc/vers
Diffstat (limited to 'src')
-rw-r--r--src/lib.rs54
1 files changed, 53 insertions, 1 deletions
diff --git a/src/lib.rs b/src/lib.rs
index d6ce5c2..1b9ffec 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -404,7 +404,11 @@ impl PluginHandle {
         }
     }
 
-    /// Registers a hexchat plugin.
+    /// Registers this hexchat plugin.
+    ///
+    /// # Panics
+    ///
+    /// This function panics if this plugin is already registered.
     pub fn register(&mut self, name: &str, desc: &str, ver: &str) {
         unsafe {
             let info = self.info;
@@ -421,6 +425,51 @@ impl PluginHandle {
         }
     }
 
+    /// Returns this plugin's registered name.
+    ///
+    /// # Panics
+    ///
+    /// This function panics if this plugin is not registered.
+    pub fn get_name(&self) -> &str {
+        unsafe {
+            let info = self.info;
+            if !(*info.name).is_null() || !(*info.desc).is_null() || !(*info.vers).is_null() {
+                panic!("Attempt to get the name of a plugin that was not yet registered.");
+            }
+            std::str::from_utf8_unchecked(CStr::from_ptr(*info.name).to_bytes())
+        }
+    }
+
+    /// Returns this plugin's registered description.
+    ///
+    /// # Panics
+    ///
+    /// This function panics if this plugin is not registered.
+    pub fn get_description(&self) -> &str {
+        unsafe {
+            let info = self.info;
+            if !(*info.name).is_null() || !(*info.desc).is_null() || !(*info.vers).is_null() {
+                panic!("Attempt to get the description of a plugin that was not yet registered.");
+            }
+            std::str::from_utf8_unchecked(CStr::from_ptr(*info.desc).to_bytes())
+        }
+    }
+
+    /// Returns this plugin's registered version.
+    ///
+    /// # Panics
+    ///
+    /// This function panics if this plugin is not registered.
+    pub fn get_version(&self) -> &str {
+        unsafe {
+            let info = self.info;
+            if !(*info.name).is_null() || !(*info.desc).is_null() || !(*info.vers).is_null() {
+                panic!("Attempt to get the version of a plugin that was not yet registered.");
+            }
+            std::str::from_utf8_unchecked(CStr::from_ptr(*info.vers).to_bytes())
+        }
+    }
+
     /// Ensures the current context is valid.
     ///
     /// # Panics
@@ -656,6 +705,7 @@ impl PluginHandle {
     /// Returns information on the current context.
     ///
     /// Note: `InfoId::Libdirfs` may return `None` or broken results if the result wouldn't be (valid) UTF-8.
+    // TODO this should be `id: InfoId`. fix in 0.3
     pub fn get_info(&mut self, id: &InfoId) -> Option<String> {
         let ph = self.ph;
         let id_cstring = CString::new(&*id.name()).unwrap();
@@ -801,6 +851,8 @@ impl<'a> EnsureValidContext<'a> {
     // ******** //
     // FORWARDS //
     // ******** //
+    // We can't just deref because then you could recursively ensure valid context and then it'd no
+    // longer work.
 
     pub fn get_context(&mut self) -> Context {
         self.ph.get_context()