1 /*****************************************************************************
3 *****************************************************************************
4 * Copyright (C) 2010 Laurent Aimar
7 * Authors: Laurent Aimar <fenrir _AT_ videolan _DOT_ org>
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU Lesser General Public License as published by
11 * the Free Software Foundation; either version 2.1 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public License
20 * along with this program; if not, write to the Free Software Foundation,
21 * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22 *****************************************************************************/
24 #ifndef LIBVLC_INPUT_INFO_H
25 #define LIBVLC_INPUT_INFO_H 1
27 #include "vlc_input_item.h"
29 static inline info_t
*info_New(const char *name
, const char *value
)
31 info_t
*info
= malloc(sizeof(*info
));
35 info
->psz_name
= strdup(name
);
36 info
->psz_value
= value
? strdup(value
) : NULL
;
40 static inline void info_Delete(info_t
*i
)
47 static inline info_category_t
*info_category_New(const char *name
)
49 info_category_t
*cat
= malloc(sizeof(*cat
));
52 cat
->psz_name
= strdup(name
);
59 static inline info_t
*info_category_FindInfo(const info_category_t
*cat
,
60 int *index
, const char *name
)
62 for (int i
= 0; i
< cat
->i_infos
; i
++) {
63 if (!strcmp(cat
->pp_infos
[i
]->psz_name
, name
)) {
66 return cat
->pp_infos
[i
];
72 static inline void info_category_ReplaceInfo(info_category_t
*cat
,
76 info_t
*old
= info_category_FindInfo(cat
, &index
, info
->psz_name
);
78 info_Delete(cat
->pp_infos
[index
]);
79 cat
->pp_infos
[index
] = info
;
81 INSERT_ELEM(cat
->pp_infos
, cat
->i_infos
, cat
->i_infos
, info
);
85 static inline info_t
*info_category_VaAddInfo(info_category_t
*cat
,
87 const char *format
, va_list args
)
89 info_t
*info
= info_category_FindInfo(cat
, NULL
, name
);
91 info
= info_New(name
, NULL
);
94 INSERT_ELEM(cat
->pp_infos
, cat
->i_infos
, cat
->i_infos
, info
);
96 free(info
->psz_value
);
97 if (vasprintf(&info
->psz_value
, format
, args
) == -1)
98 info
->psz_value
= NULL
;
102 static inline info_t
*info_category_AddInfo(info_category_t
*cat
,
104 const char *format
, ...)
108 va_start(args
, format
);
109 info_t
*info
= info_category_VaAddInfo(cat
, name
, format
, args
);
115 static inline int info_category_DeleteInfo(info_category_t
*cat
, const char *name
)
118 if (info_category_FindInfo(cat
, &index
, name
)) {
119 info_Delete(cat
->pp_infos
[index
]);
120 REMOVE_ELEM(cat
->pp_infos
, cat
->i_infos
, index
);
126 static inline void info_category_Delete(info_category_t
*cat
)
128 for (int i
= 0; i
< cat
->i_infos
; i
++)
129 info_Delete(cat
->pp_infos
[i
]);