Linus Torvalds | a59b276 | 2007-04-16 16:03:15 -0700 | [diff] [blame] | 1 | #ifndef DECORATE_H |
| 2 | #define DECORATE_H |
| 3 | |
Jonathan Tan | ddd3e31 | 2017-12-07 16:14:24 -0800 | [diff] [blame] | 4 | /* |
| 5 | * A data structure that associates Git objects to void pointers. See |
| 6 | * t/helper/test-example-decorate.c for a demonstration of how to use these |
| 7 | * functions. |
| 8 | */ |
| 9 | |
| 10 | /* |
| 11 | * An entry in the data structure. |
| 12 | */ |
| 13 | struct decoration_entry { |
Jeff King | 54988bd | 2008-08-20 13:55:33 -0400 | [diff] [blame] | 14 | const struct object *base; |
Linus Torvalds | a59b276 | 2007-04-16 16:03:15 -0700 | [diff] [blame] | 15 | void *decoration; |
| 16 | }; |
| 17 | |
Jonathan Tan | ddd3e31 | 2017-12-07 16:14:24 -0800 | [diff] [blame] | 18 | /* |
| 19 | * The data structure. |
| 20 | * |
| 21 | * This data structure must be zero-initialized. |
| 22 | */ |
Linus Torvalds | a59b276 | 2007-04-16 16:03:15 -0700 | [diff] [blame] | 23 | struct decoration { |
Jonathan Tan | ddd3e31 | 2017-12-07 16:14:24 -0800 | [diff] [blame] | 24 | /* |
| 25 | * Not used by the decoration mechanism. Clients may use this for |
| 26 | * whatever they want. |
| 27 | */ |
Linus Torvalds | a59b276 | 2007-04-16 16:03:15 -0700 | [diff] [blame] | 28 | const char *name; |
Jonathan Tan | ddd3e31 | 2017-12-07 16:14:24 -0800 | [diff] [blame] | 29 | |
| 30 | /* |
| 31 | * The capacity of "entries". |
| 32 | */ |
| 33 | unsigned int size; |
| 34 | |
| 35 | /* |
| 36 | * The number of real Git objects (that is, entries with non-NULL |
| 37 | * "base"). |
| 38 | */ |
| 39 | unsigned int nr; |
| 40 | |
| 41 | /* |
| 42 | * The entries. This is an array of size "size", containing nr entries |
| 43 | * with non-NULL "base" and (size - nr) entries with NULL "base". |
| 44 | */ |
| 45 | struct decoration_entry *entries; |
Linus Torvalds | a59b276 | 2007-04-16 16:03:15 -0700 | [diff] [blame] | 46 | }; |
| 47 | |
Jonathan Tan | ddd3e31 | 2017-12-07 16:14:24 -0800 | [diff] [blame] | 48 | /* |
| 49 | * Add an association from the given object to the given pointer (which may be |
| 50 | * NULL), returning the previously associated pointer. If there is no previous |
| 51 | * association, this function returns NULL. |
| 52 | */ |
Denton Liu | 5545442 | 2019-04-29 04:28:14 -0400 | [diff] [blame] | 53 | void *add_decoration(struct decoration *n, const struct object *obj, void *decoration); |
Jonathan Tan | ddd3e31 | 2017-12-07 16:14:24 -0800 | [diff] [blame] | 54 | |
| 55 | /* |
| 56 | * Return the pointer associated to the given object. If there is no |
| 57 | * association, this function returns NULL. |
| 58 | */ |
Denton Liu | 5545442 | 2019-04-29 04:28:14 -0400 | [diff] [blame] | 59 | void *lookup_decoration(struct decoration *n, const struct object *obj); |
Linus Torvalds | a59b276 | 2007-04-16 16:03:15 -0700 | [diff] [blame] | 60 | |
| 61 | #endif |