4185178be7
We'll use this in a future patch.
180 lines
7.0 KiB
C++
180 lines
7.0 KiB
C++
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*-
|
|
*
|
|
* This program 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 of the licence 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 Lesser General
|
|
* Public License along with this library; if not, write to the
|
|
* Free Software Foundation, Inc., 59 Temple Place, Suite 330,
|
|
* Boston, MA 02111-1307, USA.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <glib-unix.h>
|
|
#include <gio/gio.h>
|
|
#include <gio/gunixfdlist.h>
|
|
|
|
#include "rpm-ostreed-generated.h"
|
|
#include "rpmostree-builtin-types.h"
|
|
|
|
#include <stdint.h>
|
|
#include <string.h>
|
|
#include <ostree.h>
|
|
|
|
#include <memory>
|
|
#include "rust/cxx.h"
|
|
|
|
namespace rpmostreecxx {
|
|
|
|
class ClientConnection final {
|
|
private:
|
|
GDBusConnection *conn;
|
|
GBusType bus_type;
|
|
public:
|
|
ClientConnection(GDBusConnection *connp, GBusType bus_typep) : conn(connp), bus_type(bus_typep) {}
|
|
~ClientConnection() {
|
|
g_clear_object(&conn);
|
|
}
|
|
|
|
GDBusConnection &get_connection() {
|
|
return *conn;
|
|
}
|
|
|
|
GBusType get_bus_type() const {
|
|
return bus_type;
|
|
}
|
|
|
|
void transaction_connect_progress_sync(const rust::Str address) const;
|
|
};
|
|
|
|
void client_require_root();
|
|
|
|
std::unique_ptr<ClientConnection> new_client_connection();
|
|
|
|
} // namespace
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
#define BUS_NAME "org.projectatomic.rpmostree1"
|
|
|
|
gboolean
|
|
rpmostree_load_sysroot (gchar *sysroot,
|
|
gboolean force_peer,
|
|
GCancellable *cancellable,
|
|
RPMOSTreeSysroot **out_sysroot_proxy,
|
|
GBusType *out_bus_type,
|
|
GError **error);
|
|
|
|
gboolean
|
|
rpmostree_load_os_proxy (RPMOSTreeSysroot *sysroot_proxy,
|
|
gchar *opt_osname,
|
|
GCancellable *cancellable,
|
|
RPMOSTreeOS **out_os_proxy,
|
|
GError **error);
|
|
|
|
gboolean
|
|
rpmostree_load_os_proxies (RPMOSTreeSysroot *sysroot_proxy,
|
|
const char *opt_osname,
|
|
GCancellable *cancellable,
|
|
RPMOSTreeOS **out_os_proxy,
|
|
RPMOSTreeOSExperimental **out_osexperimental_proxy,
|
|
GError **error);
|
|
|
|
gboolean
|
|
rpmostree_transaction_connect_active (RPMOSTreeSysroot *sysroot_proxy,
|
|
char **out_path,
|
|
RPMOSTreeTransaction **out_txn,
|
|
GCancellable *cancellable,
|
|
GError **error);
|
|
|
|
gboolean
|
|
rpmostree_transaction_get_response_sync (RPMOSTreeSysroot *sysroot_proxy,
|
|
const char *transaction_address,
|
|
GCancellable *cancellable,
|
|
GError **error);
|
|
|
|
gboolean
|
|
rpmostree_transaction_client_run (RpmOstreeCommandInvocation *invocation,
|
|
RPMOSTreeSysroot *sysroot_proxy,
|
|
RPMOSTreeOS *os_proxy,
|
|
GVariant *options,
|
|
gboolean exit_unchanged_77,
|
|
const char *transaction_address,
|
|
GVariant *previous_deployment,
|
|
GCancellable *cancellable,
|
|
GError **error);
|
|
|
|
void
|
|
rpmostree_print_gpg_info (GVariant *signatures,
|
|
gboolean verbose,
|
|
guint max_key_len);
|
|
|
|
void
|
|
rpmostree_print_package_diffs (GVariant *variant);
|
|
|
|
gboolean
|
|
rpmostree_sort_pkgs_strv (const char *const* pkgs,
|
|
GUnixFDList *fd_list,
|
|
GPtrArray **out_repo_pkgs,
|
|
GVariant **out_fd_idxs,
|
|
GError **error);
|
|
|
|
gboolean
|
|
rpmostree_update_deployment (RPMOSTreeOS *os_proxy,
|
|
const char *set_refspec,
|
|
const char *set_revision,
|
|
const char *const* install_pkgs,
|
|
const char *const* uninstall_pkgs,
|
|
const char *const* override_replace_pkgs,
|
|
const char *const* override_remove_pkgs,
|
|
const char *const* override_reset_pkgs,
|
|
const char *local_repo_remote,
|
|
GVariant *options,
|
|
char **out_transaction_address,
|
|
GCancellable *cancellable,
|
|
GError **error);
|
|
|
|
gboolean
|
|
rpmostree_print_diff_advisories (GVariant *rpm_diff,
|
|
GVariant *advisories,
|
|
gboolean verbose,
|
|
gboolean verbose_advisories,
|
|
guint max_key_len,
|
|
GError **error);
|
|
|
|
gboolean
|
|
rpmostree_print_cached_update (GVariant *cached_update,
|
|
gboolean verbose,
|
|
gboolean verbose_advisories,
|
|
GCancellable *cancellable,
|
|
GError **error);
|
|
|
|
void
|
|
rpmostree_print_advisories (GVariant *advisories,
|
|
gboolean verbose,
|
|
guint max_key_len);
|
|
|
|
gboolean
|
|
get_sd_unit_objpath (GDBusConnection *connection,
|
|
const char *method_name,
|
|
GVariant *parameters,
|
|
const char **unit_objpath,
|
|
GCancellable *cancellable,
|
|
GError **error);
|
|
|
|
gboolean
|
|
error_if_driver_registered (GBusType bus_type,
|
|
RPMOSTreeSysroot *sysroot_proxy,
|
|
GCancellable *cancellable,
|
|
GError **error);
|
|
|
|
G_END_DECLS
|