Sha256: 3d7802245831d7329618ef5bfda57a95856a218b9c0b28aa7368a514e5d44bd5

Contents?: true

Size: 1.55 KB

Versions: 14

Compression:

Stored size: 1.55 KB

Contents

/*
 * 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__

#include "attr_file.h"
#include "strmap.h"

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

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

extern int git_attr_cache__do_init(git_repository *repo);

#define git_attr_cache__init(REPO) \
	(git_repository_attr_cache(REPO) ? 0 : git_attr_cache__do_init(REPO))

/* get file - loading and reload as needed */
extern int git_attr_cache__get(
	git_attr_file **file,
	git_repository *repo,
	git_attr_file_source source,
	const char *base,
	const char *filename,
	git_attr_file_parser parser);

extern bool git_attr_cache__is_cached(
	git_repository *repo,
	git_attr_file_source source,
	const char *path);

extern int git_attr_cache__alloc_file_entry(
	git_attr_file_entry **out,
	const char *base,
	const char *path,
	git_pool *pool);

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);

#endif

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
rugged-0.22.2 vendor/libgit2/src/attrcache.h
rugged-0.22.1b1 vendor/libgit2/src/attrcache.h
rugged-0.21.4 vendor/libgit2/src/attrcache.h
rugged-0.21.3 vendor/libgit2/src/attrcache.h
rugged-0.22.0b5 vendor/libgit2/src/attrcache.h
rugged-0.22.0b4 vendor/libgit2/src/attrcache.h
rugged-0.22.0b3 vendor/libgit2/src/attrcache.h
rugged-0.22.0b2 vendor/libgit2/src/attrcache.h
rugged-0.22.0b1 vendor/libgit2/src/attrcache.h
rugged-0.21.2 vendor/libgit2/src/attrcache.h
rugged-0.21.1b2 vendor/libgit2/src/attrcache.h
rugged-0.21.1b1 vendor/libgit2/src/attrcache.h
rugged-0.21.1b0 vendor/libgit2/src/attrcache.h
rugged-0.21.0 vendor/libgit2/src/attrcache.h