array_destroy (si->terms);
} /* }}} void search_destroy */
+_Bool search_has_selector (search_info_t *si) /* {{{ */
+{
+ if (si == NULL)
+ return (0);
+
+ if ((si->host != NULL)
+ || (si->plugin != NULL) || (si->plugin_instance != NULL)
+ || (si->type != NULL) || (si->type_instance != NULL))
+ return (1);
+
+ return (0);
+} /* }}} _Bool search_has_selector */
+
graph_ident_t *search_to_ident (search_info_t *si) /* {{{ */
{
if (si == NULL)
search_info_t *search_parse (const char *search);
void search_destroy (search_info_t *si);
+/* Returns true if at least one of the ident fields is defined (not a
+ * wildcard), false otherwise. If no field has been specified, searching is a
+ * lot easier. */
+_Bool search_has_selector (search_info_t *si);
+
graph_ident_t *search_to_ident (search_info_t *si);
_Bool search_graph_title_matches (search_info_t *si, const char *title);