mirror of
https://git.proxmox.com/git/fwupd
synced 2025-05-17 10:42:48 +00:00
93 lines
3.0 KiB
C
93 lines
3.0 KiB
C
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
|
|
*
|
|
* Copyright (C) 2015 Richard Hughes <richard@hughsie.com>
|
|
*
|
|
* Licensed under the GNU General Public License Version 2
|
|
*
|
|
* 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 Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
*/
|
|
|
|
#ifndef __FU_PLUGIN_H
|
|
#define __FU_PLUGIN_H
|
|
|
|
#include <glib-object.h>
|
|
#include <gio/gio.h>
|
|
#include <glib-object.h>
|
|
#include <gusb.h>
|
|
|
|
#include "fu-device.h"
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
#define FU_TYPE_PLUGIN (fu_plugin_get_type ())
|
|
G_DECLARE_DERIVABLE_TYPE (FuPlugin, fu_plugin, FU, PLUGIN, GObject)
|
|
|
|
struct _FuPluginClass
|
|
{
|
|
GObjectClass parent_class;
|
|
/* signals */
|
|
void (* device_added) (FuPlugin *plugin,
|
|
FuDevice *device);
|
|
void (* device_removed) (FuPlugin *plugin,
|
|
FuDevice *device);
|
|
void (* status_changed) (FuPlugin *plugin,
|
|
FwupdStatus status);
|
|
void (* percentage_changed) (FuPlugin *plugin,
|
|
guint percentage);
|
|
};
|
|
|
|
typedef enum {
|
|
FU_PLUGIN_VERIFY_FLAG_NONE = 0,
|
|
FU_PLUGIN_VERIFY_FLAG_USE_SHA256 = 1 << 0,
|
|
FU_PLUGIN_VERIFY_FLAG_LAST
|
|
} FuPluginVerifyFlags;
|
|
|
|
typedef struct FuPluginData FuPluginData;
|
|
|
|
/* for plugins to use */
|
|
const gchar *fu_plugin_get_name (FuPlugin *plugin);
|
|
void fu_plugin_set_name (FuPlugin *plugin,
|
|
const gchar *name);
|
|
FuPluginData *fu_plugin_get_data (FuPlugin *plugin);
|
|
FuPluginData *fu_plugin_alloc_data (FuPlugin *plugin,
|
|
gsize data_sz);
|
|
gboolean fu_plugin_get_enabled (FuPlugin *plugin);
|
|
void fu_plugin_set_enabled (FuPlugin *plugin,
|
|
gboolean enabled);
|
|
GUsbContext *fu_plugin_get_usb_context (FuPlugin *plugin);
|
|
void fu_plugin_device_add (FuPlugin *plugin,
|
|
FuDevice *device);
|
|
void fu_plugin_device_add_delay (FuPlugin *plugin,
|
|
FuDevice *device);
|
|
void fu_plugin_device_remove (FuPlugin *plugin,
|
|
FuDevice *device);
|
|
void fu_plugin_set_status (FuPlugin *plugin,
|
|
FwupdStatus status);
|
|
void fu_plugin_set_percentage (FuPlugin *plugin,
|
|
guint percentage);
|
|
GChecksumType fu_plugin_get_checksum_type (FuPluginVerifyFlags flags);
|
|
gpointer fu_plugin_cache_lookup (FuPlugin *plugin,
|
|
const gchar *id);
|
|
void fu_plugin_cache_remove (FuPlugin *plugin,
|
|
const gchar *id);
|
|
void fu_plugin_cache_add (FuPlugin *plugin,
|
|
const gchar *id,
|
|
gpointer dev);
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* __FU_PLUGIN_H */
|
|
|