forked from RogerGee/php-git2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
describe.h
144 lines (124 loc) · 4.06 KB
/
describe.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
/*
* describe.h
*
* Copyright (C) Roger P. Gee
*/
#ifndef PHPGIT2_DESCRIBE_H
#define PHPGIT2_DESCRIBE_H
namespace php_git2
{
// Specialize resource destructor for git_describe_result
template<> inline php_git_describe_result::~git2_resource()
{
git_describe_result_free(handle);
}
class php_git_describe_options:
public php_option_array
{
public:
php_git_describe_options()
{
git_describe_init_options(&opts,GIT_DESCRIBE_OPTIONS_VERSION);
}
/*const*/ git_describe_options* byval_git2()
{
if (!is_null()) {
array_wrapper arr(value);
GIT2_ARRAY_LOOKUP_LONG(arr,version,opts);
GIT2_ARRAY_LOOKUP_LONG(arr,max_candidates_tags,opts);
GIT2_ARRAY_LOOKUP_LONG(arr,describe_strategy,opts);
GIT2_ARRAY_LOOKUP_STRING_NULLABLE(arr,pattern,opts);
GIT2_ARRAY_LOOKUP_BOOL(arr,only_follow_first_parent,opts);
GIT2_ARRAY_LOOKUP_BOOL(arr,show_commit_oid_as_fallback,opts);
}
return &opts;
}
private:
git_describe_options opts;
};
class php_git_describe_format_options:
public php_option_array
{
public:
php_git_describe_format_options()
{
git_describe_init_format_options(&opts,GIT_DESCRIBE_FORMAT_OPTIONS_VERSION);
}
const git_describe_format_options* byval_git2()
{
if (!is_null()) {
array_wrapper arr(value);
GIT2_ARRAY_LOOKUP_LONG(arr,version,opts);
GIT2_ARRAY_LOOKUP_LONG(arr,abbreviated_size,opts);
GIT2_ARRAY_LOOKUP_BOOL(arr,always_use_long_format,opts);
GIT2_ARRAY_LOOKUP_STRING_NULLABLE(arr,dirty_suffix,opts);
}
return &opts;
}
private:
git_describe_format_options opts;
};
} // namespace php_git2
static constexpr auto ZIF_GIT_DESCRIBE_COMMIT = zif_php_git2_function<
php_git2::func_wrapper<
int,
git_describe_result**,
git_object*,
git_describe_options*>::func<git_describe_commit>,
php_git2::local_pack<
php_git2::php_resource_ref<php_git2::php_git_describe_result>,
php_git2::php_resource<php_git2::php_git_object>,
php_git2::php_git_describe_options
>,
1,
php_git2::sequence<1,2>,
php_git2::sequence<0,1,2>
>;
static constexpr auto ZIF_GIT_DESCRIBE_FORMAT = zif_php_git2_function<
php_git2::func_wrapper<
int,
git_buf*,
const git_describe_result*,
const git_describe_format_options*>::func<git_describe_format>,
php_git2::local_pack<
php_git2::php_git_buf,
php_git2::php_resource<php_git2::php_git_describe_result>,
php_git2::php_git_describe_format_options
>,
1,
php_git2::sequence<1,2>,
php_git2::sequence<0,1,2>
>;
static constexpr auto ZIF_GIT_DESCRIBE_RESULT_FREE = zif_php_git2_function_free<
php_git2::local_pack<
php_git2::php_resource_cleanup<php_git2::php_git_describe_result>
>
>;
static constexpr auto ZIF_GIT_DESCRIBE_WORKDIR = zif_php_git2_function<
php_git2::func_wrapper<
int,
git_describe_result**,
git_repository*,
git_describe_options*>::func<git_describe_workdir>,
php_git2::local_pack<
php_git2::php_resource_ref<php_git2::php_git_describe_result>,
php_git2::php_resource<php_git2::php_git_repository>,
php_git2::php_git_describe_options
>,
1,
php_git2::sequence<1,2>,
php_git2::sequence<0,1,2>
>;
#define GIT_DESCRIBE_FE \
PHP_GIT2_FE(git_describe_commit,ZIF_GIT_DESCRIBE_COMMIT,NULL) \
PHP_GIT2_FE(git_describe_format,ZIF_GIT_DESCRIBE_FORMAT,NULL) \
PHP_GIT2_FE(git_describe_result_free,ZIF_GIT_DESCRIBE_RESULT_FREE,NULL) \
PHP_GIT2_FE(git_describe_workdir,ZIF_GIT_DESCRIBE_WORKDIR,NULL)
#endif
/*
* Local Variables:
* mode:c++
* indent-tabs-mode:nil
* tab-width:4
* End:
*/