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
b96df325
Commit
b96df325
authored
Jul 19, 2007
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Abstract the entity array type as we need it for assemblies too.
parent
c496dd4e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
48 additions
and
38 deletions
+48
-38
actctx.c
dlls/ntdll/actctx.c
+48
-38
No files found.
dlls/ntdll/actctx.c
View file @
b96df325
...
@@ -122,13 +122,18 @@ struct entity
...
@@ -122,13 +122,18 @@ struct entity
}
u
;
}
u
;
};
};
struct
entity_array
{
struct
entity
*
base
;
unsigned
int
num
;
unsigned
int
allocated
;
};
struct
dll_redirect
struct
dll_redirect
{
{
WCHAR
*
name
;
WCHAR
*
name
;
WCHAR
*
hash
;
WCHAR
*
hash
;
struct
entity
*
entities
;
struct
entity_array
entities
;
unsigned
int
num_entities
;
unsigned
int
allocated_entities
;
};
};
enum
assembly_type
enum
assembly_type
...
@@ -302,56 +307,62 @@ static void free_assembly_identity(struct assembly_identity *ai)
...
@@ -302,56 +307,62 @@ static void free_assembly_identity(struct assembly_identity *ai)
RtlFreeHeap
(
GetProcessHeap
(),
0
,
ai
->
language
);
RtlFreeHeap
(
GetProcessHeap
(),
0
,
ai
->
language
);
}
}
static
struct
entity
*
add_entity
(
struct
dll_redirect
*
dll
,
DWORD
kind
)
static
struct
entity
*
add_entity
(
struct
entity_array
*
array
,
DWORD
kind
)
{
{
struct
entity
*
entity
;
struct
entity
*
entity
;
if
(
dll
->
num_entities
==
dll
->
allocated_entities
)
if
(
array
->
num
==
array
->
allocated
)
{
{
void
*
ptr
;
void
*
ptr
;
unsigned
int
new_count
;
unsigned
int
new_count
;
if
(
dll
->
entities
)
if
(
array
->
base
)
{
{
new_count
=
dll
->
allocated_entities
*
2
;
new_count
=
array
->
allocated
*
2
;
ptr
=
RtlReAllocateHeap
(
GetProcessHeap
(),
HEAP_ZERO_MEMORY
,
ptr
=
RtlReAllocateHeap
(
GetProcessHeap
(),
HEAP_ZERO_MEMORY
,
dll
->
entities
,
new_count
*
sizeof
(
*
dll
->
entities
)
);
array
->
base
,
new_count
*
sizeof
(
*
array
->
base
)
);
}
}
else
else
{
{
new_count
=
4
;
new_count
=
4
;
ptr
=
RtlAllocateHeap
(
GetProcessHeap
(),
HEAP_ZERO_MEMORY
,
new_count
*
sizeof
(
*
dll
->
entities
)
);
ptr
=
RtlAllocateHeap
(
GetProcessHeap
(),
HEAP_ZERO_MEMORY
,
new_count
*
sizeof
(
*
array
->
base
)
);
}
}
if
(
!
ptr
)
return
NULL
;
if
(
!
ptr
)
return
NULL
;
dll
->
entities
=
ptr
;
array
->
base
=
ptr
;
dll
->
allocated_entities
=
new_count
;
array
->
allocated
=
new_count
;
}
}
entity
=
&
dll
->
entities
[
dll
->
num_entities
++
];
entity
=
&
array
->
base
[
array
->
num
++
];
entity
->
kind
=
kind
;
entity
->
kind
=
kind
;
return
entity
;
return
entity
;
}
}
static
void
free_entity
(
struct
entity
*
entit
y
)
static
void
free_entity
_array
(
struct
entity_array
*
arra
y
)
{
{
switch
(
entity
->
kind
)
unsigned
int
i
;
for
(
i
=
0
;
i
<
array
->
num
;
i
++
)
{
{
case
ACTIVATION_CONTEXT_SECTION_COM_SERVER_REDIRECTION
:
struct
entity
*
entity
=
&
array
->
base
[
i
];
RtlFreeHeap
(
GetProcessHeap
(),
0
,
entity
->
u
.
comclass
.
clsid
);
switch
(
entity
->
kind
)
break
;
{
case
ACTIVATION_CONTEXT_SECTION_COM_INTERFACE_REDIRECTION
:
case
ACTIVATION_CONTEXT_SECTION_COM_SERVER_REDIRECTION
:
RtlFreeHeap
(
GetProcessHeap
(),
0
,
entity
->
u
.
proxy
.
iid
);
RtlFreeHeap
(
GetProcessHeap
(),
0
,
entity
->
u
.
comclass
.
clsid
);
RtlFreeHeap
(
GetProcessHeap
(),
0
,
entity
->
u
.
proxy
.
name
);
break
;
break
;
case
ACTIVATION_CONTEXT_SECTION_COM_INTERFACE_REDIRECTION
:
case
ACTIVATION_CONTEXT_SECTION_COM_TYPE_LIBRARY_REDIRECTION
:
RtlFreeHeap
(
GetProcessHeap
(),
0
,
entity
->
u
.
proxy
.
iid
);
RtlFreeHeap
(
GetProcessHeap
(),
0
,
entity
->
u
.
typelib
.
tlbid
);
RtlFreeHeap
(
GetProcessHeap
(),
0
,
entity
->
u
.
proxy
.
name
);
RtlFreeHeap
(
GetProcessHeap
(),
0
,
entity
->
u
.
typelib
.
version
);
break
;
RtlFreeHeap
(
GetProcessHeap
(),
0
,
entity
->
u
.
typelib
.
helpdir
);
case
ACTIVATION_CONTEXT_SECTION_COM_TYPE_LIBRARY_REDIRECTION
:
break
;
RtlFreeHeap
(
GetProcessHeap
(),
0
,
entity
->
u
.
typelib
.
tlbid
);
case
ACTIVATION_CONTEXT_SECTION_WINDOW_CLASS_REDIRECTION
:
RtlFreeHeap
(
GetProcessHeap
(),
0
,
entity
->
u
.
typelib
.
version
);
RtlFreeHeap
(
GetProcessHeap
(),
0
,
entity
->
u
.
class
.
name
);
RtlFreeHeap
(
GetProcessHeap
(),
0
,
entity
->
u
.
typelib
.
helpdir
);
break
;
break
;
default:
case
ACTIVATION_CONTEXT_SECTION_WINDOW_CLASS_REDIRECTION
:
FIXME
(
"Unknown entity kind %d
\n
"
,
entity
->
kind
);
RtlFreeHeap
(
GetProcessHeap
(),
0
,
entity
->
u
.
class
.
name
);
break
;
default:
FIXME
(
"Unknown entity kind %d
\n
"
,
entity
->
kind
);
}
}
}
RtlFreeHeap
(
GetProcessHeap
(),
0
,
array
->
base
);
}
}
static
BOOL
add_dependent_assembly_id
(
struct
actctx_loader
*
acl
,
static
BOOL
add_dependent_assembly_id
(
struct
actctx_loader
*
acl
,
...
@@ -413,7 +424,7 @@ static void actctx_release( ACTIVATION_CONTEXT *actctx )
...
@@ -413,7 +424,7 @@ static void actctx_release( ACTIVATION_CONTEXT *actctx )
{
{
if
(
interlocked_xchg_add
(
&
actctx
->
ref_count
,
-
1
)
==
1
)
if
(
interlocked_xchg_add
(
&
actctx
->
ref_count
,
-
1
)
==
1
)
{
{
unsigned
int
i
,
j
,
k
;
unsigned
int
i
,
j
;
for
(
i
=
0
;
i
<
actctx
->
num_assemblies
;
i
++
)
for
(
i
=
0
;
i
<
actctx
->
num_assemblies
;
i
++
)
{
{
...
@@ -421,8 +432,7 @@ static void actctx_release( ACTIVATION_CONTEXT *actctx )
...
@@ -421,8 +432,7 @@ static void actctx_release( ACTIVATION_CONTEXT *actctx )
for
(
j
=
0
;
j
<
assembly
->
num_dlls
;
j
++
)
for
(
j
=
0
;
j
<
assembly
->
num_dlls
;
j
++
)
{
{
struct
dll_redirect
*
dll
=
&
assembly
->
dlls
[
j
];
struct
dll_redirect
*
dll
=
&
assembly
->
dlls
[
j
];
for
(
k
=
0
;
k
<
dll
->
num_entities
;
k
++
)
free_entity
(
&
dll
->
entities
[
k
]);
free_entity_array
(
&
dll
->
entities
);
RtlFreeHeap
(
GetProcessHeap
(),
0
,
dll
->
entities
);
RtlFreeHeap
(
GetProcessHeap
(),
0
,
dll
->
name
);
RtlFreeHeap
(
GetProcessHeap
(),
0
,
dll
->
name
);
RtlFreeHeap
(
GetProcessHeap
(),
0
,
dll
->
hash
);
RtlFreeHeap
(
GetProcessHeap
(),
0
,
dll
->
hash
);
}
}
...
@@ -669,7 +679,7 @@ static BOOL parse_com_class_elem(xmlbuf_t* xmlbuf, struct dll_redirect* dll)
...
@@ -669,7 +679,7 @@ static BOOL parse_com_class_elem(xmlbuf_t* xmlbuf, struct dll_redirect* dll)
BOOL
end
=
FALSE
,
error
;
BOOL
end
=
FALSE
,
error
;
struct
entity
*
entity
;
struct
entity
*
entity
;
entity
=
add_entity
(
dll
,
ACTIVATION_CONTEXT_SECTION_COM_SERVER_REDIRECTION
);
entity
=
add_entity
(
&
dll
->
entities
,
ACTIVATION_CONTEXT_SECTION_COM_SERVER_REDIRECTION
);
while
(
next_xml_attr
(
xmlbuf
,
&
attr_name
,
&
attr_value
,
&
error
,
&
end
))
while
(
next_xml_attr
(
xmlbuf
,
&
attr_name
,
&
attr_value
,
&
error
,
&
end
))
{
{
...
@@ -695,7 +705,7 @@ static BOOL parse_cominterface_proxy_stub_elem(xmlbuf_t* xmlbuf, struct dll_redi
...
@@ -695,7 +705,7 @@ static BOOL parse_cominterface_proxy_stub_elem(xmlbuf_t* xmlbuf, struct dll_redi
BOOL
end
=
FALSE
,
error
;
BOOL
end
=
FALSE
,
error
;
struct
entity
*
entity
;
struct
entity
*
entity
;
entity
=
add_entity
(
dll
,
ACTIVATION_CONTEXT_SECTION_COM_INTERFACE_REDIRECTION
);
entity
=
add_entity
(
&
dll
->
entities
,
ACTIVATION_CONTEXT_SECTION_COM_INTERFACE_REDIRECTION
);
while
(
next_xml_attr
(
xmlbuf
,
&
attr_name
,
&
attr_value
,
&
error
,
&
end
))
while
(
next_xml_attr
(
xmlbuf
,
&
attr_name
,
&
attr_value
,
&
error
,
&
end
))
{
{
...
@@ -725,7 +735,7 @@ static BOOL parse_typelib_elem(xmlbuf_t* xmlbuf, struct dll_redirect* dll)
...
@@ -725,7 +735,7 @@ static BOOL parse_typelib_elem(xmlbuf_t* xmlbuf, struct dll_redirect* dll)
BOOL
end
=
FALSE
,
error
;
BOOL
end
=
FALSE
,
error
;
struct
entity
*
entity
;
struct
entity
*
entity
;
entity
=
add_entity
(
dll
,
ACTIVATION_CONTEXT_SECTION_COM_TYPE_LIBRARY_REDIRECTION
);
entity
=
add_entity
(
&
dll
->
entities
,
ACTIVATION_CONTEXT_SECTION_COM_TYPE_LIBRARY_REDIRECTION
);
while
(
next_xml_attr
(
xmlbuf
,
&
attr_name
,
&
attr_value
,
&
error
,
&
end
))
while
(
next_xml_attr
(
xmlbuf
,
&
attr_name
,
&
attr_value
,
&
error
,
&
end
))
{
{
...
@@ -759,7 +769,7 @@ static BOOL parse_window_class_elem(xmlbuf_t* xmlbuf, struct dll_redirect* dll)
...
@@ -759,7 +769,7 @@ static BOOL parse_window_class_elem(xmlbuf_t* xmlbuf, struct dll_redirect* dll)
BOOL
end
=
FALSE
,
ret
=
TRUE
;
BOOL
end
=
FALSE
,
ret
=
TRUE
;
struct
entity
*
entity
;
struct
entity
*
entity
;
entity
=
add_entity
(
dll
,
ACTIVATION_CONTEXT_SECTION_WINDOW_CLASS_REDIRECTION
);
entity
=
add_entity
(
&
dll
->
entities
,
ACTIVATION_CONTEXT_SECTION_WINDOW_CLASS_REDIRECTION
);
if
(
!
parse_expect_no_attr
(
xmlbuf
,
&
end
))
return
FALSE
;
if
(
!
parse_expect_no_attr
(
xmlbuf
,
&
end
))
return
FALSE
;
if
(
end
)
return
FALSE
;
if
(
end
)
return
FALSE
;
...
...
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