|
| 1 | +#include "php_git2.h" |
| 2 | +#include "php_git2_priv.h" |
| 3 | +#include "note.h" |
| 4 | + |
| 5 | +/* {{{ proto resource git_note_iterator_new(resource $repo, string $notes_ref) |
| 6 | + */ |
| 7 | +PHP_FUNCTION(git_note_iterator_new) |
| 8 | +{ |
| 9 | + php_git2_t *result = NULL, *_repo = NULL; |
| 10 | + git_note_iterator *out = NULL; |
| 11 | + zval *repo = NULL; |
| 12 | + char *notes_ref = NULL; |
| 13 | + int notes_ref_len = 0, error = 0; |
| 14 | + |
| 15 | + if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, |
| 16 | + "rs", &repo, ¬es_ref, ¬es_ref_len) == FAILURE) { |
| 17 | + return; |
| 18 | + } |
| 19 | + |
| 20 | + ZEND_FETCH_RESOURCE(_repo, php_git2_t*, &repo, -1, PHP_GIT2_RESOURCE_NAME, git2_resource_handle); |
| 21 | + error = git_note_iterator_new(&out, PHP_GIT2_V(_repo, repository), notes_ref); |
| 22 | + if (php_git2_check_error(error, "git_note_iterator_new" TSRMLS_CC)) { |
| 23 | + RETURN_FALSE; |
| 24 | + } |
| 25 | + if (php_git2_make_resource(&result, PHP_GIT2_TYPE_NOTE_ITERATOR, out, 1 TSRMLS_CC)) { |
| 26 | + RETURN_FALSE; |
| 27 | + } |
| 28 | + ZVAL_RESOURCE(return_value, GIT2_RVAL_P(result)); |
| 29 | +} |
| 30 | +/* }}} */ |
| 31 | + |
| 32 | +/* {{{ proto void git_note_iterator_free(resource $it) |
| 33 | + */ |
| 34 | +PHP_FUNCTION(git_note_iterator_free) |
| 35 | +{ |
| 36 | + zval *it = NULL; |
| 37 | + php_git2_t *_it = NULL; |
| 38 | + |
| 39 | + if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, |
| 40 | + "r", &it) == FAILURE) { |
| 41 | + return; |
| 42 | + } |
| 43 | + |
| 44 | + ZEND_FETCH_RESOURCE(_it, php_git2_t*, &it, -1, PHP_GIT2_RESOURCE_NAME, git2_resource_handle); |
| 45 | + if (GIT2_SHOULD_FREE(_it)) { |
| 46 | + git_note_iterator_free(PHP_GIT2_V(_it, note_iterator)); |
| 47 | + GIT2_SHOULD_FREE(_it) = 0; |
| 48 | + }; |
| 49 | + zval_ptr_dtor(&it); |
| 50 | +} |
| 51 | +/* }}} */ |
| 52 | + |
| 53 | +/* {{{ proto long git_note_next(string $note_id, string $annotated_id, resource $it) |
| 54 | + */ |
| 55 | +PHP_FUNCTION(git_note_next) |
| 56 | +{ |
| 57 | + int result = 0, note_id_len = 0, annotated_id_len = 0, error = 0; |
| 58 | + char *note_id = NULL, *annotated_id = NULL; |
| 59 | + zval *it = NULL; |
| 60 | + php_git2_t *_it = NULL; |
| 61 | + |
| 62 | + if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, |
| 63 | + "ssr", ¬e_id, ¬e_id_len, &annotated_id, &annotated_id_len, &it) == FAILURE) { |
| 64 | + return; |
| 65 | + } |
| 66 | + |
| 67 | + ZEND_FETCH_RESOURCE(_it, php_git2_t*, &it, -1, PHP_GIT2_RESOURCE_NAME, git2_resource_handle); |
| 68 | + result = git_note_next(note_id, annotated_id, PHP_GIT2_V(_it, note_iterator)); |
| 69 | + RETURN_LONG(result); |
| 70 | +} |
| 71 | +/* }}} */ |
| 72 | + |
| 73 | +/* {{{ proto resource git_note_read(resource $repo, string $notes_ref, string $oid) |
| 74 | + */ |
| 75 | +PHP_FUNCTION(git_note_read) |
| 76 | +{ |
| 77 | + php_git2_t *result = NULL, *_repo = NULL; |
| 78 | + git_note *out = NULL; |
| 79 | + zval *repo = NULL; |
| 80 | + char *notes_ref = NULL, *oid = NULL; |
| 81 | + int notes_ref_len = 0, oid_len = 0, error = 0; |
| 82 | + git_oid __oid = {0}; |
| 83 | + |
| 84 | + if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, |
| 85 | + "rss", &repo, ¬es_ref, ¬es_ref_len, &oid, &oid_len) == FAILURE) { |
| 86 | + return; |
| 87 | + } |
| 88 | + |
| 89 | + ZEND_FETCH_RESOURCE(_repo, php_git2_t*, &repo, -1, PHP_GIT2_RESOURCE_NAME, git2_resource_handle); |
| 90 | + if (git_oid_fromstrn(&__oid, oid, oid_len)) { |
| 91 | + RETURN_FALSE; |
| 92 | + } |
| 93 | + error = git_note_read(&out, PHP_GIT2_V(_repo, repository), notes_ref, &__oid); |
| 94 | + if (php_git2_check_error(error, "git_note_read" TSRMLS_CC)) { |
| 95 | + RETURN_FALSE; |
| 96 | + } |
| 97 | + if (php_git2_make_resource(&result, PHP_GIT2_TYPE_NOTE, out, 1 TSRMLS_CC)) { |
| 98 | + RETURN_FALSE; |
| 99 | + } |
| 100 | + ZVAL_RESOURCE(return_value, GIT2_RVAL_P(result)); |
| 101 | +} |
| 102 | +/* }}} */ |
| 103 | + |
| 104 | +/* {{{ proto string git_note_message(resource $note) |
| 105 | + */ |
| 106 | +PHP_FUNCTION(git_note_message) |
| 107 | +{ |
| 108 | + const char *result = NULL; |
| 109 | + zval *note = NULL; |
| 110 | + php_git2_t *_note = NULL; |
| 111 | + |
| 112 | + if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, |
| 113 | + "r", ¬e) == FAILURE) { |
| 114 | + return; |
| 115 | + } |
| 116 | + |
| 117 | + ZEND_FETCH_RESOURCE(_note, php_git2_t*, ¬e, -1, PHP_GIT2_RESOURCE_NAME, git2_resource_handle); |
| 118 | + result = git_note_message(PHP_GIT2_V(_note, note)); |
| 119 | + RETURN_STRING(result, 1); |
| 120 | +} |
| 121 | +/* }}} */ |
| 122 | + |
| 123 | +/* {{{ proto resource git_note_oid(resource $note) |
| 124 | + */ |
| 125 | +PHP_FUNCTION(git_note_oid) |
| 126 | +{ |
| 127 | + const git_oid *result = NULL; |
| 128 | + zval *note = NULL; |
| 129 | + php_git2_t *_note = NULL; |
| 130 | + char __result[GIT2_OID_HEXSIZE] = {0}; |
| 131 | + |
| 132 | + if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, |
| 133 | + "r", ¬e) == FAILURE) { |
| 134 | + return; |
| 135 | + } |
| 136 | + |
| 137 | + ZEND_FETCH_RESOURCE(_note, php_git2_t*, ¬e, -1, PHP_GIT2_RESOURCE_NAME, git2_resource_handle); |
| 138 | + result = git_note_oid(PHP_GIT2_V(_note, note)); |
| 139 | + git_oid_fmt(__result, result); |
| 140 | + RETURN_STRING(__result, 1); |
| 141 | +} |
| 142 | +/* }}} */ |
| 143 | + |
| 144 | +/* {{{ proto resource git_note_create(resource $repo, array $author, array $committer, string $notes_ref, string $oid, string $note, long $force) |
| 145 | + */ |
| 146 | +PHP_FUNCTION(git_note_create) |
| 147 | +{ |
| 148 | + php_git2_t *result = NULL, *_repo = NULL; |
| 149 | + git_oid out = {0}, __oid = {0}; |
| 150 | + zval *repo = NULL, *author = NULL, *committer = NULL; |
| 151 | + char *notes_ref = NULL, *oid = NULL, *note = NULL; |
| 152 | + int notes_ref_len = 0, oid_len = 0, note_len = 0, error = 0; |
| 153 | + long force = 0; |
| 154 | + char buf[41] = {0}; |
| 155 | + |
| 156 | + if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, |
| 157 | + "raasssl", &repo, &author, &committer, ¬es_ref, ¬es_ref_len, &oid, &oid_len, ¬e, ¬e_len, &force) == FAILURE) { |
| 158 | + return; |
| 159 | + } |
| 160 | + |
| 161 | + ZEND_FETCH_RESOURCE(_repo, php_git2_t*, &repo, -1, PHP_GIT2_RESOURCE_NAME, git2_resource_handle); |
| 162 | + if (git_oid_fromstrn(&__oid, oid, oid_len)) { |
| 163 | + RETURN_FALSE; |
| 164 | + } |
| 165 | + error = git_note_create(&out, PHP_GIT2_V(_repo, repository), author, committer, notes_ref, &__oid, note, force); |
| 166 | + if (php_git2_check_error(error, "git_note_create" TSRMLS_CC)) { |
| 167 | + RETURN_FALSE; |
| 168 | + } |
| 169 | + git_oid_fmt(buf, &out); |
| 170 | + RETURN_STRING(buf, 1); |
| 171 | +} |
| 172 | +/* }}} */ |
| 173 | + |
| 174 | +/* {{{ proto long git_note_remove(resource $repo, string $notes_ref, array $author, array $committer, string $oid) |
| 175 | + */ |
| 176 | +PHP_FUNCTION(git_note_remove) |
| 177 | +{ |
| 178 | + int result = 0, notes_ref_len = 0, oid_len = 0, error = 0; |
| 179 | + zval *repo = NULL, *author = NULL, *committer = NULL; |
| 180 | + php_git2_t *_repo = NULL; |
| 181 | + char *notes_ref = NULL, *oid = NULL; |
| 182 | + git_oid __oid = {0}; |
| 183 | + |
| 184 | + if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, |
| 185 | + "rsaas", &repo, ¬es_ref, ¬es_ref_len, &author, &committer, &oid, &oid_len) == FAILURE) { |
| 186 | + return; |
| 187 | + } |
| 188 | + |
| 189 | + ZEND_FETCH_RESOURCE(_repo, php_git2_t*, &repo, -1, PHP_GIT2_RESOURCE_NAME, git2_resource_handle); |
| 190 | + if (git_oid_fromstrn(&__oid, oid, oid_len)) { |
| 191 | + RETURN_FALSE; |
| 192 | + } |
| 193 | + result = git_note_remove(PHP_GIT2_V(_repo, repository), notes_ref, author, committer, &__oid); |
| 194 | + RETURN_LONG(result); |
| 195 | +} |
| 196 | +/* }}} */ |
| 197 | + |
| 198 | +/* {{{ proto void git_note_free(resource $note) |
| 199 | + */ |
| 200 | +PHP_FUNCTION(git_note_free) |
| 201 | +{ |
| 202 | + zval *note = NULL; |
| 203 | + php_git2_t *_note = NULL; |
| 204 | + |
| 205 | + if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, |
| 206 | + "r", ¬e) == FAILURE) { |
| 207 | + return; |
| 208 | + } |
| 209 | + |
| 210 | + ZEND_FETCH_RESOURCE(_note, php_git2_t*, ¬e, -1, PHP_GIT2_RESOURCE_NAME, git2_resource_handle); |
| 211 | + if (GIT2_SHOULD_FREE(_note)) { |
| 212 | + git_note_free(PHP_GIT2_V(_note, note)); |
| 213 | + GIT2_SHOULD_FREE(_note) = 0; |
| 214 | + }; |
| 215 | + zval_ptr_dtor(¬e); |
| 216 | +} |
| 217 | +/* }}} */ |
| 218 | + |
| 219 | +/* {{{ proto resource git_note_default_ref(resource $repo) |
| 220 | + */ |
| 221 | +PHP_FUNCTION(git_note_default_ref) |
| 222 | +{ |
| 223 | + php_git2_t *result = NULL, *_repo = NULL; |
| 224 | + char *out = NULL; |
| 225 | + zval *repo = NULL; |
| 226 | + int error = 0; |
| 227 | + |
| 228 | + if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, |
| 229 | + "r", &repo) == FAILURE) { |
| 230 | + return; |
| 231 | + } |
| 232 | + |
| 233 | + ZEND_FETCH_RESOURCE(_repo, php_git2_t*, &repo, -1, PHP_GIT2_RESOURCE_NAME, git2_resource_handle); |
| 234 | + error = git_note_default_ref(&out, PHP_GIT2_V(_repo, repository)); |
| 235 | + if (php_git2_check_error(error, "git_note_default_ref" TSRMLS_CC)) { |
| 236 | + RETURN_FALSE; |
| 237 | + } |
| 238 | + RETURN_STRING(out, 1); |
| 239 | +} |
| 240 | +/* }}} */ |
| 241 | + |
| 242 | +/* {{{ proto long git_note_foreach(resource $repo, string $notes_ref, Callable $note_cb, $payload) |
| 243 | + */ |
| 244 | +PHP_FUNCTION(git_note_foreach) |
| 245 | +{ |
| 246 | + int result = 0, notes_ref_len = 0, error = 0; |
| 247 | + zval *repo = NULL, *note_cb = NULL, *payload = NULL; |
| 248 | + php_git2_t *_repo = NULL; |
| 249 | + char *notes_ref = NULL; |
| 250 | + zend_fcall_info fci = empty_fcall_info; |
| 251 | + zend_fcall_info_cache fcc = empty_fcall_info_cache; |
| 252 | + php_git2_cb_t *cb = NULL; |
| 253 | + |
| 254 | + if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, |
| 255 | + "rsfz", &repo, ¬es_ref, ¬es_ref_len, &fci, &fcc, &payload) == FAILURE) { |
| 256 | + return; |
| 257 | + } |
| 258 | + |
| 259 | + ZEND_FETCH_RESOURCE(_repo, php_git2_t*, &repo, -1, PHP_GIT2_RESOURCE_NAME, git2_resource_handle); |
| 260 | + if (php_git2_cb_init(&cb, &fci, &fcc, payload TSRMLS_CC)) { |
| 261 | + RETURN_FALSE; |
| 262 | + } |
| 263 | + //result = git_note_foreach(PHP_GIT2_V(_repo, repository), notes_ref, <CHANGEME>, cb); |
| 264 | + php_git2_cb_free(cb); |
| 265 | + RETURN_LONG(result); |
| 266 | +} |
| 267 | +/* }}} */ |
| 268 | + |
0 commit comments