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
1ff96c63
Commit
1ff96c63
authored
Aug 09, 2006
by
James Hawkins
Committed by
Alexandre Julliard
Aug 10, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Download install cabinet files if the msi package is remote.
parent
759850fe
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
62 additions
and
3 deletions
+62
-3
files.c
dlls/msi/files.c
+60
-1
package.c
dlls/msi/package.c
+2
-2
No files found.
dlls/msi/files.c
View file @
1ff96c63
...
...
@@ -42,6 +42,8 @@
#include "msvcrt/fcntl.h"
#include "msipriv.h"
#include "winuser.h"
#include "winreg.h"
#include "shlwapi.h"
#include "wine/unicode.h"
#include "action.h"
...
...
@@ -56,6 +58,7 @@ extern const WCHAR szRemoveFiles[];
static
const
WCHAR
cszTempFolder
[]
=
{
'T'
,
'e'
,
'm'
,
'p'
,
'F'
,
'o'
,
'l'
,
'd'
,
'e'
,
'r'
,
0
};
extern
LPCWSTR
msi_download_file
(
LPCWSTR
szUrl
,
LPWSTR
filename
);
/*
* This is a helper function for handling embedded cabinet media
...
...
@@ -378,6 +381,52 @@ static void free_media_info( struct media_info *mi )
msi_free
(
mi
);
}
/* downloads a remote cabinet and extracts it if it exists */
static
UINT
msi_extract_remote_cabinet
(
MSIPACKAGE
*
package
,
struct
media_info
*
mi
)
{
FDICABINETINFO
cabinfo
;
WCHAR
temppath
[
MAX_PATH
];
WCHAR
src
[
MAX_PATH
];
LPSTR
cabpath
;
LPCWSTR
file
;
LPWSTR
ptr
;
HFDI
hfdi
;
ERF
erf
;
int
hf
;
/* the URL is the path prefix of the package URL and the filename
* of the file to download
*/
ptr
=
strrchrW
(
package
->
PackagePath
,
'/'
);
lstrcpynW
(
src
,
package
->
PackagePath
,
ptr
-
package
->
PackagePath
+
2
);
ptr
=
strrchrW
(
mi
->
source
,
'\\'
);
lstrcatW
(
src
,
ptr
+
1
);
file
=
msi_download_file
(
src
,
temppath
);
lstrcpyW
(
mi
->
source
,
file
);
/* check if the remote cabinet still exists, ignore if it doesn't */
hfdi
=
FDICreate
(
cabinet_alloc
,
cabinet_free
,
cabinet_open
,
cabinet_read
,
cabinet_write
,
cabinet_close
,
cabinet_seek
,
0
,
&
erf
);
if
(
!
hfdi
)
{
ERR
(
"FDICreate failed
\n
"
);
return
ERROR_FUNCTION_FAILED
;
}
cabpath
=
strdupWtoA
(
mi
->
source
);
hf
=
cabinet_open
(
cabpath
,
_O_RDONLY
,
0
);
if
(
!
FDIIsCabinet
(
hfdi
,
hf
,
&
cabinfo
))
{
WARN
(
"Remote cabinet %s does not exist.
\n
"
,
debugstr_w
(
mi
->
source
));
msi_free
(
cabpath
);
return
ERROR_SUCCESS
;
}
msi_free
(
cabpath
);
return
!
extract_cabinet_file
(
package
,
mi
->
source
,
mi
->
last_path
);
}
static
UINT
ready_media_for_file
(
MSIPACKAGE
*
package
,
struct
media_info
*
mi
,
MSIFILE
*
file
)
{
...
...
@@ -488,7 +537,17 @@ static UINT ready_media_for_file( MSIPACKAGE *package, struct media_info *mi,
GetTempPathW
(
MAX_PATH
,
mi
->
last_path
);
}
}
rc
=
!
extract_cabinet_file
(
package
,
mi
->
source
,
mi
->
last_path
);
/* only download the remote cabinet file if a local copy does not exist */
if
(
GetFileAttributesW
(
mi
->
source
)
==
INVALID_FILE_ATTRIBUTES
&&
UrlIsW
(
package
->
PackagePath
,
URLIS_URL
))
{
rc
=
msi_extract_remote_cabinet
(
package
,
mi
);
}
else
{
rc
=
!
extract_cabinet_file
(
package
,
mi
->
source
,
mi
->
last_path
);
}
}
else
{
...
...
dlls/msi/package.c
View file @
1ff96c63
...
...
@@ -485,7 +485,7 @@ static LPCWSTR copy_package_to_temp( LPCWSTR szPackage, LPWSTR filename )
return
filename
;
}
static
LPCWSTR
msi_download_packag
e
(
LPCWSTR
szUrl
,
LPWSTR
filename
)
LPCWSTR
msi_download_fil
e
(
LPCWSTR
szUrl
,
LPWSTR
filename
)
{
LPINTERNET_CACHE_ENTRY_INFOW
cache_entry
;
DWORD
size
=
0
;
...
...
@@ -539,7 +539,7 @@ UINT MSI_OpenPackageW(LPCWSTR szPackage, MSIPACKAGE **pPackage)
LPCWSTR
file
;
if
(
UrlIsW
(
szPackage
,
URLIS_URL
)
)
file
=
msi_download_
packag
e
(
szPackage
,
temppath
);
file
=
msi_download_
fil
e
(
szPackage
,
temppath
);
else
file
=
copy_package_to_temp
(
szPackage
,
temppath
);
...
...
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