unofficial mirror of notmuch@notmuchmail.org
 help / color / mirror / code / Atom feed
blob 8392ef6182ce9eade944e5012b8eb0c5caeaf120 2021 bytes (raw)
name: lib/tags.c 	 # note: path name is non-authoritative(*)

 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
75
76
77
78
79
80
81
 
/* tags.c - Iterator for tags returned from message or thread
 *
 * Copyright © 2009 Carl Worth
 *
 * This program 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 3 of the License, or
 * (at your option) any later version.
 *
 * This program 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 program.  If not, see http://www.gnu.org/licenses/ .
 *
 * Author: Carl Worth <cworth@cworth.org>
 */

#include "notmuch-private.h"

struct _notmuch_tags {
    notmuch_string_node_t *iterator;
};

/* Create a new notmuch_tags_t object, with 'ctx' as its talloc owner.
 * If steal is true, then the iterator will steal the reference to the
 * list (useful for one-shot iterators); otherwise it will add a
 * reference.
 *
 * This function can return NULL in case of out-of-memory.
 */
notmuch_tags_t *
_notmuch_tags_create (const void *ctx, notmuch_string_list_t *list,
		      notmuch_bool_t steal)
{
    notmuch_tags_t *tags;

    tags = talloc (ctx, notmuch_tags_t);
    if (unlikely (tags == NULL))
	return NULL;

    tags->iterator = list->head;
    if (steal)
	talloc_steal (tags, list);
    else
	(void) talloc_reference (tags, list);

    return tags;
}

notmuch_bool_t
notmuch_tags_valid (notmuch_tags_t *tags)
{
    return tags->iterator != NULL;
}

const char *
notmuch_tags_get (notmuch_tags_t *tags)
{
    if (tags->iterator == NULL)
	return NULL;

    return (char *) tags->iterator->string;
}

void
notmuch_tags_move_to_next (notmuch_tags_t *tags)
{
    if (tags->iterator == NULL)
	return;

    tags->iterator = tags->iterator->next;
}

void
notmuch_tags_destroy (notmuch_tags_t *tags)
{
    talloc_free (tags);
}

debug log:

solving 8392ef6 ...
found 8392ef6 in https://yhetil.org/notmuch/1291928396-27937-3-git-send-email-amdragon@mit.edu/
found 8fe4a3f in https://yhetil.org/notmuch.git/
preparing index
index prepared:
100644 8fe4a3f0d4ebae5575f2e08abd5825781dbc1396	lib/tags.c

applying [1/1] https://yhetil.org/notmuch/1291928396-27937-3-git-send-email-amdragon@mit.edu/
diff --git a/lib/tags.c b/lib/tags.c
index 8fe4a3f..8392ef6 100644

Checking patch lib/tags.c...
Applied patch lib/tags.c cleanly.

index at:
100644 8392ef6182ce9eade944e5012b8eb0c5caeaf120	lib/tags.c

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://yhetil.org/notmuch.git/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).