2007-02-05 17:53:42 +01:00
|
|
|
/*
|
|
|
|
* Multisource AutoComplete list
|
|
|
|
*
|
|
|
|
* Copyright 2007 Mikolaj Zalewski
|
|
|
|
*
|
|
|
|
* 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 "wine/debug.h"
|
|
|
|
#include "windef.h"
|
|
|
|
#include "winbase.h"
|
|
|
|
#include "winreg.h"
|
|
|
|
#include "winuser.h"
|
|
|
|
#include "shlwapi.h"
|
|
|
|
#include "winerror.h"
|
|
|
|
#include "objbase.h"
|
|
|
|
|
|
|
|
#include "shlguid.h"
|
|
|
|
#include "shlobj.h"
|
|
|
|
|
2018-01-29 22:50:42 +01:00
|
|
|
#include "wine/heap.h"
|
2007-02-05 17:53:42 +01:00
|
|
|
|
|
|
|
#include "browseui.h"
|
|
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(browseui);
|
|
|
|
|
|
|
|
struct ACLMultiSublist {
|
|
|
|
IUnknown *punk;
|
|
|
|
IEnumString *pEnum;
|
|
|
|
IACList *pACL;
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct tagACLMulti {
|
2010-12-10 09:31:27 +01:00
|
|
|
IEnumString IEnumString_iface;
|
|
|
|
IACList IACList_iface;
|
|
|
|
IObjMgr IObjMgr_iface;
|
2007-02-05 17:53:42 +01:00
|
|
|
LONG refCount;
|
|
|
|
INT nObjs;
|
|
|
|
INT currObj;
|
|
|
|
struct ACLMultiSublist *objs;
|
|
|
|
} ACLMulti;
|
|
|
|
|
2010-12-10 09:31:27 +01:00
|
|
|
static inline ACLMulti *impl_from_IEnumString(IEnumString *iface)
|
|
|
|
{
|
|
|
|
return CONTAINING_RECORD(iface, ACLMulti, IEnumString_iface);
|
|
|
|
}
|
|
|
|
|
2007-02-05 17:53:42 +01:00
|
|
|
static inline ACLMulti *impl_from_IACList(IACList *iface)
|
|
|
|
{
|
2010-12-10 09:31:27 +01:00
|
|
|
return CONTAINING_RECORD(iface, ACLMulti, IACList_iface);
|
2007-02-05 17:53:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline ACLMulti *impl_from_IObjMgr(IObjMgr *iface)
|
|
|
|
{
|
2010-12-10 09:31:27 +01:00
|
|
|
return CONTAINING_RECORD(iface, ACLMulti, IObjMgr_iface);
|
2007-02-05 17:53:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void release_obj(struct ACLMultiSublist *obj)
|
|
|
|
{
|
|
|
|
IUnknown_Release(obj->punk);
|
|
|
|
if (obj->pEnum)
|
|
|
|
IEnumString_Release(obj->pEnum);
|
|
|
|
if (obj->pACL)
|
|
|
|
IACList_Release(obj->pACL);
|
|
|
|
}
|
|
|
|
|
2008-02-20 21:29:39 +01:00
|
|
|
static void ACLMulti_Destructor(ACLMulti *This)
|
2007-02-05 17:53:42 +01:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
TRACE("destroying %p\n", This);
|
|
|
|
for (i = 0; i < This->nObjs; i++)
|
|
|
|
release_obj(&This->objs[i]);
|
2008-02-20 21:29:39 +01:00
|
|
|
heap_free(This->objs);
|
|
|
|
heap_free(This);
|
2007-02-05 17:53:42 +01:00
|
|
|
BROWSEUI_refCount--;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI ACLMulti_QueryInterface(IEnumString *iface, REFIID iid, LPVOID *ppvOut)
|
|
|
|
{
|
2010-12-10 09:31:27 +01:00
|
|
|
ACLMulti *This = impl_from_IEnumString(iface);
|
2007-02-05 17:53:42 +01:00
|
|
|
*ppvOut = NULL;
|
|
|
|
|
|
|
|
if (IsEqualIID(iid, &IID_IUnknown) || IsEqualIID(iid, &IID_IEnumString))
|
|
|
|
{
|
2015-03-20 09:19:22 +01:00
|
|
|
*ppvOut = &This->IEnumString_iface;
|
2007-02-05 17:53:42 +01:00
|
|
|
}
|
|
|
|
else if (IsEqualIID(iid, &IID_IACList))
|
|
|
|
{
|
2010-12-10 09:31:27 +01:00
|
|
|
*ppvOut = &This->IACList_iface;
|
2007-02-05 17:53:42 +01:00
|
|
|
}
|
|
|
|
else if (IsEqualIID(iid, &IID_IObjMgr))
|
|
|
|
{
|
2010-12-10 09:31:27 +01:00
|
|
|
*ppvOut = &This->IObjMgr_iface;
|
2007-02-05 17:53:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (*ppvOut)
|
|
|
|
{
|
2012-08-19 17:15:15 +02:00
|
|
|
IEnumString_AddRef(iface);
|
2007-02-05 17:53:42 +01:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
WARN("unsupported interface: %s\n", debugstr_guid(iid));
|
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI ACLMulti_AddRef(IEnumString *iface)
|
|
|
|
{
|
2010-12-10 09:31:27 +01:00
|
|
|
ACLMulti *This = impl_from_IEnumString(iface);
|
2007-02-05 17:53:42 +01:00
|
|
|
return InterlockedIncrement(&This->refCount);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI ACLMulti_Release(IEnumString *iface)
|
|
|
|
{
|
2010-12-10 09:31:27 +01:00
|
|
|
ACLMulti *This = impl_from_IEnumString(iface);
|
2007-02-05 17:53:42 +01:00
|
|
|
ULONG ret;
|
|
|
|
|
|
|
|
ret = InterlockedDecrement(&This->refCount);
|
|
|
|
if (ret == 0)
|
|
|
|
ACLMulti_Destructor(This);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI ACLMulti_Next(IEnumString *iface, ULONG celt, LPOLESTR *rgelt, ULONG *pceltFetched)
|
|
|
|
{
|
2010-12-10 09:31:27 +01:00
|
|
|
ACLMulti *This = impl_from_IEnumString(iface);
|
2007-02-05 17:53:42 +01:00
|
|
|
|
|
|
|
TRACE("(%p, %d, %p, %p)\n", iface, celt, rgelt, pceltFetched);
|
|
|
|
while (This->currObj < This->nObjs)
|
|
|
|
{
|
|
|
|
if (This->objs[This->currObj].pEnum)
|
|
|
|
{
|
|
|
|
/* native browseui 6.0 also returns only one element */
|
|
|
|
HRESULT ret = IEnumString_Next(This->objs[This->currObj].pEnum, 1, rgelt, pceltFetched);
|
|
|
|
if (ret != S_FALSE)
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
This->currObj++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pceltFetched)
|
|
|
|
*pceltFetched = 0;
|
|
|
|
*rgelt = NULL;
|
|
|
|
return S_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI ACLMulti_Reset(IEnumString *iface)
|
|
|
|
{
|
2010-12-10 09:31:27 +01:00
|
|
|
ACLMulti *This = impl_from_IEnumString(iface);
|
2007-02-05 17:53:42 +01:00
|
|
|
int i;
|
|
|
|
|
|
|
|
This->currObj = 0;
|
|
|
|
for (i = 0; i < This->nObjs; i++)
|
|
|
|
{
|
|
|
|
if (This->objs[i].pEnum)
|
|
|
|
IEnumString_Reset(This->objs[i].pEnum);
|
|
|
|
}
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI ACLMulti_Skip(IEnumString *iface, ULONG celt)
|
|
|
|
{
|
|
|
|
/* native browseui 6.0 returns this: */
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI ACLMulti_Clone(IEnumString *iface, IEnumString **ppOut)
|
|
|
|
{
|
|
|
|
*ppOut = NULL;
|
|
|
|
/* native browseui 6.0 returns this: */
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const IEnumStringVtbl ACLMultiVtbl =
|
|
|
|
{
|
|
|
|
ACLMulti_QueryInterface,
|
|
|
|
ACLMulti_AddRef,
|
|
|
|
ACLMulti_Release,
|
|
|
|
|
|
|
|
ACLMulti_Next,
|
|
|
|
ACLMulti_Skip,
|
|
|
|
ACLMulti_Reset,
|
|
|
|
ACLMulti_Clone
|
|
|
|
};
|
|
|
|
|
|
|
|
static HRESULT WINAPI ACLMulti_IObjMgr_QueryInterface(IObjMgr *iface, REFIID iid, LPVOID *ppvOut)
|
|
|
|
{
|
|
|
|
ACLMulti *This = impl_from_IObjMgr(iface);
|
2015-06-07 01:18:56 +02:00
|
|
|
return IEnumString_QueryInterface(&This->IEnumString_iface, iid, ppvOut);
|
2007-02-05 17:53:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI ACLMulti_IObjMgr_AddRef(IObjMgr *iface)
|
|
|
|
{
|
|
|
|
ACLMulti *This = impl_from_IObjMgr(iface);
|
2015-06-07 01:18:56 +02:00
|
|
|
return IEnumString_AddRef(&This->IEnumString_iface);
|
2007-02-05 17:53:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI ACLMulti_IObjMgr_Release(IObjMgr *iface)
|
|
|
|
{
|
|
|
|
ACLMulti *This = impl_from_IObjMgr(iface);
|
2015-06-07 01:18:56 +02:00
|
|
|
return IEnumString_Release(&This->IEnumString_iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI ACLMulti_Append(IObjMgr *iface, IUnknown *obj)
|
|
|
|
{
|
|
|
|
ACLMulti *This = impl_from_IObjMgr(iface);
|
|
|
|
|
|
|
|
TRACE("(%p, %p)\n", This, obj);
|
|
|
|
if (obj == NULL)
|
|
|
|
return E_FAIL;
|
|
|
|
|
|
|
|
This->objs = heap_realloc(This->objs, sizeof(This->objs[0]) * (This->nObjs+1));
|
|
|
|
This->objs[This->nObjs].punk = obj;
|
|
|
|
IUnknown_AddRef(obj);
|
|
|
|
if (FAILED(IUnknown_QueryInterface(obj, &IID_IEnumString, (LPVOID *)&This->objs[This->nObjs].pEnum)))
|
|
|
|
This->objs[This->nObjs].pEnum = NULL;
|
|
|
|
if (FAILED(IUnknown_QueryInterface(obj, &IID_IACList, (LPVOID *)&This->objs[This->nObjs].pACL)))
|
|
|
|
This->objs[This->nObjs].pACL = NULL;
|
|
|
|
This->nObjs++;
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI ACLMulti_Remove(IObjMgr *iface, IUnknown *obj)
|
|
|
|
{
|
|
|
|
ACLMulti *This = impl_from_IObjMgr(iface);
|
|
|
|
int i;
|
|
|
|
|
|
|
|
TRACE("(%p, %p)\n", This, obj);
|
|
|
|
for (i = 0; i < This->nObjs; i++)
|
|
|
|
if (This->objs[i].punk == obj)
|
|
|
|
{
|
|
|
|
release_obj(&This->objs[i]);
|
|
|
|
memmove(&This->objs[i], &This->objs[i+1], (This->nObjs-i-1)*sizeof(struct ACLMultiSublist));
|
|
|
|
This->nObjs--;
|
|
|
|
This->objs = heap_realloc(This->objs, sizeof(This->objs[0]) * This->nObjs);
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
return E_FAIL;
|
2007-02-05 17:53:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static const IObjMgrVtbl ACLMulti_ObjMgrVtbl =
|
|
|
|
{
|
|
|
|
ACLMulti_IObjMgr_QueryInterface,
|
|
|
|
ACLMulti_IObjMgr_AddRef,
|
|
|
|
ACLMulti_IObjMgr_Release,
|
|
|
|
|
|
|
|
ACLMulti_Append,
|
|
|
|
ACLMulti_Remove
|
|
|
|
};
|
|
|
|
|
|
|
|
static HRESULT WINAPI ACLMulti_IACList_QueryInterface(IACList *iface, REFIID iid, LPVOID *ppvOut)
|
|
|
|
{
|
|
|
|
ACLMulti *This = impl_from_IACList(iface);
|
2015-06-07 01:18:56 +02:00
|
|
|
return IEnumString_QueryInterface(&This->IEnumString_iface, iid, ppvOut);
|
2007-02-05 17:53:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI ACLMulti_IACList_AddRef(IACList *iface)
|
|
|
|
{
|
|
|
|
ACLMulti *This = impl_from_IACList(iface);
|
2015-06-07 01:18:56 +02:00
|
|
|
return IEnumString_AddRef(&This->IEnumString_iface);
|
2007-02-05 17:53:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI ACLMulti_IACList_Release(IACList *iface)
|
|
|
|
{
|
|
|
|
ACLMulti *This = impl_from_IACList(iface);
|
2015-06-07 01:18:56 +02:00
|
|
|
return IEnumString_Release(&This->IEnumString_iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI ACLMulti_Expand(IACList *iface, LPCWSTR wstr)
|
|
|
|
{
|
|
|
|
ACLMulti *This = impl_from_IACList(iface);
|
|
|
|
HRESULT res = S_OK;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < This->nObjs; i++)
|
|
|
|
{
|
|
|
|
if (!This->objs[i].pACL)
|
|
|
|
continue;
|
|
|
|
res = IACList_Expand(This->objs[i].pACL, wstr);
|
|
|
|
/* Vista behaviour - XP would break out of the loop if res == S_OK (usually calling Expand only once) */
|
|
|
|
}
|
|
|
|
return res;
|
2007-02-05 17:53:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static const IACListVtbl ACLMulti_ACListVtbl =
|
|
|
|
{
|
|
|
|
ACLMulti_IACList_QueryInterface,
|
|
|
|
ACLMulti_IACList_AddRef,
|
|
|
|
ACLMulti_IACList_Release,
|
|
|
|
|
|
|
|
ACLMulti_Expand
|
|
|
|
};
|
2008-02-20 21:29:39 +01:00
|
|
|
|
|
|
|
HRESULT ACLMulti_Constructor(IUnknown *pUnkOuter, IUnknown **ppOut)
|
|
|
|
{
|
|
|
|
ACLMulti *This;
|
|
|
|
if (pUnkOuter)
|
|
|
|
return CLASS_E_NOAGGREGATION;
|
|
|
|
|
2008-02-22 02:22:59 +01:00
|
|
|
This = heap_alloc_zero(sizeof(ACLMulti));
|
2008-02-20 21:29:39 +01:00
|
|
|
if (This == NULL)
|
|
|
|
return E_OUTOFMEMORY;
|
2008-02-22 02:22:59 +01:00
|
|
|
|
2010-12-10 09:31:27 +01:00
|
|
|
This->IEnumString_iface.lpVtbl = &ACLMultiVtbl;
|
|
|
|
This->IACList_iface.lpVtbl = &ACLMulti_ACListVtbl;
|
|
|
|
This->IObjMgr_iface.lpVtbl = &ACLMulti_ObjMgrVtbl;
|
2008-02-20 21:29:39 +01:00
|
|
|
This->refCount = 1;
|
|
|
|
|
|
|
|
TRACE("returning %p\n", This);
|
2015-04-04 13:39:26 +02:00
|
|
|
*ppOut = (IUnknown *)&This->IEnumString_iface;
|
2008-02-20 21:29:39 +01:00
|
|
|
BROWSEUI_refCount++;
|
|
|
|
return S_OK;
|
|
|
|
}
|