mirror of
https://git.proxmox.com/git/fwupd
synced 2025-05-18 00:31:54 +00:00
68 lines
1.9 KiB
C
68 lines
1.9 KiB
C
/*
|
|
* Copyright (C) 2015-2018 Richard Hughes <richard@hughsie.com>
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1+
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <glib-object.h>
|
|
|
|
#include "fu-device.h"
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
#define FU_TYPE_PENDING (fu_history_get_type ())
|
|
G_DECLARE_FINAL_TYPE (FuHistory, fu_history, FU, HISTORY, GObject)
|
|
|
|
/**
|
|
* FuHistoryFlags:
|
|
* @FU_HISTORY_FLAGS_NONE: No flags set
|
|
* @FU_HISTORY_FLAGS_MATCH_OLD_VERSION: Match previous firmware version
|
|
* @FU_HISTORY_FLAGS_MATCH_NEW_VERSION: Match new firmware version
|
|
*
|
|
* The flags to use when matching devices against the history database.
|
|
**/
|
|
typedef enum {
|
|
FU_HISTORY_FLAGS_NONE = 0,
|
|
FU_HISTORY_FLAGS_MATCH_OLD_VERSION = 1 << 0,
|
|
FU_HISTORY_FLAGS_MATCH_NEW_VERSION = 1 << 1,
|
|
/*< private >*/
|
|
FU_HISTORY_FLAGS_LAST
|
|
} FuHistoryFlags;
|
|
|
|
FuHistory *fu_history_new (void);
|
|
|
|
gboolean fu_history_add_device (FuHistory *self,
|
|
FuDevice *device,
|
|
FwupdRelease *release,
|
|
GError **error);
|
|
gboolean fu_history_modify_device (FuHistory *self,
|
|
FuDevice *device,
|
|
FuHistoryFlags flags,
|
|
GError **error);
|
|
gboolean fu_history_remove_device (FuHistory *self,
|
|
FuDevice *device,
|
|
FwupdRelease *release,
|
|
GError **error);
|
|
gboolean fu_history_remove_all (FuHistory *self,
|
|
GError **error);
|
|
gboolean fu_history_remove_all_with_state (FuHistory *self,
|
|
FwupdUpdateState update_state,
|
|
GError **error);
|
|
FuDevice *fu_history_get_device_by_id (FuHistory *self,
|
|
const gchar *device_id,
|
|
GError **error);
|
|
GPtrArray *fu_history_get_devices (FuHistory *self,
|
|
GError **error);
|
|
|
|
gboolean fu_history_clear_approved_firmware (FuHistory *self,
|
|
GError **error);
|
|
gboolean fu_history_add_approved_firmware (FuHistory *self,
|
|
const gchar *checksum,
|
|
GError **error);
|
|
GPtrArray *fu_history_get_approved_firmware (FuHistory *self,
|
|
GError **error);
|
|
|
|
G_END_DECLS
|