summaryrefslogtreecommitdiff
path: root/libgupnp-dlna/gupnp-dlna-utils.c
blob: 26f7c0f0b9b25a23305577dc7116142651c5581f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/*
 * Copyright (C) 2012, 2013 Intel Corporation.
 *
 * Authors: Krzesimir Nowak <krnowak@openismus.com>
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the
 * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 * Boston, MA 02110-1301, USA.
 */

#include "gupnp-dlna-utils.h"
#include "gupnp-dlna-restriction.h"

void
gupnp_dlna_utils_free_restrictions (GList *list)
{
        if (list == NULL)
                return;
        g_list_free_full (list, (GDestroyNotify) gupnp_dlna_restriction_free);
}

gchar *
gupnp_dlna_utils_restrictions_list_to_string (GList *list)
{
        GList *iter;
        GPtrArray *strings = g_ptr_array_new_with_free_func (g_free);
        gchar *final_string;

        for (iter = list; iter != NULL; iter = iter->next) {
                GUPnPDLNARestriction *restriction =
                                        GUPNP_DLNA_RESTRICTION (iter->data);

                if (restriction)
                        g_ptr_array_add (strings,
                                         gupnp_dlna_restriction_to_string
                                                            (restriction));
        }

        if (strings->len) {
                g_ptr_array_add (strings, NULL);
                final_string = g_strjoinv ("; ", (gchar **) strings->pdata);
        }
        else
                final_string = g_strdup ("EMPTY");
        g_ptr_array_unref (strings);

        return final_string;
}