Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
git2
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
git2
Commits
ab525a74
Commit
ab525a74
authored
Jul 07, 2011
by
Carlos Martín Nieto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename stuff to git_indexer_
Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>
parent
f23c4a66
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
103 additions
and
14 deletions
+103
-14
include/git2/indexer.h
+5
-5
src/indexer.c
+98
-9
No files found.
include/git2/indexer.h
View file @
ab525a74
...
@@ -5,15 +5,15 @@
...
@@ -5,15 +5,15 @@
typedef
struct
git_indexer_stats
{
typedef
struct
git_indexer_stats
{
unsigned
int
total
;
unsigned
int
total
;
unsigned
int
p
ar
sed
;
unsigned
int
p
roces
sed
;
}
git_indexer_stats
;
}
git_indexer_stats
;
typedef
struct
git_
pack_indexer
git_pack
_indexer
;
typedef
struct
git_
indexer
git
_indexer
;
GIT_EXTERN
(
int
)
git_
pack_indexer_new
(
git_pack
_indexer
**
out
,
const
char
*
packname
);
GIT_EXTERN
(
int
)
git_
indexer_new
(
git
_indexer
**
out
,
const
char
*
packname
);
GIT_EXTERN
(
int
)
git_
pack_indexer_run
(
git_pack
_indexer
*
idx
,
int
(
*
cb
)(
const
git_indexer_stats
*
,
void
*
),
void
*
data
);
GIT_EXTERN
(
int
)
git_
indexer_run
(
git
_indexer
*
idx
,
int
(
*
cb
)(
const
git_indexer_stats
*
,
void
*
),
void
*
data
);
GIT_EXTERN
(
void
)
git_
pack_indexer_free
(
git_pack
_indexer
*
idx
);
GIT_EXTERN
(
void
)
git_
indexer_free
(
git
_indexer
*
idx
);
#endif
#endif
src/indexer.c
View file @
ab525a74
...
@@ -24,21 +24,22 @@
...
@@ -24,21 +24,22 @@
*/
*/
#include "git2/indexer.h"
#include "git2/indexer.h"
#include "git2/zlib.h"
#include "common.h"
#include "common.h"
#include "pack.h"
#include "pack.h"
#include "mwindow.h"
#include "mwindow.h"
#include "posix.h"
#include "posix.h"
typedef
struct
git_
pack_
indexer
{
typedef
struct
git_indexer
{
struct
pack_file
*
pack
;
struct
pack_file
*
pack
;
git_vector
objects
;
git_vector
objects
;
git_vector
deltas
;
git_vector
deltas
;
struct
stat
st
;
struct
stat
st
;
git_indexer_stats
stats
;
git_indexer_stats
stats
;
}
git_
pack_
indexer
;
}
git_indexer
;
static
int
parse_header
(
git_
pack_
indexer
*
idx
)
static
int
parse_header
(
git_indexer
*
idx
)
{
{
struct
pack_header
hdr
;
struct
pack_header
hdr
;
int
error
;
int
error
;
...
@@ -81,13 +82,13 @@ cleanup:
...
@@ -81,13 +82,13 @@ cleanup:
return
error
;
return
error
;
}
}
int
git_
pack_indexer_new
(
git_pack
_indexer
**
out
,
const
char
*
packname
)
int
git_
indexer_new
(
git
_indexer
**
out
,
const
char
*
packname
)
{
{
struct
git_pack
_indexer
*
idx
;
git
_indexer
*
idx
;
unsigned
int
namelen
;
unsigned
int
namelen
;
int
ret
,
error
;
int
ret
,
error
;
idx
=
git__malloc
(
sizeof
(
struct
git_pack
_indexer
));
idx
=
git__malloc
(
sizeof
(
git
_indexer
));
if
(
idx
==
NULL
)
if
(
idx
==
NULL
)
return
GIT_ENOMEM
;
return
GIT_ENOMEM
;
...
@@ -137,27 +138,114 @@ cleanup:
...
@@ -137,27 +138,114 @@ cleanup:
}
}
/*
/*
* Parse the variable-width length and return it. Assumes that the
* whole number exists inside the buffer. As this is the git format,
* the first byte only contains length information in the lower nibble
* because the higher one is used for type and continuation. The
* output parameter is necessary because we don't know how long the
* entry is actually going to be.
*/
static
unsigned
long
entry_len
(
const
char
**
bufout
,
const
char
*
buf
)
{
unsigned
long
size
,
c
;
const
char
*
p
=
buf
;
unsigned
shift
;
c
=
*
p
;
size
=
c
&
0xf
;
shift
=
4
;
/* As long as the MSB is set, we need to continue */
while
(
c
&
0x80
)
{
p
++
;
c
=
*
p
;
size
+=
(
c
&
0x7f
)
<<
shift
;
shift
+=
7
;
}
*
bufout
=
p
;
return
size
;
}
static
git_otype
entry_type
(
const
char
*
buf
)
{
return
(
*
buf
>>
4
)
&
7
;
}
/*
* Create the index. Every time something interesting happens
* Create the index. Every time something interesting happens
* (something has been parse or resolved), the callback gets called
* (something has been parse or resolved), the callback gets called
* with some stats so it can tell the user how hard we're working
* with some stats so it can tell the user how hard we're working
*/
*/
int
git_
pack_indexer_run
(
git_pack
_indexer
*
idx
,
int
(
*
cb
)(
const
git_indexer_stats
*
,
void
*
),
void
*
data
)
int
git_
indexer_run
(
git
_indexer
*
idx
,
int
(
*
cb
)(
const
git_indexer_stats
*
,
void
*
),
void
*
data
)
{
{
git_mwindow_file
*
mwf
=
&
idx
->
pack
->
mwf
;
git_mwindow_file
*
mwf
=
&
idx
->
pack
->
mwf
;
git_mwindow
*
w
=
NULL
;
off_t
off
=
0
;
int
error
;
int
error
;
const
char
*
ptr
;
unsigned
int
fanout
[
256
]
=
{
0
};
error
=
git_mwindow_file_register
(
mwf
);
error
=
git_mwindow_file_register
(
mwf
);
if
(
error
<
GIT_SUCCESS
)
if
(
error
<
GIT_SUCCESS
)
return
git__rethrow
(
error
,
"Failed to register mwindow file"
);
return
git__rethrow
(
error
,
"Failed to register mwindow file"
);
/*
notify early
*/
/*
Notify before the first one
*/
if
(
cb
)
if
(
cb
)
cb
(
&
idx
->
stats
,
data
);
cb
(
&
idx
->
stats
,
data
);
while
(
idx
->
stats
.
processed
<
idx
->
stats
.
total
)
{
unsigned
long
size
;
git_otype
type
;
/* 4k is a bit magic for the moment */
ptr
=
git_mwindow_open
(
mwf
,
&
w
,
idx
->
pack
->
pack_fd
,
4096
,
off
,
0
,
NULL
);
if
(
ptr
==
NULL
)
{
error
=
GIT_ENOMEM
;
goto
cleanup
;
}
/*
* The size is when expanded, so we need to inflate the object
* so we know where the next one ist.
*/
type
=
entry_type
(
ptr
);
size
=
entry_len
(
&
data
,
ptr
);
switch
(
type
)
{
case
GIT_OBJ_COMMIT
:
case
GIT_OBJ_TREE
:
case
GIT_OBJ_BLOB
:
case
GIT_OBJ_TAG
:
break
;
default:
error
=
git__throw
(
GIT_EOBJCORRUPTED
,
"Invalid object type"
);
goto
cleanup
;
}
/*
* Do we need to uncompress everything if we're not running in
* strict mode? Or at least can't we free the data?
*/
/* Get a window for the compressed data */
//ptr = git_mwindow_open(mwf, &w, idx->pack->pack_fd, size, data - ptr, 0, NULL);
idx
->
stats
.
processed
++
;
if
(
cb
)
cb
(
&
idx
->
stats
,
data
);
}
cleanup:
git_mwindow_free_all
(
mwf
);
return
error
;
return
error
;
}
}
void
git_
pack_indexer_free
(
git_pack
_indexer
*
idx
)
void
git_
indexer_free
(
git
_indexer
*
idx
)
{
{
p_close
(
idx
->
pack
->
pack_fd
);
p_close
(
idx
->
pack
->
pack_fd
);
git_vector_free
(
&
idx
->
objects
);
git_vector_free
(
&
idx
->
objects
);
...
@@ -165,3 +253,4 @@ void git_pack_indexer_free(git_pack_indexer *idx)
...
@@ -165,3 +253,4 @@ void git_pack_indexer_free(git_pack_indexer *idx)
free
(
idx
->
pack
);
free
(
idx
->
pack
);
free
(
idx
);
free
(
idx
);
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment