summaryrefslogtreecommitdiff
path: root/src/nm-connection-provider.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/nm-connection-provider.c')
-rw-r--r--src/nm-connection-provider.c112
1 files changed, 112 insertions, 0 deletions
diff --git a/src/nm-connection-provider.c b/src/nm-connection-provider.c
new file mode 100644
index 0000000000..401f8dabb7
--- /dev/null
+++ b/src/nm-connection-provider.c
@@ -0,0 +1,112 @@
+/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */
+/*
+ * 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:
+ *
+ * Copyright (C) 2012 Red Hat, Inc.
+ */
+
+#include "nm-connection-provider.h"
+
+GSList *
+nm_connection_provider_get_best_connections (NMConnectionProvider *self,
+ guint max_requested,
+ const char *ctype1,
+ const char *ctype2,
+ NMConnectionFilterFunc func,
+ gpointer func_data)
+{
+ g_return_val_if_fail (NM_IS_CONNECTION_PROVIDER (self), NULL);
+
+ if (NM_CONNECTION_PROVIDER_GET_INTERFACE (self)->get_best_connections)
+ return NM_CONNECTION_PROVIDER_GET_INTERFACE (self)->get_best_connections (self, max_requested, ctype1, ctype2, func, func_data);
+ return NULL;
+}
+
+const GSList *
+nm_connection_provider_get_connections (NMConnectionProvider *self)
+{
+ g_return_val_if_fail (NM_IS_CONNECTION_PROVIDER (self), NULL);
+
+ if (NM_CONNECTION_PROVIDER_GET_INTERFACE (self)->get_connections)
+ return NM_CONNECTION_PROVIDER_GET_INTERFACE (self)->get_connections (self);
+ return NULL;
+}
+
+/*****************************************************************************/
+
+static void
+nm_connection_provider_init (gpointer g_iface)
+{
+ GType iface_type = G_TYPE_FROM_INTERFACE (g_iface);
+ static gboolean initialized = FALSE;
+
+ if (initialized)
+ return;
+ initialized = TRUE;
+
+ /* Signals */
+ g_signal_new (NM_CP_SIGNAL_CONNECTION_ADDED,
+ iface_type,
+ G_SIGNAL_RUN_FIRST,
+ G_STRUCT_OFFSET (NMConnectionProvider, connection_added),
+ NULL, NULL,
+ g_cclosure_marshal_VOID__OBJECT,
+ G_TYPE_NONE, 1, G_TYPE_OBJECT);
+
+ g_signal_new (NM_CP_SIGNAL_CONNECTION_UPDATED,
+ iface_type,
+ G_SIGNAL_RUN_FIRST,
+ G_STRUCT_OFFSET (NMConnectionProvider, connection_updated),
+ NULL, NULL,
+ g_cclosure_marshal_VOID__OBJECT,
+ G_TYPE_NONE, 1, G_TYPE_OBJECT);
+
+ g_signal_new (NM_CP_SIGNAL_CONNECTION_REMOVED,
+ iface_type,
+ G_SIGNAL_RUN_FIRST,
+ G_STRUCT_OFFSET (NMConnectionProvider, connection_removed),
+ NULL, NULL,
+ g_cclosure_marshal_VOID__OBJECT,
+ G_TYPE_NONE, 1, G_TYPE_OBJECT);
+
+ g_signal_new (NM_CP_SIGNAL_CONNECTIONS_LOADED,
+ iface_type,
+ G_SIGNAL_RUN_FIRST,
+ G_STRUCT_OFFSET (NMConnectionProvider, connections_loaded),
+ NULL, NULL,
+ g_cclosure_marshal_VOID__VOID,
+ G_TYPE_NONE, 0);
+}
+
+GType
+nm_connection_provider_get_type (void)
+{
+ static GType cp_type = 0;
+
+ if (!G_UNLIKELY (cp_type)) {
+ const GTypeInfo cp_info = {
+ sizeof (NMConnectionProvider), /* class_size */
+ nm_connection_provider_init, /* base_init */
+ NULL, /* base_finalize */
+ NULL,
+ NULL, /* class_finalize */
+ NULL, /* class_data */
+ 0,
+ 0, /* n_preallocs */
+ NULL
+ };
+
+ cp_type = g_type_register_static (G_TYPE_INTERFACE, "NMConnectionProvider", &cp_info, 0);
+ g_type_interface_add_prerequisite (cp_type, G_TYPE_OBJECT);
+ }
+
+ return cp_type;
+}