2 * Queue Manager definitions
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
31 #include "wine/list.h"
33 /* Background copy job vtbl and related data */
36 IBackgroundCopyJob2 IBackgroundCopyJob2_iface
;
42 BG_JOB_PROGRESS jobProgress
;
44 /* Protects file list, and progress */
46 struct list entryFromQmgr
;
47 } BackgroundCopyJobImpl
;
49 /* Background copy file vtbl and related data */
52 IBackgroundCopyFile IBackgroundCopyFile_iface
;
55 BG_FILE_PROGRESS fileProgress
;
56 WCHAR tempFileName
[MAX_PATH
];
57 struct list entryFromJob
;
58 BackgroundCopyJobImpl
*owner
;
59 } BackgroundCopyFileImpl
;
61 /* Background copy manager vtbl and related data */
64 IBackgroundCopyManager IBackgroundCopyManager_iface
;
65 /* Protects job list, job states, and jobEvent */
69 } BackgroundCopyManagerImpl
;
73 IClassFactory IClassFactory_iface
;
76 extern HANDLE stop_event DECLSPEC_HIDDEN
;
77 extern ClassFactoryImpl BITS_ClassFactory DECLSPEC_HIDDEN
;
78 extern BackgroundCopyManagerImpl globalMgr DECLSPEC_HIDDEN
;
80 HRESULT
BackgroundCopyManagerConstructor(IUnknown
*pUnkOuter
, LPVOID
*ppObj
) DECLSPEC_HIDDEN
;
81 HRESULT
BackgroundCopyJobConstructor(LPCWSTR displayName
, BG_JOB_TYPE type
,
82 GUID
*pJobId
, BackgroundCopyJobImpl
**job
) DECLSPEC_HIDDEN
;
83 HRESULT
enum_copy_job_create(BackgroundCopyManagerImpl
*qmgr
,
84 IEnumBackgroundCopyJobs
**enumjob
) DECLSPEC_HIDDEN
;
85 HRESULT
BackgroundCopyFileConstructor(BackgroundCopyJobImpl
*owner
,
86 LPCWSTR remoteName
, LPCWSTR localName
,
87 BackgroundCopyFileImpl
**file
) DECLSPEC_HIDDEN
;
88 HRESULT
EnumBackgroundCopyFilesConstructor(BackgroundCopyJobImpl
*, IEnumBackgroundCopyFiles
**) DECLSPEC_HIDDEN
;
89 DWORD WINAPI
fileTransfer(void *param
) DECLSPEC_HIDDEN
;
90 void processJob(BackgroundCopyJobImpl
*job
) DECLSPEC_HIDDEN
;
91 BOOL
processFile(BackgroundCopyFileImpl
*file
, BackgroundCopyJobImpl
*job
) DECLSPEC_HIDDEN
;
93 /* Little helper functions */
95 qmgr_strdup(const char *s
)
97 size_t n
= strlen(s
) + 1;
98 char *d
= HeapAlloc(GetProcessHeap(), 0, n
);
99 return d
? memcpy(d
, s
, n
) : NULL
;
103 transitionJobState(BackgroundCopyJobImpl
*job
, BG_JOB_STATE fromState
,
104 BG_JOB_STATE toState
)
107 EnterCriticalSection(&globalMgr
.cs
);
108 if (job
->state
== fromState
)
110 job
->state
= toState
;
113 LeaveCriticalSection(&globalMgr
.cs
);
117 #endif /* __QMGR_H__ */