attrcache.h 1.5 KB
Newer Older
1 2 3 4 5 6 7 8 9
/*
 * Copyright (C) the libgit2 contributors. All rights reserved.
 *
 * 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_attrcache_h__
#define INCLUDE_attrcache_h__

10 11
#include "common.h"

12
#include "attr_file.h"
13
#include "strmap.h"
14 15 16

#define GIT_ATTR_CONFIG       "core.attributesfile"
#define GIT_IGNORE_CONFIG     "core.excludesfile"
17 18

typedef struct {
19 20
	char *cfg_attr_file; /* cached value of core.attributesfile */
	char *cfg_excl_file; /* cached value of core.excludesfile */
21
	git_strmap *files;	 /* hash path to git_attr_cache_entry records */
22 23 24
	git_strmap *macros;	 /* hash name to vector<git_attr_assignment> */
	git_mutex lock;
	git_pool  pool;
25 26
} git_attr_cache;

27
extern int git_attr_cache__init(git_repository *repo);
28 29 30 31 32

/* get file - loading and reload as needed */
extern int git_attr_cache__get(
	git_attr_file **file,
	git_repository *repo,
33
	git_attr_session *attr_session,
34
	git_attr_file_source *source,
35 36
	git_attr_file_parser parser,
	bool allow_macros);
37 38 39

extern bool git_attr_cache__is_cached(
	git_repository *repo,
40
	git_attr_file_source_t source_type,
41
	const char *filename);
42

43 44
extern int git_attr_cache__alloc_file_entry(
	git_attr_file_entry **out,
45
	git_repository *repo,
46 47 48 49
	const char *base,
	const char *path,
	git_pool *pool);

50 51 52 53 54 55
extern int git_attr_cache__insert_macro(
	git_repository *repo, git_attr_rule *macro);

extern git_attr_rule *git_attr_cache__lookup_macro(
	git_repository *repo, const char *name);

56
#endif