summaryrefslogtreecommitdiff
path: root/src/libtracker-miner/tracker-priority-queue.h
blob: 0dbc9b83deb25366f4088831814144b9a160f645 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
/*
 * Copyright (C) 2011, Nokia <ivan.frade@nokia.com>
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser 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.
 *
 * Author: Carlos Garnacho <carlos@lanedo.com>
 */

#ifndef __LIBTRACKER_MINER_PRIORITY_QUEUE_H__
#define __LIBTRACKER_MINER_PRIORITY_QUEUE_H__

#include <glib.h>

G_BEGIN_DECLS

typedef struct _TrackerPriorityQueue TrackerPriorityQueue;

TrackerPriorityQueue *tracker_priority_queue_new   (void);

TrackerPriorityQueue *tracker_priority_queue_ref   (TrackerPriorityQueue *queue);
void                  tracker_priority_queue_unref (TrackerPriorityQueue *queue);

gboolean tracker_priority_queue_is_empty           (TrackerPriorityQueue *queue);

guint    tracker_priority_queue_get_length         (TrackerPriorityQueue *queue);

GList *  tracker_priority_queue_add     (TrackerPriorityQueue *queue,
                                         gpointer              data,
                                         gint                  priority);
void     tracker_priority_queue_foreach (TrackerPriorityQueue *queue,
                                         GFunc                 func,
                                         gpointer              user_data);

gboolean tracker_priority_queue_foreach_remove (TrackerPriorityQueue *queue,
                                                GEqualFunc            compare_func,
                                                gpointer              compare_user_data,
                                                GDestroyNotify        destroy_notify);

gpointer tracker_priority_queue_find           (TrackerPriorityQueue *queue,
                                                gint                 *priority_out,
                                                GEqualFunc            compare_func,
                                                gpointer              data);

gpointer tracker_priority_queue_peek    (TrackerPriorityQueue *queue,
                                         gint                 *priority_out);
gpointer tracker_priority_queue_pop     (TrackerPriorityQueue *queue,
                                         gint                 *priority_out);

GList *  tracker_priority_queue_get_head    (TrackerPriorityQueue *queue);
void     tracker_priority_queue_add_node    (TrackerPriorityQueue *queue,
                                             GList                *node,
                                             gint                  priority);
void     tracker_priority_queue_remove_node (TrackerPriorityQueue  *queue,
                                             GList                 *node);
GList *  tracker_priority_queue_pop_node    (TrackerPriorityQueue *queue,
                                             gint                 *priority_out);


G_END_DECLS

#endif /* __LIBTRACKER_TRACKER_PRIORITY_QUEUE_H__ */