-
Notifications
You must be signed in to change notification settings - Fork 1
/
credential.h
188 lines (166 loc) · 5.59 KB
/
credential.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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
/*
* credential.h
*
* Copyright (C) Roger P. Gee
*/
#ifndef PHPGIT2_CREDENTIAL_H
#define PHPGIT2_CREDENTIAL_H
#include "stubs/credential_arginfo.h"
namespace php_git2
{
template<> php_git_credential::~git2_resource()
{
git_credential_free(handle);
}
} // namespace php-git2
static constexpr auto ZIF_git_credential_default_new = zif_php_git2_function<
php_git2::func_wrapper<
int,
git_credential**>::func<git_credential_default_new>,
php_git2::local_pack<
php_git2::php_resource_ref<php_git2::php_git_credential>
>,
1,
php_git2::sequence<>,
php_git2::sequence<0>
>;
static constexpr auto ZIF_git_credential_free = zif_php_git2_function_free<
php_git2::local_pack<
php_git2::php_resource_cleanup<php_git2::php_git_credential>
>
>;
static constexpr auto ZIF_git_credential_has_username = zif_php_git2_function_rethandler<
php_git2::func_wrapper<
int,
git_credential*>::func<git_credential_has_username>,
php_git2::local_pack<
php_git2::php_resource<php_git2::php_git_credential>
>,
php_git2::php_boolean_rethandler<int>
>;
/*
static constexpr auto ZIF_git_credential_ssh_custom_new = zif_php_git2_function<
php_git2::func_wrapper<
>::func<git_credential_ssh_custom_new>,
php_git2::local_pack<
>,
-1,
php_git2::sequence<>,
php_git2::sequence<>
>;
static constexpr auto ZIF_git_credential_ssh_interactive_new = zif_php_git2_function<
php_git2::func_wrapper<
>::func<git_credential_ssh_interactive_new>,
php_git2::local_pack<
>,
-1,
php_git2::sequence<>,
php_git2::sequence<>
>;
*/
static constexpr auto ZIF_git_credential_ssh_key_from_agent = zif_php_git2_function<
php_git2::func_wrapper<
int,
git_credential**,
const char*>::func<git_credential_ssh_key_from_agent>,
php_git2::local_pack<
php_git2::php_resource_ref<php_git2::php_git_credential>,
php_git2::php_string
>,
1,
php_git2::sequence<1>,
php_git2::sequence<0,1>
>;
static constexpr auto ZIF_git_credential_ssh_key_memory_new = zif_php_git2_function<
php_git2::func_wrapper<
int,
git_credential**,
const char*,
const char*,
const char*,
const char*>::func<git_credential_ssh_key_memory_new>,
php_git2::local_pack<
php_git2::php_resource_ref<php_git2::php_git_credential>,
php_git2::php_string,
php_git2::php_string,
php_git2::php_string,
php_git2::php_string
>,
1,
php_git2::sequence<1,2,3,4>,
php_git2::sequence<0,1,2,3,4>
>;
static constexpr auto ZIF_git_credential_ssh_key_new = zif_php_git2_function<
php_git2::func_wrapper<
int,
git_credential**,
const char*,
const char*,
const char*,
const char*>::func<git_credential_ssh_key_new>,
php_git2::local_pack<
php_git2::php_resource_ref<php_git2::php_git_credential>,
php_git2::php_string,
php_git2::php_string,
php_git2::php_string,
php_git2::php_string
>,
1,
php_git2::sequence<1,2,3,4>,
php_git2::sequence<0,1,2,3,4>
>;
static constexpr auto ZIF_git_credential_username_new = zif_php_git2_function<
php_git2::func_wrapper<
int,
git_credential**,
const char*>::func<git_credential_username_new>,
php_git2::local_pack<
php_git2::php_resource_ref<php_git2::php_git_credential>,
php_git2::php_string
>,
1,
php_git2::sequence<1>,
php_git2::sequence<0,1>
>;
static constexpr auto ZIF_git_credential_userpass_plaintext_new = zif_php_git2_function<
php_git2::func_wrapper<
int,
git_credential**,
const char*,
const char*>::func<git_credential_userpass_plaintext_new>,
php_git2::local_pack<
php_git2::php_resource_ref<php_git2::php_git_credential>,
php_git2::php_string,
php_git2::php_string
>,
1,
php_git2::sequence<1,2>,
php_git2::sequence<0,1,2>
>;
#define GIT_CREDENTIAL_FE \
PHP_GIT2_FE(git_credential_default_new) \
PHP_GIT2_FE(git_credential_free) \
PHP_GIT2_FE(git_credential_has_username) \
PHP_GIT2_UNIMPLEMENTED(git_credential_ssh_custom_new) \
PHP_GIT2_UNIMPLEMENTED(git_credential_ssh_interactive_new) \
PHP_GIT2_FE(git_credential_ssh_key_from_agent) \
PHP_GIT2_FE(git_credential_ssh_key_memory_new) \
PHP_GIT2_FE(git_credential_ssh_key_new) \
PHP_GIT2_FE(git_credential_username_new) \
PHP_GIT2_FE(git_credential_userpass_plaintext_new) \
PHP_GIT2_FE_ALIAS(git_credential_default_new,git_cred_default_new) \
PHP_GIT2_FE_ALIAS(git_credential_free,git_cred_free) \
PHP_GIT2_FE_ALIAS(git_credential_has_username,git_cred_has_username) \
PHP_GIT2_FE_ALIAS(git_credential_ssh_key_from_agent,git_cred_ssh_key_from_agent) \
PHP_GIT2_FE_ALIAS(git_credential_ssh_key_memory_new,git_cred_ssh_key_memory_new) \
PHP_GIT2_FE_ALIAS(git_credential_ssh_key_new,git_cred_ssh_key_new) \
PHP_GIT2_FE_ALIAS(git_credential_username_new,git_cred_username_new) \
PHP_GIT2_FE_ALIAS(git_credential_userpass_plaintext_new,git_cred_userpass_plaintext_new)
#endif
/*
* Local Variables:
* mode:c++
* indent-tabs-mode:nil
* tab-width:4
* End:
*/