]> git.proxmox.com Git - libgit2.git/blob - src/repository.h
Add support for macros and cache flush API.
[libgit2.git] / src / repository.h
1 /*
2 * Copyright (C) 2009-2011 the libgit2 contributors
3 *
4 * This file is part of libgit2, distributed under the GNU GPL v2 with
5 * a Linking Exception. For full terms see the included COPYING file.
6 */
7 #ifndef INCLUDE_repository_h__
8 #define INCLUDE_repository_h__
9
10 #include "git2/common.h"
11 #include "git2/oid.h"
12 #include "git2/odb.h"
13 #include "git2/repository.h"
14 #include "git2/object.h"
15
16 #include "hashtable.h"
17 #include "index.h"
18 #include "cache.h"
19 #include "refs.h"
20 #include "buffer.h"
21 #include "odb.h"
22 #include "attr_file.h"
23
24 #define DOT_GIT ".git"
25 #define GIT_DIR DOT_GIT "/"
26 #define GIT_DIR_MODE 0755
27 #define GIT_BARE_DIR_MODE 0777
28
29 struct git_object {
30 git_cached_obj cached;
31 git_repository *repo;
32 git_otype type;
33 };
34
35 struct git_repository {
36 git_odb *_odb;
37 git_config *_config;
38 git_index *_index;
39
40 git_cache objects;
41 git_refcache references;
42 git_attr_cache attrcache;
43
44 char *path_repository;
45 char *workdir;
46
47 unsigned is_bare:1;
48 unsigned int lru_counter;
49 };
50
51 /* fully free the object; internal method, do not
52 * export */
53 void git_object__free(void *object);
54
55 int git_oid__parse(git_oid *oid, const char **buffer_out, const char *buffer_end, const char *header);
56 void git_oid__writebuf(git_buf *buf, const char *header, const git_oid *oid);
57
58 int git_repository_config__weakptr(git_config **out, git_repository *repo);
59 int git_repository_odb__weakptr(git_odb **out, git_repository *repo);
60 int git_repository_index__weakptr(git_index **out, git_repository *repo);
61
62 #endif