summaryrefslogtreecommitdiff
path: root/src/libtracker-common/tracker-utils.h
diff options
context:
space:
mode:
authorMartyn James Russell <mr@src.gnome.org>2008-09-26 10:47:33 +0000
committerMartyn James Russell <mr@src.gnome.org>2008-09-26 10:47:33 +0000
commit2f30be89ca554dc4639c7c8a6ee465274f52721a (patch)
treebb333517426d0d68cad130b34b8892a45ff7f54d /src/libtracker-common/tracker-utils.h
parentcaa9320c8ae7800acf2160701eb9284ac05e4eb9 (diff)
downloadtracker-2f30be89ca554dc4639c7c8a6ee465274f52721a.tar.gz
Merge indexer-split branch.
svn path=/trunk/; revision=2275
Diffstat (limited to 'src/libtracker-common/tracker-utils.h')
-rw-r--r--src/libtracker-common/tracker-utils.h45
1 files changed, 45 insertions, 0 deletions
diff --git a/src/libtracker-common/tracker-utils.h b/src/libtracker-common/tracker-utils.h
new file mode 100644
index 000000000..f943a830c
--- /dev/null
+++ b/src/libtracker-common/tracker-utils.h
@@ -0,0 +1,45 @@
+/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
+/*
+ * Copyright (C) 2006, Mr Jamie McCracken (jamiemcc@gnome.org)
+ * Copyright (C) 2008, Nokia
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library 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
+ * General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+ * Boston, MA 02110-1301, USA.
+ */
+
+#ifndef __LIBTRACKER_COMMON_UTILS_H__
+#define __LIBTRACKER_COMMON_UTILS_H__
+
+#include <glib.h>
+
+#include "tracker-config.h"
+
+gboolean tracker_is_empty_string (const char *str);
+gchar * tracker_string_replace (const gchar *haystack,
+ const gchar *needle,
+ const gchar *replacement);
+gchar * tracker_string_remove (gchar *haystack,
+ const gchar *needle);
+gchar * tracker_escape_string (const gchar *in);
+gchar * tracker_seconds_estimate_to_string (gdouble seconds_elapsed,
+ gboolean short_string,
+ guint items_done,
+ guint items_remaining);
+gchar * tracker_seconds_to_string (gdouble seconds_elapsed,
+ gboolean short_string);
+void tracker_throttle (TrackerConfig *config,
+ gint multiplier);
+
+#endif /* __LIBTRACKER_COMMON_UTILS_H__ */