]> git.proxmox.com Git - libgit2.git/blob - src/repository.h
fileops/repository: create (most) directories with 0777 permissions
[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
23 #define DOT_GIT ".git"
24 #define GIT_DIR DOT_GIT "/"
25 #define GIT_DIR_MODE 0755
26 #define GIT_BARE_DIR_MODE 0777
27 #define GIT_INDEX_FILE "index"
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 *db;
37
38 git_cache objects;
39 git_refcache references;
40
41 char *path_repository;
42 char *path_index;
43 char *path_odb;
44 char *path_workdir;
45
46 unsigned is_bare:1;
47 unsigned int lru_counter;
48 };
49
50 /* fully free the object; internal method, do not
51 * export */
52 void git_object__free(void *object);
53
54 int git_oid__parse(git_oid *oid, const char **buffer_out, const char *buffer_end, const char *header);
55 void git_oid__writebuf(git_buf *buf, const char *header, const git_oid *oid);
56
57 #endif