Skip to content

Commit 6fd195d

Browse files
committed
Change git_repository initialization to use a path
The constructor to git_repository is now called 'git_repository_open(path)' and takes a path to a git repository instead of an existing ODB object. Unit tests have been updated accordingly and the two test repositories have been merged into one. Signed-off-by: Vicent Marti <[email protected]>
1 parent d80e9d5 commit 6fd195d

File tree

53 files changed

+247
-143
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+247
-143
lines changed

src/fileops.c

+7
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,13 @@ int gitfo_write(git_file fd, void *buf, size_t cnt)
5353
return GIT_SUCCESS;
5454
}
5555

56+
int gitfo_isdir(const char *path)
57+
{
58+
struct stat st;
59+
return (path && gitfo_stat(path, &st) == 0 && S_ISDIR(st.st_mode)) ?
60+
GIT_SUCCESS : GIT_ENOTFOUND;
61+
}
62+
5663
int gitfo_exists(const char *path)
5764
{
5865
return access(path, F_OK);

src/fileops.h

+1
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ typedef struct { /* file io buffer */
5757
extern int gitfo_exists(const char *path);
5858
extern int gitfo_open(const char *path, int flags);
5959
extern int gitfo_creat(const char *path, int mode);
60+
extern int gitfo_isdir(const char *path);
6061
#define gitfo_close(fd) close(fd)
6162

6263
extern int gitfo_read(git_file fd, void *buf, size_t cnt);

src/git/index.h

+48-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#ifndef INCLUDE_git_index_h__
22
#define INCLUDE_git_index_h__
33

4+
#include <stdint.h>
45
#include "common.h"
56
#include "oid.h"
67

@@ -16,18 +17,50 @@ GIT_BEGIN_DECL
1617
/** Memory representation of an index file. */
1718
typedef struct git_index git_index;
1819

20+
21+
/** Time used in a git index entry */
22+
typedef struct {
23+
uint32_t seconds;
24+
uint32_t nanoseconds;
25+
} git_index_time;
26+
1927
/** Memory representation of a file entry in the index. */
20-
typedef struct git_index_entry git_index_entry;
28+
typedef struct git_index_entry {
29+
git_index_time ctime;
30+
git_index_time mtime;
31+
32+
uint32_t dev;
33+
uint32_t ino;
34+
uint32_t mode;
35+
uint32_t uid;
36+
uint32_t gid;
37+
uint32_t file_size;
38+
39+
git_oid oid;
40+
41+
uint16_t flags;
42+
uint16_t flags_extended;
43+
44+
char *path;
45+
} git_index_entry;
2146

2247

2348
/**
2449
* Create a new Git index object as a memory representation
2550
* of the Git index file in 'index_path'.
2651
*
52+
* The argument 'working_dir' is the root path of the indexed
53+
* files in the index and is used to calculate the relative path
54+
* when inserting new entries from existing files on disk.
55+
*
56+
* If 'working _dir' is NULL (e.g for bare repositories), the
57+
* methods working on on-disk files will fail.
58+
*
2759
* @param index_path the path to the index file in disk
60+
* @param working_dir working dir for the git repository
2861
* @return the index object; NULL if the index could not be created
2962
*/
30-
GIT_EXTERN(git_index *) git_index_alloc(const char *index_path);
63+
GIT_EXTERN(git_index *) git_index_alloc(const char *index_path, const char *working_dir);
3164

3265
/**
3366
* Clear the contents (all the entries) of an index object.
@@ -83,6 +116,19 @@ GIT_EXTERN(int) git_index_find(git_index *index, const char *path);
83116
*/
84117
GIT_EXTERN(int) git_index_add(git_index *index, const char *path, int stage);
85118

119+
/**
120+
* Get a pointer to one of the entries in the index
121+
*
122+
* This entry can be modified, and the changes will be written
123+
* back to disk on the next write() call.
124+
*
125+
* @param index an existing index object
126+
* @param n the position of the entry
127+
* @return a pointer to the entry; NULL if out of bounds
128+
*/
129+
GIT_EXTERN(git_index_entry *) git_index_get(git_index *index, int n);
130+
131+
86132
/** @} */
87133
GIT_END_DECL
88134
#endif

src/git/repository.h

+28-5
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
#include "common.h"
55
#include "odb.h"
66
#include "commit.h"
7+
#include "index.h"
78

89
/**
910
* @file git/repository.h
@@ -15,15 +16,28 @@
1516
GIT_BEGIN_DECL
1617

1718
/**
18-
* Allocate a new repository object.
19+
* Open a git repository.
1920
*
20-
* TODO: specify the repository's path instead
21-
* of its object database
21+
* The 'path' argument must point to an existing git repository
22+
* folder, e.g.
2223
*
23-
* @param odb an existing object database to back the repo
24+
* /path/to/my_repo/.git/ (normal repository)
25+
* objects/
26+
* index
27+
* HEAD
28+
*
29+
* /path/to/bare_repo/ (bare repository)
30+
* objects/
31+
* index
32+
* HEAD
33+
*
34+
* The method will automatically detect if 'path' is a normal
35+
* or bare repository or fail is 'path' is neither.
36+
*
37+
* @param path the path to the repository
2438
* @return the new repository handle; NULL on error
2539
*/
26-
GIT_EXTERN(git_repository *) git_repository_alloc(git_odb *odb);
40+
GIT_EXTERN(git_repository *) git_repository_open(const char *path);
2741

2842

2943
/**
@@ -57,6 +71,15 @@ GIT_EXTERN(git_object *) git_repository_lookup(git_repository *repo, const git_o
5771
*/
5872
GIT_EXTERN(git_odb *) git_repository_database(git_repository *repo);
5973

74+
/**
75+
* Get the Index file of a Git repository
76+
*
77+
* @param repo a repository object
78+
* @return a pointer to the Index object;
79+
* NULL if the index cannot be opened
80+
*/
81+
GIT_EXTERN(git_index *) git_repository_index(git_repository *rpeo);
82+
6083
/**
6184
* Create a new in-memory repository object with
6285
* the given type.

src/index.c

+16-2
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ static int read_tree(git_index *index, const char *buffer, size_t buffer_size);
9797
static git_index_tree *read_tree_internal(const char **, const char *, git_index_tree *);
9898

9999

100-
git_index *git_index_alloc(const char *index_path)
100+
git_index *git_index_alloc(const char *index_path, const char *work_dir)
101101
{
102102
git_index *index;
103103

@@ -116,6 +116,9 @@ git_index *git_index_alloc(const char *index_path)
116116
return NULL;
117117
}
118118

119+
if (work_dir != NULL)
120+
index->working_path = git__strdup(work_dir);
121+
119122
/* Check if index file is stored on disk already */
120123
if (gitfo_exists(index->index_file_path) == 0)
121124
index->on_disk = 1;
@@ -126,6 +129,9 @@ git_index *git_index_alloc(const char *index_path)
126129
void git_index_clear(git_index *index)
127130
{
128131
unsigned int i;
132+
133+
assert(index);
134+
129135
for (i = 0; i < index->entry_count; ++i)
130136
free(index->entries[i].path);
131137

@@ -139,6 +145,9 @@ void git_index_clear(git_index *index)
139145

140146
void git_index_free(git_index *index)
141147
{
148+
if (index == NULL)
149+
return;
150+
142151
git_index_clear(index);
143152
free(index->entries);
144153
index->entries = NULL;
@@ -213,6 +222,11 @@ int git_index_write(git_index *index)
213222
return 0;
214223
}
215224

225+
git_index_entry *git_index_get(git_index *index, int n)
226+
{
227+
return (n >= 0 && (unsigned int)n < index->entry_count) ? &index->entries[n] : NULL;
228+
}
229+
216230
int git_index_add(git_index *index, const char *filename, int stage)
217231
{
218232
git_index_entry entry;
@@ -225,7 +239,7 @@ int git_index_add(git_index *index, const char *filename, int stage)
225239
if (path_length < GIT_IDXENTRY_NAMEMASK)
226240
entry.flags |= path_length;
227241
else
228-
entry.flags |= path_length;
242+
entry.flags |= GIT_IDXENTRY_NAMEMASK;;
229243

230244
if (stage < 0 || stage > 3)
231245
return GIT_ERROR;

src/index.h

+2-25
Original file line numberDiff line numberDiff line change
@@ -12,31 +12,6 @@
1212
#define GIT_IDXENTRY_VALID (0x8000)
1313
#define GIT_IDXENTRY_STAGESHIFT 12
1414

15-
typedef struct {
16-
uint32_t seconds;
17-
uint32_t nanoseconds;
18-
} git_index_time;
19-
20-
struct git_index_entry {
21-
git_index_time ctime;
22-
git_index_time mtime;
23-
24-
uint32_t dev;
25-
uint32_t ino;
26-
uint32_t mode;
27-
uint32_t uid;
28-
uint32_t gid;
29-
uint32_t file_size;
30-
31-
git_oid oid;
32-
33-
uint16_t flags;
34-
uint16_t flags_extended;
35-
36-
char *path;
37-
};
38-
39-
4015
struct git_index_tree {
4116
char *name;
4217

@@ -53,6 +28,8 @@ typedef struct git_index_tree git_index_tree;
5328
struct git_index {
5429

5530
char *index_file_path;
31+
char *working_path;
32+
5633
time_t last_modified;
5734

5835
git_index_entry *entries;

0 commit comments

Comments
 (0)