1 /* gbp-deviced-device.h
2  *
3  * Copyright 2018-2019 Christian Hergert <chergert@redhat.com>
4  *
5  * This program is free software: you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation, either version 3 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
17  *
18  * SPDX-License-Identifier: GPL-3.0-or-later
19  */
20 
21 #pragma once
22 
23 #include <libide-foundry.h>
24 #include <libdeviced.h>
25 
26 G_BEGIN_DECLS
27 
28 #define GBP_TYPE_DEVICED_DEVICE (gbp_deviced_device_get_type())
29 
30 G_DECLARE_FINAL_TYPE (GbpDevicedDevice, gbp_deviced_device, GBP, DEVICED_DEVICE, IdeDevice)
31 
32 GbpDevicedDevice *gbp_deviced_device_new                   (DevdDevice             *device);
33 void              gbp_deviced_device_get_commit_async      (GbpDevicedDevice       *self,
34                                                             const gchar            *commit_id,
35                                                             GCancellable           *cancellable,
36                                                             GAsyncReadyCallback     callback,
37                                                             gpointer                user_data);
38 gchar            *gbp_deviced_device_get_commit_finish     (GbpDevicedDevice       *self,
39                                                             GAsyncResult           *result,
40                                                             GError                **error);
41 void              gbp_deviced_device_install_bundle_async  (GbpDevicedDevice       *self,
42                                                             const gchar            *bundle_path,
43                                                             GFileProgressCallback   progress,
44                                                             gpointer                progress_data,
45                                                             GDestroyNotify          progress_data_destroy,
46                                                             GCancellable           *cancellable,
47                                                             GAsyncReadyCallback     callback,
48                                                             gpointer                user_data);
49 gboolean          gbp_deviced_device_install_bundle_finish (GbpDevicedDevice       *self,
50                                                             GAsyncResult           *result,
51                                                             GError                **error);
52 void              gbp_deviced_device_get_client_async      (GbpDevicedDevice        *self,
53                                                             GCancellable            *cancellable,
54                                                             GAsyncReadyCallback     callback,
55                                                             gpointer                user_data);
56 DevdClient       *gbp_deviced_device_get_client_finish     (GbpDevicedDevice       *self,
57                                                             GAsyncResult           *result,
58                                                             GError                **error);
59 
60 G_END_DECLS
61