Release 20050930.
[wine/gsoc-2012-control.git] / dlls / msi / events.c
blob08a85c66496959ed8f0e6f436e1e98d550a202c6
1 /*
2 * Implementation of the Microsoft Installer (msi.dll)
4 * Copyright 2005 Aric Stewart for CodeWeavers
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 http://msdn.microsoft.com/library/default.asp?url=/library/en-us/msi/setup/controlevent_overview.asp
26 #include <stdarg.h>
27 #include <stdio.h>
29 #include "windef.h"
30 #include "winbase.h"
31 #include "winerror.h"
32 #include "winreg.h"
33 #include "msi.h"
34 #include "msipriv.h"
35 #include "action.h"
37 #include "wine/debug.h"
39 WINE_DEFAULT_DEBUG_CHANNEL(msi);
41 typedef UINT (*EVENTHANDLER)(MSIPACKAGE*,LPCWSTR,msi_dialog *);
43 struct _events {
44 LPCSTR event;
45 EVENTHANDLER handler;
48 struct subscriber {
49 struct list entry;
50 LPWSTR event;
51 LPWSTR control;
52 LPWSTR attribute;
55 UINT ControlEvent_HandleControlEvent(MSIPACKAGE *, LPCWSTR, LPCWSTR, msi_dialog*);
58 * Create a dialog box and run it if it's modal
60 static UINT event_do_dialog( MSIPACKAGE *package, LPCWSTR name, BOOL destroy_modeless )
62 msi_dialog *dialog;
63 UINT r;
65 /* create a new dialog */
66 dialog = msi_dialog_create( package, name,
67 ControlEvent_HandleControlEvent );
68 if( dialog )
70 /* kill the current modeless dialog */
71 if( destroy_modeless && package->dialog )
73 msi_dialog_destroy( package->dialog );
74 package->dialog = NULL;
77 /* modeless dialogs return an error message */
78 r = msi_dialog_run_message_loop( dialog );
79 if( r == ERROR_SUCCESS )
80 msi_dialog_destroy( dialog );
81 else
82 package->dialog = dialog;
84 else
85 r = ERROR_FUNCTION_FAILED;
87 return r;
92 * End a modal dialog box
94 static UINT ControlEvent_EndDialog(MSIPACKAGE* package, LPCWSTR argument,
95 msi_dialog* dialog)
97 static const WCHAR szExit[] = {
98 'E','x','i','t',0};
99 static const WCHAR szRetry[] = {
100 'R','e','t','r','y',0};
101 static const WCHAR szIgnore[] = {
102 'I','g','n','o','r','e',0};
103 static const WCHAR szReturn[] = {
104 'R','e','t','u','r','n',0};
106 if (lstrcmpW(argument,szExit)==0)
107 package->CurrentInstallState = ERROR_INSTALL_USEREXIT;
108 else if (lstrcmpW(argument, szRetry) == 0)
109 package->CurrentInstallState = ERROR_INSTALL_SUSPEND;
110 else if (lstrcmpW(argument, szIgnore) == 0)
111 package->CurrentInstallState = -1;
112 else if (lstrcmpW(argument, szReturn) == 0)
113 package->CurrentInstallState = ERROR_SUCCESS;
114 else
116 ERR("Unknown argument string %s\n",debugstr_w(argument));
117 package->CurrentInstallState = ERROR_FUNCTION_FAILED;
120 ControlEvent_CleanupSubscriptions(package);
121 msi_dialog_end_dialog( dialog );
122 return ERROR_SUCCESS;
126 * transition from one modal dialog to another modal dialog
128 static UINT ControlEvent_NewDialog(MSIPACKAGE* package, LPCWSTR argument,
129 msi_dialog *dialog)
131 /* store the name of the next dialog, and signal this one to end */
132 package->next_dialog = strdupW(argument);
133 ControlEvent_CleanupSubscriptions(package);
134 msi_dialog_end_dialog( dialog );
135 return ERROR_SUCCESS;
139 * Create a new child dialog of an existing modal dialog
141 static UINT ControlEvent_SpawnDialog(MSIPACKAGE* package, LPCWSTR argument,
142 msi_dialog *dialog)
144 /* don't destroy a modeless dialogs that might be our parent */
145 event_do_dialog( package, argument, FALSE );
146 if( package->CurrentInstallState != ERROR_SUCCESS )
147 msi_dialog_end_dialog( dialog );
148 return ERROR_SUCCESS;
152 * Creates a dialog that remains up for a period of time
153 * based on a condition
155 static UINT ControlEvent_SpawnWaitDialog(MSIPACKAGE* package, LPCWSTR argument,
156 msi_dialog* dialog)
158 FIXME("Doing Nothing\n");
159 return ERROR_SUCCESS;
162 static UINT ControlEvent_DoAction(MSIPACKAGE* package, LPCWSTR argument,
163 msi_dialog* dialog)
165 ACTION_PerformAction(package,argument,TRUE);
166 return ERROR_SUCCESS;
169 static UINT ControlEvent_AddLocal(MSIPACKAGE* package, LPCWSTR argument,
170 msi_dialog* dialog)
172 static const WCHAR szAll[] = {'A','L','L',0};
173 MSIFEATURE *feature = NULL;
175 if (lstrcmpW(szAll,argument))
177 MSI_SetFeatureStateW(package,argument,INSTALLSTATE_LOCAL);
179 else
181 LIST_FOR_EACH_ENTRY( feature, &package->features, MSIFEATURE, entry )
183 feature->ActionRequest = INSTALLSTATE_LOCAL;
184 feature->Action = INSTALLSTATE_LOCAL;
186 ACTION_UpdateComponentStates(package,argument);
188 return ERROR_SUCCESS;
191 static UINT ControlEvent_Remove(MSIPACKAGE* package, LPCWSTR argument,
192 msi_dialog* dialog)
194 static const WCHAR szAll[] = {'A','L','L',0};
195 MSIFEATURE *feature = NULL;
197 if (lstrcmpW(szAll,argument))
199 MSI_SetFeatureStateW(package,argument,INSTALLSTATE_ABSENT);
201 else
203 LIST_FOR_EACH_ENTRY( feature, &package->features, MSIFEATURE, entry )
205 feature->ActionRequest = INSTALLSTATE_ABSENT;
206 feature->Action= INSTALLSTATE_ABSENT;
208 ACTION_UpdateComponentStates(package,argument);
210 return ERROR_SUCCESS;
213 static UINT ControlEvent_AddSource(MSIPACKAGE* package, LPCWSTR argument,
214 msi_dialog* dialog)
216 static const WCHAR szAll[] = {'A','L','L',0};
217 MSIFEATURE *feature = NULL;
219 if (lstrcmpW(szAll,argument))
221 MSI_SetFeatureStateW(package,argument,INSTALLSTATE_SOURCE);
223 else
225 LIST_FOR_EACH_ENTRY( feature, &package->features, MSIFEATURE, entry )
227 feature->ActionRequest = INSTALLSTATE_SOURCE;
228 feature->Action = INSTALLSTATE_SOURCE;
230 ACTION_UpdateComponentStates(package,argument);
232 return ERROR_SUCCESS;
235 static UINT ControlEvent_SetTargetPath(MSIPACKAGE* package, LPCWSTR argument,
236 msi_dialog* dialog)
238 LPWSTR path = msi_dup_property( package, argument );
239 UINT r;
240 /* failure to set the path halts the executing of control events */
241 r = MSI_SetTargetPathW(package, argument, path);
242 msi_free(path);
243 return r;
247 * Subscribed events
249 static void free_subscriber( struct subscriber *sub )
251 msi_free(sub->event);
252 msi_free(sub->control);
253 msi_free(sub->attribute);
254 msi_free(sub);
257 VOID ControlEvent_SubscribeToEvent( MSIPACKAGE *package, LPCWSTR event,
258 LPCWSTR control, LPCWSTR attribute )
260 struct subscriber *sub;
262 sub = msi_alloc(sizeof (*sub));
263 if( !sub )
264 return;
265 sub->event = strdupW(event);
266 sub->control = strdupW(control);
267 sub->attribute = strdupW(attribute);
268 list_add_tail( &package->subscriptions, &sub->entry );
271 VOID ControlEvent_UnSubscribeToEvent( MSIPACKAGE *package, LPCWSTR event,
272 LPCWSTR control, LPCWSTR attribute )
274 struct list *i, *t;
275 struct subscriber *sub;
277 LIST_FOR_EACH_SAFE( i, t, &package->subscriptions )
279 sub = LIST_ENTRY( i, struct subscriber, entry );
281 if( lstrcmpiW(sub->control,control) )
282 continue;
283 if( lstrcmpiW(sub->attribute,attribute) )
284 continue;
285 if( lstrcmpiW(sub->event,event) )
286 continue;
287 list_remove( &sub->entry );
288 free_subscriber( sub );
292 VOID ControlEvent_FireSubscribedEvent( MSIPACKAGE *package, LPCWSTR event,
293 MSIRECORD *rec )
295 struct subscriber *sub;
297 TRACE("Firing Event %s\n",debugstr_w(event));
299 if (!package->dialog)
300 return;
302 LIST_FOR_EACH_ENTRY( sub, &package->subscriptions, struct subscriber, entry )
304 if (lstrcmpiW(sub->event, event))
305 continue;
306 msi_dialog_handle_event( package->dialog, sub->control,
307 sub->attribute, rec );
311 VOID ControlEvent_CleanupSubscriptions(MSIPACKAGE *package)
313 struct list *i, *t;
314 struct subscriber *sub;
316 LIST_FOR_EACH_SAFE( i, t, &package->subscriptions )
318 sub = LIST_ENTRY( i, struct subscriber, entry );
320 list_remove( &sub->entry );
321 free_subscriber( sub );
326 * ACTION_DialogBox()
328 * Return ERROR_SUCCESS if dialog is process and ERROR_FUNCTION_FAILED
329 * if the given parameter is not a dialog box
331 UINT ACTION_DialogBox( MSIPACKAGE* package, LPCWSTR szDialogName )
333 UINT r = ERROR_SUCCESS;
335 if( package->next_dialog )
336 ERR("Already a next dialog... ignoring it\n");
337 package->next_dialog = NULL;
340 * Dialogs are chained by filling in the next_dialog member
341 * of the package structure, then terminating the current dialog.
342 * The code below sees the next_dialog member set, and runs the
343 * next dialog.
344 * We fall out of the loop below if we come across a modeless
345 * dialog, as it returns ERROR_IO_PENDING when we try to run
346 * its message loop.
348 r = event_do_dialog( package, szDialogName, TRUE );
349 while( r == ERROR_SUCCESS && package->next_dialog )
351 LPWSTR name = package->next_dialog;
353 package->next_dialog = NULL;
354 r = event_do_dialog( package, name, TRUE );
355 msi_free( name );
358 if( r == ERROR_IO_PENDING )
359 r = ERROR_SUCCESS;
361 return r;
364 struct _events Events[] = {
365 { "EndDialog",ControlEvent_EndDialog },
366 { "NewDialog",ControlEvent_NewDialog },
367 { "SpawnDialog",ControlEvent_SpawnDialog },
368 { "SpawnWaitDialog",ControlEvent_SpawnWaitDialog },
369 { "DoAction",ControlEvent_DoAction },
370 { "AddLocal",ControlEvent_AddLocal },
371 { "Remove",ControlEvent_Remove },
372 { "AddSource",ControlEvent_AddSource },
373 { "SetTargetPath",ControlEvent_SetTargetPath },
374 { NULL,NULL },
377 UINT ControlEvent_HandleControlEvent(MSIPACKAGE *package, LPCWSTR event,
378 LPCWSTR argument, msi_dialog* dialog)
380 int i = 0;
381 UINT rc = ERROR_SUCCESS;
383 TRACE("Handling Control Event %s\n",debugstr_w(event));
384 if (!event)
385 return rc;
387 while( Events[i].event != NULL)
389 LPWSTR wevent = strdupAtoW(Events[i].event);
390 if (lstrcmpW(wevent,event)==0)
392 msi_free(wevent);
393 rc = Events[i].handler(package,argument,dialog);
394 return rc;
396 msi_free(wevent);
397 i++;
399 FIXME("unhandled control event %s arg(%s)\n",
400 debugstr_w(event), debugstr_w(argument));
401 return rc;