unofficial mirror of notmuch@notmuchmail.org
 help / color / mirror / code / Atom feed
blob c9cd6a68149a9ecf5746de410debb83168ebb5ba 1657 bytes (raw)
name: sprinter.h 	 # 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
 
#ifndef NOTMUCH_SPRINTER_H
#define NOTMUCH_SPRINTER_H

/* Necessary for notmuch_bool_t */
#include "notmuch-client.h"

/* Structure printer interface */
typedef struct sprinter {
    /* Start a new map/dictionary structure. This should be followed by
     * a sequence of alternating calls to map_key and one of the
     * value-printing functions until the map is ended by end.
     */
    void (*begin_map)(struct sprinter *);

    /* Start a new list/array structure.
     */
    void (*begin_list)(struct sprinter *);

    /* End the last opened list or map structure.
     */
    void (*end)(struct sprinter *);

    /* Set the prefix of the next component. This is purely for
     * debugging purposes and for the unstructured text formatter.
     */
    void (*set_prefix)(struct sprinter *, const char *);

    /* Print one string/integer/boolean/null element (possibly inside a
     * list or map, followed or preceded by separators).
     * For string, the char * must be UTF-8 encoded.
     */
    void (*string)(struct sprinter *, const char *);
    void (*integer)(struct sprinter *, int);
    void (*boolean)(struct sprinter *, notmuch_bool_t);
    void (*null)(struct sprinter *);

    /* Print the key of a map's key/value pair. The char * must be UTF-8
     * encoded.
     */
    void (*map_key)(struct sprinter *, const char *);

    /* Insert a separator (usually extra whitespace) for improved
     * readability without affecting the abstract syntax of the
     * structure being printed.
     * For JSON, this could simply be a line break.
     */
    void (*separator)(struct sprinter *);
} sprinter_t;

#endif // NOTMUCH_SPRINTER_H

debug log:

solving c9cd6a6 ...
found c9cd6a6 in https://yhetil.org/notmuch/1342167097-25012-2-git-send-email-craven@gmx.net/

applying [1/1] https://yhetil.org/notmuch/1342167097-25012-2-git-send-email-craven@gmx.net/
diff --git a/sprinter.h b/sprinter.h
new file mode 100644
index 0000000..c9cd6a6

Checking patch sprinter.h...
Applied patch sprinter.h cleanly.

index at:
100644 c9cd6a68149a9ecf5746de410debb83168ebb5ba	sprinter.h

(*) 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).