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
2b5af615
Commit
2b5af615
authored
Jul 07, 2011
by
nulltoken
Committed by
Vicent Marti
Jul 07, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tag: add pattern based retrieval of list of tag names
parent
417a581d
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
83 additions
and
4 deletions
+83
-4
include/git2/tag.h
+23
-0
src/tag.c
+29
-4
tests/t08-tag.c
+31
-0
No files found.
include/git2/tag.h
View file @
2b5af615
...
@@ -235,6 +235,29 @@ GIT_EXTERN(int) git_tag_list(
...
@@ -235,6 +235,29 @@ GIT_EXTERN(int) git_tag_list(
git_strarray
*
tag_names
,
git_strarray
*
tag_names
,
git_repository
*
repo
);
git_repository
*
repo
);
/**
* Fill a list with all the tags in the Repository
* which name match a defined pattern
*
* If an empty pattern is provided, all the tags
* will be returned.
*
* The string array will be filled with the names of the
* matching tags; these values are owned by the user and
* should be free'd manually when no longer needed, using
* `git_strarray_free`.
*
* @param tag_names Pointer to a git_strarray structure where
* the tag names will be stored
* @param pattern Standard fnmatch pattern
* @param repo Repository where to find the tags
* @return 0 on success; error code otherwise
*/
GIT_EXTERN
(
int
)
git_tag_list_match
(
git_strarray
*
tag_names
,
const
char
*
pattern
,
git_repository
*
repo
);
/** @} */
/** @} */
GIT_END_DECL
GIT_END_DECL
#endif
#endif
src/tag.c
View file @
2b5af615
...
@@ -364,23 +364,42 @@ int git_tag__parse(git_tag *tag, git_odb_object *obj)
...
@@ -364,23 +364,42 @@ int git_tag__parse(git_tag *tag, git_odb_object *obj)
return
parse_tag_buffer
(
tag
,
obj
->
raw
.
data
,
(
char
*
)
obj
->
raw
.
data
+
obj
->
raw
.
len
);
return
parse_tag_buffer
(
tag
,
obj
->
raw
.
data
,
(
char
*
)
obj
->
raw
.
data
+
obj
->
raw
.
len
);
}
}
typedef
struct
{
git_vector
*
taglist
;
const
char
*
pattern
;
}
tag_filter_data
;
#define GIT_REFS_TAGS_DIR_LEN STRLEN(GIT_REFS_TAGS_DIR)
static
int
tag_list_cb
(
const
char
*
tag_name
,
void
*
payload
)
static
int
tag_list_cb
(
const
char
*
tag_name
,
void
*
payload
)
{
{
if
(
git__prefixcmp
(
tag_name
,
GIT_REFS_TAGS_DIR
)
==
0
)
tag_filter_data
*
filter
;
return
git_vector_insert
((
git_vector
*
)
payload
,
git__strdup
(
tag_name
));
if
(
git__prefixcmp
(
tag_name
,
GIT_REFS_TAGS_DIR
)
!=
0
)
return
GIT_SUCCESS
;
filter
=
(
tag_filter_data
*
)
payload
;
if
(
!*
filter
->
pattern
||
p_fnmatch
(
filter
->
pattern
,
tag_name
+
GIT_REFS_TAGS_DIR_LEN
,
0
)
==
GIT_SUCCESS
)
return
git_vector_insert
(
filter
->
taglist
,
git__strdup
(
tag_name
));
return
GIT_SUCCESS
;
return
GIT_SUCCESS
;
}
}
int
git_tag_list
(
git_strarray
*
tag_names
,
git_repository
*
repo
)
int
git_tag_list
_match
(
git_strarray
*
tag_names
,
const
char
*
pattern
,
git_repository
*
repo
)
{
{
int
error
;
int
error
;
tag_filter_data
filter
;
git_vector
taglist
;
git_vector
taglist
;
assert
(
tag_names
&&
repo
&&
pattern
);
if
(
git_vector_init
(
&
taglist
,
8
,
NULL
)
<
GIT_SUCCESS
)
if
(
git_vector_init
(
&
taglist
,
8
,
NULL
)
<
GIT_SUCCESS
)
return
GIT_ENOMEM
;
return
GIT_ENOMEM
;
error
=
git_reference_foreach
(
repo
,
GIT_REF_OID
|
GIT_REF_PACKED
,
&
tag_list_cb
,
(
void
*
)
&
taglist
);
filter
.
taglist
=
&
taglist
;
filter
.
pattern
=
pattern
;
error
=
git_reference_foreach
(
repo
,
GIT_REF_OID
|
GIT_REF_PACKED
,
&
tag_list_cb
,
(
void
*
)
&
filter
);
if
(
error
<
GIT_SUCCESS
)
{
if
(
error
<
GIT_SUCCESS
)
{
git_vector_free
(
&
taglist
);
git_vector_free
(
&
taglist
);
return
git__rethrow
(
error
,
"Failed to list tags"
);
return
git__rethrow
(
error
,
"Failed to list tags"
);
...
@@ -390,3 +409,8 @@ int git_tag_list(git_strarray *tag_names, git_repository *repo)
...
@@ -390,3 +409,8 @@ int git_tag_list(git_strarray *tag_names, git_repository *repo)
tag_names
->
count
=
taglist
.
length
;
tag_names
->
count
=
taglist
.
length
;
return
GIT_SUCCESS
;
return
GIT_SUCCESS
;
}
}
int
git_tag_list
(
git_strarray
*
tag_names
,
git_repository
*
repo
)
{
return
git_tag_list_match
(
tag_names
,
""
,
repo
);
}
\ No newline at end of file
tests/t08-tag.c
View file @
2b5af615
...
@@ -77,6 +77,35 @@ BEGIN_TEST(read1, "list all tag names from the repository")
...
@@ -77,6 +77,35 @@ BEGIN_TEST(read1, "list all tag names from the repository")
git_repository_free
(
repo
);
git_repository_free
(
repo
);
END_TEST
END_TEST
static
int
ensure_tag_pattern_match
(
git_repository
*
repo
,
const
char
*
pattern
,
const
size_t
expected_matches
)
{
git_strarray
tag_list
;
int
error
=
GIT_SUCCESS
;
if
((
error
=
git_tag_list_match
(
&
tag_list
,
pattern
,
repo
))
<
GIT_SUCCESS
)
goto
exit
;
if
(
tag_list
.
count
!=
expected_matches
)
error
=
GIT_ERROR
;
exit:
git_strarray_free
(
&
tag_list
);
return
error
;
}
BEGIN_TEST
(
read2
,
"list all tag names from the repository matching a specified pattern"
)
git_repository
*
repo
;
must_pass
(
git_repository_open
(
&
repo
,
REPOSITORY_FOLDER
));
must_pass
(
ensure_tag_pattern_match
(
repo
,
""
,
3
));
must_pass
(
ensure_tag_pattern_match
(
repo
,
"*"
,
3
));
must_pass
(
ensure_tag_pattern_match
(
repo
,
"t*"
,
1
));
must_pass
(
ensure_tag_pattern_match
(
repo
,
"*b"
,
2
));
must_pass
(
ensure_tag_pattern_match
(
repo
,
"e"
,
0
));
must_pass
(
ensure_tag_pattern_match
(
repo
,
"e90810b"
,
1
));
must_pass
(
ensure_tag_pattern_match
(
repo
,
"e90810[ab]"
,
1
));
git_repository_free
(
repo
);
END_TEST
#define TAGGER_NAME "Vicent Marti"
#define TAGGER_NAME "Vicent Marti"
#define TAGGER_EMAIL "vicent@github.com"
#define TAGGER_EMAIL "vicent@github.com"
...
@@ -222,6 +251,8 @@ END_TEST
...
@@ -222,6 +251,8 @@ END_TEST
BEGIN_SUITE
(
tag
)
BEGIN_SUITE
(
tag
)
ADD_TEST
(
read0
);
ADD_TEST
(
read0
);
ADD_TEST
(
read1
);
ADD_TEST
(
read1
);
ADD_TEST
(
read2
);
ADD_TEST
(
write0
);
ADD_TEST
(
write0
);
ADD_TEST
(
write2
);
ADD_TEST
(
write2
);
ADD_TEST
(
write3
);
ADD_TEST
(
write3
);
...
...
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