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
506dc372
Commit
506dc372
authored
Aug 24, 2010
by
Thomas Mullaly
Committed by
Alexandre Julliard
Aug 27, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
urlmon: Some IUri's don't always have an absolute URI property.
parent
876dcc96
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
69 additions
and
9 deletions
+69
-9
uri.c
dlls/urlmon/tests/uri.c
+30
-0
uri.c
dlls/urlmon/uri.c
+39
-9
No files found.
dlls/urlmon/tests/uri.c
View file @
506dc372
...
@@ -3542,6 +3542,36 @@ static const uri_properties uri_tests[] = {
...
@@ -3542,6 +3542,36 @@ static const uri_properties uri_tests[] = {
{
URL_SCHEME_UNKNOWN
,
S_OK
,
FALSE
},
{
URL_SCHEME_UNKNOWN
,
S_OK
,
FALSE
},
{
URLZONE_INVALID
,
E_NOTIMPL
,
FALSE
}
{
URLZONE_INVALID
,
E_NOTIMPL
,
FALSE
}
}
}
},
/* Since file URLs are usually hierarchical, it returns an empty string
* for the absolute URI property since it was declared as an opaque URI.
*/
{
"file:index.html"
,
0
,
S_OK
,
FALSE
,
Uri_HAS_DISPLAY_URI
|
Uri_HAS_EXTENSION
|
Uri_HAS_PATH
|
Uri_HAS_PATH_AND_QUERY
|
Uri_HAS_RAW_URI
|
Uri_HAS_SCHEME_NAME
|
Uri_HAS_HOST_TYPE
|
Uri_HAS_SCHEME
,
FALSE
,
{
{
""
,
S_FALSE
,
FALSE
},
{
""
,
S_FALSE
,
FALSE
},
{
"file:index.html"
,
S_OK
,
FALSE
},
{
""
,
S_FALSE
,
FALSE
},
{
".html"
,
S_OK
,
FALSE
},
{
""
,
S_FALSE
,
FALSE
},
{
""
,
S_FALSE
,
FALSE
},
{
""
,
S_FALSE
,
FALSE
},
{
"index.html"
,
S_OK
,
FALSE
},
{
"index.html"
,
S_OK
,
FALSE
},
{
""
,
S_FALSE
,
FALSE
},
{
"file:index.html"
,
S_OK
,
FALSE
},
{
"file"
,
S_OK
,
FALSE
},
{
""
,
S_FALSE
,
FALSE
},
{
""
,
S_FALSE
,
FALSE
}
},
{
{
0
,
S_OK
,
FALSE
},
{
0
,
S_FALSE
,
FALSE
},
{
URL_SCHEME_FILE
,
S_OK
,
FALSE
},
{
URLZONE_INVALID
,
E_NOTIMPL
,
FALSE
}
}
}
}
};
};
...
...
dlls/urlmon/uri.c
View file @
506dc372
...
@@ -40,6 +40,7 @@ typedef struct {
...
@@ -40,6 +40,7 @@ typedef struct {
WCHAR
*
canon_uri
;
WCHAR
*
canon_uri
;
DWORD
canon_size
;
DWORD
canon_size
;
DWORD
canon_len
;
DWORD
canon_len
;
BOOL
display_absolute
;
INT
scheme_start
;
INT
scheme_start
;
DWORD
scheme_len
;
DWORD
scheme_len
;
...
@@ -293,6 +294,15 @@ static inline BOOL is_path_delim(WCHAR val) {
...
@@ -293,6 +294,15 @@ static inline BOOL is_path_delim(WCHAR val) {
return
(
!
val
||
val
==
'#'
||
val
==
'?'
);
return
(
!
val
||
val
==
'#'
||
val
==
'?'
);
}
}
/* List of schemes types Windows seems to expect to be hierarchical. */
static
inline
BOOL
is_hierarchical_scheme
(
URL_SCHEME
type
)
{
return
(
type
==
URL_SCHEME_HTTP
||
type
==
URL_SCHEME_FTP
||
type
==
URL_SCHEME_GOPHER
||
type
==
URL_SCHEME_NNTP
||
type
==
URL_SCHEME_TELNET
||
type
==
URL_SCHEME_WAIS
||
type
==
URL_SCHEME_FILE
||
type
==
URL_SCHEME_HTTPS
||
type
==
URL_SCHEME_RES
);
}
/* Checks if the two Uri's are logically equivalent. It's a simple
/* Checks if the two Uri's are logically equivalent. It's a simple
* comparison, since they are both of type Uri, and it can access
* comparison, since they are both of type Uri, and it can access
* the properties of each Uri directly without the need to go
* the properties of each Uri directly without the need to go
...
@@ -1861,7 +1871,7 @@ static BOOL parse_hierpart(const WCHAR **ptr, parse_data *data, DWORD flags) {
...
@@ -1861,7 +1871,7 @@ static BOOL parse_hierpart(const WCHAR **ptr, parse_data *data, DWORD flags) {
* anyways. Wildcard Schemes are always considered hierarchical
* anyways. Wildcard Schemes are always considered hierarchical
*/
*/
if
(
data
->
scheme_type
==
URL_SCHEME_WILDCARD
||
if
(
data
->
scheme_type
==
URL_SCHEME_WILDCARD
||
data
->
scheme_type
==
URL_SCHEME_FILE
||
(
data
->
scheme_type
==
URL_SCHEME_FILE
&&
is_implicit_file_path
(
*
ptr
))
||
(
!
data
->
is_relative
&&
check_hierarchical
(
ptr
)))
{
(
!
data
->
is_relative
&&
check_hierarchical
(
ptr
)))
{
/* Only treat it as a hierarchical URI if the scheme_type is known or
/* Only treat it as a hierarchical URI if the scheme_type is known or
* the Uri_CREATE_NO_CRACK_UNKNOWN_SCHEMES flag is not set.
* the Uri_CREATE_NO_CRACK_UNKNOWN_SCHEMES flag is not set.
...
@@ -2798,6 +2808,8 @@ static BOOL canonicalize_path_opaque(const parse_data *data, Uri *uri, DWORD fla
...
@@ -2798,6 +2808,8 @@ static BOOL canonicalize_path_opaque(const parse_data *data, Uri *uri, DWORD fla
* URI is opaque it canonicalizes the path of the URI.
* URI is opaque it canonicalizes the path of the URI.
*/
*/
static
BOOL
canonicalize_hierpart
(
const
parse_data
*
data
,
Uri
*
uri
,
DWORD
flags
,
BOOL
computeOnly
)
{
static
BOOL
canonicalize_hierpart
(
const
parse_data
*
data
,
Uri
*
uri
,
DWORD
flags
,
BOOL
computeOnly
)
{
uri
->
display_absolute
=
TRUE
;
if
(
!
data
->
is_opaque
)
{
if
(
!
data
->
is_opaque
)
{
/* "//" is only added for non-wildcard scheme types. */
/* "//" is only added for non-wildcard scheme types. */
if
(
data
->
scheme_type
!=
URL_SCHEME_WILDCARD
)
{
if
(
data
->
scheme_type
!=
URL_SCHEME_WILDCARD
)
{
...
@@ -2829,6 +2841,12 @@ static BOOL canonicalize_hierpart(const parse_data *data, Uri *uri, DWORD flags,
...
@@ -2829,6 +2841,12 @@ static BOOL canonicalize_hierpart(const parse_data *data, Uri *uri, DWORD flags,
uri
->
authority_len
=
0
;
uri
->
authority_len
=
0
;
uri
->
domain_offset
=
-
1
;
uri
->
domain_offset
=
-
1
;
if
(
is_hierarchical_scheme
(
data
->
scheme_type
))
/* Absolute URIs aren't displayed for known scheme types
* which should be hierarchical URIs.
*/
uri
->
display_absolute
=
FALSE
;
if
(
!
canonicalize_path_opaque
(
data
,
uri
,
flags
,
computeOnly
))
if
(
!
canonicalize_path_opaque
(
data
,
uri
,
flags
,
computeOnly
))
return
FALSE
;
return
FALSE
;
}
}
...
@@ -3189,12 +3207,16 @@ static HRESULT WINAPI Uri_GetPropertyBSTR(IUri *iface, Uri_PROPERTY uriProp, BST
...
@@ -3189,12 +3207,16 @@ static HRESULT WINAPI Uri_GetPropertyBSTR(IUri *iface, Uri_PROPERTY uriProp, BST
switch
(
uriProp
)
{
switch
(
uriProp
)
{
case
Uri_PROPERTY_ABSOLUTE_URI
:
case
Uri_PROPERTY_ABSOLUTE_URI
:
*
pbstrProperty
=
SysAllocString
(
This
->
canon_uri
);
if
(
!
This
->
display_absolute
)
{
*
pbstrProperty
=
SysAllocStringLen
(
NULL
,
0
);
hres
=
S_FALSE
;
}
else
{
*
pbstrProperty
=
SysAllocString
(
This
->
canon_uri
);
hres
=
S_OK
;
}
if
(
!
(
*
pbstrProperty
))
if
(
!
(
*
pbstrProperty
))
hres
=
E_OUTOFMEMORY
;
hres
=
E_OUTOFMEMORY
;
else
hres
=
S_OK
;
break
;
break
;
case
Uri_PROPERTY_AUTHORITY
:
case
Uri_PROPERTY_AUTHORITY
:
...
@@ -3433,8 +3455,14 @@ static HRESULT WINAPI Uri_GetPropertyLength(IUri *iface, Uri_PROPERTY uriProp, D
...
@@ -3433,8 +3455,14 @@ static HRESULT WINAPI Uri_GetPropertyLength(IUri *iface, Uri_PROPERTY uriProp, D
switch
(
uriProp
)
{
switch
(
uriProp
)
{
case
Uri_PROPERTY_ABSOLUTE_URI
:
case
Uri_PROPERTY_ABSOLUTE_URI
:
*
pcchProperty
=
This
->
canon_len
;
if
(
!
This
->
display_absolute
)
{
hres
=
S_OK
;
*
pcchProperty
=
0
;
hres
=
S_FALSE
;
}
else
{
*
pcchProperty
=
This
->
canon_len
;
hres
=
S_OK
;
}
break
;
break
;
case
Uri_PROPERTY_AUTHORITY
:
case
Uri_PROPERTY_AUTHORITY
:
*
pcchProperty
=
This
->
authority_len
;
*
pcchProperty
=
This
->
authority_len
;
...
@@ -3581,7 +3609,7 @@ static HRESULT WINAPI Uri_HasProperty(IUri *iface, Uri_PROPERTY uriProp, BOOL *p
...
@@ -3581,7 +3609,7 @@ static HRESULT WINAPI Uri_HasProperty(IUri *iface, Uri_PROPERTY uriProp, BOOL *p
switch
(
uriProp
)
{
switch
(
uriProp
)
{
case
Uri_PROPERTY_ABSOLUTE_URI
:
case
Uri_PROPERTY_ABSOLUTE_URI
:
*
pfHasProperty
=
T
RUE
;
*
pfHasProperty
=
T
his
->
display_absolute
;
break
;
break
;
case
Uri_PROPERTY_AUTHORITY
:
case
Uri_PROPERTY_AUTHORITY
:
*
pfHasProperty
=
This
->
authority_start
>
-
1
;
*
pfHasProperty
=
This
->
authority_start
>
-
1
;
...
@@ -3771,8 +3799,10 @@ static HRESULT WINAPI Uri_GetProperties(IUri *iface, DWORD *pdwProperties)
...
@@ -3771,8 +3799,10 @@ static HRESULT WINAPI Uri_GetProperties(IUri *iface, DWORD *pdwProperties)
return
E_INVALIDARG
;
return
E_INVALIDARG
;
/* All URIs have these. */
/* All URIs have these. */
*
pdwProperties
=
Uri_HAS_ABSOLUTE_URI
|
Uri_HAS_DISPLAY_URI
|
Uri_HAS_RAW_URI
|
*
pdwProperties
=
Uri_HAS_DISPLAY_URI
|
Uri_HAS_RAW_URI
|
Uri_HAS_SCHEME
|
Uri_HAS_HOST_TYPE
;
Uri_HAS_SCHEME
|
Uri_HAS_HOST_TYPE
;
if
(
This
->
display_absolute
)
*
pdwProperties
|=
Uri_HAS_ABSOLUTE_URI
;
if
(
This
->
scheme_start
>
-
1
)
if
(
This
->
scheme_start
>
-
1
)
*
pdwProperties
|=
Uri_HAS_SCHEME_NAME
;
*
pdwProperties
|=
Uri_HAS_SCHEME_NAME
;
...
...
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