mirror of
https://github.com/ostreedev/ostree.git
synced 2024-12-22 17:35:55 +03:00
Merge pull request #2996 from cgwalters/misc-c99-style-3
cli/set-origin: Port to C99 style
This commit is contained in:
commit
16b97d8a40
@ -43,41 +43,35 @@ gboolean
|
|||||||
ot_admin_builtin_set_origin (int argc, char **argv, OstreeCommandInvocation *invocation,
|
ot_admin_builtin_set_origin (int argc, char **argv, OstreeCommandInvocation *invocation,
|
||||||
GCancellable *cancellable, GError **error)
|
GCancellable *cancellable, GError **error)
|
||||||
{
|
{
|
||||||
gboolean ret = FALSE;
|
g_autoptr (GOptionContext) context = g_option_context_new ("REMOTENAME URL [BRANCH]");
|
||||||
g_autoptr (GOptionContext) context = NULL;
|
|
||||||
const char *remotename = NULL;
|
|
||||||
const char *url = NULL;
|
|
||||||
const char *branch = NULL;
|
|
||||||
g_autoptr (OstreeRepo) repo = NULL;
|
|
||||||
g_autoptr (OstreeSysroot) sysroot = NULL;
|
g_autoptr (OstreeSysroot) sysroot = NULL;
|
||||||
g_autoptr (OstreeDeployment) target_deployment = NULL;
|
|
||||||
|
|
||||||
context = g_option_context_new ("REMOTENAME URL [BRANCH]");
|
|
||||||
|
|
||||||
if (!ostree_admin_option_context_parse (context, options, &argc, &argv,
|
if (!ostree_admin_option_context_parse (context, options, &argc, &argv,
|
||||||
OSTREE_ADMIN_BUILTIN_FLAG_SUPERUSER, invocation, &sysroot,
|
OSTREE_ADMIN_BUILTIN_FLAG_SUPERUSER, invocation, &sysroot,
|
||||||
cancellable, error))
|
cancellable, error))
|
||||||
goto out;
|
return FALSE;
|
||||||
|
|
||||||
if (argc < 3)
|
if (argc < 3)
|
||||||
{
|
{
|
||||||
ot_util_usage_error (context, "REMOTENAME and URL must be specified", error);
|
ot_util_usage_error (context, "REMOTENAME and URL must be specified", error);
|
||||||
goto out;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
remotename = argv[1];
|
const char *remotename = argv[1];
|
||||||
url = argv[2];
|
const char *url = argv[2];
|
||||||
|
const char *branch = NULL;
|
||||||
if (argc > 3)
|
if (argc > 3)
|
||||||
branch = argv[3];
|
branch = argv[3];
|
||||||
|
|
||||||
|
g_autoptr (OstreeRepo) repo = NULL;
|
||||||
if (!ostree_sysroot_get_repo (sysroot, &repo, cancellable, error))
|
if (!ostree_sysroot_get_repo (sysroot, &repo, cancellable, error))
|
||||||
goto out;
|
return FALSE;
|
||||||
|
|
||||||
|
g_autoptr (OstreeDeployment) target_deployment = NULL;
|
||||||
if (opt_index == -1)
|
if (opt_index == -1)
|
||||||
{
|
{
|
||||||
target_deployment = ostree_sysroot_require_booted_deployment (sysroot, error);
|
target_deployment = ostree_sysroot_require_booted_deployment (sysroot, error);
|
||||||
if (target_deployment == NULL)
|
if (target_deployment == NULL)
|
||||||
goto out;
|
return FALSE;
|
||||||
/* To match the below */
|
/* To match the below */
|
||||||
target_deployment = g_object_ref (target_deployment);
|
target_deployment = g_object_ref (target_deployment);
|
||||||
}
|
}
|
||||||
@ -85,22 +79,21 @@ ot_admin_builtin_set_origin (int argc, char **argv, OstreeCommandInvocation *inv
|
|||||||
{
|
{
|
||||||
target_deployment = ot_admin_get_indexed_deployment (sysroot, opt_index, error);
|
target_deployment = ot_admin_get_indexed_deployment (sysroot, opt_index, error);
|
||||||
if (!target_deployment)
|
if (!target_deployment)
|
||||||
goto out;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
{
|
{
|
||||||
char **iter;
|
|
||||||
g_autoptr (GVariantBuilder) optbuilder = g_variant_builder_new (G_VARIANT_TYPE ("a{sv}"));
|
g_autoptr (GVariantBuilder) optbuilder = g_variant_builder_new (G_VARIANT_TYPE ("a{sv}"));
|
||||||
g_autoptr (GVariant) remote_options = NULL;
|
g_autoptr (GVariant) remote_options = NULL;
|
||||||
|
|
||||||
for (iter = opt_set; iter && *iter; iter++)
|
for (char **iter = opt_set; iter && *iter; iter++)
|
||||||
{
|
{
|
||||||
const char *keyvalue = *iter;
|
const char *keyvalue = *iter;
|
||||||
g_autofree char *subkey = NULL;
|
g_autofree char *subkey = NULL;
|
||||||
g_autofree char *subvalue = NULL;
|
g_autofree char *subvalue = NULL;
|
||||||
|
|
||||||
if (!ot_parse_keyvalue (keyvalue, &subkey, &subvalue, error))
|
if (!ot_parse_keyvalue (keyvalue, &subkey, &subvalue, error))
|
||||||
goto out;
|
return FALSE;
|
||||||
|
|
||||||
g_variant_builder_add (optbuilder, "{s@v}", subkey,
|
g_variant_builder_add (optbuilder, "{s@v}", subkey,
|
||||||
g_variant_new_variant (g_variant_new_string (subvalue)));
|
g_variant_new_variant (g_variant_new_string (subvalue)));
|
||||||
@ -110,7 +103,7 @@ ot_admin_builtin_set_origin (int argc, char **argv, OstreeCommandInvocation *inv
|
|||||||
|
|
||||||
if (!ostree_repo_remote_change (repo, NULL, OSTREE_REPO_REMOTE_CHANGE_ADD_IF_NOT_EXISTS,
|
if (!ostree_repo_remote_change (repo, NULL, OSTREE_REPO_REMOTE_CHANGE_ADD_IF_NOT_EXISTS,
|
||||||
remotename, url, remote_options, cancellable, error))
|
remotename, url, remote_options, cancellable, error))
|
||||||
goto out;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
{
|
{
|
||||||
@ -120,7 +113,7 @@ ot_admin_builtin_set_origin (int argc, char **argv, OstreeCommandInvocation *inv
|
|||||||
g_autofree char *origin_ref = NULL;
|
g_autofree char *origin_ref = NULL;
|
||||||
|
|
||||||
if (!ostree_parse_refspec (origin_refspec, &origin_remote, &origin_ref, error))
|
if (!ostree_parse_refspec (origin_refspec, &origin_remote, &origin_ref, error))
|
||||||
goto out;
|
return FALSE;
|
||||||
|
|
||||||
{
|
{
|
||||||
g_autofree char *new_refspec
|
g_autofree char *new_refspec
|
||||||
@ -131,11 +124,9 @@ ot_admin_builtin_set_origin (int argc, char **argv, OstreeCommandInvocation *inv
|
|||||||
|
|
||||||
if (!ostree_sysroot_write_origin_file (sysroot, target_deployment, new_origin, cancellable,
|
if (!ostree_sysroot_write_origin_file (sysroot, target_deployment, new_origin, cancellable,
|
||||||
error))
|
error))
|
||||||
goto out;
|
return FALSE;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
ret = TRUE;
|
return TRUE;
|
||||||
out:
|
|
||||||
return ret;
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user