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
|
#pragma once
/*
* Copyright (C) 2011-2013 Team XBMC
* http://xbmc.org
*
* 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, 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 XBMC; see the file COPYING. If not, see
* <http://www.gnu.org/licenses/>.
*
*/
#include "DynamicDll.h"
#include <plist/plist.h>
class DllLibPlistInterface
{
public:
virtual ~DllLibPlistInterface() {}
virtual void plist_from_bin (const char *plist_bin, uint32_t length, plist_t * plist )=0;
virtual plist_t plist_new_dict (void )=0;
virtual uint32_t plist_dict_get_size (plist_t node )=0;
virtual void plist_get_string_val (plist_t node, char **val )=0;
virtual void plist_get_real_val (plist_t node, double *val )=0;
virtual plist_t plist_dict_get_item (plist_t node, const char* key )=0;
virtual void plist_free (plist_t plist )=0;
#ifdef TARGET_WINDOWS
virtual void plist_free_string_val (char *val )=0;
#endif
virtual void plist_to_xml (plist_t plist, char **plist_xml, uint32_t * length)=0;
virtual void plist_dict_new_iter (plist_t node, plist_dict_iter *iter )=0;
virtual void plist_dict_next_item (plist_t node, plist_dict_iter iter, char **key, plist_t *val) = 0;
};
class DllLibPlist : public DllDynamic, DllLibPlistInterface
{
DECLARE_DLL_WRAPPER(DllLibPlist, DLL_PATH_LIBPLIST)
DEFINE_METHOD0(plist_t, plist_new_dict)
DEFINE_METHOD1(uint32_t, plist_dict_get_size, (plist_t p1))
DEFINE_METHOD1(void, plist_free, (plist_t p1))
DEFINE_METHOD2(void, plist_get_string_val, (plist_t p1, char **p2))
DEFINE_METHOD2(void, plist_get_real_val, (plist_t p1, double *p2))
DEFINE_METHOD2(void, plist_dict_new_iter, (plist_t p1, plist_dict_iter* p2))
DEFINE_METHOD2(plist_t, plist_dict_get_item, (plist_t p1, const char* p2))
DEFINE_METHOD3(void, plist_from_bin, (const char *p1, uint32_t p2, plist_t *p3))
DEFINE_METHOD3(void, plist_to_xml, (plist_t p1, char **p2, uint32_t *p3));
DEFINE_METHOD4(void, plist_dict_next_item, (plist_t p1, plist_dict_iter p2, char **p3, plist_t *p4))
#ifdef TARGET_WINDOWS
DEFINE_METHOD1(void, plist_free_string_val, (char *p1))
#endif
BEGIN_METHOD_RESOLVE()
RESOLVE_METHOD_RENAME(plist_new_dict, plist_new_dict)
RESOLVE_METHOD_RENAME(plist_free, plist_free)
RESOLVE_METHOD_RENAME(plist_dict_get_size, plist_dict_get_size)
RESOLVE_METHOD_RENAME(plist_from_bin, plist_from_bin)
RESOLVE_METHOD_RENAME(plist_get_real_val, plist_get_real_val)
RESOLVE_METHOD_RENAME(plist_get_string_val, plist_get_string_val)
RESOLVE_METHOD_RENAME(plist_dict_get_item, plist_dict_get_item)
RESOLVE_METHOD_RENAME(plist_dict_new_iter, plist_dict_new_iter)
RESOLVE_METHOD_RENAME(plist_dict_next_item, plist_dict_next_item)
RESOLVE_METHOD_RENAME(plist_to_xml, plist_to_xml)
#ifdef TARGET_WINDOWS
RESOLVE_METHOD_RENAME(plist_free_string_val, plist_free_string_val)
#endif
END_METHOD_RESOLVE()
};
|