xmllite: Implement end tag parsing.
This commit is contained in:
parent
f496a5a0e6
commit
fad7e7a011
|
@ -69,6 +69,7 @@ static const WCHAR utf8W[] = {'U','T','F','-','8',0};
|
||||||
|
|
||||||
static const WCHAR dblquoteW[] = {'\"',0};
|
static const WCHAR dblquoteW[] = {'\"',0};
|
||||||
static const WCHAR quoteW[] = {'\'',0};
|
static const WCHAR quoteW[] = {'\'',0};
|
||||||
|
static const WCHAR gtW[] = {'>',0};
|
||||||
|
|
||||||
struct xml_encoding_data
|
struct xml_encoding_data
|
||||||
{
|
{
|
||||||
|
@ -299,6 +300,14 @@ static void reader_free_strvalues(xmlreader *reader)
|
||||||
reader_free_strvalue(reader, type);
|
reader_free_strvalue(reader, type);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* This helper should only be used to test if strings are the same,
|
||||||
|
it doesn't try to sort. */
|
||||||
|
static inline int strval_eq(const strval *str1, const strval *str2)
|
||||||
|
{
|
||||||
|
if (str1->len != str2->len) return 0;
|
||||||
|
return !memcmp(str1->str, str2->str, str1->len*sizeof(WCHAR));
|
||||||
|
}
|
||||||
|
|
||||||
static void reader_clear_elements(xmlreader *reader)
|
static void reader_clear_elements(xmlreader *reader)
|
||||||
{
|
{
|
||||||
struct element *elem, *elem2;
|
struct element *elem, *elem2;
|
||||||
|
@ -338,6 +347,18 @@ static HRESULT reader_push_element(xmlreader *reader, strval *qname)
|
||||||
return hr;
|
return hr;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void reader_pop_element(xmlreader *reader)
|
||||||
|
{
|
||||||
|
struct element *elem = LIST_ENTRY(list_head(&reader->elements), struct element, entry);
|
||||||
|
|
||||||
|
if (elem)
|
||||||
|
{
|
||||||
|
list_remove(&elem->entry);
|
||||||
|
reader_free_strvalued(reader, &elem->qname);
|
||||||
|
reader_free(reader, elem);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/* always make a copy, cause strings are supposed to be null terminated */
|
/* always make a copy, cause strings are supposed to be null terminated */
|
||||||
static void reader_set_strvalue(xmlreader *reader, XmlReaderStringValue type, const strval *value)
|
static void reader_set_strvalue(xmlreader *reader, XmlReaderStringValue type, const strval *value)
|
||||||
{
|
{
|
||||||
|
@ -1465,7 +1486,6 @@ static HRESULT reader_parse_qname(xmlreader *reader, strval *prefix, strval *loc
|
||||||
static HRESULT reader_parse_stag(xmlreader *reader, strval *prefix, strval *local, strval *qname, int *empty)
|
static HRESULT reader_parse_stag(xmlreader *reader, strval *prefix, strval *local, strval *qname, int *empty)
|
||||||
{
|
{
|
||||||
static const WCHAR endW[] = {'/','>',0};
|
static const WCHAR endW[] = {'/','>',0};
|
||||||
static const WCHAR gtW[] = {'>',0};
|
|
||||||
HRESULT hr;
|
HRESULT hr;
|
||||||
|
|
||||||
/* skip '<' */
|
/* skip '<' */
|
||||||
|
@ -1477,7 +1497,12 @@ static HRESULT reader_parse_stag(xmlreader *reader, strval *prefix, strval *loca
|
||||||
reader_skipspaces(reader);
|
reader_skipspaces(reader);
|
||||||
|
|
||||||
/* empty element */
|
/* empty element */
|
||||||
if ((*empty = !reader_cmp(reader, endW))) return S_OK;
|
if ((*empty = !reader_cmp(reader, endW)))
|
||||||
|
{
|
||||||
|
/* skip '/>' */
|
||||||
|
reader_skipn(reader, 2);
|
||||||
|
return S_OK;
|
||||||
|
}
|
||||||
|
|
||||||
/* got a start tag */
|
/* got a start tag */
|
||||||
if (!reader_cmp(reader, gtW))
|
if (!reader_cmp(reader, gtW))
|
||||||
|
@ -1528,8 +1553,35 @@ static HRESULT reader_parse_element(xmlreader *reader)
|
||||||
/* [13 NS] ETag ::= '</' QName S? '>' */
|
/* [13 NS] ETag ::= '</' QName S? '>' */
|
||||||
static HRESULT reader_parse_endtag(xmlreader *reader)
|
static HRESULT reader_parse_endtag(xmlreader *reader)
|
||||||
{
|
{
|
||||||
FIXME("ETag parsing not implemented\n");
|
strval prefix, local, qname;
|
||||||
return E_NOTIMPL;
|
struct element *elem;
|
||||||
|
HRESULT hr;
|
||||||
|
|
||||||
|
/* skip '</' */
|
||||||
|
reader_skipn(reader, 2);
|
||||||
|
|
||||||
|
hr = reader_parse_qname(reader, &prefix, &local, &qname);
|
||||||
|
if (FAILED(hr)) return hr;
|
||||||
|
|
||||||
|
reader_skipspaces(reader);
|
||||||
|
|
||||||
|
if (reader_cmp(reader, gtW)) return WC_E_GREATERTHAN;
|
||||||
|
|
||||||
|
/* skip '>' */
|
||||||
|
reader_skipn(reader, 1);
|
||||||
|
|
||||||
|
/* Element stack should never be empty at this point, cause we shouldn't get to
|
||||||
|
content parsing if it's empty. */
|
||||||
|
elem = LIST_ENTRY(list_head(&reader->elements), struct element, entry);
|
||||||
|
if (!strval_eq(&elem->qname, &qname)) return WC_E_ELEMENTMATCH;
|
||||||
|
|
||||||
|
reader_pop_element(reader);
|
||||||
|
|
||||||
|
reader->nodetype = XmlNodeType_EndElement;
|
||||||
|
reader_set_strvalue(reader, StringValue_LocalName, &local);
|
||||||
|
reader_set_strvalue(reader, StringValue_QualifiedName, &qname);
|
||||||
|
|
||||||
|
return S_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* [43] content ::= CharData? ((element | Reference | CDSect | PI | Comment) CharData?)* */
|
/* [43] content ::= CharData? ((element | Reference | CDSect | PI | Comment) CharData?)* */
|
||||||
|
|
|
@ -888,6 +888,8 @@ static const char misc_test_xml[] =
|
||||||
" \t \r \n"
|
" \t \r \n"
|
||||||
"<!-- comment4 -->"
|
"<!-- comment4 -->"
|
||||||
"<a>"
|
"<a>"
|
||||||
|
"<b/>"
|
||||||
|
"</a>"
|
||||||
;
|
;
|
||||||
|
|
||||||
static struct nodes_test misc_test = {
|
static struct nodes_test misc_test = {
|
||||||
|
@ -900,6 +902,8 @@ static struct nodes_test misc_test = {
|
||||||
XmlNodeType_Whitespace,
|
XmlNodeType_Whitespace,
|
||||||
XmlNodeType_Comment,
|
XmlNodeType_Comment,
|
||||||
XmlNodeType_Element,
|
XmlNodeType_Element,
|
||||||
|
XmlNodeType_Element,
|
||||||
|
XmlNodeType_EndElement,
|
||||||
XmlNodeType_None
|
XmlNodeType_None
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -1032,13 +1036,15 @@ static struct test_entry element_tests[] = {
|
||||||
{ "<a>", "a", "", S_OK },
|
{ "<a>", "a", "", S_OK },
|
||||||
{ "<a >", "a", "", S_OK },
|
{ "<a >", "a", "", S_OK },
|
||||||
{ "<a \r \t\n>", "a", "", S_OK },
|
{ "<a \r \t\n>", "a", "", S_OK },
|
||||||
|
{ "</a>", NULL, NULL, NC_E_QNAMECHARACTER },
|
||||||
{ NULL }
|
{ NULL }
|
||||||
};
|
};
|
||||||
|
|
||||||
static void test_read_element(void)
|
static void test_read_element(void)
|
||||||
{
|
{
|
||||||
struct test_entry *test = element_tests;
|
struct test_entry *test = element_tests;
|
||||||
static const char stag[] = "<a><b>";
|
static const char stag[] = "<a><b></b></a>";
|
||||||
|
static const char mismatch[] = "<a></b>";
|
||||||
IXmlReader *reader;
|
IXmlReader *reader;
|
||||||
XmlNodeType type;
|
XmlNodeType type;
|
||||||
IStream *stream;
|
IStream *stream;
|
||||||
|
@ -1090,7 +1096,8 @@ static void test_read_element(void)
|
||||||
test++;
|
test++;
|
||||||
}
|
}
|
||||||
|
|
||||||
stream = create_stream_on_data(stag, strlen(stag)+1);
|
/* test reader depth increment */
|
||||||
|
stream = create_stream_on_data(stag, sizeof(stag));
|
||||||
hr = IXmlReader_SetInput(reader, (IUnknown*)stream);
|
hr = IXmlReader_SetInput(reader, (IUnknown*)stream);
|
||||||
ok(hr == S_OK, "got %08x\n", hr);
|
ok(hr == S_OK, "got %08x\n", hr);
|
||||||
|
|
||||||
|
@ -1115,6 +1122,47 @@ static void test_read_element(void)
|
||||||
ok(hr == S_OK, "got %08x\n", hr);
|
ok(hr == S_OK, "got %08x\n", hr);
|
||||||
ok(depth == 1, "got %d\n", depth);
|
ok(depth == 1, "got %d\n", depth);
|
||||||
|
|
||||||
|
/* read end tag for inner element */
|
||||||
|
type = XmlNodeType_None;
|
||||||
|
hr = IXmlReader_Read(reader, &type);
|
||||||
|
ok(hr == S_OK, "got %08x\n", hr);
|
||||||
|
ok(type == XmlNodeType_EndElement, "got %d\n", type);
|
||||||
|
|
||||||
|
depth = 0;
|
||||||
|
hr = IXmlReader_GetDepth(reader, &depth);
|
||||||
|
ok(hr == S_OK, "got %08x\n", hr);
|
||||||
|
todo_wine
|
||||||
|
ok(depth == 2, "got %d\n", depth);
|
||||||
|
|
||||||
|
/* read end tag for container element */
|
||||||
|
type = XmlNodeType_None;
|
||||||
|
hr = IXmlReader_Read(reader, &type);
|
||||||
|
ok(hr == S_OK, "got %08x\n", hr);
|
||||||
|
ok(type == XmlNodeType_EndElement, "got %d\n", type);
|
||||||
|
|
||||||
|
depth = 0;
|
||||||
|
hr = IXmlReader_GetDepth(reader, &depth);
|
||||||
|
ok(hr == S_OK, "got %08x\n", hr);
|
||||||
|
ok(depth == 1, "got %d\n", depth);
|
||||||
|
|
||||||
|
IStream_Release(stream);
|
||||||
|
|
||||||
|
/* start/end tag mismatch */
|
||||||
|
stream = create_stream_on_data(mismatch, sizeof(mismatch));
|
||||||
|
hr = IXmlReader_SetInput(reader, (IUnknown*)stream);
|
||||||
|
ok(hr == S_OK, "got %08x\n", hr);
|
||||||
|
|
||||||
|
type = XmlNodeType_None;
|
||||||
|
hr = IXmlReader_Read(reader, &type);
|
||||||
|
ok(hr == S_OK, "got %08x\n", hr);
|
||||||
|
ok(type == XmlNodeType_Element, "got %d\n", type);
|
||||||
|
|
||||||
|
type = XmlNodeType_Element;
|
||||||
|
hr = IXmlReader_Read(reader, &type);
|
||||||
|
ok(hr == WC_E_ELEMENTMATCH, "got %08x\n", hr);
|
||||||
|
todo_wine
|
||||||
|
ok(type == XmlNodeType_None, "got %d\n", type);
|
||||||
|
|
||||||
IStream_Release(stream);
|
IStream_Release(stream);
|
||||||
|
|
||||||
IXmlReader_Release(reader);
|
IXmlReader_Release(reader);
|
||||||
|
|
Loading…
Reference in New Issue