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
daeac29a
Commit
daeac29a
authored
Feb 05, 2014
by
Vicent Marti
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2103 from libgit2/cmn/parse-commit-faster
commit: faster parsing
parents
d6006413
24f3024f
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
38 additions
and
42 deletions
+38
-42
src/commit.c
+12
-28
src/posix.h
+1
-12
src/strnlen.h
+23
-0
src/util.h
+2
-2
No files found.
src/commit.c
View file @
daeac29a
...
@@ -164,33 +164,15 @@ int git_commit__parse(void *_commit, git_odb_object *odb_obj)
...
@@ -164,33 +164,15 @@ int git_commit__parse(void *_commit, git_odb_object *odb_obj)
const
char
*
buffer_start
=
git_odb_object_data
(
odb_obj
),
*
buffer
;
const
char
*
buffer_start
=
git_odb_object_data
(
odb_obj
),
*
buffer
;
const
char
*
buffer_end
=
buffer_start
+
git_odb_object_size
(
odb_obj
);
const
char
*
buffer_end
=
buffer_start
+
git_odb_object_size
(
odb_obj
);
git_oid
parent_id
;
git_oid
parent_id
;
uint32_t
parent_count
=
0
;
size_t
header_len
;
size_t
header_len
;
/* find end-of-header (counting parents as we go) */
buffer
=
buffer_start
;
for
(
buffer
=
buffer_start
;
buffer
<
buffer_end
;
++
buffer
)
{
if
(
!
strncmp
(
"
\n\n
"
,
buffer
,
2
))
{
++
buffer
;
break
;
}
if
(
!
strncmp
(
"
\n
parent "
,
buffer
,
strlen
(
"
\n
parent "
)))
++
parent_count
;
}
header_len
=
buffer
-
buffer_start
;
commit
->
raw_header
=
git__strndup
(
buffer_start
,
header_len
);
GITERR_CHECK_ALLOC
(
commit
->
raw_header
);
/* point "buffer" to header data */
/* Allocate for one, which will allow not to realloc 90% of the time */
buffer
=
commit
->
raw_header
;
git_array_init_to_size
(
commit
->
parent_ids
,
1
);
buffer_end
=
commit
->
raw_header
+
header_len
;
if
(
parent_count
<
1
)
parent_count
=
1
;
git_array_init_to_size
(
commit
->
parent_ids
,
parent_count
);
GITERR_CHECK_ARRAY
(
commit
->
parent_ids
);
GITERR_CHECK_ARRAY
(
commit
->
parent_ids
);
/* The tree is always the first field */
if
(
git_oid__parse
(
&
commit
->
tree_id
,
&
buffer
,
buffer_end
,
"tree "
)
<
0
)
if
(
git_oid__parse
(
&
commit
->
tree_id
,
&
buffer
,
buffer_end
,
"tree "
)
<
0
)
goto
bad_buffer
;
goto
bad_buffer
;
...
@@ -221,6 +203,9 @@ int git_commit__parse(void *_commit, git_odb_object *odb_obj)
...
@@ -221,6 +203,9 @@ int git_commit__parse(void *_commit, git_odb_object *odb_obj)
/* Parse add'l header entries */
/* Parse add'l header entries */
while
(
buffer
<
buffer_end
)
{
while
(
buffer
<
buffer_end
)
{
const
char
*
eoln
=
buffer
;
const
char
*
eoln
=
buffer
;
if
(
buffer
[
-
1
]
==
'\n'
&&
buffer
[
0
]
==
'\n'
)
break
;
while
(
eoln
<
buffer_end
&&
*
eoln
!=
'\n'
)
while
(
eoln
<
buffer_end
&&
*
eoln
!=
'\n'
)
++
eoln
;
++
eoln
;
...
@@ -236,13 +221,12 @@ int git_commit__parse(void *_commit, git_odb_object *odb_obj)
...
@@ -236,13 +221,12 @@ int git_commit__parse(void *_commit, git_odb_object *odb_obj)
buffer
=
eoln
;
buffer
=
eoln
;
}
}
/* point "buffer" to data after header */
header_len
=
buffer
-
buffer_start
;
buffer
=
git_odb_object_data
(
odb_obj
);
commit
->
raw_header
=
git__strndup
(
buffer_start
,
header_len
);
buffer_end
=
buffer
+
git_odb_object_size
(
odb_obj
);
GITERR_CHECK_ALLOC
(
commit
->
raw_header
);
buffer
+=
header_len
;
/* point "buffer" to data after header, +1 for the final LF */
if
(
*
buffer
==
'\n'
)
buffer
=
buffer_start
+
header_len
+
1
;
++
buffer
;
/* extract commit message */
/* extract commit message */
if
(
buffer
<=
buffer_end
)
{
if
(
buffer
<=
buffer_end
)
{
...
...
src/posix.h
View file @
daeac29a
...
@@ -89,18 +89,7 @@ extern struct tm * p_gmtime_r (const time_t *timer, struct tm *result);
...
@@ -89,18 +89,7 @@ extern struct tm * p_gmtime_r (const time_t *timer, struct tm *result);
# include "unix/posix.h"
# include "unix/posix.h"
#endif
#endif
#if defined(__MINGW32__) || defined(__sun) || defined(__APPLE__)
#include "strnlen.h"
# define NO_STRNLEN
#endif
#ifdef NO_STRNLEN
GIT_INLINE
(
size_t
)
p_strnlen
(
const
char
*
s
,
size_t
maxlen
)
{
const
char
*
end
=
memchr
(
s
,
0
,
maxlen
);
return
end
?
(
size_t
)(
end
-
s
)
:
maxlen
;
}
#else
# define p_strnlen strnlen
#endif
#ifdef NO_READDIR_R
#ifdef NO_READDIR_R
# include <dirent.h>
# include <dirent.h>
...
...
src/strnlen.h
0 → 100644
View file @
daeac29a
/*
* 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_strlen_h__
#define INCLUDE_strlen_h__
#if defined(__MINGW32__) || defined(__sun) || defined(__APPLE__)
# define NO_STRNLEN
#endif
#ifdef NO_STRNLEN
GIT_INLINE
(
size_t
)
p_strnlen
(
const
char
*
s
,
size_t
maxlen
)
{
const
char
*
end
=
memchr
(
s
,
0
,
maxlen
);
return
end
?
(
size_t
)(
end
-
s
)
:
maxlen
;
}
#else
# define p_strnlen strnlen
#endif
#endif
src/util.h
View file @
daeac29a
...
@@ -8,6 +8,7 @@
...
@@ -8,6 +8,7 @@
#define INCLUDE_util_h__
#define INCLUDE_util_h__
#include "common.h"
#include "common.h"
#include "strnlen.h"
#define ARRAY_SIZE(x) (sizeof(x)/sizeof(x[0]))
#define ARRAY_SIZE(x) (sizeof(x)/sizeof(x[0]))
#define bitsizeof(x) (CHAR_BIT * sizeof(x))
#define bitsizeof(x) (CHAR_BIT * sizeof(x))
...
@@ -50,8 +51,7 @@ GIT_INLINE(char *) git__strndup(const char *str, size_t n)
...
@@ -50,8 +51,7 @@ GIT_INLINE(char *) git__strndup(const char *str, size_t n)
size_t
length
=
0
;
size_t
length
=
0
;
char
*
ptr
;
char
*
ptr
;
while
(
length
<
n
&&
str
[
length
])
length
=
p_strnlen
(
str
,
n
);
++
length
;
ptr
=
(
char
*
)
git__malloc
(
length
+
1
);
ptr
=
(
char
*
)
git__malloc
(
length
+
1
);
...
...
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