summaryrefslogtreecommitdiff
path: root/src/core/pi.c
blob: 1d7a508c427be3ddb48a3a448d5f1c5960b7c54e (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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
/*
 * This file is part of libdom.
 * Licensed under the MIT License,
 *                http://www.opensource.org/licenses/mit-license.php
 * Copyright 2007 John-Mark Bell <jmb@netsurf-browser.org>
 */

#include "core/document.h"
#include "core/node.h"
#include "core/pi.h"

#include "utils/utils.h"

/**
 * A DOM processing instruction
 */
struct dom_processing_instruction {
	struct dom_node_internal base;		/**< Base node */
};

static struct dom_node_vtable pi_vtable = {
	DOM_NODE_VTABLE
};

static struct dom_node_protect_vtable pi_protect_vtable = {
	DOM_PI_PROTECT_VTABLE
};
/**
 * Create a processing instruction
 *
 * \param doc     The owning document
 * \param name    The name of the node to create
 * \param value   The text content of the node
 * \param result  Pointer to location to receive created node
 * \return DOM_NO_ERR                on success,
 *         DOM_NO_MEM_ERR            on memory exhaustion.
 *
 * ::doc, ::name and ::value will have their reference counts increased.
 *
 * The returned node will already be referenced.
 */
dom_exception _dom_processing_instruction_create(struct dom_document *doc,
		struct lwc_string_s *name, dom_string *value,
		struct dom_processing_instruction **result)
{
	struct dom_processing_instruction *p;
	dom_exception err;

	/* Allocate the comment node */
	p = _dom_document_alloc(doc, NULL,
			sizeof(struct dom_processing_instruction));
	if (p == NULL)
		return DOM_NO_MEM_ERR;
	
	p->base.base.vtable = &pi_vtable;
	p->base.vtable = &pi_protect_vtable;

	/* And initialise the node */
	err = _dom_processing_instruction_initialise(&p->base, doc,
			DOM_PROCESSING_INSTRUCTION_NODE,
			name, value, NULL, NULL);
	if (err != DOM_NO_ERR) {
		_dom_document_alloc(doc, p, 0);
		return err;
	}

	*result = p;

	return DOM_NO_ERR;
}

/**
 * Destroy a processing instruction
 *
 * \param doc  The owning document
 * \param pi   The processing instruction to destroy
 *
 * The contents of ::pi will be destroyed and ::pi will be freed.
 */
void _dom_processing_instruction_destroy(struct dom_document *doc,
		struct dom_processing_instruction *pi)
{
	/* Finalise base class */
	_dom_processing_instruction_finalise(doc, &pi->base);

	/* Free processing instruction */
	_dom_document_alloc(doc, pi, 0);
}

/*-----------------------------------------------------------------------*/

/* Following comes the protected vtable  */

/* The virtual destroy function of this class */
void _dom_pi_destroy(struct dom_node_internal *node)
{
	_dom_processing_instruction_destroy(node->owner, 
			(struct dom_processing_instruction *) node);
}

/* The memory allocator of this class */
dom_exception _dom_pi_alloc(struct dom_document *doc,
		struct dom_node_internal *n, struct dom_node_internal **ret)
{
	UNUSED(n);
	struct dom_processing_instruction *a;
	
	a = _dom_document_alloc(doc, NULL, 
			sizeof(struct dom_processing_instruction));
	if (a == NULL)
		return DOM_NO_MEM_ERR;
	
	*ret = (dom_node_internal *) a;
	dom_node_set_owner(*ret, doc);

	return DOM_NO_ERR;
}

/* The copy constructor of this class */
dom_exception _dom_pi_copy(struct dom_node_internal *new, 
		struct dom_node_internal *old)
{
	return _dom_node_copy(new, old);
}