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
21ced8dd
Commit
21ced8dd
authored
Jul 20, 2010
by
Piotr Caban
Committed by
Alexandre Julliard
Jul 20, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wininet: Allow HTTPREQ_ReadFileEx read more then one data chunk.
parent
0736ca71
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
96 additions
and
11 deletions
+96
-11
http.c
dlls/wininet/http.c
+94
-11
internet.h
dlls/wininet/internet.h
+2
-0
No files found.
dlls/wininet/http.c
View file @
21ced8dd
...
...
@@ -2241,7 +2241,18 @@ done:
static
DWORD
HTTPREQ_ReadFile
(
object_header_t
*
hdr
,
void
*
buffer
,
DWORD
size
,
DWORD
*
read
)
{
http_request_t
*
req
=
(
http_request_t
*
)
hdr
;
return
HTTPREQ_Read
(
req
,
buffer
,
size
,
read
,
TRUE
);
DWORD
res
;
EnterCriticalSection
(
&
req
->
read_section
);
if
(
hdr
->
dwError
==
INTERNET_HANDLE_IN_USE
)
hdr
->
dwError
=
ERROR_INTERNET_INTERNAL_ERROR
;
res
=
HTTPREQ_Read
(
req
,
buffer
,
size
,
read
,
TRUE
);
if
(
res
==
ERROR_SUCCESS
)
res
=
hdr
->
dwError
;
LeaveCriticalSection
(
&
req
->
read_section
);
return
res
;
}
static
void
HTTPREQ_AsyncReadFileExAProc
(
WORKREQUEST
*
workRequest
)
...
...
@@ -2268,7 +2279,7 @@ static DWORD HTTPREQ_ReadFileExA(object_header_t *hdr, INTERNET_BUFFERSA *buffer
DWORD
flags
,
DWORD_PTR
context
)
{
http_request_t
*
req
=
(
http_request_t
*
)
hdr
;
DWORD
res
;
DWORD
res
,
size
,
read
,
error
=
ERROR_SUCCESS
;
if
(
flags
&
~
(
IRF_ASYNC
|
IRF_NO_WAIT
))
FIXME
(
"these dwFlags aren't implemented: 0x%x
\n
"
,
flags
&
~
(
IRF_ASYNC
|
IRF_NO_WAIT
));
...
...
@@ -2288,6 +2299,7 @@ static DWORD HTTPREQ_ReadFileExA(object_header_t *hdr, INTERNET_BUFFERSA *buffer
{
res
=
HTTPREQ_Read
(
req
,
buffers
->
lpvBuffer
,
buffers
->
dwBufferLength
,
&
buffers
->
dwBufferLength
,
FALSE
);
size
=
buffers
->
dwBufferLength
;
LeaveCriticalSection
(
&
req
->
read_section
);
goto
done
;
}
...
...
@@ -2303,17 +2315,52 @@ static DWORD HTTPREQ_ReadFileExA(object_header_t *hdr, INTERNET_BUFFERSA *buffer
return
ERROR_IO_PENDING
;
}
res
=
HTTPREQ_Read
(
req
,
buffers
->
lpvBuffer
,
buffers
->
dwBufferLength
,
&
buffers
->
dwBufferLength
,
!
(
flags
&
IRF_NO_WAIT
));
read
=
0
;
size
=
buffers
->
dwBufferLength
;
EnterCriticalSection
(
&
req
->
read_section
);
if
(
hdr
->
dwError
==
ERROR_SUCCESS
)
hdr
->
dwError
=
INTERNET_HANDLE_IN_USE
;
else
if
(
hdr
->
dwError
==
INTERNET_HANDLE_IN_USE
)
hdr
->
dwError
=
ERROR_INTERNET_INTERNAL_ERROR
;
while
(
1
)
{
res
=
HTTPREQ_Read
(
req
,
(
char
*
)
buffers
->
lpvBuffer
+
read
,
size
-
read
,
&
buffers
->
dwBufferLength
,
!
(
flags
&
IRF_NO_WAIT
));
if
(
res
==
ERROR_SUCCESS
)
read
+=
buffers
->
dwBufferLength
;
else
break
;
if
(
!
req
->
read_chunked
||
read
==
size
||
req
->
dwContentLength
!=
req
->
dwContentRead
||
!
req
->
dwContentLength
||
(
req
->
gzip_stream
&&
req
->
gzip_stream
->
end_of_data
))
break
;
LeaveCriticalSection
(
&
req
->
read_section
);
INTERNET_SendCallback
(
&
req
->
hdr
,
req
->
hdr
.
dwContext
,
INTERNET_STATUS_RESPONSE_RECEIVED
,
&
buffers
->
dwBufferLength
,
sizeof
(
buffers
->
dwBufferLength
));
INTERNET_SendCallback
(
&
req
->
hdr
,
req
->
hdr
.
dwContext
,
INTERNET_STATUS_RECEIVING_RESPONSE
,
NULL
,
0
);
EnterCriticalSection
(
&
req
->
read_section
);
}
if
(
hdr
->
dwError
==
INTERNET_HANDLE_IN_USE
)
hdr
->
dwError
=
ERROR_SUCCESS
;
else
error
=
hdr
->
dwError
;
LeaveCriticalSection
(
&
req
->
read_section
);
size
=
buffers
->
dwBufferLength
;
buffers
->
dwBufferLength
=
read
;
done:
if
(
res
==
ERROR_SUCCESS
)
{
DWORD
size
=
buffers
->
dwBufferLength
;
INTERNET_SendCallback
(
&
req
->
hdr
,
req
->
hdr
.
dwContext
,
INTERNET_STATUS_RESPONSE_RECEIVED
,
&
size
,
sizeof
(
size
));
}
return
res
;
return
res
==
ERROR_SUCCESS
?
error
:
res
;
}
static
void
HTTPREQ_AsyncReadFileExWProc
(
WORKREQUEST
*
workRequest
)
...
...
@@ -2341,7 +2388,7 @@ static DWORD HTTPREQ_ReadFileExW(object_header_t *hdr, INTERNET_BUFFERSW *buffer
{
http_request_t
*
req
=
(
http_request_t
*
)
hdr
;
DWORD
res
;
DWORD
res
,
size
,
read
,
error
=
ERROR_SUCCESS
;
if
(
flags
&
~
(
IRF_ASYNC
|
IRF_NO_WAIT
))
FIXME
(
"these dwFlags aren't implemented: 0x%x
\n
"
,
flags
&
~
(
IRF_ASYNC
|
IRF_NO_WAIT
));
...
...
@@ -2361,6 +2408,7 @@ static DWORD HTTPREQ_ReadFileExW(object_header_t *hdr, INTERNET_BUFFERSW *buffer
{
res
=
HTTPREQ_Read
(
req
,
buffers
->
lpvBuffer
,
buffers
->
dwBufferLength
,
&
buffers
->
dwBufferLength
,
FALSE
);
size
=
buffers
->
dwBufferLength
;
LeaveCriticalSection
(
&
req
->
read_section
);
goto
done
;
}
...
...
@@ -2376,17 +2424,52 @@ static DWORD HTTPREQ_ReadFileExW(object_header_t *hdr, INTERNET_BUFFERSW *buffer
return
ERROR_IO_PENDING
;
}
res
=
HTTPREQ_Read
(
req
,
buffers
->
lpvBuffer
,
buffers
->
dwBufferLength
,
&
buffers
->
dwBufferLength
,
!
(
flags
&
IRF_NO_WAIT
));
read
=
0
;
size
=
buffers
->
dwBufferLength
;
EnterCriticalSection
(
&
req
->
read_section
);
if
(
hdr
->
dwError
==
ERROR_SUCCESS
)
hdr
->
dwError
=
INTERNET_HANDLE_IN_USE
;
else
if
(
hdr
->
dwError
==
INTERNET_HANDLE_IN_USE
)
hdr
->
dwError
=
ERROR_INTERNET_INTERNAL_ERROR
;
while
(
1
)
{
res
=
HTTPREQ_Read
(
req
,
(
char
*
)
buffers
->
lpvBuffer
+
read
,
size
-
read
,
&
buffers
->
dwBufferLength
,
!
(
flags
&
IRF_NO_WAIT
));
if
(
res
==
ERROR_SUCCESS
)
read
+=
buffers
->
dwBufferLength
;
else
break
;
if
(
!
req
->
read_chunked
||
read
==
size
||
req
->
dwContentLength
!=
req
->
dwContentRead
||
!
req
->
dwContentLength
||
(
req
->
gzip_stream
&&
req
->
gzip_stream
->
end_of_data
))
break
;
LeaveCriticalSection
(
&
req
->
read_section
);
INTERNET_SendCallback
(
&
req
->
hdr
,
req
->
hdr
.
dwContext
,
INTERNET_STATUS_RESPONSE_RECEIVED
,
&
buffers
->
dwBufferLength
,
sizeof
(
buffers
->
dwBufferLength
));
INTERNET_SendCallback
(
&
req
->
hdr
,
req
->
hdr
.
dwContext
,
INTERNET_STATUS_RECEIVING_RESPONSE
,
NULL
,
0
);
EnterCriticalSection
(
&
req
->
read_section
);
}
if
(
hdr
->
dwError
==
INTERNET_HANDLE_IN_USE
)
hdr
->
dwError
=
ERROR_SUCCESS
;
else
error
=
hdr
->
dwError
;
LeaveCriticalSection
(
&
req
->
read_section
);
size
=
buffers
->
dwBufferLength
;
buffers
->
dwBufferLength
=
read
;
done:
if
(
res
==
ERROR_SUCCESS
)
{
DWORD
size
=
buffers
->
dwBufferLength
;
INTERNET_SendCallback
(
&
req
->
hdr
,
req
->
hdr
.
dwContext
,
INTERNET_STATUS_RESPONSE_RECEIVED
,
&
size
,
sizeof
(
size
));
}
return
res
;
return
res
==
ERROR_SUCCESS
?
error
:
res
;
}
static
DWORD
HTTPREQ_WriteFile
(
object_header_t
*
hdr
,
const
void
*
buffer
,
DWORD
size
,
DWORD
*
written
)
...
...
dlls/wininet/internet.h
View file @
21ced8dd
...
...
@@ -169,6 +169,8 @@ typedef struct {
DWORD
(
*
FindNextFileW
)(
object_header_t
*
,
void
*
);
}
object_vtbl_t
;
#define INTERNET_HANDLE_IN_USE 1
struct
_object_header_t
{
WH_TYPE
htype
;
...
...
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