Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
619c2dcd
Commit
619c2dcd
authored
Oct 31, 2011
by
Piotr Caban
Committed by
Alexandre Julliard
Oct 31, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msxml3: Don't use libxml namespaces stack.
parent
e6aace7a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
88 additions
and
28 deletions
+88
-28
saxreader.c
dlls/msxml3/saxreader.c
+88
-28
No files found.
dlls/msxml3/saxreader.c
View file @
619c2dcd
...
...
@@ -115,7 +115,12 @@ typedef struct _saxlocator
BOOL
vbInterface
;
int
nsStackSize
;
int
nsStackLast
;
int
*
nsStack
;
struct
nsstack
{
const
xmlChar
*
ptr
;
BSTR
prefix
;
BSTR
uri
;
}
*
nsStack
;
int
attributesSize
;
int
nb_attributes
;
...
...
@@ -255,27 +260,57 @@ static inline BOOL has_error_handler(const saxlocator *locator)
(
!
locator
->
vbInterface
&&
locator
->
saxreader
->
errorHandler
);
}
static
HRESULT
namespacePush
(
saxlocator
*
locator
,
int
ns
)
static
HRESULT
namespacePush
(
saxlocator
*
locator
,
const
xmlChar
*
prefix
,
const
xmlChar
*
uri
)
{
if
(
locator
->
nsStackLast
>=
locator
->
nsStackSize
)
{
int
*
new_stack
;
struct
nsstack
*
new_stack
;
new_stack
=
HeapReAlloc
(
GetProcessHeap
(),
0
,
locator
->
nsStack
,
sizeof
(
int
)
*
locator
->
nsStackSize
*
2
);
locator
->
nsStack
,
sizeof
(
struct
nsstack
)
*
locator
->
nsStackSize
*
2
);
if
(
!
new_stack
)
return
E_OUTOFMEMORY
;
locator
->
nsStack
=
new_stack
;
locator
->
nsStackSize
*=
2
;
}
locator
->
nsStack
[
locator
->
nsStackLast
++
]
=
ns
;
locator
->
nsStack
[
locator
->
nsStackLast
].
ptr
=
uri
;
if
(
uri
)
{
locator
->
nsStack
[
locator
->
nsStackLast
].
prefix
=
bstr_from_xmlChar
(
prefix
);
if
(
!
locator
->
nsStack
[
locator
->
nsStackLast
].
prefix
)
return
E_OUTOFMEMORY
;
locator
->
nsStack
[
locator
->
nsStackLast
].
uri
=
bstr_from_xmlChar
(
uri
);
if
(
!
locator
->
nsStack
[
locator
->
nsStackLast
].
uri
)
{
SysFreeString
(
locator
->
nsStack
[
locator
->
nsStackLast
].
prefix
);
return
E_OUTOFMEMORY
;
}
}
else
{
locator
->
nsStack
[
locator
->
nsStackLast
].
prefix
=
NULL
;
locator
->
nsStack
[
locator
->
nsStackLast
].
uri
=
NULL
;
}
locator
->
nsStackLast
++
;
return
S_OK
;
}
static
int
namespacePop
(
saxlocator
*
locator
)
static
HRESULT
namespacePop
(
saxlocator
*
locator
)
{
if
(
locator
->
nsStackLast
==
0
)
return
0
;
return
locator
->
nsStack
[
--
locator
->
nsStackLast
];
if
(
locator
->
nsStackLast
==
0
)
{
ERR
(
"namespace stack is empty
\n
"
);
return
E_UNEXPECTED
;
}
SysFreeString
(
locator
->
nsStack
[
--
locator
->
nsStackLast
].
prefix
);
SysFreeString
(
locator
->
nsStack
[
locator
->
nsStackLast
].
uri
);
locator
->
nsStack
[
locator
->
nsStackLast
].
prefix
=
NULL
;
locator
->
nsStack
[
locator
->
nsStackLast
].
uri
=
NULL
;
return
S_OK
;
}
static
BOOL
bstr_pool_insert
(
struct
bstrpool
*
pool
,
BSTR
pool_entry
)
...
...
@@ -1165,7 +1200,16 @@ static void libxmlStartElementNS(
index
++
;
update_position
(
This
,
(
xmlChar
*
)
This
->
pParserCtxt
->
input
->
cur
+
index
);
hr
=
namespacePush
(
This
,
nb_namespaces
);
hr
=
namespacePush
(
This
,
NULL
,
NULL
);
for
(
index
=
0
;
hr
==
S_OK
&&
index
<
nb_namespaces
;
index
++
)
hr
=
namespacePush
(
This
,
namespaces
[
2
*
index
],
namespaces
[
2
*
index
+
1
]);
if
(
hr
!=
S_OK
)
{
for
(;
index
>=
0
;
index
--
)
namespacePop
(
This
);
namespacePop
(
This
);
}
if
(
hr
==
S_OK
&&
has_content_handler
(
This
))
{
for
(
index
=
0
;
index
<
nb_namespaces
;
index
++
)
...
...
@@ -1217,11 +1261,11 @@ static void libxmlEndElementNS(
const
xmlChar
*
prefix
,
const
xmlChar
*
URI
)
{
BSTR
NamespaceUri
,
LocalName
,
QName
,
Prefix
;
BSTR
NamespaceUri
,
LocalName
,
QName
;
saxlocator
*
This
=
ctx
;
HRESULT
hr
;
xmlChar
*
end
;
int
nsNr
,
index
;
struct
nsstack
*
elem
=
&
This
->
nsStack
[
This
->
nsStackLast
-
1
]
;
end
=
(
xmlChar
*
)
This
->
pParserCtxt
->
input
->
cur
;
if
(
This
->
saxreader
->
version
>=
MSXML6
)
{
...
...
@@ -1234,8 +1278,6 @@ static void libxmlEndElementNS(
update_position
(
This
,
end
);
nsNr
=
namespacePop
(
This
);
if
(
has_content_handler
(
This
))
{
NamespaceUri
=
pooled_bstr_from_xmlChar
(
&
This
->
saxreader
->
pool
,
URI
);
...
...
@@ -1263,53 +1305,69 @@ static void libxmlEndElementNS(
if
(
This
->
saxreader
->
version
>=
MSXML6
)
{
for
(
index
=
This
->
pParserCtxt
->
nsNr
-
nsNr
*
2
;
index
<
This
->
pParserCtxt
->
nsNr
;
index
+=
2
)
{
Prefix
=
pooled_bstr_from_xmlChar
(
&
This
->
saxreader
->
pool
,
This
->
pParserCtxt
->
nsTab
[
index
])
;
while
(
elem
->
ptr
)
{
elem
--
;
}
elem
++
;
while
(
elem
<
&
This
->
nsStack
[
This
->
nsStackLast
])
{
if
(
This
->
vbInterface
)
hr
=
IVBSAXContentHandler_endPrefixMapping
(
This
->
saxreader
->
vbcontentHandler
,
&
P
refix
);
This
->
saxreader
->
vbcontentHandler
,
&
elem
->
p
refix
);
else
hr
=
ISAXContentHandler_endPrefixMapping
(
This
->
saxreader
->
contentHandler
,
Prefix
,
SysStringLen
(
P
refix
));
elem
->
prefix
,
SysStringLen
(
elem
->
p
refix
));
if
(
FAILED
(
hr
)
)
if
(
hr
!=
S_OK
)
{
format_error_message_from_id
(
This
,
hr
);
return
;
}
elem
++
;
}
elem
--
;
while
(
elem
->
ptr
)
{
namespacePop
(
This
);
elem
--
;
}
}
else
{
for
(
index
=
This
->
pParserCtxt
->
nsNr
-
2
;
index
>=
This
->
pParserCtxt
->
nsNr
-
nsNr
*
2
;
index
-=
2
)
{
Prefix
=
pooled_bstr_from_xmlChar
(
&
This
->
saxreader
->
pool
,
This
->
pParserCtxt
->
nsTab
[
index
]);
while
(
1
)
{
if
(
!
elem
->
ptr
)
break
;
if
(
This
->
vbInterface
)
hr
=
IVBSAXContentHandler_endPrefixMapping
(
This
->
saxreader
->
vbcontentHandler
,
&
P
refix
);
This
->
saxreader
->
vbcontentHandler
,
&
elem
->
p
refix
);
else
hr
=
ISAXContentHandler_endPrefixMapping
(
This
->
saxreader
->
contentHandler
,
Prefix
,
SysStringLen
(
P
refix
));
elem
->
prefix
,
SysStringLen
(
elem
->
p
refix
));
if
(
hr
!=
S_OK
)
if
(
FAILED
(
hr
)
)
{
format_error_message_from_id
(
This
,
hr
);
return
;
}
namespacePop
(
This
);
elem
--
;
}
}
}
else
{
This
->
nb_attributes
=
0
;
while
(
elem
->
ptr
)
{
namespacePop
(
This
);
elem
--
;
}
}
namespacePop
(
This
);
update_position
(
This
,
NULL
);
}
...
...
@@ -1806,6 +1864,8 @@ static ULONG WINAPI isaxlocator_Release(
SysFreeString
(
This
->
publicId
);
SysFreeString
(
This
->
systemId
);
while
(
This
->
nsStackLast
)
namespacePop
(
This
);
heap_free
(
This
->
nsStack
);
for
(
index
=
0
;
index
<
This
->
nb_attributes
;
index
++
)
...
...
@@ -1927,7 +1987,7 @@ static HRESULT SAXLocator_create(saxreader *reader, saxlocator **ppsaxlocator, B
locator
->
ret
=
S_OK
;
locator
->
nsStackSize
=
8
;
locator
->
nsStackLast
=
0
;
locator
->
nsStack
=
heap_alloc
(
sizeof
(
int
)
*
locator
->
nsStackSize
);
locator
->
nsStack
=
heap_alloc
(
sizeof
(
struct
nsstack
)
*
locator
->
nsStackSize
);
if
(
!
locator
->
nsStack
)
{
ISAXXMLReader_Release
(
&
reader
->
ISAXXMLReader_iface
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment