Skip to content

Commit 8d9977d

Browse files
committed
[remote] wip
1 parent 00cc5cf commit 8d9977d

File tree

4 files changed

+69
-25
lines changed

4 files changed

+69
-25
lines changed

ng.php

+3
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,9 @@ public function isCallback()
165165
if (preg_match("/packbuilder_progress/", $this->getType())) {
166166
return true;
167167
}
168+
if (preg_match("/git_push_transfer_progress/", $this->getType())) {
169+
return true;
170+
}
168171
return false;
169172
}
170173

php_git2.c

+1
Original file line numberDiff line numberDiff line change
@@ -266,6 +266,7 @@ int php_git2_make_resource(php_git2_t **out, enum php_git2_resource_type type, v
266266
break;
267267
case PHP_GIT2_TYPE_PUSH:
268268
PHP_GIT2_V(result, push) = (git_push*)resource;
269+
break;
269270
default:
270271
php_error_docref(NULL TSRMLS_CC, E_ERROR, "passed resource type does not support. probably bug.");
271272
}

push.c

+42-20
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22
#include "php_git2_priv.h"
33
#include "push.h"
44

5+
static int php_git2_push_status_foreach_cb(const char *ref, const char *msg, void *data)
6+
{
7+
fprintf(stderr, "ref: %s\n", ref);
8+
fprintf(stderr, "msg: %s\n", msg);
9+
return 0;
10+
}
11+
512
/* {{{ proto resource git_push_new(resource $remote)
613
*/
714
PHP_FUNCTION(git_push_new)
@@ -54,25 +61,34 @@ PHP_FUNCTION(git_push_set_callbacks)
5461
int result = 0, error = 0;
5562
zval *push = NULL, *pack_progress_cb = NULL, *pack_progress_cb_payload = NULL, *transfer_progress_cb = NULL, *transfer_progress_cb_payload = NULL;
5663
php_git2_t *_push = NULL;
57-
zend_fcall_info fci = empty_fcall_info;
58-
zend_fcall_info_cache fcc = empty_fcall_info_cache;
59-
php_git2_cb_t *cb = NULL;
64+
zend_fcall_info pack_fci = empty_fcall_info;
65+
zend_fcall_info_cache pack_fcc = empty_fcall_info_cache;
66+
zend_fcall_info transfer_fci = empty_fcall_info;
67+
zend_fcall_info_cache transfer_fcc = empty_fcall_info_cache;
68+
php_git2_cb_t *pack_cb = NULL;
69+
php_git2_cb_t *transfer_cb = NULL;
6070

6171
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC,
62-
"rfz<git_push_transfer_progress>z", &push, &fci, &fcc, &pack_progress_cb_payload, &transfer_progress_cb, &transfer_progress_cb_payload) == FAILURE) {
72+
"rfzfz", &push, &pack_fci, &pack_fcc, &pack_progress_cb_payload, &transfer_fci, &transfer_fcc, &transfer_progress_cb_payload) == FAILURE) {
6373
return;
6474
}
65-
75+
6676
ZEND_FETCH_RESOURCE(_push, php_git2_t*, &push, -1, PHP_GIT2_RESOURCE_NAME, git2_resource_handle);
67-
// if (php_git2_cb_init(&cb, &fci, &fcc, payload TSRMLS_CC)) {
68-
// RETURN_FALSE;
69-
// }
70-
//result = git_push_set_callbacks(PHP_GIT2_V(_push, push), <CHANGEME>, cb, transfer_progress_cb, cb);
71-
php_git2_cb_free(cb);
77+
if (php_git2_cb_init(&pack_cb, &pack_fci, &pack_fcc, pack_progress_cb_payload TSRMLS_CC)) {
78+
RETURN_FALSE;
79+
}
80+
if (php_git2_cb_init(&transfer_cb, &transfer_fci, &transfer_fcc, transfer_progress_cb_payload TSRMLS_CC)) {
81+
RETURN_FALSE;
82+
}
83+
result = git_push_set_callbacks(PHP_GIT2_V(_push, push), NULL, pack_cb, NULL, transfer_cb);
84+
php_git2_cb_free(pack_cb);
85+
php_git2_cb_free(transfer_cb);
7286
RETURN_LONG(result);
7387
}
7488
/* }}} */
7589

