2017-11-21 20:58:50 +00:00
|
|
|
#ifndef LIST_OBJECTS_FILTER_H
|
|
|
|
#define LIST_OBJECTS_FILTER_H
|
|
|
|
|
2018-08-15 17:54:05 +00:00
|
|
|
struct list_objects_filter_options;
|
|
|
|
struct object;
|
|
|
|
struct oidset;
|
2018-11-10 05:48:51 +00:00
|
|
|
struct repository;
|
2018-08-15 17:54:05 +00:00
|
|
|
|
2017-11-21 20:58:50 +00:00
|
|
|
/*
|
|
|
|
* During list-object traversal we allow certain objects to be
|
|
|
|
* filtered (omitted) from the result. The active filter uses
|
|
|
|
* these result values to guide list-objects.
|
|
|
|
*
|
|
|
|
* _ZERO : Do nothing with the object at this time. It may
|
|
|
|
* be revisited if it appears in another place in
|
|
|
|
* the tree or in another commit during the overall
|
|
|
|
* traversal.
|
|
|
|
*
|
|
|
|
* _MARK_SEEN : Mark this object as "SEEN" in the object flags.
|
|
|
|
* This will prevent it from being revisited during
|
|
|
|
* the remainder of the traversal. This DOES NOT
|
|
|
|
* imply that it will be included in the results.
|
|
|
|
*
|
|
|
|
* _DO_SHOW : Show this object in the results (call show() on it).
|
|
|
|
* In general, objects should only be shown once, but
|
|
|
|
* this result DOES NOT imply that we mark it SEEN.
|
|
|
|
*
|
2018-10-18 00:39:15 +00:00
|
|
|
* _SKIP_TREE : Used in LOFS_BEGIN_TREE situation - indicates that
|
|
|
|
* the tree's children should not be iterated over. This
|
|
|
|
* is used as an optimization when all children will
|
|
|
|
* definitely be ignored.
|
|
|
|
*
|
2017-11-21 20:58:50 +00:00
|
|
|
* Most of the time, you want the combination (_MARK_SEEN | _DO_SHOW)
|
|
|
|
* but they can be used independently, such as when sparse-checkout
|
|
|
|
* pattern matching is being applied.
|
|
|
|
*
|
|
|
|
* A _MARK_SEEN without _DO_SHOW can be called a hard-omit -- the
|
|
|
|
* object is not shown and will never be reconsidered (unless a
|
|
|
|
* previous iteration has already shown it).
|
|
|
|
*
|
|
|
|
* A _DO_SHOW without _MARK_SEEN can be used, for example, to
|
|
|
|
* include a directory, but then revisit it to selectively include
|
|
|
|
* or omit objects within it.
|
|
|
|
*
|
|
|
|
* A _ZERO can be called a provisional-omit -- the object is NOT shown,
|
|
|
|
* but *may* be revisited (if the object appears again in the traversal).
|
|
|
|
* Therefore, it will be omitted from the results *unless* a later
|
|
|
|
* iteration causes it to be shown.
|
|
|
|
*/
|
|
|
|
enum list_objects_filter_result {
|
|
|
|
LOFR_ZERO = 0,
|
|
|
|
LOFR_MARK_SEEN = 1<<0,
|
|
|
|
LOFR_DO_SHOW = 1<<1,
|
2018-10-18 00:39:15 +00:00
|
|
|
LOFR_SKIP_TREE = 1<<2,
|
2017-11-21 20:58:50 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enum list_objects_filter_situation {
|
2021-04-12 13:37:35 +00:00
|
|
|
LOFS_COMMIT,
|
|
|
|
LOFS_TAG,
|
2017-11-21 20:58:50 +00:00
|
|
|
LOFS_BEGIN_TREE,
|
|
|
|
LOFS_END_TREE,
|
|
|
|
LOFS_BLOB
|
|
|
|
};
|
|
|
|
|
2019-06-27 22:54:05 +00:00
|
|
|
struct filter;
|
|
|
|
|
2019-06-27 22:54:08 +00:00
|
|
|
/*
|
|
|
|
* Constructor for the set of defined list-objects filters.
|
|
|
|
* The `omitted` set is optional. It is populated with objects that the
|
|
|
|
* filter excludes. This set should not be considered finalized until
|
|
|
|
* after list_objects_filter__free is called on the returned `struct
|
|
|
|
* filter *`.
|
|
|
|
*/
|
2019-06-27 22:54:05 +00:00
|
|
|
struct filter *list_objects_filter__init(
|
|
|
|
struct oidset *omitted,
|
|
|
|
struct list_objects_filter_options *filter_options);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Lets `filter` decide how to handle the `obj`. If `filter` is NULL, this
|
|
|
|
* function behaves as expected if no filter is configured: all objects are
|
|
|
|
* included.
|
|
|
|
*/
|
|
|
|
enum list_objects_filter_result list_objects_filter__filter_object(
|
2018-11-10 05:48:51 +00:00
|
|
|
struct repository *r,
|
2017-11-21 20:58:50 +00:00
|
|
|
enum list_objects_filter_situation filter_situation,
|
|
|
|
struct object *obj,
|
|
|
|
const char *pathname,
|
|
|
|
const char *filename,
|
2019-06-27 22:54:05 +00:00
|
|
|
struct filter *filter);
|
2017-11-21 20:58:50 +00:00
|
|
|
|
2019-06-27 22:54:08 +00:00
|
|
|
/*
|
|
|
|
* Destroys `filter` and finalizes the `omitted` set, if present. Does
|
|
|
|
* nothing if `filter` is null.
|
|
|
|
*/
|
2019-06-27 22:54:05 +00:00
|
|
|
void list_objects_filter__free(struct filter *filter);
|
2017-11-21 20:58:50 +00:00
|
|
|
|
|
|
|
#endif /* LIST_OBJECTS_FILTER_H */
|