/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ /* * Copyright (C) 2001-2002 CodeFactory AB * Copyright (C) 2001-2002 Mikael Hallendal * * 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., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */ #include #include "string.h" #include "dh-link.h" static void link_free (DhLink *link); static void link_free (DhLink *link) { g_free (link->name); g_free (link->book); g_free (link->page); g_free (link->uri); g_free (link); } DhLink * dh_link_new (DhLinkType type, const gchar *name, const gchar *book, const gchar *page, const gchar *uri) { DhLink *link; g_return_val_if_fail (name != NULL, NULL); g_return_val_if_fail (uri != NULL, NULL); link = g_new0 (DhLink, 1); link->type = type; link->name = g_strdup (name); link->book = g_strdup (book); link->page = g_strdup (page); link->uri = g_strdup (uri); return link; } DhLink * dh_link_copy (const DhLink *link) { return dh_link_new (link->type, link->name, link->book, link->page, link->uri); } gint dh_link_compare (gconstpointer a, gconstpointer b) { gint book_diff; gint page_diff; book_diff = strcmp (((DhLink *)a)->book, ((DhLink *)b)->book); if (book_diff == 0) { if (((DhLink *)a)->page == 0 && ((DhLink *)b)->page == 0) { page_diff = 0; } else { page_diff = (((DhLink *)a)->page && ((DhLink *)b)->page) ? strcmp (((DhLink *)a)->page, ((DhLink *)b)->page) : -1; } if (page_diff == 0) return strcmp (((DhLink *)a)->name, ((DhLink *)b)->name); return page_diff; } return book_diff; } DhLink * dh_link_ref (DhLink *link) { g_return_val_if_fail (link != NULL, NULL); link->ref_count++; return link; } void dh_link_unref (DhLink *link) { g_return_if_fail (link != NULL); link->ref_count--; if (link->ref_count == 0) { link_free (link); } } gboolean dh_link_get_is_deprecated (DhLink *link) { return link->is_deprecated; } void dh_link_set_is_deprecated (DhLink *link, gboolean is_deprecated) { link->is_deprecated = is_deprecated; }