2 * Implementation of scripting for Microsoft Installer (msi.dll)
4 * Copyright 2007 Misha Koshelev
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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
32 #include "wine/debug.h"
33 #include "wine/unicode.h"
35 #include "msiserver.h"
37 WINE_DEFAULT_DEBUG_CHANNEL(msi
);
39 static const WCHAR szJScript
[] = { 'J','S','c','r','i','p','t',0};
40 static const WCHAR szVBScript
[] = { 'V','B','S','c','r','i','p','t',0};
41 static const WCHAR szSession
[] = {'S','e','s','s','i','o','n',0};
44 * MsiActiveScriptSite - Our IActiveScriptSite implementation.
48 IActiveScriptSite lpVtbl
;
49 IDispatch
*pInstaller
;
52 } MsiActiveScriptSite
;
54 static const struct IActiveScriptSiteVtbl ASS_Vtbl
;
56 static HRESULT
create_ActiveScriptSite(IUnknown
*pUnkOuter
, LPVOID
*ppObj
)
58 MsiActiveScriptSite
* object
;
60 TRACE("(%p,%p)\n", pUnkOuter
, ppObj
);
63 return CLASS_E_NOAGGREGATION
;
65 object
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(MsiActiveScriptSite
));
67 object
->lpVtbl
.lpVtbl
= &ASS_Vtbl
;
69 object
->pInstaller
= NULL
;
70 object
->pSession
= NULL
;
80 DWORD
call_script(MSIHANDLE hPackage
, INT type
, LPCWSTR script
, LPCWSTR function
, LPCWSTR action
)
83 IActiveScript
*pActiveScript
= NULL
;
84 IActiveScriptParse
*pActiveScriptParse
= NULL
;
85 MsiActiveScriptSite
*pActiveScriptSite
= NULL
;
86 IDispatch
*pDispatch
= NULL
;
87 DISPPARAMS dispparamsNoArgs
= {NULL
, NULL
, 0, 0};
92 /* Return success by default (if Windows Script not installed) - not native behavior. This
93 * should be here until we implement wine scripting. */
94 DWORD ret
= ERROR_SUCCESS
;
98 /* Create MsiActiveScriptSite object */
99 hr
= create_ActiveScriptSite(NULL
, (void **)&pActiveScriptSite
);
100 if (hr
!= S_OK
) goto done
;
102 /* Create an installer object */
103 hr
= create_msiserver(NULL
, (LPVOID
*)&pActiveScriptSite
->pInstaller
);
104 if (hr
!= S_OK
) goto done
;
105 IUnknown_AddRef((IUnknown
*)pActiveScriptSite
->pInstaller
);
107 /* Create a session object */
108 hr
= create_session(hPackage
, pActiveScriptSite
->pInstaller
, &pActiveScriptSite
->pSession
);
109 if (hr
!= S_OK
) goto done
;
110 IUnknown_AddRef((IUnknown
*)pActiveScriptSite
->pSession
);
112 /* Create the scripting engine */
113 if ((type
& 7) == msidbCustomActionTypeJScript
)
114 hr
= CLSIDFromProgID(szJScript
, &clsid
);
115 else if ((type
& 7) == msidbCustomActionTypeVBScript
)
116 hr
= CLSIDFromProgID(szVBScript
, &clsid
);
118 ERR("Unknown script type %d\n", type
);
122 ERR("Could not find CLSID for Windows Script\n");
125 hr
= CoCreateInstance(&clsid
, NULL
, CLSCTX_INPROC_SERVER
, &IID_IActiveScript
, (void **)&pActiveScript
);
127 ERR("Could not instantiate class for Windows Script\n");
131 /* If we got this far, Windows Script is installed, so don't return success by default anymore */
132 ret
= ERROR_INSTALL_FAILURE
;
134 /* Get the IActiveScriptParse engine interface */
135 hr
= IActiveScript_QueryInterface(pActiveScript
, &IID_IActiveScriptParse
, (void **)&pActiveScriptParse
);
136 if (FAILED(hr
)) goto done
;
138 /* Give our host to the engine */
139 hr
= IActiveScript_SetScriptSite(pActiveScript
, (IActiveScriptSite
*)pActiveScriptSite
);
140 if (FAILED(hr
)) goto done
;
142 /* Initialize the script engine */
143 hr
= IActiveScriptParse_InitNew(pActiveScriptParse
);
144 if (FAILED(hr
)) goto done
;
146 /* Add the session object */
147 hr
= IActiveScript_AddNamedItem(pActiveScript
, szSession
, SCRIPTITEM_ISVISIBLE
);
149 /* Pass the script to the engine */
150 hr
= IActiveScriptParse_ParseScriptText(pActiveScriptParse
, script
, NULL
, NULL
, NULL
, 0, 0, 0L, NULL
, NULL
);
151 if (FAILED(hr
)) goto done
;
153 /* Start processing the script */
154 hr
= IActiveScript_SetScriptState(pActiveScript
, SCRIPTSTATE_CONNECTED
);
155 if (FAILED(hr
)) goto done
;
157 /* Call a function if necessary through the IDispatch interface */
158 if (function
!= NULL
&& strlenW(function
) > 0) {
159 TRACE("Calling function %s\n", debugstr_w(function
));
161 hr
= IActiveScript_GetScriptDispatch(pActiveScript
, NULL
, &pDispatch
);
162 if (FAILED(hr
)) goto done
;
164 hr
= IDispatch_GetIDsOfNames(pDispatch
, &IID_NULL
, (WCHAR
**)&function
, 1,LOCALE_USER_DEFAULT
, &dispid
);
165 if (FAILED(hr
)) goto done
;
167 hr
= IDispatch_Invoke(pDispatch
, dispid
, &IID_NULL
, LOCALE_USER_DEFAULT
, DISPATCH_METHOD
, &dispparamsNoArgs
, &var
, NULL
, NULL
);
168 if (FAILED(hr
)) goto done
;
170 /* Check return value, if it's not IDOK we failed */
171 hr
= VariantChangeType(&var
, &var
, 0, VT_I4
);
172 if (FAILED(hr
)) goto done
;
174 if (V_I4(&var
) == IDOK
)
176 else ret
= ERROR_INSTALL_FAILURE
;
180 /* If no function to be called, MSI behavior is to succeed */
186 /* Free everything that needs to be freed */
187 if (pDispatch
) IDispatch_Release(pDispatch
);
188 if (pActiveScript
) IActiveScriptSite_Release(pActiveScript
);
189 if (pActiveScriptSite
&&
190 pActiveScriptSite
->pSession
) IUnknown_Release((IUnknown
*)pActiveScriptSite
->pSession
);
191 if (pActiveScriptSite
&&
192 pActiveScriptSite
->pInstaller
) IUnknown_Release((IUnknown
*)pActiveScriptSite
->pInstaller
);
193 if (pActiveScriptSite
) IUnknown_Release((IUnknown
*)pActiveScriptSite
);
195 CoUninitialize(); /* must call even if CoInitialize failed */
201 * MsiActiveScriptSite
204 /*** IUnknown methods ***/
205 static HRESULT WINAPI
MsiActiveScriptSite_QueryInterface(IActiveScriptSite
* iface
, REFIID riid
, void** ppvObject
)
207 MsiActiveScriptSite
*This
= (MsiActiveScriptSite
*)iface
;
209 TRACE("(%p/%p)->(%s,%p)\n", iface
, This
, debugstr_guid(riid
), ppvObject
);
211 if (IsEqualGUID(riid
, &IID_IUnknown
) ||
212 IsEqualGUID(riid
, &IID_IActiveScriptSite
))
214 IClassFactory_AddRef(iface
);
219 TRACE("(%p)->(%s,%p),not found\n",This
,debugstr_guid(riid
),ppvObject
);
221 return E_NOINTERFACE
;
224 static ULONG WINAPI
MsiActiveScriptSite_AddRef(IActiveScriptSite
* iface
)
226 MsiActiveScriptSite
*This
= (MsiActiveScriptSite
*)iface
;
228 TRACE("(%p/%p)\n", iface
, This
);
230 return InterlockedIncrement(&This
->ref
);
233 static ULONG WINAPI
MsiActiveScriptSite_Release(IActiveScriptSite
* iface
)
235 MsiActiveScriptSite
*This
= (MsiActiveScriptSite
*)iface
;
236 ULONG ref
= InterlockedDecrement(&This
->ref
);
238 TRACE("(%p/%p)\n", iface
, This
);
241 HeapFree(GetProcessHeap(), 0, This
);
246 /*** IActiveScriptSite methods **/
247 static HRESULT WINAPI
MsiActiveScriptSite_GetLCID(IActiveScriptSite
* iface
, LCID
* plcid
)
249 MsiActiveScriptSite
*This
= (MsiActiveScriptSite
*)iface
;
250 TRACE("(%p/%p)->(%p)\n", This
, iface
, plcid
);
251 return E_NOTIMPL
; /* Script will use system-defined locale */
254 static HRESULT WINAPI
MsiActiveScriptSite_GetItemInfo(IActiveScriptSite
* iface
, LPCOLESTR pstrName
, DWORD dwReturnMask
, IUnknown
** ppiunkItem
, ITypeInfo
** ppti
)
256 MsiActiveScriptSite
*This
= (MsiActiveScriptSite
*)iface
;
257 TRACE("(%p/%p)->(%p,%d,%p,%p)\n", This
, iface
, pstrName
, dwReturnMask
, ppiunkItem
, ppti
);
259 /* Determine the kind of pointer that is requested, and make sure placeholder is valid */
260 if (dwReturnMask
& SCRIPTINFO_ITYPEINFO
) {
261 if (!ppti
) return E_INVALIDARG
;
264 if (dwReturnMask
& SCRIPTINFO_IUNKNOWN
) {
265 if (!ppiunkItem
) return E_INVALIDARG
;
269 /* Are we looking for the session object? */
270 if (!strcmpW(szSession
, pstrName
)) {
271 if (dwReturnMask
& SCRIPTINFO_ITYPEINFO
)
272 return load_type_info(This
->pSession
, ppti
, &DIID_Session
, 0);
273 else if (dwReturnMask
& SCRIPTINFO_IUNKNOWN
) {
274 IDispatch_QueryInterface(This
->pSession
, &IID_IUnknown
, (void **)ppiunkItem
);
279 return TYPE_E_ELEMENTNOTFOUND
;
282 static HRESULT WINAPI
MsiActiveScriptSite_GetDocVersionString(IActiveScriptSite
* iface
, BSTR
* pbstrVersion
)
284 MsiActiveScriptSite
*This
= (MsiActiveScriptSite
*)iface
;
285 TRACE("(%p/%p)->(%p)\n", This
, iface
, pbstrVersion
);
289 static HRESULT WINAPI
MsiActiveScriptSite_OnScriptTerminate(IActiveScriptSite
* iface
, const VARIANT
* pvarResult
, const EXCEPINFO
* pexcepinfo
)
291 MsiActiveScriptSite
*This
= (MsiActiveScriptSite
*)iface
;
292 TRACE("(%p/%p)->(%p,%p)\n", This
, iface
, pvarResult
, pexcepinfo
);
296 static HRESULT WINAPI
MsiActiveScriptSite_OnStateChange(IActiveScriptSite
* iface
, SCRIPTSTATE ssScriptState
)
298 switch (ssScriptState
) {
299 case SCRIPTSTATE_UNINITIALIZED
:
300 TRACE("State: Uninitialized.\n");
303 case SCRIPTSTATE_INITIALIZED
:
304 TRACE("State: Initialized.\n");
307 case SCRIPTSTATE_STARTED
:
308 TRACE("State: Started.\n");
311 case SCRIPTSTATE_CONNECTED
:
312 TRACE("State: Connected.\n");
315 case SCRIPTSTATE_DISCONNECTED
:
316 TRACE("State: Disconnected.\n");
319 case SCRIPTSTATE_CLOSED
:
320 TRACE("State: Closed.\n");
324 ERR("Unknown State: %d\n", ssScriptState
);
331 static HRESULT WINAPI
MsiActiveScriptSite_OnScriptError(IActiveScriptSite
* iface
, IActiveScriptError
* pscripterror
)
333 MsiActiveScriptSite
*This
= (MsiActiveScriptSite
*)iface
;
337 TRACE("(%p/%p)->(%p)\n", This
, iface
, pscripterror
);
339 hr
= IActiveScriptError_GetExceptionInfo(pscripterror
, &exception
);
341 ERR("script error: %s\n", debugstr_w(exception
.bstrDescription
));
346 static HRESULT WINAPI
MsiActiveScriptSite_OnEnterScript(IActiveScriptSite
* iface
)
348 MsiActiveScriptSite
*This
= (MsiActiveScriptSite
*)iface
;
349 TRACE("(%p/%p)\n", This
, iface
);
353 static HRESULT WINAPI
MsiActiveScriptSite_OnLeaveScript(IActiveScriptSite
* iface
)
355 MsiActiveScriptSite
*This
= (MsiActiveScriptSite
*)iface
;
356 TRACE("(%p/%p)\n", This
, iface
);
360 static const struct IActiveScriptSiteVtbl ASS_Vtbl
=
362 MsiActiveScriptSite_QueryInterface
,
363 MsiActiveScriptSite_AddRef
,
364 MsiActiveScriptSite_Release
,
365 MsiActiveScriptSite_GetLCID
,
366 MsiActiveScriptSite_GetItemInfo
,
367 MsiActiveScriptSite_GetDocVersionString
,
368 MsiActiveScriptSite_OnScriptTerminate
,
369 MsiActiveScriptSite_OnStateChange
,
370 MsiActiveScriptSite_OnScriptError
,
371 MsiActiveScriptSite_OnEnterScript
,
372 MsiActiveScriptSite_OnLeaveScript