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
b7950cfe
Commit
b7950cfe
authored
May 24, 2011
by
Hans Leidekker
Committed by
Alexandre Julliard
May 24, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Fix the folder actions to revert components to the installed state during rollback.
parent
6ec73069
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
25 additions
and
23 deletions
+25
-23
action.c
dlls/msi/action.c
+23
-23
msipriv.h
dlls/msi/msipriv.h
+2
-0
No files found.
dlls/msi/action.c
View file @
b7950cfe
...
...
@@ -816,6 +816,17 @@ void msi_ui_actiondata( MSIPACKAGE *package, const WCHAR *action, MSIRECORD *rec
msiobj_release
(
&
row
->
hdr
);
}
INSTALLSTATE
msi_get_component_action
(
MSIPACKAGE
*
package
,
MSICOMPONENT
*
comp
)
{
if
(
!
comp
->
Enabled
)
{
TRACE
(
"component is disabled: %s
\n
"
,
debugstr_w
(
comp
->
Component
));
return
INSTALLSTATE_UNKNOWN
;
}
if
(
package
->
need_rollback
)
return
comp
->
Installed
;
return
comp
->
ActionRequest
;
}
static
UINT
ITERATE_CreateFolders
(
MSIRECORD
*
row
,
LPVOID
param
)
{
MSIPACKAGE
*
package
=
param
;
...
...
@@ -832,19 +843,12 @@ static UINT ITERATE_CreateFolders(MSIRECORD *row, LPVOID param)
if
(
!
comp
)
return
ERROR_SUCCESS
;
if
(
!
comp
->
Enabled
)
{
TRACE
(
"component is disabled
\n
"
);
return
ERROR_SUCCESS
;
}
if
(
comp
->
ActionRequest
!=
INSTALLSTATE_LOCAL
)
comp
->
Action
=
msi_get_component_action
(
package
,
comp
);
if
(
comp
->
Action
!=
INSTALLSTATE_LOCAL
)
{
TRACE
(
"Component not scheduled for installation: %s
\n
"
,
debugstr_w
(
component
));
comp
->
Action
=
comp
->
Installed
;
TRACE
(
"component not scheduled for installation: %s
\n
"
,
debugstr_w
(
component
));
return
ERROR_SUCCESS
;
}
comp
->
Action
=
INSTALLSTATE_LOCAL
;
dir
=
MSI_RecordGetString
(
row
,
1
);
if
(
!
dir
)
...
...
@@ -907,19 +911,12 @@ static UINT ITERATE_RemoveFolders( MSIRECORD *row, LPVOID param )
if
(
!
comp
)
return
ERROR_SUCCESS
;
if
(
!
comp
->
Enabled
)
{
TRACE
(
"component is disabled
\n
"
);
return
ERROR_SUCCESS
;
}
if
(
comp
->
ActionRequest
!=
INSTALLSTATE_ABSENT
)
comp
->
Action
=
msi_get_component_action
(
package
,
comp
);
if
(
comp
->
Action
!=
INSTALLSTATE_ABSENT
)
{
TRACE
(
"Component not scheduled for removal: %s
\n
"
,
debugstr_w
(
component
));
comp
->
Action
=
comp
->
Installed
;
TRACE
(
"component not scheduled for removal %s
\n
"
,
debugstr_w
(
component
));
return
ERROR_SUCCESS
;
}
comp
->
Action
=
INSTALLSTATE_ABSENT
;
dir
=
MSI_RecordGetString
(
row
,
1
);
if
(
!
dir
)
...
...
@@ -7468,7 +7465,7 @@ UINT MSI_InstallPackage( MSIPACKAGE *package, LPCWSTR szPackagePath,
LPCWSTR
szCommandLine
)
{
UINT
rc
;
BOOL
ui_exists
,
needs_rollback
=
FALSE
;
BOOL
ui_exists
;
static
const
WCHAR
szDisableRollback
[]
=
{
'D'
,
'I'
,
'S'
,
'A'
,
'B'
,
'L'
,
'E'
,
'R'
,
'O'
,
'L'
,
'L'
,
'B'
,
'A'
,
'C'
,
'K'
,
0
};
static
const
WCHAR
szAction
[]
=
{
'A'
,
'C'
,
'T'
,
'I'
,
'O'
,
'N'
,
0
};
static
const
WCHAR
szInstall
[]
=
{
'I'
,
'N'
,
'S'
,
'T'
,
'A'
,
'L'
,
'L'
,
0
};
...
...
@@ -7565,13 +7562,16 @@ UINT MSI_InstallPackage( MSIPACKAGE *package, LPCWSTR szPackagePath,
else
/* failed */
{
ACTION_PerformActionSequence
(
package
,
-
3
);
needs_rollback
=
TRUE
;
if
(
!
msi_get_property_int
(
package
->
db
,
szRollbackDisabled
,
0
))
{
package
->
need_rollback
=
TRUE
;
}
}
/* finish up running custom actions */
ACTION_FinishCustomActions
(
package
);
if
(
needs_rollback
&&
!
msi_get_property_int
(
package
->
db
,
szRollbackDisabled
,
0
)
)
if
(
package
->
need_rollback
)
{
WARN
(
"installation failed, running rollback script
\n
"
);
msi_set_property
(
package
->
db
,
szRollbackDisabled
,
NULL
);
...
...
dlls/msi/msipriv.h
View file @
b7950cfe
...
...
@@ -400,6 +400,7 @@ typedef struct tagMSIPACKAGE
unsigned
char
commit_action_running
:
1
;
unsigned
char
rollback_action_running
:
1
;
unsigned
char
need_reboot
:
1
;
unsigned
char
need_rollback
:
1
;
}
MSIPACKAGE
;
typedef
struct
tagMSIPREVIEW
...
...
@@ -771,6 +772,7 @@ extern UINT MSI_Sequence( MSIPACKAGE *package, LPCWSTR szTable, INT iSequenceMod
extern
UINT
MSI_SetFeatureStates
(
MSIPACKAGE
*
package
)
DECLSPEC_HIDDEN
;
extern
UINT
msi_parse_command_line
(
MSIPACKAGE
*
package
,
LPCWSTR
szCommandLine
,
BOOL
preserve_case
)
DECLSPEC_HIDDEN
;
extern
UINT
msi_schedule_action
(
MSIPACKAGE
*
package
,
UINT
script
,
const
WCHAR
*
action
)
DECLSPEC_HIDDEN
;
extern
INSTALLSTATE
msi_get_component_action
(
MSIPACKAGE
*
package
,
MSICOMPONENT
*
comp
)
DECLSPEC_HIDDEN
;
/* record internals */
extern
void
MSI_CloseRecord
(
MSIOBJECTHDR
*
)
DECLSPEC_HIDDEN
;
...
...
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