fwupd/plugins/modem-manager/fu-mbim-qdu-updater.h
Richard Hughes 40cd18fa97 Allow using a per-device global percentage completion
It's actually quite hard to build a front-end for fwupd at the moment
as you're never sure when the progress bar is going to zip back to 0%
and start all over again. Some plugins go 0..100% for write, others
go 0..100% for erase, then again for write, then *again* for verify.

By creating a helper object we can easily split up the progress of the
specific task, e.g. write_firmware().

We can encode at the plugin level "the erase takes 50% of the time, the
write takes 40% and the read takes 10%". This means we can have a
progressbar which goes up just once at a consistent speed.
2021-09-13 14:28:15 +01:00

34 lines
889 B
C

/*
* Copyright (C) 2021 Jarvis Jiang <jarvis.w.jiang@gmail.com>
*
* SPDX-License-Identifier: LGPL-2.1+
*/
#pragma once
#include <libmbim-glib.h>
#include "fu-mm-device.h"
#if MBIM_CHECK_VERSION(1, 25, 3)
#define FU_TYPE_MBIM_QDU_UPDATER (fu_mbim_qdu_updater_get_type())
G_DECLARE_FINAL_TYPE(FuMbimQduUpdater, fu_mbim_qdu_updater, FU, MBIM_QDU_UPDATER, GObject)
FuMbimQduUpdater *
fu_mbim_qdu_updater_new(const gchar *mbim_port);
gboolean
fu_mbim_qdu_updater_open(FuMbimQduUpdater *self, GError **error);
GArray *
fu_mbim_qdu_updater_write(FuMbimQduUpdater *self,
const gchar *filename,
GBytes *blob,
FuDevice *device,
FuProgress *progress,
GError **error);
gchar *
fu_mbim_qdu_updater_check_ready(FuMbimQduUpdater *self, GError **error);
gboolean
fu_mbim_qdu_updater_close(FuMbimQduUpdater *self, GError **error);
#endif /* MBIM_CHECK_VERSION(1,25,3) */