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 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233
|
/* foundry-git-repository-paths.c
*
* 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
*/
#include "config.h"
#include "foundry-git-error.h"
#include "foundry-git-repository-paths-private.h"
struct _FoundryGitRepositoryPaths
{
char *git_dir;
char *workdir;
};
G_DEFINE_BOXED_TYPE (FoundryGitRepositoryPaths,
foundry_git_repository_paths,
foundry_git_repository_paths_ref,
foundry_git_repository_paths_unref)
static void
foundry_git_repository_paths_finalize (gpointer data)
{
FoundryGitRepositoryPaths *self = data;
g_clear_pointer (&self->git_dir, g_free);
g_clear_pointer (&self->workdir, g_free);
}
/**
* foundry_git_repository_paths_new:
* @git_dir: the git directory path
* @workdir: the working directory path
*
* Creates a new #FoundryGitRepositoryPaths instance.
*
* Returns: (transfer full): a new #FoundryGitRepositoryPaths
*/
FoundryGitRepositoryPaths *
foundry_git_repository_paths_new (const char *git_dir,
const char *workdir)
{
FoundryGitRepositoryPaths *self;
g_return_val_if_fail (git_dir != NULL, NULL);
g_return_val_if_fail (workdir != NULL, NULL);
self = g_atomic_rc_box_new0 (FoundryGitRepositoryPaths);
self->git_dir = g_strdup (git_dir);
self->workdir = g_strdup (workdir);
return self;
}
/**
* foundry_git_repository_paths_ref: (skip)
* @self: a #FoundryGitRepositoryPaths
*
* Increments the reference count of @self.
*
* Returns: (transfer full): @self
*/
FoundryGitRepositoryPaths *
foundry_git_repository_paths_ref (FoundryGitRepositoryPaths *self)
{
return g_atomic_rc_box_acquire (self);
}
/**
* foundry_git_repository_paths_unref:
* @self: a #FoundryGitRepositoryPaths
*
* Decrements the reference count of @self. When the reference count
* reaches zero, the resources are freed.
*/
void
foundry_git_repository_paths_unref (FoundryGitRepositoryPaths *self)
{
g_atomic_rc_box_release_full (self, foundry_git_repository_paths_finalize);
}
/**
* foundry_git_repository_paths_open:
* @self: a #FoundryGitRepositoryPaths
* @repository_out: (out) (transfer full): location to store the opened repository
* @error: (nullable): location to store an error, or %NULL
*
* Opens the git repository at the git directory path.
*
* Returns: %TRUE on success, %FALSE on error
*/
gboolean
foundry_git_repository_paths_open (FoundryGitRepositoryPaths *self,
git_repository **repository_out,
GError **error)
{
const git_error *git_err;
git_repository *repository = NULL;
g_return_val_if_fail (self != NULL, FALSE);
g_return_val_if_fail (repository_out != NULL, FALSE);
g_return_val_if_fail (error == NULL || *error == NULL, FALSE);
if (git_repository_open (&repository, self->git_dir) != 0)
{
git_err = git_error_last ();
g_set_error (error,
FOUNDRY_GIT_ERROR,
git_err->klass,
"%s", git_err->message);
return FALSE;
}
*repository_out = repository;
return TRUE;
}
/**
* foundry_git_repository_paths_get_workdir_file:
* @self: a #FoundryGitRepositoryPaths
* @path: the relative path within the working directory
*
* Gets a #GFile for a child path within the working directory.
*
* Returns: (transfer full): a new #GFile
*/
GFile *
foundry_git_repository_paths_get_workdir_file (FoundryGitRepositoryPaths *self,
const char *path)
{
g_autoptr(GFile) workdir_file = NULL;
g_return_val_if_fail (self != NULL, NULL);
g_return_val_if_fail (path != NULL, NULL);
workdir_file = g_file_new_for_path (self->workdir);
return g_file_get_child (workdir_file, path);
}
/**
* foundry_git_repository_paths_get_workdir_path:
* @self: a #FoundryGitRepositoryPaths
* @path: the relative path within the working directory
*
* Gets a new path starting from the workdir.
*
* Returns: (transfer full): a new path
*/
char *
foundry_git_repository_paths_get_workdir_path (FoundryGitRepositoryPaths *self,
const char *path)
{
g_return_val_if_fail (self != NULL, NULL);
g_return_val_if_fail (path != NULL, NULL);
return g_build_filename (self->workdir, path, NULL);
}
/**
* foundry_git_repository_paths_dup_workdir:
* @self: a #FoundryGitRepositoryPaths
*
* Duplicates the working directory path.
*
* Returns: (transfer full): a newly allocated copy of the working directory path
*/
char *
foundry_git_repository_paths_dup_workdir (FoundryGitRepositoryPaths *self)
{
g_return_val_if_fail (self != NULL, NULL);
return g_strdup (self->workdir);
}
/**
* foundry_git_repository_paths_dup_git_dir:
* @self: a #FoundryGitRepositoryPaths
*
* Duplicates the git directory path.
*
* Returns: (transfer full): a newly allocated copy of the git directory path
*/
char *
foundry_git_repository_paths_dup_git_dir (FoundryGitRepositoryPaths *self)
{
g_return_val_if_fail (self != NULL, NULL);
return g_strdup (self->git_dir);
}
/**
* foundry_git_repository_paths_get_workdir_relative_path:
* @self: a #FoundryGitRepositoryPaths
* @file: a #GFile
*
* Gets the relative path of @file within the working directory.
*
* Returns: (transfer full) (nullable): a newly allocated relative path, or %NULL
* if @file is not within the working directory
*/
char *
foundry_git_repository_paths_get_workdir_relative_path (FoundryGitRepositoryPaths *self,
GFile *file)
{
g_autoptr(GFile) workdir_file = NULL;
g_autofree char *workdir_path = NULL;
g_return_val_if_fail (self != NULL, NULL);
g_return_val_if_fail (G_IS_FILE (file), NULL);
workdir_path = g_strdup (self->workdir);
workdir_file = g_file_new_for_path (workdir_path);
return g_file_get_relative_path (workdir_file, file);
}
|