Code

src/graph_list.c: Add some diagnostic output.
[collection4.git] / src / utils_search.h
index a1fa643983337bc7e28f5d9d43659a56a8c35975..746edccd976c007f304d8970ad1387da9e83f469 100644 (file)
 #ifndef UTILS_SEARCH_H
 #define UTILS_SEARCH_H 1
 
+#include "graph_types.h"
+
 struct search_info_s;
 typedef struct search_info_s search_info_t;
 
 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);
+
+_Bool search_graph_inst_matches (search_info_t *si,
+    graph_config_t *cfg, graph_instance_t *inst,
+    const char *title);
+
 #endif /* UTILS_SEARCH_H */
 /* vim: set sw=2 sts=2 et fdm=marker : */