6
6
*/
7
7
PHP_FUNCTION (git_patch_from_diff )
8
8
{
9
- php_git2_t * result = NULL ;
9
+ php_git2_t * result = NULL , * _diff = NULL ;
10
10
git_patch * out = NULL ;
11
11
zval * diff = NULL ;
12
- php_git2_t * _diff = NULL ;
13
12
long idx = 0 ;
14
13
int error = 0 ;
15
14
@@ -23,12 +22,10 @@ PHP_FUNCTION(git_patch_from_diff)
23
22
if (php_git2_check_error (error , "git_patch_from_diff" TSRMLS_CC )) {
24
23
RETURN_FALSE ;
25
24
}
26
- PHP_GIT2_MAKE_RESOURCE (result );
27
- PHP_GIT2_V (result , patch ) = out ;
28
- result -> type = PHP_GIT2_TYPE_PATCH ;
29
- result -> resource_id = PHP_GIT2_LIST_INSERT (result , git2_resource_handle );
30
- result -> should_free_v = 0 ;
31
- ZVAL_RESOURCE (return_value , result -> resource_id );
25
+ if (php_git2_make_resource (& result , PHP_GIT2_TYPE_PATCH , out , 1 TSRMLS_CC )) {
26
+ RETURN_FALSE ;
27
+ }
28
+ ZVAL_RESOURCE (return_value , GIT2_RVAL_P (result ));
32
29
}
33
30
/* }}} */
34
31
@@ -37,18 +34,11 @@ PHP_FUNCTION(git_patch_from_diff)
37
34
*/
38
35
PHP_FUNCTION (git_patch_from_blobs )
39
36
{
40
- php_git2_t * result = NULL ;
37
+ php_git2_t * result = NULL , * _old_blob = NULL , * _new_blob = NULL ;
41
38
git_patch * out = NULL ;
42
- zval * old_blob = NULL ;
43
- php_git2_t * _old_blob = NULL ;
44
- char * old_as_path = NULL ;
45
- int old_as_path_len = 0 ;
46
- zval * new_blob = NULL ;
47
- php_git2_t * _new_blob = NULL ;
48
- char * new_as_path = NULL ;
49
- int new_as_path_len = 0 ;
50
- zval * opts = NULL ;
51
- int error = 0 ;
39
+ zval * old_blob = NULL , * new_blob = NULL , * opts = NULL ;
40
+ char * old_as_path = NULL , * new_as_path = NULL ;
41
+ int old_as_path_len = 0 , new_as_path_len = 0 , error = 0 ;
52
42
53
43
/* TODO(chobie): generate converter */
54
44
if (zend_parse_parameters (ZEND_NUM_ARGS () TSRMLS_CC ,
@@ -62,31 +52,23 @@ PHP_FUNCTION(git_patch_from_blobs)
62
52
if (php_git2_check_error (error , "git_patch_from_blobs" TSRMLS_CC )) {
63
53
RETURN_FALSE ;
64
54
}
65
- PHP_GIT2_MAKE_RESOURCE (result );
66
- PHP_GIT2_V (result , patch ) = out ;
67
- result -> type = PHP_GIT2_TYPE_PATCH ;
68
- result -> resource_id = PHP_GIT2_LIST_INSERT (result , git2_resource_handle );
69
- result -> should_free_v = 0 ;
70
- ZVAL_RESOURCE (return_value , result -> resource_id );
55
+ if (php_git2_make_resource (& result , PHP_GIT2_TYPE_PATCH , out , 1 TSRMLS_CC )) {
56
+ RETURN_FALSE ;
57
+ }
58
+ ZVAL_RESOURCE (return_value , GIT2_RVAL_P (result ));
71
59
}
72
60
/* }}} */
73
61
74
- /* {{{ proto resource git_patch_from_blob_and_buffer(resource $old_blob, string $old_as_path, string $buffer, string $buffer_as_path, $opts)
62
+
63
+ /* {{{ proto resource git_patch_from_blob_and_buffer(resource $old_blob, string $old_as_path, string $buffer, string $buffer_as_path, $opts)
75
64
*/
76
65
PHP_FUNCTION (git_patch_from_blob_and_buffer )
77
66
{
78
- php_git2_t * result = NULL ;
67
+ php_git2_t * result = NULL , * _old_blob = NULL ;
79
68
git_patch * out = NULL ;
80
- zval * old_blob = NULL ;
81
- php_git2_t * _old_blob = NULL ;
82
- char * old_as_path = NULL ;
83
- int old_as_path_len = 0 ;
84
- char * buffer = NULL ;
85
- int buffer_len = 0 ;
86
- char * buffer_as_path = NULL ;
87
- int buffer_as_path_len = 0 ;
88
- zval * opts = NULL ;
89
- int error = 0 ;
69
+ zval * old_blob = NULL , * opts = NULL ;
70
+ char * old_as_path = NULL , * buffer = NULL , * buffer_as_path = NULL ;
71
+ int old_as_path_len = 0 , buffer_len = 0 , buffer_as_path_len = 0 , error = 0 ;
90
72
91
73
/* TODO(chobie): generate converter */
92
74
if (zend_parse_parameters (ZEND_NUM_ARGS () TSRMLS_CC ,
@@ -99,12 +81,10 @@ PHP_FUNCTION(git_patch_from_blob_and_buffer)
99
81
if (php_git2_check_error (error , "git_patch_from_blob_and_buffer" TSRMLS_CC )) {
100
82
RETURN_FALSE ;
101
83
}
102
- PHP_GIT2_MAKE_RESOURCE (result );
103
- PHP_GIT2_V (result , patch ) = out ;
104
- result -> type = PHP_GIT2_TYPE_PATCH ;
105
- result -> resource_id = PHP_GIT2_LIST_INSERT (result , git2_resource_handle );
106
- result -> should_free_v = 0 ;
107
- ZVAL_RESOURCE (return_value , result -> resource_id );
84
+ if (php_git2_make_resource (& result , PHP_GIT2_TYPE_PATCH , out , 1 TSRMLS_CC )) {
85
+ RETURN_FALSE ;
86
+ }
87
+ ZVAL_RESOURCE (return_value , GIT2_RVAL_P (result ));
108
88
}
109
89
/* }}} */
110
90
@@ -122,8 +102,9 @@ PHP_FUNCTION(git_patch_free)
122
102
}
123
103
124
104
ZEND_FETCH_RESOURCE (_patch , php_git2_t * , & patch , -1 , PHP_GIT2_RESOURCE_NAME , git2_resource_handle );
125
- if (_patch -> should_free_v ) {
105
+ if (GIT2_SHOULD_FREE ( _patch ) ) {
126
106
git_patch_free (PHP_GIT2_V (_patch , patch ));
107
+ GIT2_SHOULD_FREE (_patch ) = 0 ;
127
108
};
128
109
zval_ptr_dtor (& patch );
129
110
}
@@ -149,7 +130,6 @@ PHP_FUNCTION(git_patch_get_delta)
149
130
}
150
131
/* }}} */
151
132
152
-
153
133
/* {{{ proto long git_patch_num_hunks(resource $patch)
154
134
*/
155
135
PHP_FUNCTION (git_patch_num_hunks )
@@ -169,18 +149,14 @@ PHP_FUNCTION(git_patch_num_hunks)
169
149
}
170
150
/* }}} */
171
151
172
-
173
152
/* {{{ proto long git_patch_line_stats(long $total_context, long $total_additions, long $total_deletions, resource $patch)
174
153
*/
175
154
PHP_FUNCTION (git_patch_line_stats )
176
155
{
177
- int result = 0 ;
178
- long total_context = 0 ;
179
- long total_additions = 0 ;
180
- long total_deletions = 0 ;
156
+ int result = 0 , error = 0 ;
157
+ long total_context = 0 , total_additions = 0 , total_deletions = 0 ;
181
158
zval * patch = NULL ;
182
159
php_git2_t * _patch = NULL ;
183
- int error = 0 ;
184
160
185
161
if (zend_parse_parameters (ZEND_NUM_ARGS () TSRMLS_CC ,
186
162
"lllr" , & total_context , & total_additions , & total_deletions , & patch ) == FAILURE ) {
@@ -193,17 +169,14 @@ PHP_FUNCTION(git_patch_line_stats)
193
169
}
194
170
/* }}} */
195
171
196
-
197
172
/* {{{ proto resource git_patch_get_hunk(long $lines_in_hunk, resource $patch, long $hunk_idx)
198
173
*/
199
174
PHP_FUNCTION (git_patch_get_hunk )
200
175
{
201
- php_git2_t * result = NULL ;
176
+ php_git2_t * result = NULL , * _patch = NULL ;
202
177
git_diff_hunk * out = NULL ;
203
- long lines_in_hunk = 0 ;
178
+ long lines_in_hunk = 0 , hunk_idx = 0 ;
204
179
zval * patch = NULL ;
205
- php_git2_t * _patch = NULL ;
206
- long hunk_idx = 0 ;
207
180
int error = 0 ;
208
181
209
182
if (zend_parse_parameters (ZEND_NUM_ARGS () TSRMLS_CC ,
@@ -216,25 +189,21 @@ PHP_FUNCTION(git_patch_get_hunk)
216
189
if (php_git2_check_error (error , "git_patch_get_hunk" TSRMLS_CC )) {
217
190
RETURN_FALSE ;
218
191
}
219
- PHP_GIT2_MAKE_RESOURCE (result );
220
- PHP_GIT2_V (result , diff_hunk ) = out ;
221
- result -> type = PHP_GIT2_TYPE_DIFF_HUNK ;
222
- result -> resource_id = PHP_GIT2_LIST_INSERT (result , git2_resource_handle );
223
- result -> should_free_v = 0 ;
224
- ZVAL_RESOURCE (return_value , result -> resource_id );
192
+ if (php_git2_make_resource (& result , PHP_GIT2_TYPE_DIFF_HUNK , out , 1 TSRMLS_CC )) {
193
+ RETURN_FALSE ;
194
+ }
195
+ ZVAL_RESOURCE (return_value , GIT2_RVAL_P (result ));
225
196
}
226
197
/* }}} */
227
198
228
-
229
199
/* {{{ proto long git_patch_num_lines_in_hunk(resource $patch, long $hunk_idx)
230
200
*/
231
201
PHP_FUNCTION (git_patch_num_lines_in_hunk )
232
202
{
233
- int result = 0 ;
203
+ int result = 0 , error = 0 ;
234
204
zval * patch = NULL ;
235
205
php_git2_t * _patch = NULL ;
236
206
long hunk_idx = 0 ;
237
- int error = 0 ;
238
207
239
208
if (zend_parse_parameters (ZEND_NUM_ARGS () TSRMLS_CC ,
240
209
"rl" , & patch , & hunk_idx ) == FAILURE ) {
@@ -251,12 +220,10 @@ PHP_FUNCTION(git_patch_num_lines_in_hunk)
251
220
*/
252
221
PHP_FUNCTION (git_patch_get_line_in_hunk )
253
222
{
254
- php_git2_t * result = NULL ;
223
+ php_git2_t * result = NULL , * _patch = NULL ;
255
224
git_diff_line * out = NULL ;
256
225
zval * patch = NULL ;
257
- php_git2_t * _patch = NULL ;
258
- long hunk_idx = 0 ;
259
- long line_of_hunk = 0 ;
226
+ long hunk_idx = 0 , line_of_hunk = 0 ;
260
227
int error = 0 ;
261
228
262
229
if (zend_parse_parameters (ZEND_NUM_ARGS () TSRMLS_CC ,
@@ -269,26 +236,21 @@ PHP_FUNCTION(git_patch_get_line_in_hunk)
269
236
if (php_git2_check_error (error , "git_patch_get_line_in_hunk" TSRMLS_CC )) {
270
237
RETURN_FALSE ;
271
238
}
272
- PHP_GIT2_MAKE_RESOURCE (result );
273
- PHP_GIT2_V (result , diff_line ) = out ;
274
- result -> type = PHP_GIT2_TYPE_DIFF_LINE ;
275
- result -> resource_id = PHP_GIT2_LIST_INSERT (result , git2_resource_handle );
276
- result -> should_free_v = 0 ;
277
- ZVAL_RESOURCE (return_value , result -> resource_id );
239
+ if (php_git2_make_resource (& result , PHP_GIT2_TYPE_DIFF_LINE , out , 1 TSRMLS_CC )) {
240
+ RETURN_FALSE ;
241
+ }
242
+ ZVAL_RESOURCE (return_value , GIT2_RVAL_P (result ));
278
243
}
279
244
/* }}} */
280
245
281
-
282
246
/* {{{ proto long git_patch_size(resource $patch, long $include_context, long $include_hunk_headers, long $include_file_headers)
283
247
*/
284
248
PHP_FUNCTION (git_patch_size )
285
249
{
286
250
size_t result = 0 ;
287
251
zval * patch = NULL ;
288
252
php_git2_t * _patch = NULL ;
289
- long include_context = 0 ;
290
- long include_hunk_headers = 0 ;
291
- long include_file_headers = 0 ;
253
+ long include_context = 0 , include_hunk_headers = 0 , include_file_headers = 0 ;
292
254
293
255
if (zend_parse_parameters (ZEND_NUM_ARGS () TSRMLS_CC ,
294
256
"rlll" , & patch , & include_context , & include_hunk_headers , & include_file_headers ) == FAILURE ) {
@@ -301,38 +263,50 @@ PHP_FUNCTION(git_patch_size)
301
263
}
302
264
/* }}} */
303
265
304
- /* {{{ proto long git_patch_print(patch, print_cb, payload)
305
- */
266
+
267
+ /* {{{ proto long git_patch_print(resource $patch, Callable $print_cb, $payload)
268
+ */
306
269
PHP_FUNCTION (git_patch_print )
307
270
{
308
- zval * patch ;
309
- php_git2_t * _patch ;
310
- zval * print_cb ;
311
- php_git2_t * _print_cb ;
271
+ int result = 0 , error = 0 ;
272
+ zval * patch = NULL , * print_cb = NULL , * payload = NULL ;
273
+ php_git2_t * _patch = NULL ;
274
+ zend_fcall_info fci = empty_fcall_info ;
275
+ zend_fcall_info_cache fcc = empty_fcall_info_cache ;
276
+ php_git2_cb_t * cb = NULL ;
312
277
313
- /* TODO(chobie): implement this */
314
- php_error_docref (NULL TSRMLS_CC , E_WARNING , "git_patch_print not implemented yet" );
315
- return ;
278
+ if (zend_parse_parameters (ZEND_NUM_ARGS () TSRMLS_CC ,
279
+ "rfz" , & patch , & fci , & fcc , & payload ) == FAILURE ) {
280
+ return ;
281
+ }
282
+
283
+ ZEND_FETCH_RESOURCE (_patch , php_git2_t * , & patch , -1 , PHP_GIT2_RESOURCE_NAME , git2_resource_handle );
284
+ if (php_git2_cb_init (& cb , & fci , & fcc , payload TSRMLS_CC )) {
285
+ RETURN_FALSE ;
286
+ }
287
+ //result = git_patch_print(PHP_GIT2_V(_patch, patch), <CHANGEME>, cb);
288
+ php_git2_cb_free (cb );
289
+ RETURN_LONG (result );
316
290
}
291
+ /* }}} */
292
+
317
293
318
294
/* {{{ proto long git_patch_to_str(string $string, resource $patch)
319
295
*/
320
296
PHP_FUNCTION (git_patch_to_str )
321
297
{
322
- int result = 0 ;
298
+ int result = 0 , string_len = 0 , error = 0 ;
323
299
char * string = NULL ;
324
- int string_len = 0 ;
325
300
zval * patch = NULL ;
326
301
php_git2_t * _patch = NULL ;
327
- int error = 0 ;
328
302
329
303
if (zend_parse_parameters (ZEND_NUM_ARGS () TSRMLS_CC ,
330
304
"sr" , & string , & string_len , & patch ) == FAILURE ) {
331
305
return ;
332
306
}
333
307
334
308
ZEND_FETCH_RESOURCE (_patch , php_git2_t * , & patch , -1 , PHP_GIT2_RESOURCE_NAME , git2_resource_handle );
335
- result = git_patch_to_str (string , PHP_GIT2_V (_patch , patch ));
309
+ result = git_patch_to_str (& string , PHP_GIT2_V (_patch , patch ));
336
310
RETURN_LONG (result );
337
311
}
338
312
/* }}} */
0 commit comments