unofficial mirror of notmuch@notmuchmail.org
 help / color / mirror / code / Atom feed
blob 62ccb39722b9d09f811064ed867310aa2c5be4a3 2195 bytes (raw)
name: lib/filenames.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
82
83
84
85
86
87
 
/* filenames.c - Iterator for a list of filenames
 *
 * Copyright © 2010 Intel Corporation
 *
 * 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_filenames {
    notmuch_string_node_t *first;
    notmuch_string_node_t *iterator;
};

/* The notmuch_filenames_t iterates over a notmuch_string_list_t of
 * file names */
notmuch_filenames_t *
_notmuch_filenames_create (const void *ctx,
			   notmuch_string_list_t *list)
{
    notmuch_filenames_t *filenames;

    filenames = talloc (ctx, notmuch_filenames_t);
    if (unlikely (filenames == NULL))
	return NULL;

    filenames->first = list->head;
    filenames->iterator = list->head;
    (void) talloc_reference (filenames, list);

    return filenames;
}

notmuch_bool_t
notmuch_filenames_valid (notmuch_filenames_t *filenames)
{
    if (filenames == NULL)
	return FALSE;

    return (filenames->iterator != NULL);
}

const char *
notmuch_filenames_get (notmuch_filenames_t *filenames)
{
    if ((filenames == NULL) || (filenames->iterator == NULL))
	return NULL;

    return filenames->iterator->string;
}

void
notmuch_filenames_move_to_next (notmuch_filenames_t *filenames)
{
    if ((filenames == NULL) || (filenames->iterator == NULL))
	return;

    filenames->iterator = filenames->iterator->next;
}

void
notmuch_filenames_rewind (notmuch_filenames_t *filenames)
{
    if (filenames == NULL)
	return;

    filenames->iterator = filenames->first;
}

void
notmuch_filenames_destroy (notmuch_filenames_t *filenames)
{
    talloc_free (filenames);
}

debug log:

solving 62ccb39 ...
found 62ccb39 in https://yhetil.org/notmuch/1340555366-25891-3-git-send-email-sascha-pgp@silbe.org/
found 4f7c0d8 in https://yhetil.org/notmuch.git/
preparing index
index prepared:
100644 4f7c0d85b1c350d5977a1ddd00c5e0c01665f49d	lib/filenames.c

applying [1/1] https://yhetil.org/notmuch/1340555366-25891-3-git-send-email-sascha-pgp@silbe.org/
diff --git a/lib/filenames.c b/lib/filenames.c
index 4f7c0d8..62ccb39 100644

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

index at:
100644 62ccb39722b9d09f811064ed867310aa2c5be4a3	lib/filenames.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).