revwalk.h 1.11 KB
Newer Older
1
/*
Edward Thomson committed
2
 * Copyright (C) the libgit2 contributors. All rights reserved.
3 4 5 6 7 8 9
 *
 * This file is part of libgit2, distributed under the GNU GPL v2 with
 * a Linking Exception. For full terms see the included COPYING file.
 */
#ifndef INCLUDE_revwalk_h__
#define INCLUDE_revwalk_h__

10 11
#include "common.h"

12 13 14 15 16 17 18
#include "git2/revwalk.h"
#include "oidmap.h"
#include "commit_list.h"
#include "pqueue.h"
#include "pool.h"
#include "vector.h"

19
#include "oidmap.h"
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35

struct git_revwalk {
	git_repository *repo;
	git_odb *odb;

	git_oidmap *commits;
	git_pool commit_pool;

	git_commit_list *iterator_topo;
	git_commit_list *iterator_rand;
	git_commit_list *iterator_reverse;
	git_pqueue iterator_time;

	int (*get_next)(git_commit_list_node **, git_revwalk *);
	int (*enqueue)(git_revwalk *, git_commit_list_node *);

36
	unsigned walking:1,
37 38
		first_parent: 1,
		did_hide: 1,
39 40
		did_push: 1,
		limited: 1;
41 42
	unsigned int sorting;

43 44
	/* the pushes and hides */
	git_commit_list *user_input;
45 46 47 48

	/* hide callback */
	git_revwalk_hide_cb hide_cb;
	void *hide_cb_payload;
49 50
};

51
git_commit_list_node *git_revwalk__commit_lookup(git_revwalk *walk, const git_oid *oid);
52 53

#endif