ed1ec8be4919fff733cf697b33c200c71e065cd1
[pcsx_rearmed.git] / deps / libretro-common / samples / formats / xml / rxml_test.c
1 /* Copyright  (C) 2010-2020 The RetroArch team
2  *
3  * ---------------------------------------------------------------------------------------
4  * The following license statement only applies to this file (rxml_test.c).
5  * ---------------------------------------------------------------------------------------
6  *
7  * Permission is hereby granted, free of charge,
8  * to any person obtaining a copy of this software and associated documentation files (the "Software"),
9  * to deal in the Software without restriction, including without limitation the rights to
10  * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software,
11  * and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
14  *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
16  * INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
18  * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
19  * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21  */
22
23 #include <formats/rxml.h>
24 #include <stdio.h>
25
26 static void print_siblings(struct rxml_node *node, unsigned level)
27 {
28    fprintf(stderr, "\n%*sName: %s\n", level * 4, "", node->name);
29    if (node->data)
30       fprintf(stderr, "%*sData: %s\n", level * 4, "", node->data);
31
32    for (const struct rxml_attrib_node *attrib =
33          node->attrib; attrib; attrib = attrib->next)
34       fprintf(stderr, "%*s  Attrib: %s = %s\n", level * 4, "",
35             attrib->attrib, attrib->value);
36
37    if (node->children)
38       print_siblings(node->children, level + 1);
39
40    if (node->next)
41       print_siblings(node->next, level);
42 }
43
44 static void rxml_log_document(const char *path)
45 {
46    rxml_document_t *doc = rxml_load_document(path);
47    if (!doc)
48    {
49       fprintf(stderr, "rxml: Failed to load document: %s\n", path);
50       return;
51    }
52
53    print_siblings(rxml_root_node(doc), 0);
54    rxml_free_document(doc);
55 }
56
57 int main(int argc, char *argv[])
58 {
59    if (argc != 2)
60    {
61       fprintf(stderr, "Usage: %s <path>\n", argv[0]);
62       return 1;
63    }
64
65    rxml_log_document(argv[1]);
66 }