1 module deimos.git2.remote; 2 3 import deimos.git2.common; 4 import deimos.git2.indexer; 5 import deimos.git2.net; 6 import deimos.git2.oid; 7 import deimos.git2.refspec; 8 import deimos.git2.repository; 9 import deimos.git2.strarray; 10 import deimos.git2.util; 11 import deimos.git2.transport; 12 import deimos.git2.types; 13 14 extern (C): 15 16 alias git_remote_rename_problem_cb = int function(const(char)* problematic_refspec, void *payload); 17 18 int git_remote_create( 19 git_remote **out_, 20 git_repository *repo, 21 const(char)* name, 22 const(char)* url); 23 int git_remote_create_with_fetchspec( 24 git_remote **out_, 25 git_repository *repo, 26 const(char)* name, 27 const(char)* url, 28 const(char)* fetch); 29 int git_remote_create_inmemory( 30 git_remote **out_, 31 git_repository *repo, 32 const(char)* fetch, 33 const(char)* url); 34 int git_remote_load(git_remote **out_, git_repository *repo, const(char)* name); 35 int git_remote_save(const(git_remote)* remote); 36 git_repository* git_remote_owner(const(git_remote)* remote); 37 const(char)* git_remote_name(const(git_remote)* remote); 38 const(char)* git_remote_url(const(git_remote)* remote); 39 const(char)* git_remote_pushurl(const(git_remote)* remote); 40 int git_remote_set_url(git_remote *remote, const(char)* url); 41 int git_remote_set_pushurl(git_remote *remote, const(char)* url); 42 int git_remote_add_fetch(git_remote *remote, const(char)* refspec); 43 int git_remote_get_fetch_refspecs(git_strarray *array, git_remote *remote); 44 int git_remote_set_fetch_refspecs(git_remote *remote, git_strarray *array); 45 int git_remote_add_push(git_remote *remote, const(char)* refspec); 46 int git_remote_get_push_refspecs(git_strarray *array, git_remote *remote); 47 int git_remote_set_push_refspecs(git_remote *remote, git_strarray *array); 48 void git_remote_clear_refspecs(git_remote *remote); 49 size_t git_remote_refspec_count(git_remote *remote); 50 const(git_refspec)* git_remote_get_refspec(git_remote *remote, size_t n); 51 int git_remote_connect(git_remote *remote, git_direction direction); 52 int git_remote_ls(const(git_remote_head)*** out_, size_t *size, git_remote *remote); 53 int git_remote_download(git_remote *remote); 54 int git_remote_connected(git_remote *remote); 55 void git_remote_stop(git_remote *remote); 56 void git_remote_disconnect(git_remote *remote); 57 void git_remote_free(git_remote *remote); 58 int git_remote_update_tips(git_remote *remote); 59 int git_remote_fetch(git_remote *remote); 60 int git_remote_valid_url(const(char)* url); 61 int git_remote_supported_url(const(char)* url); 62 int git_remote_list(git_strarray *out_, git_repository *repo); 63 void git_remote_check_cert(git_remote *remote, int check); 64 int git_remote_set_transport( 65 git_remote *remote, 66 git_transport *transport); 67 68 enum git_remote_completion_type { 69 GIT_REMOTE_COMPLETION_DOWNLOAD, 70 GIT_REMOTE_COMPLETION_INDEXING, 71 GIT_REMOTE_COMPLETION_ERROR, 72 } 73 mixin _ExportEnumMembers!git_remote_completion_type; 74 75 struct git_remote_callbacks { 76 uint version_ = GIT_REMOTE_CALLBACKS_VERSION; 77 int function(const(char)* str, int len, void *data) progress; 78 int function(git_remote_completion_type type, void *data) completion; 79 int function(git_cred **cred, const(char)* url, const(char)* username_from_url, uint allowed_types, void *data) credentials; 80 int function(const(git_transfer_progress)* stats, void *data) transfer_progress; 81 int function(const(char)* refname, const(git_oid)* a, const(git_oid)* b, void *data) update_tips; 82 void *payload; 83 } 84 85 enum GIT_REMOTE_CALLBACKS_VERSION = 1; 86 enum git_remote_callbacks GIT_REMOTE_CALLBACKS_INIT = { GIT_REMOTE_CALLBACKS_VERSION }; 87 88 int git_remote_set_callbacks(git_remote *remote, git_remote_callbacks *callbacks); 89 const(git_transfer_progress)* git_remote_stats(git_remote *remote); 90 91 enum git_remote_autotag_option_t { 92 GIT_REMOTE_DOWNLOAD_TAGS_AUTO = 0, 93 GIT_REMOTE_DOWNLOAD_TAGS_NONE = 1, 94 GIT_REMOTE_DOWNLOAD_TAGS_ALL = 2 95 } 96 mixin _ExportEnumMembers!git_remote_autotag_option_t; 97 98 git_remote_autotag_option_t git_remote_autotag(git_remote *remote); 99 void git_remote_set_autotag( 100 git_remote *remote, 101 git_remote_autotag_option_t value); 102 int git_remote_rename( 103 git_remote *remote, 104 const(char)* new_name, 105 git_remote_rename_problem_cb callback, 106 void *payload); 107 int git_remote_update_fetchhead(git_remote *remote); 108 void git_remote_set_update_fetchhead(git_remote *remote, int value); 109 int git_remote_is_valid_name(const(char)* remote_name);