90+
91+
7692
/* {{{ proto long git_push_add_refspec(resource $push, string $refspec)
7793
*/
7894
PHP_FUNCTION(git_push_add_refspec)
@@ -150,22 +166,28 @@ PHP_FUNCTION(git_push_unpack_ok)
150166
}
151167
/* }}} */
152168

153-
/* {{{ proto long git_push_status_foreach(resource $push, string $ref, string $msg, $data), $data)
169+
/* {{{ proto long git_push_status_foreach(resource $push, Callable callback, mixed $payload)
154170
*/
155171
PHP_FUNCTION(git_push_status_foreach)
156172
{
157-
int result = 0, ref_len = 0, msg_len = 0, error = 0;
158-
zval *push = NULL;
173+
int result = 0;
174+
zval *push = NULL, *payload = NULL;
159175
php_git2_t *_push = NULL;
160-
char *ref = NULL, *msg = NULL;
161-
162-
// if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC,
163-
// "rss<void><void>", &push, &ref, &ref_len, &msg, &msg_len, &data, &data) == FAILURE) {
164-
// return;
165-
// }
176+
zend_fcall_info fci = empty_fcall_info;
177+
zend_fcall_info_cache fcc = empty_fcall_info_cache;
178+
php_git2_cb_t *cb = NULL;
179+
180+
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC,
181+
"rfz", &push, &fci, &fcc, &payload) == FAILURE) {
182+
return;
183+
}
166184

167185
ZEND_FETCH_RESOURCE(_push, php_git2_t*, &push, -1, PHP_GIT2_RESOURCE_NAME, git2_resource_handle);
168-
//result = git_push_status_foreach(PHP_GIT2_V(_push, push), ref, msg, data);
186+
if (php_git2_cb_init(&cb, &fci, &fcc, payload TSRMLS_CC)) {
187+
RETURN_FALSE;
188+
}
189+
result = git_push_status_foreach(PHP_GIT2_V(_push, push), php_git2_push_status_foreach_cb, cb);
190+
php_git2_cb_free(cb);
169191
RETURN_LONG(result);
170192
}
171193
/* }}} */

remote.c

+23-5
Original file line numberDiff line numberDiff line change
@@ -753,6 +753,23 @@ PHP_FUNCTION(git_remote_set_transport)
753753
}
754754
/* }}} */
755755

756+
static int cred_cb(git_cred **cred, const char *url, const char *username_from_url, unsigned int allowed_types, void *data)
757+
{
758+
fprintf(stderr, "url: %s\n", url);
759+
fprintf(stderr, "name: %s\n", username_from_url);
760+
fprintf(stderr, "types: %d\n", allowed_types);
761+
762+
return 0;
763+
}
764+
765+
typedef struct php_git2_fcall_t {
766+
zend_fcall_info fci;
767+
zend_fcall_info_cache fcc;
768+
} php_git2_fcall_t;
769+
typedef struct php_git2_remote_cb_t {
770+
php_git2_fcall_t callbacks[4];
771+
zval *payload;
772+
} php_git2_remote_cb_t;
756773

757774
/* {{{ proto long git_remote_set_callbacks(remote, callbacks)
758775
*/
@@ -762,16 +779,17 @@ PHP_FUNCTION(git_remote_set_callbacks)
762779
php_git2_t *_remote;
763780
zval *callbacks;
764781
php_git2_t *_callbacks;
765-
766-
/* TODO(chobie): implement this */
767-
php_error_docref(NULL TSRMLS_CC, E_WARNING, "git_remote_set_callbacks not implemented yet");
768-
return;
782+
struct git_remote_callbacks cb = GIT_REMOTE_CALLBACKS_INIT;
769783

770784
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC,
771-
"rr", &remote, &callbacks) == FAILURE) {
785+
"ra", &remote, &callbacks) == FAILURE) {
772786
return;
773787
}
788+
789+
cb.credentials = cred_cb;
790+
774791
ZEND_FETCH_RESOURCE(_remote, php_git2_t*, &remote, -1, PHP_GIT2_RESOURCE_NAME, git2_resource_handle);
792+
git_remote_set_callbacks(PHP_GIT2_V(_remote, remote), &cb);
775793
}
776794

777795
/* {{{ proto resource git_remote_stats(resource $remote)

0 commit comments

Comments
 (0)