/* * Queue Manager (BITS) core functions * * Copyright 2007, 2008 Google (Roy Shea, Dan Hipschman) * * 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 "qmgr.h" #include "wine/debug.h" WINE_DEFAULT_DEBUG_CHANNEL(qmgr); /* Add a reference to the iface pointer */ static ULONG WINAPI BITS_IBackgroundCopyManager_AddRef( IBackgroundCopyManager* iface) { return 2; } /* Attempt to provide a new interface to interact with iface */ static HRESULT WINAPI BITS_IBackgroundCopyManager_QueryInterface( IBackgroundCopyManager* iface, REFIID riid, LPVOID *ppvObject) { BackgroundCopyManagerImpl * This = (BackgroundCopyManagerImpl *)iface; TRACE("IID: %s\n", debugstr_guid(riid)); if (IsEqualGUID(riid, &IID_IUnknown) || IsEqualGUID(riid, &IID_IBackgroundCopyManager)) { *ppvObject = &This->lpVtbl; BITS_IBackgroundCopyManager_AddRef(iface); return S_OK; } *ppvObject = NULL; return E_NOINTERFACE; } /* Release an interface to iface */ static ULONG WINAPI BITS_IBackgroundCopyManager_Release( IBackgroundCopyManager* iface) { return 1; } /*** IBackgroundCopyManager interface methods ***/ static HRESULT WINAPI BITS_IBackgroundCopyManager_CreateJob( IBackgroundCopyManager* iface, LPCWSTR DisplayName, BG_JOB_TYPE Type, GUID *pJobId, IBackgroundCopyJob **ppJob) { BackgroundCopyManagerImpl * This = (BackgroundCopyManagerImpl *) iface; BackgroundCopyJobImpl *job; HRESULT hres; TRACE("\n"); hres = BackgroundCopyJobConstructor(DisplayName, Type, pJobId, (LPVOID *) ppJob); if (FAILED(hres)) return hres; /* Add a reference to the job to job list */ IBackgroundCopyJob_AddRef(*ppJob); job = (BackgroundCopyJobImpl *) *ppJob; EnterCriticalSection(&This->cs); list_add_head(&This->jobs, &job->entryFromQmgr); LeaveCriticalSection(&This->cs); return S_OK; } static HRESULT WINAPI BITS_IBackgroundCopyManager_GetJob( IBackgroundCopyManager* iface, REFGUID jobID, IBackgroundCopyJob **ppJob) { FIXME("Not implemented\n"); return E_NOTIMPL; } static HRESULT WINAPI BITS_IBackgroundCopyManager_EnumJobs( IBackgroundCopyManager* iface, DWORD dwFlags, IEnumBackgroundCopyJobs **ppEnum) { TRACE("\n"); return EnumBackgroundCopyJobsConstructor((LPVOID *) ppEnum, iface); } static HRESULT WINAPI BITS_IBackgroundCopyManager_GetErrorDescription( IBackgroundCopyManager* iface, HRESULT hResult, DWORD LanguageId, LPWSTR *pErrorDescription) { FIXME("Not implemented\n"); return E_NOTIMPL; } static const IBackgroundCopyManagerVtbl BITS_IBackgroundCopyManager_Vtbl = { BITS_IBackgroundCopyManager_QueryInterface, BITS_IBackgroundCopyManager_AddRef, BITS_IBackgroundCopyManager_Release, BITS_IBackgroundCopyManager_CreateJob, BITS_IBackgroundCopyManager_GetJob, BITS_IBackgroundCopyManager_EnumJobs, BITS_IBackgroundCopyManager_GetErrorDescription }; static BackgroundCopyManagerImpl globalMgr = { &BITS_IBackgroundCopyManager_Vtbl, { NULL, -1, 0, 0, 0, 0 }, LIST_INIT(globalMgr.jobs) }; /* Constructor for instances of background copy manager */ HRESULT BackgroundCopyManagerConstructor(IUnknown *pUnkOuter, LPVOID *ppObj) { TRACE("(%p,%p)\n", pUnkOuter, ppObj); *ppObj = (IBackgroundCopyManager *) &globalMgr; return S_OK; }