Skip to content

Commit ba610c6

Browse files
committed
[index] add several callbacks
1 parent 2de2ab8 commit ba610c6

File tree

6 files changed

+270
-146
lines changed

6 files changed

+270
-146
lines changed

helper.c

+32-1
Original file line numberDiff line numberDiff line change
@@ -203,4 +203,35 @@ int php_git2_cb_init(php_git2_cb_t **out, zend_fcall_info *fci, zend_fcall_info_
203203
void php_git2_cb_free(php_git2_cb_t *target)
204204
{
205205
efree(target);
206-
}
206+
}
207+
208+
void php_git2_array_to_strarray(git_strarray *out, zval *array TSRMLS_DC)
209+
{
210+
int elements = 0, i;
211+
HashPosition pos;
212+
zval **value;
213+
214+
elements = zend_hash_num_elements(Z_ARRVAL_P(array));
215+
out->strings = (char**)emalloc(sizeof(char*) * elements);
216+
out->count = elements;
217+
for (i = 0, zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(array), &pos);
218+
zend_hash_get_current_data_ex(Z_ARRVAL_P(array), (void **)&value, &pos) == SUCCESS;
219+
zend_hash_move_forward_ex(Z_ARRVAL_P(array), &pos), i++) {
220+
char *buffer;
221+
222+
Z_STRVAL_PP(value);
223+
buffer = emalloc(sizeof(char*) * Z_STRLEN_PP(value) + 1);
224+
memcpy(buffer, Z_STRVAL_PP(value), Z_STRLEN_PP(value));
225+
buffer[Z_STRLEN_PP(value)] = '\0';
226+
out->strings[i] = buffer;
227+
}
228+
}
229+
230+
void php_git2_strarray_free(git_strarray *out)
231+
{
232+
int i = 0;
233+
for (i = 0; i < out->count; i++) {
234+
efree(out->strings[i]);
235+
}
236+
efree(out->strings);
237+
}

helper.h

+4
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,8 @@ int php_git2_cb_init(php_git2_cb_t **out, zend_fcall_info *fci, zend_fcall_info_
4949

5050
void php_git2_cb_free(php_git2_cb_t *target);
5151

52+
void php_git2_array_to_strarray(git_strarray *out, zval *array TSRMLS_DC);
53+
54+
void php_git2_strarray_free(git_strarray *out);
55+
5256
#endif

0 commit comments

Comments
 (0)