2008-03-24 02:48:48 +01:00
|
|
|
/*
|
|
|
|
* Implementation of the Fusion API
|
|
|
|
*
|
|
|
|
* Copyright 2008 James Hawkins
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
|
|
|
|
#define COBJMACROS
|
|
|
|
|
|
|
|
#include "windef.h"
|
|
|
|
#include "winbase.h"
|
|
|
|
#include "winuser.h"
|
|
|
|
#include "ole2.h"
|
|
|
|
#include "fusion.h"
|
|
|
|
#include "wine/debug.h"
|
2008-07-08 06:57:16 +02:00
|
|
|
#include "wine/unicode.h"
|
2008-03-24 02:48:48 +01:00
|
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(fusion);
|
|
|
|
|
2013-01-18 13:04:51 +01:00
|
|
|
|
|
|
|
/******************************************************************
|
|
|
|
* InitializeFusion (FUSION.@)
|
|
|
|
*/
|
|
|
|
HRESULT WINAPI InitializeFusion(void)
|
|
|
|
{
|
|
|
|
FIXME("\n");
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
2008-03-24 02:48:48 +01:00
|
|
|
/******************************************************************
|
|
|
|
* ClearDownloadCache (FUSION.@)
|
|
|
|
*/
|
|
|
|
HRESULT WINAPI ClearDownloadCache(void)
|
|
|
|
{
|
|
|
|
FIXME("stub!\n");
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************
|
|
|
|
* CreateInstallReferenceEnum (FUSION.@)
|
|
|
|
*/
|
|
|
|
HRESULT WINAPI CreateInstallReferenceEnum(IInstallReferenceEnum **ppRefEnum,
|
|
|
|
IAssemblyName *pName, DWORD dwFlags,
|
|
|
|
LPVOID pvReserved)
|
|
|
|
{
|
|
|
|
FIXME("(%p, %p, %08x, %p) stub!\n", ppRefEnum, pName, dwFlags, pvReserved);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
2010-02-22 12:26:34 +01:00
|
|
|
/******************************************************************
|
|
|
|
* CreateApplicationContext (FUSION.@)
|
|
|
|
*/
|
|
|
|
HRESULT WINAPI CreateApplicationContext(IAssemblyName *name, void *ctx)
|
|
|
|
{
|
|
|
|
FIXME("%p, %p\n", name, ctx);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
2008-07-08 06:57:16 +02:00
|
|
|
static HRESULT (WINAPI *pGetCORVersion)(LPWSTR pbuffer, DWORD cchBuffer,
|
|
|
|
DWORD *dwLength);
|
|
|
|
|
|
|
|
static HRESULT get_corversion(LPWSTR version, DWORD size)
|
|
|
|
{
|
|
|
|
HMODULE hmscoree;
|
|
|
|
HRESULT hr;
|
|
|
|
DWORD len;
|
|
|
|
|
|
|
|
hmscoree = LoadLibraryA("mscoree.dll");
|
|
|
|
if (!hmscoree)
|
|
|
|
return E_FAIL;
|
|
|
|
|
|
|
|
pGetCORVersion = (void *)GetProcAddress(hmscoree, "GetCORVersion");
|
|
|
|
if (!pGetCORVersion)
|
2012-10-28 16:16:35 +01:00
|
|
|
hr = E_FAIL;
|
|
|
|
else
|
|
|
|
hr = pGetCORVersion(version, size, &len);
|
2008-07-08 06:57:16 +02:00
|
|
|
|
|
|
|
FreeLibrary(hmscoree);
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
2008-03-24 02:48:48 +01:00
|
|
|
/******************************************************************
|
|
|
|
* GetCachePath (FUSION.@)
|
|
|
|
*/
|
|
|
|
HRESULT WINAPI GetCachePath(ASM_CACHE_FLAGS dwCacheFlags, LPWSTR pwzCachePath,
|
|
|
|
PDWORD pcchPath)
|
|
|
|
{
|
2012-05-21 11:25:12 +02:00
|
|
|
static const WCHAR assembly[] = {'\\','a','s','s','e','m','b','l','y',0};
|
|
|
|
static const WCHAR gac[] = {'\\','G','A','C',0};
|
|
|
|
static const WCHAR nativeimg[] = {'N','a','t','i','v','e','I','m','a','g','e','s','_',0};
|
|
|
|
static const WCHAR dotnet[] = {'\\','M','i','c','r','o','s','o','f','t','.','N','E','T',0};
|
2009-04-08 11:50:33 +02:00
|
|
|
#ifdef _WIN64
|
|
|
|
static const WCHAR zapfmt[] = {'%','s','\\','%','s','\\','%','s','%','s','_','6','4',0};
|
|
|
|
#else
|
|
|
|
static const WCHAR zapfmt[] = {'%','s','\\','%','s','\\','%','s','%','s','_','3','2',0};
|
|
|
|
#endif
|
2012-05-21 11:25:12 +02:00
|
|
|
WCHAR path[MAX_PATH], windir[MAX_PATH], version[MAX_PATH];
|
|
|
|
DWORD len;
|
|
|
|
HRESULT hr = S_OK;
|
2008-07-08 06:57:16 +02:00
|
|
|
|
|
|
|
TRACE("(%08x, %p, %p)\n", dwCacheFlags, pwzCachePath, pcchPath);
|
|
|
|
|
|
|
|
if (!pcchPath)
|
|
|
|
return E_INVALIDARG;
|
|
|
|
|
2012-05-21 11:25:12 +02:00
|
|
|
len = GetWindowsDirectoryW(windir, MAX_PATH);
|
|
|
|
strcpyW(path, windir);
|
2008-07-08 06:57:16 +02:00
|
|
|
|
|
|
|
switch (dwCacheFlags)
|
|
|
|
{
|
|
|
|
case ASM_CACHE_ZAP:
|
|
|
|
{
|
|
|
|
hr = get_corversion(version, MAX_PATH);
|
|
|
|
if (FAILED(hr))
|
|
|
|
return hr;
|
|
|
|
|
2012-05-21 11:25:12 +02:00
|
|
|
len = sprintfW(path, zapfmt, windir, assembly + 1, nativeimg, version);
|
2008-07-08 06:57:16 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case ASM_CACHE_GAC:
|
|
|
|
{
|
2012-05-21 11:25:12 +02:00
|
|
|
strcpyW(path + len, assembly);
|
|
|
|
len += sizeof(assembly)/sizeof(WCHAR) - 1;
|
|
|
|
strcpyW(path + len, gac);
|
|
|
|
len += sizeof(gac)/sizeof(WCHAR) - 1;
|
2008-07-08 06:57:16 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case ASM_CACHE_DOWNLOAD:
|
|
|
|
{
|
|
|
|
FIXME("Download cache not implemented\n");
|
|
|
|
return E_FAIL;
|
|
|
|
}
|
|
|
|
case ASM_CACHE_ROOT:
|
2012-05-21 11:25:12 +02:00
|
|
|
strcpyW(path + len, assembly);
|
|
|
|
len += sizeof(assembly)/sizeof(WCHAR) - 1;
|
|
|
|
break;
|
|
|
|
case ASM_CACHE_ROOT_EX:
|
|
|
|
strcpyW(path + len, dotnet);
|
|
|
|
len += sizeof(dotnet)/sizeof(WCHAR) - 1;
|
|
|
|
strcpyW(path + len, assembly);
|
|
|
|
len += sizeof(assembly)/sizeof(WCHAR) - 1;
|
|
|
|
break;
|
2008-07-08 06:57:16 +02:00
|
|
|
default:
|
|
|
|
return E_INVALIDARG;
|
|
|
|
}
|
|
|
|
|
2012-05-21 11:25:12 +02:00
|
|
|
len++;
|
2008-07-08 06:57:16 +02:00
|
|
|
if (*pcchPath <= len || !pwzCachePath)
|
2014-10-07 07:44:30 +02:00
|
|
|
hr = E_NOT_SUFFICIENT_BUFFER;
|
2008-07-08 06:57:16 +02:00
|
|
|
else if (pwzCachePath)
|
2012-05-21 11:25:12 +02:00
|
|
|
strcpyW(pwzCachePath, path);
|
2008-07-08 06:57:16 +02:00
|
|
|
|
|
|
|
*pcchPath = len;
|
|
|
|
return hr;
|
2008-03-24 02:48:48 +01:00
|
|
|
}
|