Welcome to mirror list, hosted at ThFree Co, Russian Federation.

xml_dump_internal.h « src - github.com/rpm-software-management/createrepo_c.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 750fc4ee7563f0199cd39ebb0a44c68d147dbad7 (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
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
/* createrepo_c - Library of routines for manipulation with repodata
 * Copyright (C) 2012  Tomas Mlcoch
 *
 * 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
 * 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 General Public License for more details.
 *
 * You should have received a copy of the GNU 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.
 */

#ifndef __C_CREATEREPOLIB_XML_DUMP_PRIVATE_H__
#define __C_CREATEREPOLIB_XML_DUMP_PRIVATE_H__

#ifdef __cplusplus
extern "C" {
#endif

#include "package.h"
#include <libxml/tree.h>

#define XML_DOC_VERSION "1.0"
#define XML_ENCODING    "UTF-8"

#define FORMAT_XML      1
#define FORMAT_LEVEL    0

#define DATE_STR_MAX_LEN        32
#define SIZE_STR_MAX_LEN        32

#if DATE_STR_MAX_LEN > SIZE_STR_MAX_LEN
#define DATESIZE_STR_MAX_LEN    DATE_STR_MAX_LEN
#else
#define DATESIZE_STR_MAX_LEN    SIZE_STR_MAX_LEN
#endif

/** Dump files from the package and append them to the node as childrens.
 * @param node          parent xml node
 * @param package       cr_Package
 * @param primary       process only primary files (see cr_is_primary() function
 *                      in the misc module)
 */
void cr_xml_dump_files(xmlNodePtr node, cr_Package *package, int primary);

/** Createrepo_c wrapper over libxml xmlNewTextChild.
 * It allows content to be NULL and non UTF-8 (if content is no UTF8
 * then iso-8859-1 is assumed).
 */
xmlNodePtr cr_xmlNewTextChild(xmlNodePtr parent,
                              xmlNsPtr ns,
                              const xmlChar *name,
                              const xmlChar *content);

/** Inserts new node only if its value is not NULL
 */
static inline xmlNodePtr
cr_xmlNewTextChild_c(xmlNodePtr parent,
                     xmlNsPtr ns,
                     const xmlChar *name,
                     const xmlChar *content)
{
    if (!content)
        return NULL;
    return cr_xmlNewTextChild(parent, ns, name, content);
}

/** Createrepo_c wrapper over the libxml xmlNewProp.
 * It allows content to be NULL and non UTF-8 (if content is no UTF8
 * then iso-8859-1 is assumed)
 */
xmlAttrPtr cr_xmlNewProp(xmlNodePtr node,
                         const xmlChar *name,
                         const xmlChar *value);

/** Inserts new proprety (attribute) only if its value is not NULL
 */
static inline xmlAttrPtr
cr_xmlNewProp_c(xmlNodePtr node,
                const xmlChar *name,
                const xmlChar *orig_content)
{
    if (!orig_content)
        return NULL;
    return cr_xmlNewProp(node, name, orig_content);
}


#ifdef __cplusplus
}
#endif

#endif /* __C_CREATEREPOLIB_XML_DUMP_PRIVATE_H__ */