Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
0835749a
Commit
0835749a
authored
Dec 01, 2010
by
Jacek Caban
Committed by
Alexandre Julliard
Dec 02, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Use binary search in HTMLElement_Create.
parent
6bf247f9
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
67 additions
and
51 deletions
+67
-51
htmlelem.c
dlls/mshtml/htmlelem.c
+67
-51
No files found.
dlls/mshtml/htmlelem.c
View file @
0835749a
...
@@ -34,6 +34,67 @@
...
@@ -34,6 +34,67 @@
#include "mshtml_private.h"
#include "mshtml_private.h"
#include "htmlevent.h"
#include "htmlevent.h"
static
const
WCHAR
aW
[]
=
{
'A'
,
0
};
static
const
WCHAR
bodyW
[]
=
{
'B'
,
'O'
,
'D'
,
'Y'
,
0
};
static
const
WCHAR
embedW
[]
=
{
'E'
,
'M'
,
'B'
,
'E'
,
'D'
,
0
};
static
const
WCHAR
formW
[]
=
{
'F'
,
'O'
,
'R'
,
'M'
,
0
};
static
const
WCHAR
frameW
[]
=
{
'F'
,
'R'
,
'A'
,
'M'
,
'E'
,
0
};
static
const
WCHAR
iframeW
[]
=
{
'I'
,
'F'
,
'R'
,
'A'
,
'M'
,
'E'
,
0
};
static
const
WCHAR
imgW
[]
=
{
'I'
,
'M'
,
'G'
,
0
};
static
const
WCHAR
inputW
[]
=
{
'I'
,
'N'
,
'P'
,
'U'
,
'T'
,
0
};
static
const
WCHAR
objectW
[]
=
{
'O'
,
'B'
,
'J'
,
'E'
,
'C'
,
'T'
,
0
};
static
const
WCHAR
optionW
[]
=
{
'O'
,
'P'
,
'T'
,
'I'
,
'O'
,
'N'
,
0
};
static
const
WCHAR
scriptW
[]
=
{
'S'
,
'C'
,
'R'
,
'I'
,
'P'
,
'T'
,
0
};
static
const
WCHAR
selectW
[]
=
{
'S'
,
'E'
,
'L'
,
'E'
,
'C'
,
'T'
,
0
};
static
const
WCHAR
styleW
[]
=
{
'S'
,
'T'
,
'Y'
,
'L'
,
'E'
,
0
};
static
const
WCHAR
tableW
[]
=
{
'T'
,
'A'
,
'B'
,
'L'
,
'E'
,
0
};
static
const
WCHAR
textareaW
[]
=
{
'T'
,
'E'
,
'X'
,
'T'
,
'A'
,
'R'
,
'E'
,
'A'
,
0
};
static
const
WCHAR
trW
[]
=
{
'T'
,
'R'
,
0
};
typedef
struct
{
const
WCHAR
*
name
;
HTMLElement
*
(
*
constructor
)(
HTMLDocumentNode
*
,
nsIDOMHTMLElement
*
);
}
tag_desc_t
;
static
const
tag_desc_t
tag_descs
[]
=
{
{
aW
,
HTMLAnchorElement_Create
},
{
bodyW
,
HTMLBodyElement_Create
},
{
embedW
,
HTMLEmbedElement_Create
},
{
formW
,
HTMLFormElement_Create
},
{
frameW
,
HTMLFrameElement_Create
},
{
iframeW
,
HTMLIFrame_Create
},
{
imgW
,
HTMLImgElement_Create
},
{
inputW
,
HTMLInputElement_Create
},
{
objectW
,
HTMLObjectElement_Create
},
{
optionW
,
HTMLOptionElement_Create
},
{
scriptW
,
HTMLScriptElement_Create
},
{
selectW
,
HTMLSelectElement_Create
},
{
styleW
,
HTMLStyleElement_Create
},
{
tableW
,
HTMLTable_Create
},
{
textareaW
,
HTMLTextAreaElement_Create
},
{
trW
,
HTMLTableRow_Create
}
};
static
const
tag_desc_t
*
get_tag_desc
(
const
WCHAR
*
tag_name
)
{
DWORD
min
=
0
,
max
=
sizeof
(
tag_descs
)
/
sizeof
(
*
tag_descs
)
-
1
,
i
;
int
r
;
while
(
min
<=
max
)
{
i
=
(
min
+
max
)
/
2
;
r
=
strcmpW
(
tag_name
,
tag_descs
[
i
].
name
);
if
(
!
r
)
return
tag_descs
+
i
;
if
(
r
<
0
)
max
=
i
-
1
;
else
min
=
i
+
1
;
}
return
NULL
;
}
typedef
struct
typedef
struct
{
{
DispatchEx
dispex
;
DispatchEx
dispex
;
...
@@ -1663,24 +1724,9 @@ HTMLElement *HTMLElement_Create(HTMLDocumentNode *doc, nsIDOMNode *nsnode, BOOL
...
@@ -1663,24 +1724,9 @@ HTMLElement *HTMLElement_Create(HTMLDocumentNode *doc, nsIDOMNode *nsnode, BOOL
HTMLElement
*
ret
=
NULL
;
HTMLElement
*
ret
=
NULL
;
nsAString
class_name_str
;
nsAString
class_name_str
;
const
PRUnichar
*
class_name
;
const
PRUnichar
*
class_name
;
const
tag_desc_t
*
tag
;
nsresult
nsres
;
nsresult
nsres
;
static
const
WCHAR
wszA
[]
=
{
'A'
,
0
};
static
const
WCHAR
wszBODY
[]
=
{
'B'
,
'O'
,
'D'
,
'Y'
,
0
};
static
const
WCHAR
wszEMBED
[]
=
{
'E'
,
'M'
,
'B'
,
'E'
,
'D'
,
0
};
static
const
WCHAR
wszFORM
[]
=
{
'F'
,
'O'
,
'R'
,
'M'
,
0
};
static
const
WCHAR
wszFRAME
[]
=
{
'F'
,
'R'
,
'A'
,
'M'
,
'E'
,
0
};
static
const
WCHAR
wszIFRAME
[]
=
{
'I'
,
'F'
,
'R'
,
'A'
,
'M'
,
'E'
,
0
};
static
const
WCHAR
wszIMG
[]
=
{
'I'
,
'M'
,
'G'
,
0
};
static
const
WCHAR
wszINPUT
[]
=
{
'I'
,
'N'
,
'P'
,
'U'
,
'T'
,
0
};
static
const
WCHAR
wszOBJECT
[]
=
{
'O'
,
'B'
,
'J'
,
'E'
,
'C'
,
'T'
,
0
};
static
const
WCHAR
wszOPTION
[]
=
{
'O'
,
'P'
,
'T'
,
'I'
,
'O'
,
'N'
,
0
};
static
const
WCHAR
wszSCRIPT
[]
=
{
'S'
,
'C'
,
'R'
,
'I'
,
'P'
,
'T'
,
0
};
static
const
WCHAR
wszSELECT
[]
=
{
'S'
,
'E'
,
'L'
,
'E'
,
'C'
,
'T'
,
0
};
static
const
WCHAR
wszSTYLE
[]
=
{
'S'
,
'T'
,
'Y'
,
'L'
,
'E'
,
0
};
static
const
WCHAR
wszTABLE
[]
=
{
'T'
,
'A'
,
'B'
,
'L'
,
'E'
,
0
};
static
const
WCHAR
wszTR
[]
=
{
'T'
,
'R'
,
0
};
static
const
WCHAR
wszTEXTAREA
[]
=
{
'T'
,
'E'
,
'X'
,
'T'
,
'A'
,
'R'
,
'E'
,
'A'
,
0
};
nsres
=
nsIDOMNode_QueryInterface
(
nsnode
,
&
IID_nsIDOMHTMLElement
,
(
void
**
)
&
nselem
);
nsres
=
nsIDOMNode_QueryInterface
(
nsnode
,
&
IID_nsIDOMHTMLElement
,
(
void
**
)
&
nselem
);
if
(
NS_FAILED
(
nsres
))
if
(
NS_FAILED
(
nsres
))
...
@@ -1691,42 +1737,12 @@ HTMLElement *HTMLElement_Create(HTMLDocumentNode *doc, nsIDOMNode *nsnode, BOOL
...
@@ -1691,42 +1737,12 @@ HTMLElement *HTMLElement_Create(HTMLDocumentNode *doc, nsIDOMNode *nsnode, BOOL
nsAString_GetData
(
&
class_name_str
,
&
class_name
);
nsAString_GetData
(
&
class_name_str
,
&
class_name
);
if
(
!
strcmpW
(
class_name
,
wszA
))
tag
=
get_tag_desc
(
class_name
);
ret
=
HTMLAnchorElement_Create
(
doc
,
nselem
);
if
(
tag
)
{
else
if
(
!
strcmpW
(
class_name
,
wszBODY
))
ret
=
tag
->
constructor
(
doc
,
nselem
);
ret
=
HTMLBodyElement_Create
(
doc
,
nselem
);
}
else
if
(
use_generic
)
{
else
if
(
!
strcmpW
(
class_name
,
wszEMBED
))
ret
=
HTMLEmbedElement_Create
(
doc
,
nselem
);
else
if
(
!
strcmpW
(
class_name
,
wszFORM
))
ret
=
HTMLFormElement_Create
(
doc
,
nselem
);
else
if
(
!
strcmpW
(
class_name
,
wszFRAME
))
ret
=
HTMLFrameElement_Create
(
doc
,
nselem
);
else
if
(
!
strcmpW
(
class_name
,
wszIFRAME
))
ret
=
HTMLIFrame_Create
(
doc
,
nselem
);
else
if
(
!
strcmpW
(
class_name
,
wszIMG
))
ret
=
HTMLImgElement_Create
(
doc
,
nselem
);
else
if
(
!
strcmpW
(
class_name
,
wszINPUT
))
ret
=
HTMLInputElement_Create
(
doc
,
nselem
);
else
if
(
!
strcmpW
(
class_name
,
wszOBJECT
))
ret
=
HTMLObjectElement_Create
(
doc
,
nselem
);
else
if
(
!
strcmpW
(
class_name
,
wszOPTION
))
ret
=
HTMLOptionElement_Create
(
doc
,
nselem
);
else
if
(
!
strcmpW
(
class_name
,
wszSCRIPT
))
ret
=
HTMLScriptElement_Create
(
doc
,
nselem
);
else
if
(
!
strcmpW
(
class_name
,
wszSELECT
))
ret
=
HTMLSelectElement_Create
(
doc
,
nselem
);
else
if
(
!
strcmpW
(
class_name
,
wszSTYLE
))
ret
=
HTMLStyleElement_Create
(
doc
,
nselem
);
else
if
(
!
strcmpW
(
class_name
,
wszTABLE
))
ret
=
HTMLTable_Create
(
doc
,
nselem
);
else
if
(
!
strcmpW
(
class_name
,
wszTR
))
ret
=
HTMLTableRow_Create
(
doc
,
nselem
);
else
if
(
!
strcmpW
(
class_name
,
wszTEXTAREA
))
ret
=
HTMLTextAreaElement_Create
(
doc
,
nselem
);
else
if
(
use_generic
)
ret
=
HTMLGenericElement_Create
(
doc
,
nselem
);
ret
=
HTMLGenericElement_Create
(
doc
,
nselem
);
}
else
{
if
(
!
ret
)
{
ret
=
heap_alloc_zero
(
sizeof
(
HTMLElement
));
ret
=
heap_alloc_zero
(
sizeof
(
HTMLElement
));
HTMLElement_Init
(
ret
,
doc
,
nselem
,
&
HTMLElement_dispex
);
HTMLElement_Init
(
ret
,
doc
,
nselem
,
&
HTMLElement_dispex
);
ret
->
node
.
vtbl
=
&
HTMLElementImplVtbl
;
ret
->
node
.
vtbl
=
&
HTMLElementImplVtbl
;
...
...
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