1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
|
/* foundry-git-repository-private.h
*
* Copyright 2025 Christian Hergert <chergert@redhat.com>
*
* This library is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of the
* License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program. If not, see <http://www.gnu.org/licenses/>.
*
* SPDX-License-Identifier: LGPL-2.1-or-later
*/
#pragma once
#include <git2.h>
#include <glib-object.h>
#include <libdex.h>
#include "foundry-context.h"
#include "foundry-git-monitor-private.h"
#include "foundry-git-repository-paths-private.h"
#include "foundry-git-tree.h"
#include "foundry-operation.h"
#include "foundry-vcs-remote.h"
#include "foundry-git-status-entry.h"
G_BEGIN_DECLS
#define FOUNDRY_TYPE_GIT_REPOSITORY (foundry_git_repository_get_type())
G_DECLARE_FINAL_TYPE (FoundryGitRepository, foundry_git_repository, FOUNDRY, GIT_REPOSITORY, GObject)
FoundryGitRepository *_foundry_git_repository_new (git_repository *repository);
DexFuture *_foundry_git_repository_create_monitor (FoundryGitRepository *self) G_GNUC_WARN_UNUSED_RESULT;
char *_foundry_git_repository_dup_branch_name (FoundryGitRepository *self);
char *_foundry_git_repository_dup_git_dir (FoundryGitRepository *self);
FoundryGitRepositoryPaths *_foundry_git_repository_dup_paths (FoundryGitRepository *self);
DexFuture *_foundry_git_repository_list_branches (FoundryGitRepository *self) G_GNUC_WARN_UNUSED_RESULT;
DexFuture *_foundry_git_repository_list_tags (FoundryGitRepository *self) G_GNUC_WARN_UNUSED_RESULT;
DexFuture *_foundry_git_repository_list_remotes (FoundryGitRepository *self) G_GNUC_WARN_UNUSED_RESULT;
DexFuture *_foundry_git_repository_list_files (FoundryGitRepository *self) G_GNUC_WARN_UNUSED_RESULT;
DexFuture *_foundry_git_repository_find_file (FoundryGitRepository *self,
GFile *file) G_GNUC_WARN_UNUSED_RESULT;
gboolean _foundry_git_repository_is_ignored (FoundryGitRepository *self,
const char *relative_path);
DexFuture *_foundry_git_repository_blame (FoundryGitRepository *self,
const char *relative_path,
GBytes *bytes) G_GNUC_WARN_UNUSED_RESULT;
DexFuture *_foundry_git_repository_find_remote (FoundryGitRepository *self,
const char *name) G_GNUC_WARN_UNUSED_RESULT;
DexFuture *_foundry_git_repository_fetch (FoundryGitRepository *self,
FoundryAuthProvider *auth_provider,
FoundryVcsRemote *remote,
FoundryOperation *operation) G_GNUC_WARN_UNUSED_RESULT;
DexFuture *_foundry_git_repository_find_commit (FoundryGitRepository *self,
const char *id) G_GNUC_WARN_UNUSED_RESULT;
DexFuture *_foundry_git_repository_find_tree (FoundryGitRepository *self,
const char *id) G_GNUC_WARN_UNUSED_RESULT;
DexFuture *_foundry_git_repository_list_commits_with_file (FoundryGitRepository *self,
FoundryVcsFile *file) G_GNUC_WARN_UNUSED_RESULT;
DexFuture *_foundry_git_repository_diff (FoundryGitRepository *self,
FoundryGitTree *tree_a,
FoundryGitTree *tree_b) G_GNUC_WARN_UNUSED_RESULT;
DexFuture *_foundry_git_repository_describe_line_changes (FoundryGitRepository *self,
FoundryVcsFile *file,
GBytes *contents) G_GNUC_WARN_UNUSED_RESULT;
DexFuture *_foundry_git_repository_query_file_status (FoundryGitRepository *self,
GFile *file) G_GNUC_WARN_UNUSED_RESULT;
DexFuture *_foundry_git_repository_list_status (FoundryGitRepository *self) G_GNUC_WARN_UNUSED_RESULT;
DexFuture *_foundry_git_repository_stage_entry (FoundryGitRepository *self,
FoundryGitStatusEntry *entry,
GBytes *contents) G_GNUC_WARN_UNUSED_RESULT;
DexFuture *_foundry_git_repository_unstage_entry (FoundryGitRepository *self,
FoundryGitStatusEntry *entry) G_GNUC_WARN_UNUSED_RESULT;
DexFuture *_foundry_git_repository_commit (FoundryGitRepository *self,
const char *message,
const char *author_name,
const char *author_email) G_GNUC_WARN_UNUSED_RESULT;
DexFuture *_foundry_git_repository_query_config (FoundryGitRepository *self,
const char *key) G_GNUC_WARN_UNUSED_RESULT;
DexFuture *_foundry_git_repository_stash (FoundryGitRepository *self) G_GNUC_WARN_UNUSED_RESULT;
G_END_DECLS
|