KiCad PCB EDA Suite
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
kicad_git_memory.h
Go to the documentation of this file.
1// This program is free software; you can redistribute it and/or modify
2// it under the terms of the GNU General Public License as published by
3// the Free Software Foundation; either version 3 of the License, or
4// (at your option) any later version.
5//
6// This program is distributed in the hope that it will be useful,
7// but WITHOUT ANY WARRANTY; without even the implied warranty of
8// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9// GNU General Public License for more details.
10//
11// You should have received a copy of the GNU General Public License
12// along with this program; if not, see <http://www.gnu.org/licenses/>.
13
14#ifndef KICAD_GIT_MEMORY_H
15#define KICAD_GIT_MEMORY_H
16
17#include <memory>
18#include <git2.h>
19
20namespace KIGIT
21{
25using GitRepositoryPtr = std::unique_ptr<git_repository,
26 decltype([](git_repository* aRepo) {
27 git_repository_free(aRepo);
28 })>;
29
33using GitReferencePtr = std::unique_ptr<git_reference,
34 decltype([](git_reference* aRef) {
35 git_reference_free(aRef);
36 })>;
37
41using GitObjectPtr = std::unique_ptr<git_object,
42 decltype([](git_object* aObject) {
43 git_object_free(aObject);
44 })>;
48using GitCommitPtr = std::unique_ptr<git_commit,
49 decltype([](git_commit* aCommit) {
50 git_commit_free(aCommit);
51 })>;
52
56using GitTreePtr = std::unique_ptr<git_tree,
57 decltype([](git_tree* aTree) {
58 git_tree_free(aTree);
59 })>;
60
64using GitIndexPtr = std::unique_ptr<git_index,
65 decltype([](git_index* aIndex) {
66 git_index_free(aIndex);
67 })>;
68
72using GitRebasePtr = std::unique_ptr<git_rebase,
73 decltype([](git_rebase* aRebase) {
74 git_rebase_free(aRebase);
75 })>;
76
80using GitRevWalkPtr = std::unique_ptr<git_revwalk,
81 decltype([](git_revwalk* aWalker) {
82 git_revwalk_free(aWalker);
83 })>;
84
88using GitDiffPtr = std::unique_ptr<git_diff,
89 decltype([](git_diff* aDiff) {
90 git_diff_free(aDiff);
91 })>;
92
96using GitSignaturePtr = std::unique_ptr<git_signature,
97 decltype([](git_signature* aSignature) {
98 git_signature_free(aSignature);
99 })>;
100
104using GitConfigPtr = std::unique_ptr<git_config,
105 decltype([](git_config* aConfig) {
106 git_config_free(aConfig);
107 })>;
108
112using GitRemotePtr = std::unique_ptr<git_remote,
113 decltype([](git_remote* aRemote) {
114 git_remote_free(aRemote);
115 })>;
116
120using GitAnnotatedCommitPtr = std::unique_ptr<git_annotated_commit,
121 decltype([](git_annotated_commit* aCommit) {
122 git_annotated_commit_free(aCommit);
123 })>;
124
128using GitOidPtr = std::unique_ptr<git_oid,
129 decltype([](git_oid* aOid) {
130 delete aOid;
131 })>;
132
136using GitBufPtr = std::unique_ptr<git_buf,
137 decltype([](git_buf* aBuf) {
138 git_buf_free(aBuf);
139 })>;
140
144using GitBlamePtr = std::unique_ptr<git_blame,
145 decltype([](git_blame* aBlame) {
146 git_blame_free(aBlame);
147 })>;
148
152using GitBlobPtr = std::unique_ptr<git_blob,
153 decltype([](git_blob* aBlob) {
154 git_blob_free(aBlob);
155 })>;
156
160using GitBranchIteratorPtr = std::unique_ptr<git_branch_iterator,
161 decltype([](git_branch_iterator* aIter) {
162 git_branch_iterator_free(aIter);
163 })>;
164
168using GitConfigEntryPtr = std::unique_ptr<git_config_entry,
169 decltype([](git_config_entry* aEntry) {
170 git_config_entry_free(aEntry);
171 })>;
172
176using GitConfigIteratorPtr = std::unique_ptr<git_config_iterator,
177 decltype([](git_config_iterator* aIter) {
178 git_config_iterator_free(aIter);
179 })>;
180
184using GitCredentialPtr = std::unique_ptr<git_credential,
185 decltype([](git_credential* aCred) {
186 git_credential_free(aCred);
187 })>;
188
192using GitOidArrayPtr = std::unique_ptr<git_oidarray,
193 decltype([](git_oidarray* aArray) {
194 git_oidarray_free(aArray);
195 })>;
196
200using GitStrArrayPtr = std::unique_ptr<git_strarray,
201 decltype([](git_strarray* aArray) {
202 git_strarray_free(aArray);
203 })>;
204
208using GitDescribeResultPtr = std::unique_ptr<git_describe_result,
209 decltype([](git_describe_result* aResult) {
210 git_describe_result_free(aResult);
211 })>;
212
216using GitDiffStatsPtr = std::unique_ptr<git_diff_stats,
217 decltype([](git_diff_stats* aStats) {
218 git_diff_stats_free(aStats);
219 })>;
220
224using GitFilterListPtr = std::unique_ptr<git_filter_list,
225 decltype([](git_filter_list* aFilters) {
226 git_filter_list_free(aFilters);
227 })>;
228
232using GitIndexerPtr = std::unique_ptr<git_indexer,
233 decltype([](git_indexer* aIdx) {
234 git_indexer_free(aIdx);
235 })>;
236
240using GitIndexIteratorPtr = std::unique_ptr<git_index_iterator,
241 decltype([](git_index_iterator* aIterator) {
242 git_index_iterator_free(aIterator);
243 })>;
244
248using GitIndexConflictIteratorPtr = std::unique_ptr<git_index_conflict_iterator,
249 decltype([](git_index_conflict_iterator* aIterator) {
250 git_index_conflict_iterator_free(aIterator);
251 })>;
252
256using GitStatusListPtr = std::unique_ptr<git_status_list,
257 decltype([](git_status_list* aList) {
258 git_status_list_free(aList);
259 })>;
260
261} // namespace KIGIT
262
263#endif // KICAD_GIT_MEMORY_H
std::unique_ptr< git_diff_stats, decltype([](git_diff_stats *aStats) { git_diff_stats_free(aStats) GitDiffStatsPtr
A unique pointer for git_diff_stats objects with automatic cleanup.
std::unique_ptr< git_object, decltype([](git_object *aObject) { git_object_free(aObject) GitObjectPtr
A unique pointer for git_object objects with automatic cleanup.
std::unique_ptr< git_status_list, decltype([](git_status_list *aList) { git_status_list_free(aList) GitStatusListPtr
A unique pointer for git_status_list objects with automatic cleanup.
std::unique_ptr< git_strarray, decltype([](git_strarray *aArray) { git_strarray_free(aArray) GitStrArrayPtr
A unique pointer for git_strarray objects with automatic cleanup.
std::unique_ptr< git_commit, decltype([](git_commit *aCommit) { git_commit_free(aCommit) GitCommitPtr
A unique pointer for git_commit objects with automatic cleanup.
std::unique_ptr< git_annotated_commit, decltype([](git_annotated_commit *aCommit) { git_annotated_commit_free(aCommit) GitAnnotatedCommitPtr
A unique pointer for git_annotated_commit objects with automatic cleanup.
std::unique_ptr< git_buf, decltype([](git_buf *aBuf) { git_buf_free(aBuf) GitBufPtr
A unique pointer for git_buf objects with automatic cleanup.
std::unique_ptr< git_branch_iterator, decltype([](git_branch_iterator *aIter) { git_branch_iterator_free(aIter) GitBranchIteratorPtr
A unique pointer for git_branch_iterator objects with automatic cleanup.
std::unique_ptr< git_tree, decltype([](git_tree *aTree) { git_tree_free(aTree) GitTreePtr
A unique pointer for git_tree objects with automatic cleanup.
std::unique_ptr< git_config_entry, decltype([](git_config_entry *aEntry) { git_config_entry_free(aEntry) GitConfigEntryPtr
A unique pointer for git_config_entry objects with automatic cleanup.
std::unique_ptr< git_filter_list, decltype([](git_filter_list *aFilters) { git_filter_list_free(aFilters) GitFilterListPtr
A unique pointer for git_filter_list objects with automatic cleanup.
std::unique_ptr< git_indexer, decltype([](git_indexer *aIdx) { git_indexer_free(aIdx) GitIndexerPtr
A unique pointer for git_indexer objects with automatic cleanup.
std::unique_ptr< git_index, decltype([](git_index *aIndex) { git_index_free(aIndex) GitIndexPtr
A unique pointer for git_index objects with automatic cleanup.
std::unique_ptr< git_blob, decltype([](git_blob *aBlob) { git_blob_free(aBlob) GitBlobPtr
A unique pointer for git_blob objects with automatic cleanup.
std::unique_ptr< git_index_iterator, decltype([](git_index_iterator *aIterator) { git_index_iterator_free(aIterator) GitIndexIteratorPtr
A unique pointer for git_index_iterator objects with automatic cleanup.
std::unique_ptr< git_signature, decltype([](git_signature *aSignature) { git_signature_free(aSignature) GitSignaturePtr
A unique pointer for git_signature objects with automatic cleanup.
std::unique_ptr< git_rebase, decltype([](git_rebase *aRebase) { git_rebase_free(aRebase) GitRebasePtr
A unique pointer for git_rebase objects with automatic cleanup.
std::unique_ptr< git_repository, decltype([](git_repository *aRepo) { git_repository_free(aRepo) GitRepositoryPtr
A unique pointer for git_repository objects with automatic cleanup.
std::unique_ptr< git_config, decltype([](git_config *aConfig) { git_config_free(aConfig) GitConfigPtr
A unique pointer for git_config objects with automatic cleanup.
std::unique_ptr< git_reference, decltype([](git_reference *aRef) { git_reference_free(aRef) GitReferencePtr
A unique pointer for git_reference objects with automatic cleanup.
std::unique_ptr< git_blame, decltype([](git_blame *aBlame) { git_blame_free(aBlame) GitBlamePtr
A unique pointer for git_blame objects with automatic cleanup.
std::unique_ptr< git_config_iterator, decltype([](git_config_iterator *aIter) { git_config_iterator_free(aIter) GitConfigIteratorPtr
A unique pointer for git_config_iterator objects with automatic cleanup.
std::unique_ptr< git_index_conflict_iterator, decltype([](git_index_conflict_iterator *aIterator) { git_index_conflict_iterator_free(aIterator) GitIndexConflictIteratorPtr
A unique pointer for git_index_conflict_iterator objects with automatic cleanup.
std::unique_ptr< git_diff, decltype([](git_diff *aDiff) { git_diff_free(aDiff) GitDiffPtr
A unique pointer for git_diff objects with automatic cleanup.
std::unique_ptr< git_credential, decltype([](git_credential *aCred) { git_credential_free(aCred) GitCredentialPtr
A unique pointer for git_credential objects with automatic cleanup.
std::unique_ptr< git_oid, decltype([](git_oid *aOid) { delete aOid GitOidPtr
A unique pointer for git_oid objects with automatic cleanup.
std::unique_ptr< git_oidarray, decltype([](git_oidarray *aArray) { git_oidarray_free(aArray) GitOidArrayPtr
A unique pointer for git_oidarray objects with automatic cleanup.
std::unique_ptr< git_revwalk, decltype([](git_revwalk *aWalker) { git_revwalk_free(aWalker) GitRevWalkPtr
A unique pointer for git_revwalk objects with automatic cleanup.
std::unique_ptr< git_remote, decltype([](git_remote *aRemote) { git_remote_free(aRemote) GitRemotePtr
A unique pointer for git_remote objects with automatic cleanup.
std::unique_ptr< git_describe_result, decltype([](git_describe_result *aResult) { git_describe_result_free(aResult) GitDescribeResultPtr
A unique pointer for git_describe_result objects with automatic cleanup.