summaryrefslogtreecommitdiff
path: root/src/udiskscrypttabentry.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/udiskscrypttabentry.c')
-rw-r--r--src/udiskscrypttabentry.c204
1 files changed, 0 insertions, 204 deletions
diff --git a/src/udiskscrypttabentry.c b/src/udiskscrypttabentry.c
deleted file mode 100644
index 228c735..0000000
--- a/src/udiskscrypttabentry.c
+++ /dev/null
@@ -1,204 +0,0 @@
-/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*-
- *
- * Copyright (C) 2008 David Zeuthen <zeuthen@gmail.com>
- *
- * 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 St, Fifth Floor, Boston, MA 02110-1301 USA
- *
- */
-
-#include "config.h"
-#include <glib/gi18n-lib.h>
-
-#include <stdlib.h>
-#include <stdio.h>
-#include <signal.h>
-#include <errno.h>
-#include <string.h>
-#include <sys/types.h>
-#include <sys/stat.h>
-#include <mntent.h>
-
-#include <glib.h>
-#include <glib-object.h>
-
-#include "udiskscrypttabentry.h"
-#include "udisksprivate.h"
-
-/**
- * UDisksCrypttabEntry:
- *
- * The #UDisksCrypttabEntry structure contains only private data and should
- * only be accessed using the provided API.
- */
-struct _UDisksCrypttabEntry
-{
- GObject parent_instance;
-
- gchar *name;
- gchar *device;
- gchar *passphrase_path;
- gchar *options;
-};
-
-typedef struct _UDisksCrypttabEntryClass UDisksCrypttabEntryClass;
-
-struct _UDisksCrypttabEntryClass
-{
- GObjectClass parent_class;
-};
-
-G_DEFINE_TYPE (UDisksCrypttabEntry, udisks_crypttab_entry, G_TYPE_OBJECT);
-
-static void
-udisks_crypttab_entry_finalize (GObject *object)
-{
- UDisksCrypttabEntry *entry = UDISKS_CRYPTTAB_ENTRY (object);
-
- g_free (entry->name);
- g_free (entry->device);
- g_free (entry->passphrase_path);
- g_free (entry->options);
-
- if (G_OBJECT_CLASS (udisks_crypttab_entry_parent_class)->finalize)
- G_OBJECT_CLASS (udisks_crypttab_entry_parent_class)->finalize (object);
-}
-
-static void
-udisks_crypttab_entry_init (UDisksCrypttabEntry *crypttab_entry)
-{
-}
-
-static void
-udisks_crypttab_entry_class_init (UDisksCrypttabEntryClass *klass)
-{
- GObjectClass *gobject_class;
-
- gobject_class = G_OBJECT_CLASS (klass);
- gobject_class->finalize = udisks_crypttab_entry_finalize;
-}
-
-UDisksCrypttabEntry *
-_udisks_crypttab_entry_new (const gchar *name,
- const gchar *device,
- const gchar *passphrase_path,
- const gchar *options)
-{
- UDisksCrypttabEntry *entry;
-
- entry = UDISKS_CRYPTTAB_ENTRY (g_object_new (UDISKS_TYPE_CRYPTTAB_ENTRY, NULL));
- entry->name = g_strdup (name);
- entry->device = g_strdup (device);
- entry->passphrase_path = g_strdup (passphrase_path);
- entry->options = g_strdup (options);
-
- return entry;
-}
-
-/**
- * udisks_crypttab_entry_compare:
- * @entry: A #UDisksCrypttabEntry
- * @other_entry: Another #UDisksCrypttabEntry.
- *
- * Comparison function for comparing two #UDisksCrypttabEntry objects.
- *
- * Returns: Negative value if @entry < @other_entry; zero if @entry = @other_entry; positive value if @entry > @other_entry.
- */
-gint
-udisks_crypttab_entry_compare (UDisksCrypttabEntry *entry,
- UDisksCrypttabEntry *other_entry)
-{
- gint ret;
-
- g_return_val_if_fail (UDISKS_IS_CRYPTTAB_ENTRY (entry), 0);
- g_return_val_if_fail (UDISKS_IS_CRYPTTAB_ENTRY (other_entry), 0);
-
- ret = g_strcmp0 (other_entry->name, entry->name);
- if (ret != 0)
- goto out;
-
- ret = g_strcmp0 (other_entry->device, entry->device);
- if (ret != 0)
- goto out;
-
- ret = g_strcmp0 (other_entry->passphrase_path, entry->passphrase_path);
- if (ret != 0)
- goto out;
-
- ret = g_strcmp0 (other_entry->options, entry->options);
-
- out:
- return ret;
-}
-
-/**
- * udisks_crypttab_entry_get_name:
- * @entry: A #UDisksCrypttabEntry.
- *
- * Gets the name field of @entry.
- *
- * Returns: The name field.
- */
-const gchar *
-udisks_crypttab_entry_get_name (UDisksCrypttabEntry *entry)
-{
- g_return_val_if_fail (UDISKS_IS_CRYPTTAB_ENTRY (entry), NULL);
- return entry->name;
-}
-
-/**
- * udisks_crypttab_entry_get_device:
- * @entry: A #UDisksCrypttabEntry.
- *
- * Gets the device field of @entry.
- *
- * Returns: The device field.
- */
-const gchar *
-udisks_crypttab_entry_get_device (UDisksCrypttabEntry *entry)
-{
- g_return_val_if_fail (UDISKS_IS_CRYPTTAB_ENTRY (entry), NULL);
- return entry->device;
-}
-
-/**
- * udisks_crypttab_entry_get_passphrase_path:
- * @entry: A #UDisksCrypttabEntry.
- *
- * Gets the passphrase path field of @entry.
- *
- * Returns: The passphrase path field.
- */
-const gchar *
-udisks_crypttab_entry_get_passphrase_path (UDisksCrypttabEntry *entry)
-{
- g_return_val_if_fail (UDISKS_IS_CRYPTTAB_ENTRY (entry), NULL);
- return entry->passphrase_path;
-}
-
-/**
- * udisks_crypttab_entry_get_options:
- * @entry: A #UDisksCrypttabEntry.
- *
- * Gets the options field of @entry.
- *
- * Returns: The options field.
- */
-const gchar *
-udisks_crypttab_entry_get_options (UDisksCrypttabEntry *entry)
-{
- g_return_val_if_fail (UDISKS_IS_CRYPTTAB_ENTRY (entry), NULL);
- return entry->options;
-}
-