59 lines
3.0 KiB
C
59 lines
3.0 KiB
C
|
/*
|
||
|
* Copyright (C) 2015 Red Hat, Inc.
|
||
|
*
|
||
|
* This program is free software; you can redistribute it and/or modify
|
||
|
* it under the terms of the GNU General Public License as published by
|
||
|
* the Free Software Foundation; either version 2 of the License, or
|
||
|
* (at your option) any later version.
|
||
|
*
|
||
|
* This program 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 General Public License for more details.
|
||
|
*
|
||
|
* You should have received a copy of the GNU General Public License
|
||
|
* along with this program; if not, write to the Free Software
|
||
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include "rpmostreed-types.h"
|
||
|
|
||
|
#define RPMOSTREED_TYPE_TRANSACTION (rpmostreed_transaction_get_type ())
|
||
|
#define RPMOSTREED_TRANSACTION(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), RPMOSTREED_TYPE_TRANSACTION, RpmostreedTransaction))
|
||
|
#define RPMOSTREED_TRANSACTION_CLASS(c) (G_TYPE_CHECK_CLASS_CAST ((c), RPMOSTREED_TYPE_TRANSACTION, RpmostreedTransactionClass))
|
||
|
#define RPMOSTREED_IS_TRANSACTION(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), RPMOSTREED_TYPE_TRANSACTION))
|
||
|
#define RPMOSTREED_TRANSACTION_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), RPMOSTREED_TYPE_TRANSACTION, RpmostreedTransactionClass))
|
||
|
|
||
|
typedef struct _RpmostreedTransactionClass RpmostreedTransactionClass;
|
||
|
typedef struct _RpmostreedTransactionPrivate RpmostreedTransactionPrivate;
|
||
|
|
||
|
struct _RpmostreedTransaction {
|
||
|
RPMOSTreeTransactionSkeleton parent;
|
||
|
RpmostreedTransactionPrivate *priv;
|
||
|
};
|
||
|
|
||
|
struct _RpmostreedTransactionClass {
|
||
|
RPMOSTreeTransactionSkeletonClass parent_class;
|
||
|
|
||
|
gboolean (*execute) (RpmostreedTransaction *transaction,
|
||
|
GCancellable *cancellable,
|
||
|
GError **error);
|
||
|
};
|
||
|
|
||
|
GType rpmostreed_transaction_get_type (void) G_GNUC_CONST;
|
||
|
OstreeSysroot * rpmostreed_transaction_get_sysroot (RpmostreedTransaction *transaction);
|
||
|
GDBusMethodInvocation *
|
||
|
rpmostreed_transaction_get_invocation (RpmostreedTransaction *transaction);
|
||
|
const char * rpmostreed_transaction_get_client_address (RpmostreedTransaction *transaction);
|
||
|
void rpmostreed_transaction_emit_message_printf (RpmostreedTransaction *transaction,
|
||
|
const char *format,
|
||
|
...) G_GNUC_PRINTF (2, 3);
|
||
|
void rpmostreed_transaction_connect_download_progress
|
||
|
(RpmostreedTransaction *transaction,
|
||
|
OstreeAsyncProgress *progress);
|
||
|
void rpmostreed_transaction_connect_signature_progress
|
||
|
(RpmostreedTransaction *transaction,
|
||
|
OstreeRepo *repo);
|