forked from videolan/vlc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlist_util.c
108 lines (98 loc) · 3.26 KB
/
list_util.c
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
/*****************************************************************************
* list_util.c: list helper used by memory and file_crypt keystores
*****************************************************************************
* Copyright © 2015-2016 VLC authors, VideoLAN and VideoLabs
*
* This program 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.1 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <vlc_common.h>
#include <vlc_keystore.h>
#include "list_util.h"
void
ks_list_free(struct ks_list *p_list)
{
vlc_keystore_release_entries(p_list->p_entries, p_list->i_count);
p_list->p_entries = NULL;
p_list->i_count = 0;
p_list->i_max = 0;
}
int
ks_values_copy(const char * ppsz_dst[KEY_MAX],
const char *const ppsz_src[KEY_MAX])
{
for (unsigned int i = 0; i < KEY_MAX; ++i)
{
if (ppsz_src[i])
{
ppsz_dst[i] = strdup(ppsz_src[i]);
if (!ppsz_dst[i])
return VLC_EGENERIC;
}
}
return VLC_SUCCESS;
}
vlc_keystore_entry *
ks_list_new_entry(struct ks_list *p_list)
{
if (p_list->i_count + 1 > p_list->i_max)
{
p_list->i_max += 10;
vlc_keystore_entry *p_entries = realloc(p_list->p_entries, p_list->i_max
* sizeof(*p_list->p_entries));
if (!p_entries)
{
ks_list_free(p_list);
return NULL;
}
p_list->p_entries = p_entries;
}
vlc_keystore_entry *p_entry = &p_list->p_entries[p_list->i_count];
p_entry->p_secret = NULL;
VLC_KEYSTORE_VALUES_INIT(p_entry->ppsz_values);
p_list->i_count++;
return p_entry;
}
vlc_keystore_entry *
ks_list_find_entry(struct ks_list *p_list, const char *const ppsz_values[KEY_MAX],
unsigned *p_start_index)
{
for (unsigned int i = p_start_index ? *p_start_index : 0;
i < p_list->i_count; ++i)
{
vlc_keystore_entry *p_entry = &p_list->p_entries[i];
if (!p_entry->p_secret)
continue;
bool b_match = true;
for (unsigned int j = 0; j < KEY_MAX; ++j)
{
const char *psz_value1 = ppsz_values[j];
const char *psz_value2 = p_entry->ppsz_values[j];
if (!psz_value1)
continue;
if (!psz_value2 || strcmp(psz_value1, psz_value2))
b_match = false;
}
if (b_match)
{
if (p_start_index)
*p_start_index = i + 1;
return p_entry;
}
}
return NULL;
}