LCOV - code coverage report
Current view: top level - src/plugins/gnome - valent-device-preferences-dialog.c (source / functions) Coverage Total Hit
Test: Code Coverage Lines: 89.6 % 134 120
Test Date: 2025-01-26 01:08:22 Functions: 100.0 % 14 14
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 56.0 % 50 28

             Branch data     Line data    Source code
       1                 :             : // SPDX-License-Identifier: GPL-3.0-or-later
       2                 :             : // SPDX-FileCopyrightText: Andy Holmes <andrew.g.r.holmes@gmail.com>
       3                 :             : 
       4                 :             : #define G_LOG_DOMAIN "valent-device-preferences-dialog"
       5                 :             : 
       6                 :             : #include "config.h"
       7                 :             : 
       8                 :             : #include <glib/gi18n-lib.h>
       9                 :             : #include <adwaita.h>
      10                 :             : #include <gtk/gtk.h>
      11                 :             : #include <valent.h>
      12                 :             : 
      13                 :             : #include "valent-device-preferences-battery.h"
      14                 :             : #include "valent-device-preferences-clipboard.h"
      15                 :             : #include "valent-device-preferences-commands.h"
      16                 :             : #include "valent-device-preferences-connectivity.h"
      17                 :             : #include "valent-device-preferences-contacts.h"
      18                 :             : #include "valent-device-preferences-notification.h"
      19                 :             : #include "valent-device-preferences-sftp.h"
      20                 :             : #include "valent-device-preferences-share.h"
      21                 :             : #include "valent-device-preferences-telephony.h"
      22                 :             : #include "valent-device-preferences-group.h"
      23                 :             : #include "valent-plugin-row.h"
      24                 :             : 
      25                 :             : #include "valent-device-preferences-dialog.h"
      26                 :             : 
      27                 :             : 
      28                 :             : struct _ValentDevicePreferencesDialog
      29                 :             : {
      30                 :             :   AdwPreferencesDialog  parent_instance;
      31                 :             : 
      32                 :             :   ValentDevice         *device;
      33                 :             :   GHashTable           *plugins;
      34                 :             : 
      35                 :             :   /* template */
      36                 :             :   AdwPreferencesPage   *status_page;
      37                 :             :   AdwPreferencesPage   *sync_page;
      38                 :             :   AdwPreferencesPage   *other_page;
      39                 :             :   AdwPreferencesPage   *plugin_page;
      40                 :             :   GtkListBox           *plugin_list;
      41                 :             : };
      42                 :             : 
      43   [ +  +  +  - ]:          54 : G_DEFINE_FINAL_TYPE (ValentDevicePreferencesDialog, valent_device_preferences_dialog, ADW_TYPE_PREFERENCES_DIALOG)
      44                 :             : 
      45                 :             : typedef enum {
      46                 :             :   PROP_DEVICE = 1,
      47                 :             : } ValentDevicePreferencesDialogProperty;
      48                 :             : 
      49                 :             : static GParamSpec *properties[PROP_DEVICE + 1] = { NULL, };
      50                 :             : 
      51                 :             : 
      52                 :             : static int
      53                 :           3 : plugin_list_sort (GtkListBoxRow *row1,
      54                 :             :                   GtkListBoxRow *row2,
      55                 :             :                   gpointer       user_data)
      56                 :             : {
      57   [ +  -  -  + ]:           3 :   if G_UNLIKELY (!ADW_IS_PREFERENCES_ROW (row1) ||
      58                 :             :                  !ADW_IS_PREFERENCES_ROW (row2))
      59                 :           0 :     return 0;
      60                 :             : 
      61                 :           3 :   return g_utf8_collate (adw_preferences_row_get_title ((AdwPreferencesRow *)row1),
      62                 :           3 :                          adw_preferences_row_get_title ((AdwPreferencesRow *)row2));
      63                 :             : }
      64                 :             : 
      65                 :             : /*
      66                 :             :  * Plugin Callbacks
      67                 :             :  */
      68                 :             : typedef struct
      69                 :             : {
      70                 :             :   AdwPreferencesDialog *window;
      71                 :             :   AdwPreferencesPage   *page;
      72                 :             :   AdwPreferencesGroup  *group;
      73                 :             :   GtkWidget            *row;
      74                 :             : } PluginData;
      75                 :             : 
      76                 :             : static void
      77                 :           6 : plugin_data_free (gpointer data)
      78                 :             : {
      79                 :           6 :   PluginData *plugin = (PluginData *)data;
      80                 :           6 :   ValentDevicePreferencesDialog *self = VALENT_DEVICE_PREFERENCES_DIALOG (plugin->window);
      81                 :             : 
      82         [ +  - ]:           6 :   g_assert (VALENT_IS_DEVICE_PREFERENCES_DIALOG (self));
      83                 :             : 
      84   [ -  +  -  - ]:           6 :   if (plugin->page != NULL && plugin->group != NULL)
      85                 :           0 :     adw_preferences_page_remove (plugin->page, plugin->group);
      86                 :             : 
      87         [ +  - ]:           6 :   if (plugin->row != NULL)
      88                 :           6 :     gtk_list_box_remove (self->plugin_list, plugin->row);
      89                 :             : 
      90                 :           6 :   g_free (plugin);
      91                 :           6 : }
      92                 :             : 
      93                 :             : static void
      94                 :           6 : valent_device_preferences_dialog_add_plugin (ValentDevicePreferencesDialog *self,
      95                 :             :                                              const char                    *module)
      96                 :             : {
      97                 :           6 :   ValentContext *context = NULL;
      98                 :          12 :   g_autoptr (ValentContext) plugin_context = NULL;
      99                 :           6 :   PeasEngine *engine;
     100                 :           6 :   PeasPluginInfo *info;
     101                 :           6 :   PluginData *plugin;
     102                 :           6 :   const char *title;
     103                 :           6 :   const char *subtitle;
     104                 :             : 
     105         [ +  - ]:           6 :   g_assert (VALENT_IS_DEVICE_PREFERENCES_DIALOG (self));
     106   [ +  -  -  + ]:           6 :   g_assert (module != NULL && *module != '\0');
     107                 :             : 
     108                 :           6 :   engine = valent_get_plugin_engine ();
     109                 :           6 :   info = peas_engine_get_plugin_info (engine, module);
     110                 :           6 :   plugin = g_new0 (PluginData, 1);
     111                 :           6 :   plugin->window = ADW_PREFERENCES_DIALOG (self);
     112                 :             : 
     113                 :           6 :   title = peas_plugin_info_get_name (info);
     114                 :           6 :   subtitle = peas_plugin_info_get_description (info);
     115                 :             : 
     116                 :             :   /* Plugin Row
     117                 :             :    */
     118                 :           6 :   context = valent_device_get_context (self->device);
     119                 :           6 :   plugin_context = valent_context_get_plugin_context (context, info);
     120                 :             : 
     121                 :           6 :   plugin->row = g_object_new (VALENT_TYPE_PLUGIN_ROW,
     122                 :             :                               "context",     plugin_context,
     123                 :             :                               "plugin-info", info,
     124                 :             :                               "title",       title,
     125                 :             :                               "subtitle",    subtitle,
     126                 :             :                               NULL);
     127                 :           6 :   gtk_list_box_insert (self->plugin_list, plugin->row, -1);
     128                 :             : 
     129                 :             :   /* Preferences Page
     130                 :             :    */
     131                 :           6 :   struct
     132                 :             :   {
     133                 :             :     const char *name;
     134                 :             :     const char *category;
     135                 :             :     GType       type;
     136                 :          60 :   } preferences[] = {
     137                 :             :     {
     138                 :             :       .name = "battery",
     139                 :             :       .category = "status",
     140                 :           6 :       .type = VALENT_TYPE_BATTERY_PREFERENCES,
     141                 :             :     },
     142                 :             :     {
     143                 :             :       .name = "connectivity_report",
     144                 :             :       .category = "status",
     145                 :           6 :       .type = VALENT_TYPE_CONNECTIVITY_REPORT_PREFERENCES,
     146                 :             :     },
     147                 :             :     {
     148                 :             :       .name = "telephony",
     149                 :             :       .category = "status",
     150                 :           6 :       .type = VALENT_TYPE_TELEPHONY_PREFERENCES,
     151                 :             :     },
     152                 :             : 
     153                 :             :     {
     154                 :             :       .name = "clipboard",
     155                 :             :       .category = "sync",
     156                 :           6 :       .type = VALENT_TYPE_CLIPBOARD_PREFERENCES,
     157                 :             :     },
     158                 :             :     {
     159                 :             :       .name = "contacts",
     160                 :             :       .category = "sync",
     161                 :           6 :       .type = VALENT_TYPE_CONTACTS_PREFERENCES,
     162                 :             :     },
     163                 :             :     {
     164                 :             :       .name = "notification",
     165                 :             :       .category = "sync",
     166                 :           6 :       .type = VALENT_TYPE_NOTIFICATION_PREFERENCES,
     167                 :             :     },
     168                 :             :     {
     169                 :             :       .name = "sftp",
     170                 :             :       .category = "sync",
     171                 :           6 :       .type = VALENT_TYPE_SFTP_PREFERENCES,
     172                 :             :     },
     173                 :             : 
     174                 :             :     {
     175                 :             :       .name = "runcommand",
     176                 :             :       .category = "other",
     177                 :           6 :       .type = VALENT_TYPE_RUNCOMMAND_PREFERENCES,
     178                 :             :     },
     179                 :             :     {
     180                 :             :       .name = "share",
     181                 :             :       .category = "other",
     182                 :           6 :       .type = VALENT_TYPE_SHARE_PREFERENCES,
     183                 :             :     },
     184                 :             :   };
     185                 :             : 
     186         [ +  + ]:          60 :   for (size_t i = 0; i < G_N_ELEMENTS (preferences); i++)
     187                 :             :     {
     188         [ -  + ]:          54 :       if (g_str_equal (preferences[i].name, module))
     189                 :             :         {
     190                 :           0 :           plugin->group = g_object_new (preferences[i].type,
     191                 :             :                                         "context",     plugin_context,
     192                 :             :                                         "plugin-info", info,
     193                 :             :                                         "name",        module,
     194                 :             :                                         "title",       title,
     195                 :             :                                         "description", subtitle,
     196                 :             :                                         NULL);
     197                 :             : 
     198         [ #  # ]:           0 :           if (g_str_equal (preferences[i].category, "status"))
     199                 :           0 :             plugin->page = self->status_page;
     200         [ #  # ]:           0 :           else if (g_str_equal (preferences[i].category, "sync"))
     201                 :           0 :             plugin->page = self->sync_page;
     202                 :             :           else
     203                 :           0 :             plugin->page = self->other_page;
     204                 :             : 
     205                 :           0 :           adw_preferences_page_add (plugin->page, plugin->group);
     206                 :           0 :           break;
     207                 :             :         }
     208                 :             :     }
     209                 :             : 
     210   [ -  +  +  - ]:          12 :   g_hash_table_replace (self->plugins,
     211                 :           6 :                         g_strdup (module),
     212                 :             :                         g_steal_pointer (&plugin));
     213                 :           6 : }
     214                 :             : 
     215                 :             : static int
     216                 :           3 : plugin_sort (gconstpointer a,
     217                 :             :              gconstpointer b)
     218                 :             : {
     219                 :           3 :   const char *a_ = *(char **)a;
     220                 :           3 :   const char *b_ = *(char **)b;
     221                 :             : 
     222                 :           3 :   return strcmp (a_, b_);
     223                 :             : }
     224                 :             : 
     225                 :             : static void
     226                 :           6 : on_plugins_changed (ValentDevice                  *device,
     227                 :             :                     GParamSpec                    *pspec,
     228                 :             :                     ValentDevicePreferencesDialog *self)
     229                 :             : {
     230                 :          12 :   g_auto (GStrv) plugins = NULL;
     231                 :           6 :   GHashTableIter iter;
     232                 :           6 :   const char *module;
     233                 :             : 
     234                 :           6 :   plugins = valent_device_get_plugins (device);
     235                 :           6 :   qsort (plugins, g_strv_length (plugins), sizeof (char *), plugin_sort);
     236                 :             : 
     237                 :             :   /* Remove */
     238                 :           6 :   g_hash_table_iter_init (&iter, self->plugins);
     239                 :             : 
     240         [ +  + ]:          17 :   while (g_hash_table_iter_next (&iter, (void **)&module, NULL))
     241                 :             :     {
     242         [ +  + ]:           5 :       if (!g_strv_contains ((const char * const *)plugins, module))
     243                 :           2 :         g_hash_table_iter_remove (&iter);
     244                 :             :     }
     245                 :             : 
     246         [ +  + ]:          15 :   for (unsigned int i = 0; plugins[i] != NULL; i++)
     247                 :             :     {
     248         [ +  + ]:           9 :       if (!g_hash_table_contains (self->plugins, plugins[i]))
     249                 :           6 :         valent_device_preferences_dialog_add_plugin (self, plugins[i]);
     250                 :             :     }
     251                 :           6 : }
     252                 :             : 
     253                 :             : /*
     254                 :             :  * GObject
     255                 :             :  */
     256                 :             : static void
     257                 :           3 : valent_device_preferences_dialog_constructed (GObject *object)
     258                 :             : {
     259                 :           3 :   ValentDevicePreferencesDialog *self = VALENT_DEVICE_PREFERENCES_DIALOG (object);
     260                 :             : 
     261                 :             :   /* Device */
     262                 :           3 :   g_object_bind_property (self->device, "name",
     263                 :             :                           self,         "title",
     264                 :             :                           G_BINDING_DEFAULT | G_BINDING_SYNC_CREATE);
     265                 :             : 
     266                 :           3 :   gtk_widget_insert_action_group (GTK_WIDGET (self),
     267                 :             :                                   "device",
     268                 :           3 :                                   G_ACTION_GROUP (self->device));
     269                 :             : 
     270                 :             :   /* Device_plugins */
     271                 :           3 :   g_signal_connect_object (self->device,
     272                 :             :                            "notify::plugins",
     273                 :             :                            G_CALLBACK (on_plugins_changed),
     274                 :             :                            self, 0);
     275                 :           3 :   on_plugins_changed (self->device, NULL, self);
     276                 :             : 
     277                 :           3 :   G_OBJECT_CLASS (valent_device_preferences_dialog_parent_class)->constructed (object);
     278                 :           3 : }
     279                 :             : 
     280                 :             : static void
     281                 :           3 : valent_device_preferences_dialog_dispose (GObject *object)
     282                 :             : {
     283                 :           3 :   ValentDevicePreferencesDialog *self = VALENT_DEVICE_PREFERENCES_DIALOG (object);
     284                 :             : 
     285         [ +  - ]:           3 :   g_clear_object (&self->device);
     286         [ +  - ]:           3 :   g_clear_pointer (&self->plugins, g_hash_table_unref);
     287                 :             : 
     288                 :           3 :   gtk_widget_dispose_template (GTK_WIDGET (object),
     289                 :             :                                VALENT_TYPE_DEVICE_PREFERENCES_DIALOG);
     290                 :             : 
     291                 :           3 :   G_OBJECT_CLASS (valent_device_preferences_dialog_parent_class)->dispose (object);
     292                 :           3 : }
     293                 :             : 
     294                 :             : static void
     295                 :           1 : valent_device_preferences_dialog_get_property (GObject    *object,
     296                 :             :                                                guint       prop_id,
     297                 :             :                                                GValue     *value,
     298                 :             :                                                GParamSpec *pspec)
     299                 :             : {
     300                 :           1 :   ValentDevicePreferencesDialog *self = VALENT_DEVICE_PREFERENCES_DIALOG (object);
     301                 :             : 
     302         [ +  - ]:           1 :   switch ((ValentDevicePreferencesDialogProperty)prop_id)
     303                 :             :     {
     304                 :           1 :     case PROP_DEVICE:
     305                 :           1 :       g_value_set_object (value, self->device);
     306                 :           1 :       break;
     307                 :             : 
     308                 :           0 :     default:
     309                 :           0 :       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
     310                 :             :     }
     311                 :           1 : }
     312                 :             : 
     313                 :             : static void
     314                 :           3 : valent_device_preferences_dialog_set_property (GObject      *object,
     315                 :             :                                                guint         prop_id,
     316                 :             :                                                const GValue *value,
     317                 :             :                                                GParamSpec   *pspec)
     318                 :             : {
     319                 :           3 :   ValentDevicePreferencesDialog *self = VALENT_DEVICE_PREFERENCES_DIALOG (object);
     320                 :             : 
     321         [ +  - ]:           3 :   switch ((ValentDevicePreferencesDialogProperty)prop_id)
     322                 :             :     {
     323                 :           3 :     case PROP_DEVICE:
     324                 :           3 :       self->device = g_value_dup_object (value);
     325                 :           3 :       break;
     326                 :             : 
     327                 :           0 :     default:
     328                 :           0 :       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
     329                 :             :     }
     330                 :           3 : }
     331                 :             : 
     332                 :             : static void
     333                 :           2 : valent_device_preferences_dialog_class_init (ValentDevicePreferencesDialogClass *klass)
     334                 :             : {
     335                 :           2 :   GObjectClass *object_class = G_OBJECT_CLASS (klass);
     336                 :           2 :   GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (klass);
     337                 :             : 
     338                 :           2 :   object_class->constructed = valent_device_preferences_dialog_constructed;
     339                 :           2 :   object_class->dispose = valent_device_preferences_dialog_dispose;
     340                 :           2 :   object_class->get_property = valent_device_preferences_dialog_get_property;
     341                 :           2 :   object_class->set_property = valent_device_preferences_dialog_set_property;
     342                 :             : 
     343                 :           2 :   gtk_widget_class_set_template_from_resource (widget_class, "/plugins/gnome/valent-device-preferences-dialog.ui");
     344                 :           2 :   gtk_widget_class_bind_template_child (widget_class, ValentDevicePreferencesDialog, status_page);
     345                 :           2 :   gtk_widget_class_bind_template_child (widget_class, ValentDevicePreferencesDialog, sync_page);
     346                 :           2 :   gtk_widget_class_bind_template_child (widget_class, ValentDevicePreferencesDialog, other_page);
     347                 :           2 :   gtk_widget_class_bind_template_child (widget_class, ValentDevicePreferencesDialog, plugin_page);
     348                 :           2 :   gtk_widget_class_bind_template_child (widget_class, ValentDevicePreferencesDialog, plugin_list);
     349                 :             : 
     350                 :             :   /**
     351                 :             :    * ValentDevicePreferencesDialog:device:
     352                 :             :    *
     353                 :             :    * The device this panel controls and represents.
     354                 :             :    */
     355                 :           4 :   properties [PROP_DEVICE] =
     356                 :           2 :     g_param_spec_object ("device", NULL, NULL,
     357                 :             :                          VALENT_TYPE_DEVICE,
     358                 :             :                          (G_PARAM_READWRITE |
     359                 :             :                           G_PARAM_CONSTRUCT_ONLY |
     360                 :             :                           G_PARAM_EXPLICIT_NOTIFY |
     361                 :             :                           G_PARAM_STATIC_STRINGS));
     362                 :             : 
     363                 :           2 :   g_object_class_install_properties (object_class, G_N_ELEMENTS (properties), properties);
     364                 :           2 : }
     365                 :             : 
     366                 :             : static void
     367                 :           3 : valent_device_preferences_dialog_init (ValentDevicePreferencesDialog *self)
     368                 :             : {
     369                 :           3 :   gtk_widget_init_template (GTK_WIDGET (self));
     370                 :             : 
     371                 :           3 :   gtk_list_box_set_sort_func (self->plugin_list, plugin_list_sort, NULL, NULL);
     372                 :           3 :   self->plugins = g_hash_table_new_full (g_str_hash,
     373                 :             :                                          g_str_equal,
     374                 :             :                                          g_free,
     375                 :             :                                          plugin_data_free);
     376                 :           3 : }
     377                 :             : 
        

Generated by: LCOV version 2.0-1