2 * Queue Manager (BITS) Job Enumerator
4 * Copyright 2007 Google (Roy Shea)
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
22 #include "wine/debug.h"
24 WINE_DEFAULT_DEBUG_CHANNEL(qmgr
);
28 IEnumBackgroundCopyJobs IEnumBackgroundCopyJobs_iface
;
30 IBackgroundCopyJob
**jobs
;
33 } EnumBackgroundCopyJobsImpl
;
35 static inline EnumBackgroundCopyJobsImpl
*impl_from_IEnumBackgroundCopyJobs(IEnumBackgroundCopyJobs
*iface
)
37 return CONTAINING_RECORD(iface
, EnumBackgroundCopyJobsImpl
, IEnumBackgroundCopyJobs_iface
);
40 static HRESULT WINAPI
EnumBackgroundCopyJobs_QueryInterface(IEnumBackgroundCopyJobs
*iface
,
41 REFIID riid
, void **ppv
)
43 EnumBackgroundCopyJobsImpl
*This
= impl_from_IEnumBackgroundCopyJobs(iface
);
45 TRACE("(%p)->(%s, %p)\n", This
, debugstr_guid(riid
), ppv
);
47 if (IsEqualGUID(riid
, &IID_IUnknown
) || IsEqualGUID(riid
, &IID_IEnumBackgroundCopyJobs
))
50 IEnumBackgroundCopyJobs_AddRef(iface
);
58 static ULONG WINAPI
EnumBackgroundCopyJobs_AddRef(IEnumBackgroundCopyJobs
*iface
)
60 EnumBackgroundCopyJobsImpl
*This
= impl_from_IEnumBackgroundCopyJobs(iface
);
61 ULONG ref
= InterlockedIncrement(&This
->ref
);
63 TRACE("(%p)->(%d)\n", This
, ref
);
68 static ULONG WINAPI
EnumBackgroundCopyJobs_Release(IEnumBackgroundCopyJobs
*iface
)
70 EnumBackgroundCopyJobsImpl
*This
= impl_from_IEnumBackgroundCopyJobs(iface
);
71 ULONG ref
= InterlockedDecrement(&This
->ref
);
74 TRACE("(%p)->(%d)\n", This
, ref
);
77 for(i
= 0; i
< This
->numJobs
; i
++)
78 IBackgroundCopyJob_Release(This
->jobs
[i
]);
79 HeapFree(GetProcessHeap(), 0, This
->jobs
);
80 HeapFree(GetProcessHeap(), 0, This
);
86 static HRESULT WINAPI
EnumBackgroundCopyJobs_Next(IEnumBackgroundCopyJobs
*iface
, ULONG celt
,
87 IBackgroundCopyJob
**rgelt
, ULONG
*pceltFetched
)
89 EnumBackgroundCopyJobsImpl
*This
= impl_from_IEnumBackgroundCopyJobs(iface
);
92 IBackgroundCopyJob
*job
;
94 TRACE("(%p)->(%d %p %p)\n", This
, celt
, rgelt
, pceltFetched
);
96 fetched
= min(celt
, This
->numJobs
- This
->indexJobs
);
98 *pceltFetched
= fetched
;
101 /* We need to initialize this array if the caller doesn't request
102 the length because length_is will default to celt. */
103 for (i
= 0; i
< celt
; ++i
)
106 /* pceltFetched can only be NULL if celt is 1 */
111 /* Fill in the array of objects */
112 for (i
= 0; i
< fetched
; ++i
)
114 job
= This
->jobs
[This
->indexJobs
++];
115 IBackgroundCopyJob_AddRef(job
);
119 return fetched
== celt
? S_OK
: S_FALSE
;
122 static HRESULT WINAPI
EnumBackgroundCopyJobs_Skip(IEnumBackgroundCopyJobs
*iface
, ULONG celt
)
124 EnumBackgroundCopyJobsImpl
*This
= impl_from_IEnumBackgroundCopyJobs(iface
);
126 TRACE("(%p)->(%d)\n", This
, celt
);
128 if (This
->numJobs
- This
->indexJobs
< celt
)
130 This
->indexJobs
= This
->numJobs
;
134 This
->indexJobs
+= celt
;
138 static HRESULT WINAPI
EnumBackgroundCopyJobs_Reset(IEnumBackgroundCopyJobs
*iface
)
140 EnumBackgroundCopyJobsImpl
*This
= impl_from_IEnumBackgroundCopyJobs(iface
);
142 TRACE("(%p)\n", This
);
148 static HRESULT WINAPI
EnumBackgroundCopyJobs_Clone(IEnumBackgroundCopyJobs
*iface
,
149 IEnumBackgroundCopyJobs
**ppenum
)
151 EnumBackgroundCopyJobsImpl
*This
= impl_from_IEnumBackgroundCopyJobs(iface
);
152 FIXME("(%p)->(%p): stub\n", This
, ppenum
);
156 static HRESULT WINAPI
EnumBackgroundCopyJobs_GetCount(IEnumBackgroundCopyJobs
*iface
,
159 EnumBackgroundCopyJobsImpl
*This
= impl_from_IEnumBackgroundCopyJobs(iface
);
161 TRACE("(%p)->(%p)\n", This
, puCount
);
163 *puCount
= This
->numJobs
;
167 static const IEnumBackgroundCopyJobsVtbl EnumBackgroundCopyJobsVtbl
=
169 EnumBackgroundCopyJobs_QueryInterface
,
170 EnumBackgroundCopyJobs_AddRef
,
171 EnumBackgroundCopyJobs_Release
,
172 EnumBackgroundCopyJobs_Next
,
173 EnumBackgroundCopyJobs_Skip
,
174 EnumBackgroundCopyJobs_Reset
,
175 EnumBackgroundCopyJobs_Clone
,
176 EnumBackgroundCopyJobs_GetCount
179 HRESULT
enum_copy_job_create(BackgroundCopyManagerImpl
*qmgr
, IEnumBackgroundCopyJobs
**enumjob
)
181 EnumBackgroundCopyJobsImpl
*This
;
182 BackgroundCopyJobImpl
*job
;
185 TRACE("%p, %p)\n", qmgr
, enumjob
);
187 This
= HeapAlloc(GetProcessHeap(), 0, sizeof *This
);
189 return E_OUTOFMEMORY
;
190 This
->IEnumBackgroundCopyJobs_iface
.lpVtbl
= &EnumBackgroundCopyJobsVtbl
;
193 /* Create array of jobs */
196 EnterCriticalSection(&qmgr
->cs
);
197 This
->numJobs
= list_count(&qmgr
->jobs
);
199 if (0 < This
->numJobs
)
201 This
->jobs
= HeapAlloc(GetProcessHeap(), 0,
202 This
->numJobs
* sizeof *This
->jobs
);
205 LeaveCriticalSection(&qmgr
->cs
);
206 HeapFree(GetProcessHeap(), 0, This
);
207 return E_OUTOFMEMORY
;
214 LIST_FOR_EACH_ENTRY(job
, &qmgr
->jobs
, BackgroundCopyJobImpl
, entryFromQmgr
)
216 IBackgroundCopyJob
*job_iface
= (IBackgroundCopyJob
*)&job
->IBackgroundCopyJob2_iface
;
217 IBackgroundCopyJob_AddRef(job_iface
);
218 This
->jobs
[i
++] = job_iface
;
220 LeaveCriticalSection(&qmgr
->cs
);
222 *enumjob
= &This
->IEnumBackgroundCopyJobs_iface
;