Skip to content

Commit b687a5d

Browse files
committed
[checkout, ignore] update code base
1 parent cae14f9 commit b687a5d

File tree

2 files changed

+27
-47
lines changed

2 files changed

+27
-47
lines changed

checkout.c

+14-23
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,9 @@
66
*/
77
PHP_FUNCTION(git_checkout_head)
88
{
9-
int result = 0;
10-
zval *repo = NULL;
9+
zval *opts = NULL, *repo = NULL;
1110
php_git2_t *_repo = NULL;
12-
zval *opts = NULL;
13-
int error = 0, shoud_free = 0;
11+
int result = 0, error = 0, shoud_free = 0;
1412
git_checkout_opts *options;
1513

1614
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC,
@@ -41,15 +39,10 @@ PHP_FUNCTION(git_checkout_head)
4139
*/
4240
PHP_FUNCTION(git_checkout_index)
4341
{
44-
int result = 0;
45-
zval *repo = NULL;
46-
php_git2_t *_repo = NULL;
47-
zval *index = NULL;
48-
php_git2_t *_index = NULL;
49-
zval *opts = NULL;
50-
int error = 0;
42+
int result = 0, error = 0;
43+
zval *repo = NULL, *index = NULL, *opts = NULL;
44+
php_git2_t *_repo = NULL, *_index = NULL;
5145

52-
/* TODO(chobie): generate converter */
5346
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC,
5447
"rra", &repo, &index, &opts) == FAILURE) {
5548
return;
@@ -62,22 +55,18 @@ PHP_FUNCTION(git_checkout_index)
6255
}
6356
/* }}} */
6457

58+
6559
/* {{{ proto long git_checkout_tree(resource $repo, resource $treeish, $opts)
6660
*/
6761
PHP_FUNCTION(git_checkout_tree)
6862
{
69-
int result = 0;
70-
zval *repo = NULL;
71-
php_git2_t *_repo = NULL;
72-
zval *treeish = NULL;
73-
php_git2_t *_treeish = NULL;
74-
zval *opts = NULL;
75-
int error = 0;
76-
git_checkout_opts options = GIT_CHECKOUT_OPTS_INIT;
77-
git_object *__treeish = NULL;
63+
int result = 0, error = 0;
64+
zval *repo = NULL, *treeish = NULL, *opts = NULL;
65+
php_git2_t *_repo = NULL, *_treeish = NULL;
66+
git_checkout_opts options = {0};
7867

7968
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC,
80-
"r|ra", &repo, &treeish, &opts) == FAILURE) {
69+
"rra", &repo, &treeish, &opts) == FAILURE) {
8170
return;
8271
}
8372

@@ -93,8 +82,10 @@ PHP_FUNCTION(git_checkout_tree)
9382
}
9483

9584
ZEND_FETCH_RESOURCE(_repo, php_git2_t*, &repo, -1, PHP_GIT2_RESOURCE_NAME, git2_resource_handle);
96-
result = git_checkout_tree(PHP_GIT2_V(_repo, repository), __treeish, &options);
85+
ZEND_FETCH_RESOURCE(_treeish, php_git2_t*, &treeish, -1, PHP_GIT2_RESOURCE_NAME, git2_resource_handle);
86+
result = git_checkout_tree(PHP_GIT2_V(_repo, repository), PHP_GIT2_V(_treeish, object), opts);
9787
RETURN_LONG(result);
9888
}
9989
/* }}} */
10090

91+

ignore.c

+13-24
Original file line numberDiff line numberDiff line change
@@ -6,70 +6,59 @@
66
*/
77
PHP_FUNCTION(git_ignore_add_rule)
88
{
9-
int result = 0;
9+
int result = 0, rules_len = 0, error = 0;
1010
zval *repo = NULL;
1111
php_git2_t *_repo = NULL;
1212
char *rules = NULL;
13-
int rules_len = 0;
14-
int error = 0;
15-
13+
1614
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC,
1715
"rs", &repo, &rules, &rules_len) == FAILURE) {
1816
return;
1917
}
20-
18+
2119
ZEND_FETCH_RESOURCE(_repo, php_git2_t*, &repo, -1, PHP_GIT2_RESOURCE_NAME, git2_resource_handle);
2220
result = git_ignore_add_rule(PHP_GIT2_V(_repo, repository), rules);
2321
RETURN_LONG(result);
2422
}
2523
/* }}} */
2624

27-
2825
/* {{{ proto long git_ignore_clear_internal_rules(resource $repo)
2926
*/
3027
PHP_FUNCTION(git_ignore_clear_internal_rules)
3128
{
32-
int result = 0;
29+
int result = 0, error = 0;
3330
zval *repo = NULL;
3431
php_git2_t *_repo = NULL;
35-
int error = 0;
36-
32+
3733
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC,
3834
"r", &repo) == FAILURE) {
3935
return;
4036
}
41-
37+
4238
ZEND_FETCH_RESOURCE(_repo, php_git2_t*, &repo, -1, PHP_GIT2_RESOURCE_NAME, git2_resource_handle);
4339
result = git_ignore_clear_internal_rules(PHP_GIT2_V(_repo, repository));
4440
RETURN_LONG(result);
4541
}
4642
/* }}} */
4743

48-
49-
/* {{{ proto long git_ignore_path_is_ignored(resource $repo, string $path)
44+
/* {{{ proto long git_ignore_path_is_ignored(long $ignored, resource $repo, string $path)
5045
*/
5146
PHP_FUNCTION(git_ignore_path_is_ignored)
5247
{
53-
int result = 0;
48+
int result = 0, path_len = 0, error = 0;
5449
long ignored = 0;
5550
zval *repo = NULL;
5651
php_git2_t *_repo = NULL;
5752
char *path = NULL;
58-
int path_len = 0;
59-
int error = 0;
60-
53+
6154
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC,
62-
"rs", &repo, &path, &path_len) == FAILURE) {
55+
"lrs", &ignored, &repo, &path, &path_len) == FAILURE) {
6356
return;
6457
}
65-
58+
6659
ZEND_FETCH_RESOURCE(_repo, php_git2_t*, &repo, -1, PHP_GIT2_RESOURCE_NAME, git2_resource_handle);
67-
result = git_ignore_path_is_ignored(&ignored, PHP_GIT2_V(_repo, repository), path);
68-
if (php_git2_check_error(error, "git_ignore_path_is_ignored" TSRMLS_CC)) {
69-
RETURN_FALSE
70-
}
71-
72-
RETURN_LONG(ignored);
60+
result = git_ignore_path_is_ignored(ignored, PHP_GIT2_V(_repo, repository), path);
61+
RETURN_BOOL(result);
7362
}
7463
/* }}} */
7564

0 commit comments

Comments
 (0)