2 * Copyright (C) 2008 Google (Roy Shea)
3 * Copyright (C) 2018 Dmitry Timoshkov
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
30 #include "mstask_private.h"
31 #include "wine/debug.h"
33 WINE_DEFAULT_DEBUG_CHANNEL(mstask
);
37 USHORT product_version
;
40 USHORT name_size_offset
;
41 USHORT trigger_offset
;
42 USHORT error_retry_count
;
43 USHORT error_retry_interval
;
51 SYSTEMTIME last_runtime
;
57 IPersistFile IPersistFile_iface
;
59 ITaskDefinition
*task
;
66 WORD idle_minutes
, deadline_minutes
;
67 DWORD flags
, priority
, maxRunTime
, exit_code
;
68 SYSTEMTIME last_runtime
;
71 TASK_TRIGGER
*trigger
;
73 USHORT instance_count
;
76 static inline TaskImpl
*impl_from_ITask(ITask
*iface
)
78 return CONTAINING_RECORD(iface
, TaskImpl
, ITask_iface
);
81 static inline TaskImpl
*impl_from_IPersistFile( IPersistFile
*iface
)
83 return CONTAINING_RECORD(iface
, TaskImpl
, IPersistFile_iface
);
86 static void TaskDestructor(TaskImpl
*This
)
90 IExecAction_Release(This
->action
);
91 ITaskDefinition_Release(This
->task
);
92 heap_free(This
->data
);
93 heap_free(This
->task_name
);
94 heap_free(This
->accountName
);
95 heap_free(This
->trigger
);
97 InterlockedDecrement(&dll_ref
);
100 static HRESULT WINAPI
MSTASK_ITask_QueryInterface(
105 TaskImpl
* This
= impl_from_ITask(iface
);
107 TRACE("IID: %s\n", debugstr_guid(riid
));
108 if (ppvObject
== NULL
)
111 if (IsEqualGUID(riid
, &IID_IUnknown
) ||
112 IsEqualGUID(riid
, &IID_ITask
))
114 *ppvObject
= &This
->ITask_iface
;
118 else if (IsEqualGUID(riid
, &IID_IPersistFile
))
120 *ppvObject
= &This
->IPersistFile_iface
;
125 WARN("Unknown interface: %s\n", debugstr_guid(riid
));
127 return E_NOINTERFACE
;
130 static ULONG WINAPI
MSTASK_ITask_AddRef(
133 TaskImpl
*This
= impl_from_ITask(iface
);
136 ref
= InterlockedIncrement(&This
->ref
);
140 static ULONG WINAPI
MSTASK_ITask_Release(
143 TaskImpl
* This
= impl_from_ITask(iface
);
146 ref
= InterlockedDecrement(&This
->ref
);
148 TaskDestructor(This
);
152 HRESULT
task_set_trigger(ITask
*task
, WORD idx
, const TASK_TRIGGER
*src
)
154 TaskImpl
*This
= impl_from_ITask(task
);
155 TIME_FIELDS field_time
;
156 LARGE_INTEGER sys_time
;
159 TRACE("(%p, %u, %p)\n", task
, idx
, src
);
161 if (idx
>= This
->trigger_count
)
164 /* Verify valid structure size */
165 if (src
->cbTriggerSize
!= sizeof(*src
))
167 dst
.cbTriggerSize
= src
->cbTriggerSize
;
169 /* Reserved field must be zero */
172 /* Verify and set valid start date and time */
173 memset(&field_time
, 0, sizeof(field_time
));
174 field_time
.Year
= src
->wBeginYear
;
175 field_time
.Month
= src
->wBeginMonth
;
176 field_time
.Day
= src
->wBeginDay
;
177 field_time
.Hour
= src
->wStartHour
;
178 field_time
.Minute
= src
->wStartMinute
;
179 if (!RtlTimeFieldsToTime(&field_time
, &sys_time
))
181 dst
.wBeginYear
= src
->wBeginYear
;
182 dst
.wBeginMonth
= src
->wBeginMonth
;
183 dst
.wBeginDay
= src
->wBeginDay
;
184 dst
.wStartHour
= src
->wStartHour
;
185 dst
.wStartMinute
= src
->wStartMinute
;
187 /* Verify valid end date if TASK_TRIGGER_FLAG_HAS_END_DATE flag is set */
188 if (src
->rgFlags
& TASK_TRIGGER_FLAG_HAS_END_DATE
)
190 memset(&field_time
, 0, sizeof(field_time
));
191 field_time
.Year
= src
->wEndYear
;
192 field_time
.Month
= src
->wEndMonth
;
193 field_time
.Day
= src
->wEndDay
;
194 if (!RtlTimeFieldsToTime(&field_time
, &sys_time
))
198 /* Set valid end date independent of TASK_TRIGGER_FLAG_HAS_END_DATE flag */
199 dst
.wEndYear
= src
->wEndYear
;
200 dst
.wEndMonth
= src
->wEndMonth
;
201 dst
.wEndDay
= src
->wEndDay
;
203 /* Verify duration and interval pair */
204 if (src
->MinutesDuration
<= src
->MinutesInterval
&& src
->MinutesInterval
> 0)
206 dst
.MinutesDuration
= src
->MinutesDuration
;
207 dst
.MinutesInterval
= src
->MinutesInterval
;
209 /* Copy over flags */
210 dst
.rgFlags
= src
->rgFlags
;
212 /* Set TriggerType dependent fields of Type union */
213 dst
.TriggerType
= src
->TriggerType
;
214 switch (src
->TriggerType
)
216 case TASK_TIME_TRIGGER_DAILY
:
217 dst
.Type
.Daily
.DaysInterval
= src
->Type
.Daily
.DaysInterval
;
219 case TASK_TIME_TRIGGER_WEEKLY
:
220 dst
.Type
.Weekly
.WeeksInterval
= src
->Type
.Weekly
.WeeksInterval
;
221 dst
.Type
.Weekly
.rgfDaysOfTheWeek
= src
->Type
.Weekly
.rgfDaysOfTheWeek
;
223 case TASK_TIME_TRIGGER_MONTHLYDATE
:
224 dst
.Type
.MonthlyDate
.rgfDays
= src
->Type
.MonthlyDate
.rgfDays
;
225 dst
.Type
.MonthlyDate
.rgfMonths
= src
->Type
.MonthlyDate
.rgfMonths
;
227 case TASK_TIME_TRIGGER_MONTHLYDOW
:
228 dst
.Type
.MonthlyDOW
.wWhichWeek
= src
->Type
.MonthlyDOW
.wWhichWeek
;
229 dst
.Type
.MonthlyDOW
.rgfDaysOfTheWeek
= src
->Type
.MonthlyDOW
.rgfDaysOfTheWeek
;
230 dst
.Type
.MonthlyDOW
.rgfMonths
= src
->Type
.MonthlyDOW
.rgfMonths
;
232 case TASK_TIME_TRIGGER_ONCE
:
233 case TASK_EVENT_TRIGGER_ON_IDLE
:
234 case TASK_EVENT_TRIGGER_AT_SYSTEMSTART
:
235 case TASK_EVENT_TRIGGER_AT_LOGON
:
237 dst
.Type
= src
->Type
;
241 /* Reserved field must be zero */
244 /* wRandomMinutesInterval not currently used and is initialized to zero */
245 dst
.wRandomMinutesInterval
= 0;
247 This
->trigger
[idx
] = dst
;
252 HRESULT
task_get_trigger(ITask
*task
, WORD idx
, TASK_TRIGGER
*dst
)
254 TaskImpl
*This
= impl_from_ITask(task
);
257 TRACE("(%p, %u, %p)\n", task
, idx
, dst
);
259 if (idx
>= This
->trigger_count
)
260 return SCHED_E_TRIGGER_NOT_FOUND
;
262 src
= &This
->trigger
[idx
];
264 /* Native implementation doesn't verify equivalent cbTriggerSize fields */
266 /* Copy relevant fields of the structure */
267 dst
->cbTriggerSize
= src
->cbTriggerSize
;
269 dst
->wBeginYear
= src
->wBeginYear
;
270 dst
->wBeginMonth
= src
->wBeginMonth
;
271 dst
->wBeginDay
= src
->wBeginDay
;
272 dst
->wEndYear
= src
->wEndYear
;
273 dst
->wEndMonth
= src
->wEndMonth
;
274 dst
->wEndDay
= src
->wEndDay
;
275 dst
->wStartHour
= src
->wStartHour
;
276 dst
->wStartMinute
= src
->wStartMinute
;
277 dst
->MinutesDuration
= src
->MinutesDuration
;
278 dst
->MinutesInterval
= src
->MinutesInterval
;
279 dst
->rgFlags
= src
->rgFlags
;
280 dst
->TriggerType
= src
->TriggerType
;
281 switch (src
->TriggerType
)
283 case TASK_TIME_TRIGGER_DAILY
:
284 dst
->Type
.Daily
.DaysInterval
= src
->Type
.Daily
.DaysInterval
;
286 case TASK_TIME_TRIGGER_WEEKLY
:
287 dst
->Type
.Weekly
.WeeksInterval
= src
->Type
.Weekly
.WeeksInterval
;
288 dst
->Type
.Weekly
.rgfDaysOfTheWeek
= src
->Type
.Weekly
.rgfDaysOfTheWeek
;
290 case TASK_TIME_TRIGGER_MONTHLYDATE
:
291 dst
->Type
.MonthlyDate
.rgfDays
= src
->Type
.MonthlyDate
.rgfDays
;
292 dst
->Type
.MonthlyDate
.rgfMonths
= src
->Type
.MonthlyDate
.rgfMonths
;
294 case TASK_TIME_TRIGGER_MONTHLYDOW
:
295 dst
->Type
.MonthlyDOW
.wWhichWeek
= src
->Type
.MonthlyDOW
.wWhichWeek
;
296 dst
->Type
.MonthlyDOW
.rgfDaysOfTheWeek
= src
->Type
.MonthlyDOW
.rgfDaysOfTheWeek
;
297 dst
->Type
.MonthlyDOW
.rgfMonths
= src
->Type
.MonthlyDOW
.rgfMonths
;
299 case TASK_TIME_TRIGGER_ONCE
:
300 case TASK_EVENT_TRIGGER_ON_IDLE
:
301 case TASK_EVENT_TRIGGER_AT_SYSTEMSTART
:
302 case TASK_EVENT_TRIGGER_AT_LOGON
:
307 dst
->wRandomMinutesInterval
= 0;
312 static HRESULT WINAPI
MSTASK_ITask_CreateTrigger(ITask
*iface
, WORD
*idx
, ITaskTrigger
**task_trigger
)
314 TaskImpl
*This
= impl_from_ITask(iface
);
315 TASK_TRIGGER
*new_trigger
;
319 TRACE("(%p, %p, %p)\n", iface
, idx
, task_trigger
);
321 hr
= TaskTriggerConstructor(iface
, This
->trigger_count
, task_trigger
);
322 if (hr
!= S_OK
) return hr
;
325 new_trigger
= heap_realloc(This
->trigger
, sizeof(This
->trigger
[0]) * (This
->trigger_count
+ 1));
327 new_trigger
= heap_alloc(sizeof(This
->trigger
[0]));
330 ITaskTrigger_Release(*task_trigger
);
331 return E_OUTOFMEMORY
;
334 This
->trigger
= new_trigger
;
336 new_trigger
= &This
->trigger
[This
->trigger_count
];
338 /* Most fields default to zero. Initialize other fields to default values. */
339 memset(new_trigger
, 0, sizeof(*new_trigger
));
341 new_trigger
->cbTriggerSize
= sizeof(*new_trigger
);
342 new_trigger
->wBeginYear
= time
.wYear
;
343 new_trigger
->wBeginMonth
= time
.wMonth
;
344 new_trigger
->wBeginDay
= time
.wDay
;
345 new_trigger
->wStartHour
= time
.wHour
;
346 new_trigger
->wStartMinute
= time
.wMinute
;
347 new_trigger
->rgFlags
= TASK_TRIGGER_FLAG_DISABLED
;
348 new_trigger
->TriggerType
= TASK_TIME_TRIGGER_DAILY
;
349 new_trigger
->Type
.Daily
.DaysInterval
= 1;
351 *idx
= This
->trigger_count
++;
356 static HRESULT WINAPI
MSTASK_ITask_DeleteTrigger(ITask
*iface
, WORD idx
)
358 TaskImpl
*This
= impl_from_ITask(iface
);
360 TRACE("(%p, %u)\n", iface
, idx
);
362 if (idx
>= This
->trigger_count
)
363 return SCHED_E_TRIGGER_NOT_FOUND
;
365 This
->trigger_count
--;
366 memmove(&This
->trigger
[idx
], &This
->trigger
[idx
+ 1], (This
->trigger_count
- idx
) * sizeof(This
->trigger
[0]));
367 /* this shouldn't fail in practice since we're shrinking the memory block */
368 This
->trigger
= heap_realloc(This
->trigger
, sizeof(This
->trigger
[0]) * This
->trigger_count
);
373 static HRESULT WINAPI
MSTASK_ITask_GetTriggerCount(ITask
*iface
, WORD
*count
)
375 TaskImpl
*This
= impl_from_ITask(iface
);
377 TRACE("(%p, %p)\n", iface
, count
);
379 *count
= This
->trigger_count
;
383 static HRESULT WINAPI
MSTASK_ITask_GetTrigger(ITask
*iface
, WORD idx
, ITaskTrigger
**trigger
)
385 TaskImpl
*This
= impl_from_ITask(iface
);
387 TRACE("(%p, %u, %p)\n", iface
, idx
, trigger
);
389 if (idx
>= This
->trigger_count
)
390 return SCHED_E_TRIGGER_NOT_FOUND
;
392 return TaskTriggerConstructor(iface
, idx
, trigger
);
395 static HRESULT WINAPI
MSTASK_ITask_GetTriggerString(
398 LPWSTR
*ppwszTrigger
)
400 FIXME("(%p, %d, %p): stub\n", iface
, iTrigger
, ppwszTrigger
);
404 static HRESULT WINAPI
MSTASK_ITask_GetRunTimes(
406 const LPSYSTEMTIME pstBegin
,
407 const LPSYSTEMTIME pstEnd
,
409 LPSYSTEMTIME
*rgstTaskTimes
)
411 FIXME("(%p, %p, %p, %p, %p): stub\n", iface
, pstBegin
, pstEnd
, pCount
,
416 static void get_begin_time(const TASK_TRIGGER
*trigger
, FILETIME
*ft
)
420 st
.wYear
= trigger
->wBeginYear
;
421 st
.wMonth
= trigger
->wBeginMonth
;
422 st
.wDay
= trigger
->wBeginDay
;
427 st
.wMilliseconds
= 0;
428 SystemTimeToFileTime(&st
, ft
);
431 static void get_end_time(const TASK_TRIGGER
*trigger
, FILETIME
*ft
)
435 if (!(trigger
->rgFlags
& TASK_TRIGGER_FLAG_HAS_END_DATE
))
437 ft
->dwHighDateTime
= ~0u;
438 ft
->dwLowDateTime
= ~0u;
442 st
.wYear
= trigger
->wEndYear
;
443 st
.wMonth
= trigger
->wEndMonth
;
444 st
.wDay
= trigger
->wEndDay
;
449 st
.wMilliseconds
= 0;
450 SystemTimeToFileTime(&st
, ft
);
453 static void filetime_add_ms(FILETIME
*ft
, ULONGLONG ms
)
459 } *ftll
= (union u_ftll
*)ft
;
461 ftll
->ll
+= ms
* (ULONGLONG
)10000;
464 static void filetime_add_hours(FILETIME
*ft
, ULONG hours
)
466 filetime_add_ms(ft
, (ULONGLONG
)hours
* 60 * 60 * 1000);
469 static void filetime_add_days(FILETIME
*ft
, ULONG days
)
471 filetime_add_hours(ft
, (ULONGLONG
)days
* 24);
474 static void filetime_add_weeks(FILETIME
*ft
, ULONG weeks
)
476 filetime_add_days(ft
, (ULONGLONG
)weeks
* 7);
479 static HRESULT WINAPI
MSTASK_ITask_GetNextRunTime(ITask
*iface
, SYSTEMTIME
*rt
)
481 TaskImpl
*This
= impl_from_ITask(iface
);
482 HRESULT hr
= SCHED_S_TASK_NO_VALID_TRIGGERS
;
483 SYSTEMTIME st
, current_st
;
484 FILETIME current_ft
, trigger_ft
, begin_ft
, end_ft
, best_ft
;
485 BOOL have_best_time
= FALSE
;
488 TRACE("(%p, %p)\n", iface
, rt
);
490 if (This
->flags
& TASK_FLAG_DISABLED
)
492 memset(rt
, 0, sizeof(*rt
));
493 return SCHED_S_TASK_DISABLED
;
496 GetLocalTime(¤t_st
);
497 SystemTimeToFileTime(¤t_st
, ¤t_ft
);
499 for (i
= 0; i
< This
->trigger_count
; i
++)
501 if (!(This
->trigger
[i
].rgFlags
& TASK_TRIGGER_FLAG_DISABLED
))
503 get_begin_time(&This
->trigger
[i
], &begin_ft
);
504 if (CompareFileTime(&begin_ft
, ¤t_ft
) < 0)
505 begin_ft
= current_ft
;
507 get_end_time(&This
->trigger
[i
], &end_ft
);
509 switch (This
->trigger
[i
].TriggerType
)
511 case TASK_EVENT_TRIGGER_ON_IDLE
:
512 case TASK_EVENT_TRIGGER_AT_SYSTEMSTART
:
513 case TASK_EVENT_TRIGGER_AT_LOGON
:
514 hr
= SCHED_S_EVENT_TRIGGER
;
517 case TASK_TIME_TRIGGER_ONCE
:
519 st
.wHour
= This
->trigger
[i
].wStartHour
;
520 st
.wMinute
= This
->trigger
[i
].wStartMinute
;
522 st
.wMilliseconds
= 0;
523 SystemTimeToFileTime(&st
, &trigger_ft
);
524 if (CompareFileTime(&begin_ft
, &trigger_ft
) <= 0 && CompareFileTime(&trigger_ft
, &end_ft
) < 0)
526 if (!have_best_time
|| CompareFileTime(&trigger_ft
, &best_ft
) < 0)
528 best_ft
= trigger_ft
;
529 have_best_time
= TRUE
;
534 case TASK_TIME_TRIGGER_DAILY
:
535 if (!This
->trigger
[i
].Type
.Daily
.DaysInterval
)
536 break; /* avoid infinite loop */
539 st
.wHour
= This
->trigger
[i
].wStartHour
;
540 st
.wMinute
= This
->trigger
[i
].wStartMinute
;
542 st
.wMilliseconds
= 0;
543 SystemTimeToFileTime(&st
, &trigger_ft
);
544 while (CompareFileTime(&trigger_ft
, &end_ft
) < 0)
546 if (CompareFileTime(&trigger_ft
, &begin_ft
) >= 0)
548 if (!have_best_time
|| CompareFileTime(&trigger_ft
, &best_ft
) < 0)
550 best_ft
= trigger_ft
;
551 have_best_time
= TRUE
;
556 filetime_add_days(&trigger_ft
, This
->trigger
[i
].Type
.Daily
.DaysInterval
);
560 case TASK_TIME_TRIGGER_WEEKLY
:
561 if (!This
->trigger
[i
].Type
.Weekly
.rgfDaysOfTheWeek
)
562 break; /* avoid infinite loop */
565 st
.wHour
= This
->trigger
[i
].wStartHour
;
566 st
.wMinute
= This
->trigger
[i
].wStartMinute
;
568 st
.wMilliseconds
= 0;
569 SystemTimeToFileTime(&st
, &trigger_ft
);
570 while (CompareFileTime(&trigger_ft
, &end_ft
) < 0)
572 FileTimeToSystemTime(&trigger_ft
, &st
);
574 if (CompareFileTime(&trigger_ft
, &begin_ft
) >= 0)
576 if (This
->trigger
[i
].Type
.Weekly
.rgfDaysOfTheWeek
& (1 << st
.wDayOfWeek
))
578 if (!have_best_time
|| CompareFileTime(&trigger_ft
, &best_ft
) < 0)
580 best_ft
= trigger_ft
;
581 have_best_time
= TRUE
;
587 if (st
.wDayOfWeek
== 0 && This
->trigger
[i
].Type
.Weekly
.WeeksInterval
> 1) /* Sunday, goto next week */
588 filetime_add_weeks(&trigger_ft
, This
->trigger
[i
].Type
.Weekly
.WeeksInterval
- 1);
589 else /* check next weekday */
590 filetime_add_days(&trigger_ft
, 1);
595 FIXME("trigger type %u is not handled\n", This
->trigger
[i
].TriggerType
);
603 FileTimeToSystemTime(&best_ft
, rt
);
607 memset(rt
, 0, sizeof(*rt
));
611 static HRESULT WINAPI
MSTASK_ITask_SetIdleWait(
614 WORD wDeadlineMinutes
)
616 FIXME("(%p, %d, %d): stub\n", iface
, wIdleMinutes
, wDeadlineMinutes
);
620 static HRESULT WINAPI
MSTASK_ITask_GetIdleWait(ITask
*iface
, WORD
*idle_minutes
, WORD
*deadline_minutes
)
622 TaskImpl
*This
= impl_from_ITask(iface
);
624 TRACE("(%p, %p, %p): stub\n", iface
, idle_minutes
, deadline_minutes
);
626 *idle_minutes
= This
->idle_minutes
;
627 *deadline_minutes
= This
->deadline_minutes
;
631 static HRESULT WINAPI
MSTASK_ITask_Run(ITask
*iface
)
633 TaskImpl
*This
= impl_from_ITask(iface
);
635 TRACE("(%p)\n", iface
);
637 if (This
->status
== SCHED_S_TASK_NOT_SCHEDULED
)
638 return SCHED_E_TASK_NOT_READY
;
640 This
->flags
|= 0x04000000;
641 return IPersistFile_Save(&This
->IPersistFile_iface
, NULL
, FALSE
);
644 static HRESULT WINAPI
MSTASK_ITask_Terminate(ITask
*iface
)
646 TaskImpl
*This
= impl_from_ITask(iface
);
648 TRACE("(%p)\n", iface
);
650 if (!This
->instance_count
)
651 return SCHED_E_TASK_NOT_RUNNING
;
653 This
->flags
|= 0x08000000;
654 return IPersistFile_Save(&This
->IPersistFile_iface
, NULL
, FALSE
);
657 static HRESULT WINAPI
MSTASK_ITask_EditWorkItem(
662 FIXME("(%p, %p, %d): stub\n", iface
, hParent
, dwReserved
);
666 static HRESULT WINAPI
MSTASK_ITask_GetMostRecentRunTime(ITask
*iface
, SYSTEMTIME
*st
)
668 TaskImpl
*This
= impl_from_ITask(iface
);
670 TRACE("(%p, %p)\n", iface
, st
);
672 if (This
->status
== SCHED_S_TASK_NOT_SCHEDULED
)
674 memset(st
, 0, sizeof(*st
));
675 return SCHED_S_TASK_HAS_NOT_RUN
;
678 *st
= This
->last_runtime
;
682 static HRESULT WINAPI
MSTASK_ITask_GetStatus(ITask
*iface
, HRESULT
*status
)
684 TaskImpl
*This
= impl_from_ITask(iface
);
686 TRACE("(%p, %p)\n", iface
, status
);
688 *status
= This
->instance_count
? SCHED_S_TASK_RUNNING
: This
->status
;
692 static HRESULT WINAPI
MSTASK_ITask_GetExitCode(ITask
*iface
, DWORD
*exit_code
)
694 TaskImpl
*This
= impl_from_ITask(iface
);
696 TRACE("(%p, %p)\n", iface
, exit_code
);
698 if (This
->status
== SCHED_S_TASK_NOT_SCHEDULED
)
701 return SCHED_S_TASK_HAS_NOT_RUN
;
704 *exit_code
= This
->exit_code
;
708 static HRESULT WINAPI
MSTASK_ITask_SetComment(ITask
*iface
, LPCWSTR comment
)
710 TaskImpl
*This
= impl_from_ITask(iface
);
711 IRegistrationInfo
*info
;
714 TRACE("(%p, %s)\n", iface
, debugstr_w(comment
));
716 if (!comment
|| !comment
[0])
719 hr
= ITaskDefinition_get_RegistrationInfo(This
->task
, &info
);
722 hr
= IRegistrationInfo_put_Description(info
, (BSTR
)comment
);
723 IRegistrationInfo_Release(info
);
724 This
->is_dirty
= TRUE
;
729 static HRESULT WINAPI
MSTASK_ITask_GetComment(ITask
*iface
, LPWSTR
*comment
)
731 TaskImpl
*This
= impl_from_ITask(iface
);
732 IRegistrationInfo
*info
;
737 TRACE("(%p, %p)\n", iface
, comment
);
739 hr
= ITaskDefinition_get_RegistrationInfo(This
->task
, &info
);
740 if (hr
!= S_OK
) return hr
;
742 hr
= IRegistrationInfo_get_Description(info
, &description
);
745 len
= description
? lstrlenW(description
) + 1 : 1;
746 *comment
= CoTaskMemAlloc(len
* sizeof(WCHAR
));
752 lstrcpyW(*comment
, description
);
758 SysFreeString(description
);
761 IRegistrationInfo_Release(info
);
765 static HRESULT WINAPI
MSTASK_ITask_SetCreator(ITask
*iface
, LPCWSTR creator
)
767 TaskImpl
*This
= impl_from_ITask(iface
);
768 IRegistrationInfo
*info
;
771 TRACE("(%p, %s)\n", iface
, debugstr_w(creator
));
773 if (!creator
|| !creator
[0])
776 hr
= ITaskDefinition_get_RegistrationInfo(This
->task
, &info
);
779 hr
= IRegistrationInfo_put_Author(info
, (BSTR
)creator
);
780 IRegistrationInfo_Release(info
);
781 This
->is_dirty
= TRUE
;
786 static HRESULT WINAPI
MSTASK_ITask_GetCreator(ITask
*iface
, LPWSTR
*creator
)
788 TaskImpl
*This
= impl_from_ITask(iface
);
789 IRegistrationInfo
*info
;
794 TRACE("(%p, %p)\n", iface
, creator
);
796 hr
= ITaskDefinition_get_RegistrationInfo(This
->task
, &info
);
797 if (hr
!= S_OK
) return hr
;
799 hr
= IRegistrationInfo_get_Author(info
, &author
);
802 len
= author
? lstrlenW(author
) + 1 : 1;
803 *creator
= CoTaskMemAlloc(len
* sizeof(WCHAR
));
809 lstrcpyW(*creator
, author
);
815 SysFreeString(author
);
818 IRegistrationInfo_Release(info
);
822 static HRESULT WINAPI
MSTASK_ITask_SetWorkItemData(ITask
*iface
, WORD count
, BYTE data
[])
824 TaskImpl
*This
= impl_from_ITask(iface
);
826 TRACE("(%p, %u, %p)\n", iface
, count
, data
);
830 if (!data
) return E_INVALIDARG
;
832 heap_free(This
->data
);
833 This
->data
= heap_alloc(count
);
834 if (!This
->data
) return E_OUTOFMEMORY
;
835 memcpy(This
->data
, data
, count
);
836 This
->data_count
= count
;
840 if (data
) return E_INVALIDARG
;
842 heap_free(This
->data
);
844 This
->data_count
= 0;
850 static HRESULT WINAPI
MSTASK_ITask_GetWorkItemData(ITask
*iface
, WORD
*count
, BYTE
**data
)
852 TaskImpl
*This
= impl_from_ITask(iface
);
854 TRACE("(%p, %p, %p)\n", iface
, count
, data
);
863 *data
= CoTaskMemAlloc(This
->data_count
);
864 if (!*data
) return E_OUTOFMEMORY
;
865 memcpy(*data
, This
->data
, This
->data_count
);
866 *count
= This
->data_count
;
872 static HRESULT WINAPI
MSTASK_ITask_SetErrorRetryCount(
876 FIXME("(%p, %d): stub\n", iface
, wRetryCount
);
880 static HRESULT WINAPI
MSTASK_ITask_GetErrorRetryCount(ITask
*iface
, WORD
*count
)
882 TRACE("(%p, %p)\n", iface
, count
);
886 static HRESULT WINAPI
MSTASK_ITask_SetErrorRetryInterval(
890 FIXME("(%p, %d): stub\n", iface
, wRetryInterval
);
894 static HRESULT WINAPI
MSTASK_ITask_GetErrorRetryInterval(ITask
*iface
, WORD
*interval
)
896 TRACE("(%p, %p)\n", iface
, interval
);
900 static HRESULT WINAPI
MSTASK_ITask_SetFlags(ITask
*iface
, DWORD flags
)
902 TaskImpl
*This
= impl_from_ITask(iface
);
904 TRACE("(%p, 0x%08x)\n", iface
, flags
);
905 This
->flags
&= 0xffff8000;
906 This
->flags
|= flags
& 0x7fff;
907 This
->is_dirty
= TRUE
;
911 static HRESULT WINAPI
MSTASK_ITask_GetFlags(ITask
*iface
, DWORD
*flags
)
913 TaskImpl
*This
= impl_from_ITask(iface
);
915 TRACE("(%p, %p)\n", iface
, flags
);
916 *flags
= LOWORD(This
->flags
);
920 static HRESULT WINAPI
MSTASK_ITask_SetAccountInformation(
922 LPCWSTR pwszAccountName
,
923 LPCWSTR pwszPassword
)
926 TaskImpl
*This
= impl_from_ITask(iface
);
927 LPWSTR tmp_account_name
;
929 TRACE("(%p, %s, %s): partial stub\n", iface
, debugstr_w(pwszAccountName
),
930 debugstr_w(pwszPassword
));
933 FIXME("Partial stub ignores passwords\n");
935 n
= (lstrlenW(pwszAccountName
) + 1);
936 tmp_account_name
= heap_alloc(n
* sizeof(WCHAR
));
937 if (!tmp_account_name
)
938 return E_OUTOFMEMORY
;
939 lstrcpyW(tmp_account_name
, pwszAccountName
);
940 heap_free(This
->accountName
);
941 This
->accountName
= tmp_account_name
;
942 This
->is_dirty
= TRUE
;
946 static HRESULT WINAPI
MSTASK_ITask_GetAccountInformation(
948 LPWSTR
*ppwszAccountName
)
951 TaskImpl
*This
= impl_from_ITask(iface
);
953 TRACE("(%p, %p): partial stub\n", iface
, ppwszAccountName
);
955 /* This implements the WinXP behavior when accountName has not yet
956 * set. Win2K behaves differently, returning SCHED_E_CANNOT_OPEN_TASK */
957 if (!This
->accountName
)
958 return HRESULT_FROM_WIN32(ERROR_FILE_NOT_FOUND
);
960 n
= (lstrlenW(This
->accountName
) + 1);
961 *ppwszAccountName
= CoTaskMemAlloc(n
* sizeof(WCHAR
));
962 if (!*ppwszAccountName
)
963 return E_OUTOFMEMORY
;
964 lstrcpyW(*ppwszAccountName
, This
->accountName
);
968 static HRESULT WINAPI
MSTASK_ITask_SetApplicationName(ITask
*iface
, LPCWSTR appname
)
970 TaskImpl
*This
= impl_from_ITask(iface
);
974 TRACE("(%p, %s)\n", iface
, debugstr_w(appname
));
976 /* Empty application name */
977 if (!appname
|| !appname
[0])
978 return IExecAction_put_Path(This
->action
, NULL
);
980 /* Attempt to set pwszApplicationName to a path resolved application name */
981 len
= SearchPathW(NULL
, appname
, NULL
, 0, NULL
, NULL
);
986 tmp_name
= heap_alloc(len
* sizeof(WCHAR
));
988 return E_OUTOFMEMORY
;
989 len
= SearchPathW(NULL
, appname
, NULL
, len
, tmp_name
, NULL
);
992 hr
= IExecAction_put_Path(This
->action
, tmp_name
);
993 if (hr
== S_OK
) This
->is_dirty
= TRUE
;
996 hr
= HRESULT_FROM_WIN32(GetLastError());
1002 /* If unable to path resolve name, simply set to appname */
1003 hr
= IExecAction_put_Path(This
->action
, (BSTR
)appname
);
1004 if (hr
== S_OK
) This
->is_dirty
= TRUE
;
1008 static HRESULT WINAPI
MSTASK_ITask_GetApplicationName(ITask
*iface
, LPWSTR
*appname
)
1010 TaskImpl
*This
= impl_from_ITask(iface
);
1015 TRACE("(%p, %p)\n", iface
, appname
);
1017 hr
= IExecAction_get_Path(This
->action
, &path
);
1018 if (hr
!= S_OK
) return hr
;
1020 len
= path
? lstrlenW(path
) + 1 : 1;
1021 *appname
= CoTaskMemAlloc(len
* sizeof(WCHAR
));
1027 lstrcpyW(*appname
, path
);
1033 SysFreeString(path
);
1037 static HRESULT WINAPI
MSTASK_ITask_SetParameters(ITask
*iface
, LPCWSTR params
)
1039 TaskImpl
*This
= impl_from_ITask(iface
);
1042 TRACE("(%p, %s)\n", iface
, debugstr_w(params
));
1044 /* Empty parameter list */
1045 if (!params
|| !params
[0])
1048 hr
= IExecAction_put_Arguments(This
->action
, (BSTR
)params
);
1049 if (hr
== S_OK
) This
->is_dirty
= TRUE
;
1053 static HRESULT WINAPI
MSTASK_ITask_GetParameters(ITask
*iface
, LPWSTR
*params
)
1055 TaskImpl
*This
= impl_from_ITask(iface
);
1060 TRACE("(%p, %p)\n", iface
, params
);
1062 hr
= IExecAction_get_Arguments(This
->action
, &args
);
1063 if (hr
!= S_OK
) return hr
;
1065 len
= args
? lstrlenW(args
) + 1 : 1;
1066 *params
= CoTaskMemAlloc(len
* sizeof(WCHAR
));
1072 lstrcpyW(*params
, args
);
1078 SysFreeString(args
);
1082 static HRESULT WINAPI
MSTASK_ITask_SetWorkingDirectory(ITask
* iface
, LPCWSTR workdir
)
1084 TaskImpl
*This
= impl_from_ITask(iface
);
1087 TRACE("(%p, %s)\n", iface
, debugstr_w(workdir
));
1089 if (!workdir
|| !workdir
[0])
1092 hr
= IExecAction_put_WorkingDirectory(This
->action
, (BSTR
)workdir
);
1093 if (hr
== S_OK
) This
->is_dirty
= TRUE
;
1097 static HRESULT WINAPI
MSTASK_ITask_GetWorkingDirectory(ITask
*iface
, LPWSTR
*workdir
)
1099 TaskImpl
*This
= impl_from_ITask(iface
);
1104 TRACE("(%p, %p)\n", iface
, workdir
);
1106 hr
= IExecAction_get_WorkingDirectory(This
->action
, &dir
);
1107 if (hr
!= S_OK
) return hr
;
1109 len
= dir
? lstrlenW(dir
) + 1 : 1;
1110 *workdir
= CoTaskMemAlloc(len
* sizeof(WCHAR
));
1116 lstrcpyW(*workdir
, dir
);
1126 static HRESULT WINAPI
MSTASK_ITask_SetPriority(
1130 FIXME("(%p, 0x%08x): stub\n", iface
, dwPriority
);
1134 static HRESULT WINAPI
MSTASK_ITask_GetPriority(ITask
*iface
, DWORD
*priority
)
1136 TaskImpl
*This
= impl_from_ITask(iface
);
1138 TRACE("(%p, %p)\n", iface
, priority
);
1140 *priority
= This
->priority
;
1144 static HRESULT WINAPI
MSTASK_ITask_SetTaskFlags(
1148 FIXME("(%p, 0x%08x): stub\n", iface
, dwFlags
);
1152 static HRESULT WINAPI
MSTASK_ITask_GetTaskFlags(ITask
*iface
, DWORD
*flags
)
1154 FIXME("(%p, %p): stub\n", iface
, flags
);
1159 static HRESULT WINAPI
MSTASK_ITask_SetMaxRunTime(
1163 TaskImpl
*This
= impl_from_ITask(iface
);
1165 TRACE("(%p, %d)\n", iface
, dwMaxRunTime
);
1167 This
->maxRunTime
= dwMaxRunTime
;
1168 This
->is_dirty
= TRUE
;
1172 static HRESULT WINAPI
MSTASK_ITask_GetMaxRunTime(
1174 DWORD
*pdwMaxRunTime
)
1176 TaskImpl
*This
= impl_from_ITask(iface
);
1178 TRACE("(%p, %p)\n", iface
, pdwMaxRunTime
);
1180 *pdwMaxRunTime
= This
->maxRunTime
;
1184 static HRESULT WINAPI
MSTASK_IPersistFile_QueryInterface(
1185 IPersistFile
* iface
,
1189 TaskImpl
*This
= impl_from_IPersistFile(iface
);
1190 TRACE("(%p, %s, %p)\n", iface
, debugstr_guid(riid
), ppvObject
);
1191 return ITask_QueryInterface(&This
->ITask_iface
, riid
, ppvObject
);
1194 static ULONG WINAPI
MSTASK_IPersistFile_AddRef(
1195 IPersistFile
* iface
)
1197 TaskImpl
*This
= impl_from_IPersistFile(iface
);
1198 return ITask_AddRef(&This
->ITask_iface
);
1201 static ULONG WINAPI
MSTASK_IPersistFile_Release(
1202 IPersistFile
* iface
)
1204 TaskImpl
*This
= impl_from_IPersistFile(iface
);
1205 return ITask_Release(&This
->ITask_iface
);
1208 static HRESULT WINAPI
MSTASK_IPersistFile_GetClassID(IPersistFile
*iface
, CLSID
*clsid
)
1210 TRACE("(%p, %p)\n", iface
, clsid
);
1212 *clsid
= CLSID_CTask
;
1216 static HRESULT WINAPI
MSTASK_IPersistFile_IsDirty(IPersistFile
*iface
)
1218 TaskImpl
*This
= impl_from_IPersistFile(iface
);
1219 TRACE("(%p)\n", iface
);
1220 return This
->is_dirty
? S_OK
: S_FALSE
;
1223 static DWORD
load_unicode_strings(ITask
*task
, BYTE
*data
, DWORD limit
)
1225 DWORD i
, data_size
= 0;
1228 for (i
= 0; i
< 5; i
++)
1230 if (limit
< sizeof(USHORT
))
1232 TRACE("invalid string %u offset\n", i
);
1236 len
= *(USHORT
*)data
;
1237 data
+= sizeof(USHORT
);
1238 data_size
+= sizeof(USHORT
);
1239 limit
-= sizeof(USHORT
);
1240 if (limit
< len
* sizeof(WCHAR
))
1242 TRACE("invalid string %u size\n", i
);
1246 TRACE("string %u: %s\n", i
, wine_dbgstr_wn((const WCHAR
*)data
, len
));
1251 ITask_SetApplicationName(task
, (const WCHAR
*)data
);
1254 ITask_SetParameters(task
, (const WCHAR
*)data
);
1257 ITask_SetWorkingDirectory(task
, (const WCHAR
*)data
);
1260 ITask_SetCreator(task
, (const WCHAR
*)data
);
1263 ITask_SetComment(task
, (const WCHAR
*)data
);
1269 data
+= len
* sizeof(WCHAR
);
1270 data_size
+= len
* sizeof(WCHAR
);
1276 static HRESULT
load_job_data(TaskImpl
*This
, BYTE
*data
, DWORD size
)
1278 ITask
*task
= &This
->ITask_iface
;
1280 const FIXDLEN_DATA
*fixed
;
1281 const SYSTEMTIME
*st
;
1282 DWORD unicode_strings_size
, data_size
, triggers_size
;
1283 USHORT trigger_count
, i
;
1284 const USHORT
*signature
;
1285 TASK_TRIGGER
*task_trigger
;
1287 if (size
< sizeof(*fixed
))
1289 TRACE("no space for FIXDLEN_DATA\n");
1290 return SCHED_E_INVALID_TASK
;
1293 fixed
= (const FIXDLEN_DATA
*)data
;
1295 TRACE("product_version %04x\n", fixed
->product_version
);
1296 TRACE("file_version %04x\n", fixed
->file_version
);
1297 TRACE("uuid %s\n", wine_dbgstr_guid(&fixed
->uuid
));
1299 if (fixed
->file_version
!= 0x0001)
1300 return SCHED_E_INVALID_TASK
;
1302 This
->uuid
= fixed
->uuid
;
1304 TRACE("name_size_offset %04x\n", fixed
->name_size_offset
);
1305 TRACE("trigger_offset %04x\n", fixed
->trigger_offset
);
1306 TRACE("error_retry_count %u\n", fixed
->error_retry_count
);
1307 TRACE("error_retry_interval %u\n", fixed
->error_retry_interval
);
1308 TRACE("idle_deadline %u\n", fixed
->idle_deadline
);
1309 This
->deadline_minutes
= fixed
->idle_deadline
;
1310 TRACE("idle_wait %u\n", fixed
->idle_wait
);
1311 This
->idle_minutes
= fixed
->idle_wait
;
1312 TRACE("priority %08x\n", fixed
->priority
);
1313 This
->priority
= fixed
->priority
;
1314 TRACE("maximum_runtime %u\n", fixed
->maximum_runtime
);
1315 This
->maxRunTime
= fixed
->maximum_runtime
;
1316 TRACE("exit_code %#x\n", fixed
->exit_code
);
1317 This
->exit_code
= fixed
->exit_code
;
1318 TRACE("status %08x\n", fixed
->status
);
1319 This
->status
= fixed
->status
;
1320 TRACE("flags %08x\n", fixed
->flags
);
1321 This
->flags
= fixed
->flags
;
1322 This
->last_runtime
= fixed
->last_runtime
;
1323 st
= &fixed
->last_runtime
;
1324 TRACE("last_runtime %u/%u/%u wday %u %u:%02u:%02u.%03u\n",
1325 st
->wDay
, st
->wMonth
, st
->wYear
, st
->wDayOfWeek
,
1326 st
->wHour
, st
->wMinute
, st
->wSecond
, st
->wMilliseconds
);
1328 /* Instance Count */
1329 if (size
< sizeof(*fixed
) + sizeof(USHORT
))
1331 TRACE("no space for instance count\n");
1332 return SCHED_E_INVALID_TASK
;
1335 This
->instance_count
= *(const USHORT
*)(data
+ sizeof(*fixed
));
1336 TRACE("instance count %u\n", This
->instance_count
);
1338 if (fixed
->name_size_offset
+ sizeof(USHORT
) < size
)
1339 unicode_strings_size
= load_unicode_strings(task
, data
+ fixed
->name_size_offset
, size
- fixed
->name_size_offset
);
1342 TRACE("invalid name_size_offset\n");
1343 return SCHED_E_INVALID_TASK
;
1345 TRACE("unicode strings end at %#x\n", fixed
->name_size_offset
+ unicode_strings_size
);
1347 if (size
< fixed
->trigger_offset
+ sizeof(USHORT
))
1349 TRACE("no space for triggers count\n");
1350 return SCHED_E_INVALID_TASK
;
1352 trigger_count
= *(const USHORT
*)(data
+ fixed
->trigger_offset
);
1353 TRACE("trigger_count %u\n", trigger_count
);
1354 triggers_size
= size
- fixed
->trigger_offset
- sizeof(USHORT
);
1355 TRACE("triggers_size %u\n", triggers_size
);
1356 task_trigger
= (TASK_TRIGGER
*)(data
+ fixed
->trigger_offset
+ sizeof(USHORT
));
1358 data
+= fixed
->name_size_offset
+ unicode_strings_size
;
1359 size
-= fixed
->name_size_offset
+ unicode_strings_size
;
1362 if (size
< sizeof(USHORT
))
1364 TRACE("no space for user data size\n");
1365 return SCHED_E_INVALID_TASK
;
1368 data_size
= *(const USHORT
*)data
;
1369 if (size
< sizeof(USHORT
) + data_size
)
1371 TRACE("no space for user data\n");
1372 return SCHED_E_INVALID_TASK
;
1374 TRACE("User Data size %#x\n", data_size
);
1375 ITask_SetWorkItemData(task
, data_size
, data
+ sizeof(USHORT
));
1377 size
-= sizeof(USHORT
) + data_size
;
1378 data
+= sizeof(USHORT
) + data_size
;
1381 if (size
< sizeof(USHORT
))
1383 TRACE("no space for reserved data size\n");
1384 return SCHED_E_INVALID_TASK
;
1387 data_size
= *(const USHORT
*)data
;
1388 if (size
< sizeof(USHORT
) + data_size
)
1390 TRACE("no space for reserved data\n");
1391 return SCHED_E_INVALID_TASK
;
1393 TRACE("Reserved Data size %#x\n", data_size
);
1395 size
-= sizeof(USHORT
) + data_size
;
1396 data
+= sizeof(USHORT
) + data_size
;
1399 TRACE("trigger_offset %04x, triggers end at %04x\n", fixed
->trigger_offset
,
1400 (DWORD
)(fixed
->trigger_offset
+ sizeof(USHORT
) + trigger_count
* sizeof(TASK_TRIGGER
)));
1402 task_trigger
= (TASK_TRIGGER
*)(data
+ sizeof(USHORT
));
1404 if (trigger_count
* sizeof(TASK_TRIGGER
) > triggers_size
)
1406 TRACE("no space for triggers data\n");
1407 return SCHED_E_INVALID_TASK
;
1410 This
->trigger_count
= 0;
1412 for (i
= 0; i
< trigger_count
; i
++)
1414 ITaskTrigger
*trigger
;
1417 hr
= ITask_CreateTrigger(task
, &idx
, &trigger
);
1418 if (hr
!= S_OK
) return hr
;
1420 hr
= ITaskTrigger_SetTrigger(trigger
, &task_trigger
[i
]);
1421 ITaskTrigger_Release(trigger
);
1424 ITask_DeleteTrigger(task
, idx
);
1429 size
-= sizeof(USHORT
) + trigger_count
* sizeof(TASK_TRIGGER
);
1430 data
+= sizeof(USHORT
) + trigger_count
* sizeof(TASK_TRIGGER
);
1432 if (size
< 2 * sizeof(USHORT
) + 64)
1434 TRACE("no space for signature\n");
1435 return S_OK
; /* signature is optional */
1438 signature
= (const USHORT
*)data
;
1439 TRACE("signature version %04x, client version %04x\n", signature
[0], signature
[1]);
1444 static HRESULT WINAPI
MSTASK_IPersistFile_Load(IPersistFile
*iface
, LPCOLESTR file_name
, DWORD mode
)
1446 TaskImpl
*This
= impl_from_IPersistFile(iface
);
1448 HANDLE file
, mapping
;
1449 DWORD access
, sharing
, size
, try;
1452 TRACE("(%p, %s, 0x%08x)\n", iface
, debugstr_w(file_name
), mode
);
1454 switch (mode
& 0x000f)
1458 access
= GENERIC_READ
;
1461 case STGM_READWRITE
:
1462 access
= GENERIC_READ
| GENERIC_WRITE
;
1466 switch (mode
& 0x00f0)
1469 case STGM_SHARE_DENY_NONE
:
1470 sharing
= FILE_SHARE_READ
| FILE_SHARE_WRITE
;
1472 case STGM_SHARE_DENY_READ
:
1473 sharing
= FILE_SHARE_WRITE
;
1475 case STGM_SHARE_DENY_WRITE
:
1476 sharing
= FILE_SHARE_READ
;
1478 case STGM_SHARE_EXCLUSIVE
:
1486 file
= CreateFileW(file_name
, access
, sharing
, NULL
, OPEN_EXISTING
, 0, 0);
1487 if (file
!= INVALID_HANDLE_VALUE
) break;
1489 if (GetLastError() != ERROR_SHARING_VIOLATION
|| try++ >= 3)
1491 TRACE("Failed to open %s, error %u\n", debugstr_w(file_name
), GetLastError());
1492 return HRESULT_FROM_WIN32(GetLastError());
1497 size
= GetFileSize(file
, NULL
);
1499 mapping
= CreateFileMappingW(file
, NULL
, PAGE_READONLY
, 0, 0, 0);
1502 TRACE("Failed to create file mapping %s, error %u\n", debugstr_w(file_name
), GetLastError());
1504 return HRESULT_FROM_WIN32(GetLastError());
1507 data
= MapViewOfFile(mapping
, FILE_MAP_READ
, 0, 0, 0);
1510 hr
= load_job_data(This
, data
, size
);
1511 if (hr
== S_OK
) This
->is_dirty
= FALSE
;
1512 UnmapViewOfFile(data
);
1515 hr
= HRESULT_FROM_WIN32(GetLastError());
1517 CloseHandle(mapping
);
1523 static BOOL
write_signature(HANDLE hfile
)
1527 USHORT SignatureVersion
;
1528 USHORT ClientVersion
;
1533 signature
.SignatureVersion
= 0x0001;
1534 signature
.ClientVersion
= 0x0001;
1535 memset(&signature
.md5
, 0, sizeof(signature
.md5
));
1537 return WriteFile(hfile
, &signature
, sizeof(signature
), &size
, NULL
);
1540 static BOOL
write_reserved_data(HANDLE hfile
)
1546 } user
= { 8, { 0xff,0x0f,0x1d,0,0,0,0,0 } };
1549 return WriteFile(hfile
, &user
, sizeof(user
), &size
, NULL
);
1552 static BOOL
write_user_data(HANDLE hfile
, BYTE
*data
, WORD data_size
)
1556 if (!WriteFile(hfile
, &data_size
, sizeof(data_size
), &size
, NULL
))
1559 if (!data_size
) return TRUE
;
1561 return WriteFile(hfile
, data
, data_size
, &size
, NULL
);
1564 static HRESULT
write_triggers(TaskImpl
*This
, HANDLE hfile
)
1566 WORD count
, i
, idx
= 0xffff;
1569 ITaskTrigger
*trigger
;
1571 count
= This
->trigger_count
;
1573 /* Windows saves a .job with at least 1 trigger */
1576 hr
= ITask_CreateTrigger(&This
->ITask_iface
, &idx
, &trigger
);
1577 if (hr
!= S_OK
) return hr
;
1578 ITaskTrigger_Release(trigger
);
1583 if (WriteFile(hfile
, &count
, sizeof(count
), &size
, NULL
))
1585 for (i
= 0; i
< count
; i
++)
1587 if (!WriteFile(hfile
, &This
->trigger
[i
], sizeof(This
->trigger
[0]), &size
, NULL
))
1589 hr
= HRESULT_FROM_WIN32(GetLastError());
1595 hr
= HRESULT_FROM_WIN32(GetLastError());
1598 ITask_DeleteTrigger(&This
->ITask_iface
, idx
);
1603 static BOOL
write_unicode_string(HANDLE hfile
, const WCHAR
*str
)
1608 count
= str
? (lstrlenW(str
) + 1) : 0;
1609 if (!WriteFile(hfile
, &count
, sizeof(count
), &size
, NULL
))
1612 if (!str
) return TRUE
;
1614 count
*= sizeof(WCHAR
);
1615 return WriteFile(hfile
, str
, count
, &size
, NULL
);
1618 static HRESULT WINAPI
MSTASK_IPersistFile_Save(IPersistFile
*iface
, LPCOLESTR task_name
, BOOL remember
)
1620 static WCHAR authorW
[] = L
"Wine";
1621 static WCHAR commentW
[] = L
"Created by Wine";
1623 WORD word
, user_data_size
= 0;
1625 DWORD size
, ver
, disposition
, try;
1626 TaskImpl
*This
= impl_from_IPersistFile(iface
);
1627 ITask
*task
= &This
->ITask_iface
;
1628 LPWSTR appname
= NULL
, params
= NULL
, workdir
= NULL
, creator
= NULL
, comment
= NULL
;
1629 BYTE
*user_data
= NULL
;
1632 TRACE("(%p, %s, %d)\n", iface
, debugstr_w(task_name
), remember
);
1634 disposition
= task_name
? CREATE_NEW
: OPEN_ALWAYS
;
1638 task_name
= This
->task_name
;
1642 ITask_GetComment(task
, &comment
);
1643 if (!comment
) comment
= commentW
;
1644 ITask_GetCreator(task
, &creator
);
1645 if (!creator
) creator
= authorW
;
1646 ITask_GetApplicationName(task
, &appname
);
1647 ITask_GetParameters(task
, ¶ms
);
1648 ITask_GetWorkingDirectory(task
, &workdir
);
1649 ITask_GetWorkItemData(task
, &user_data_size
, &user_data
);
1652 fixed
.product_version
= MAKEWORD(ver
>> 8, ver
);
1653 fixed
.file_version
= 0x0001;
1654 fixed
.name_size_offset
= sizeof(fixed
) + sizeof(USHORT
); /* FIXDLEN_DATA + Instance Count */
1655 fixed
.trigger_offset
= sizeof(fixed
) + sizeof(USHORT
); /* FIXDLEN_DATA + Instance Count */
1656 fixed
.trigger_offset
+= sizeof(USHORT
); /* Application Name */
1658 fixed
.trigger_offset
+= (lstrlenW(appname
) + 1) * sizeof(WCHAR
);
1659 fixed
.trigger_offset
+= sizeof(USHORT
); /* Parameters */
1661 fixed
.trigger_offset
+= (lstrlenW(params
) + 1) * sizeof(WCHAR
);
1662 fixed
.trigger_offset
+= sizeof(USHORT
); /* Working Directory */
1664 fixed
.trigger_offset
+= (lstrlenW(workdir
) + 1) * sizeof(WCHAR
);
1665 fixed
.trigger_offset
+= sizeof(USHORT
); /* Author */
1667 fixed
.trigger_offset
+= (lstrlenW(creator
) + 1) * sizeof(WCHAR
);
1668 fixed
.trigger_offset
+= sizeof(USHORT
); /* Comment */
1670 fixed
.trigger_offset
+= (lstrlenW(comment
) + 1) * sizeof(WCHAR
);
1671 fixed
.trigger_offset
+= sizeof(USHORT
) + user_data_size
; /* User Data */
1672 fixed
.trigger_offset
+= 10; /* Reserved Data */
1674 fixed
.error_retry_count
= 0;
1675 fixed
.error_retry_interval
= 0;
1676 fixed
.idle_wait
= This
->idle_minutes
;
1677 fixed
.idle_deadline
= This
->deadline_minutes
;
1678 fixed
.priority
= This
->priority
;
1679 fixed
.maximum_runtime
= This
->maxRunTime
;
1680 fixed
.exit_code
= This
->exit_code
;
1681 if (This
->status
== SCHED_S_TASK_NOT_SCHEDULED
&& This
->trigger_count
)
1682 This
->status
= SCHED_S_TASK_HAS_NOT_RUN
;
1683 fixed
.status
= This
->status
;
1684 fixed
.flags
= This
->flags
;
1685 fixed
.last_runtime
= This
->last_runtime
;
1690 hfile
= CreateFileW(task_name
, GENERIC_READ
| GENERIC_WRITE
, 0, NULL
, disposition
, 0, 0);
1691 if (hfile
!= INVALID_HANDLE_VALUE
) break;
1695 hr
= HRESULT_FROM_WIN32(GetLastError());
1701 if (GetLastError() == ERROR_ALREADY_EXISTS
)
1702 fixed
.uuid
= This
->uuid
;
1704 CoCreateGuid(&fixed
.uuid
);
1706 if (!WriteFile(hfile
, &fixed
, sizeof(fixed
), &size
, NULL
))
1708 hr
= HRESULT_FROM_WIN32(GetLastError());
1712 /* Instance Count: don't touch it in the client */
1713 if (SetFilePointer(hfile
, sizeof(word
), NULL
, FILE_CURRENT
) == INVALID_SET_FILE_POINTER
)
1715 hr
= HRESULT_FROM_WIN32(GetLastError());
1718 /* Application Name */
1719 if (!write_unicode_string(hfile
, appname
))
1721 hr
= HRESULT_FROM_WIN32(GetLastError());
1725 if (!write_unicode_string(hfile
, params
))
1727 hr
= HRESULT_FROM_WIN32(GetLastError());
1730 /* Working Directory */
1731 if (!write_unicode_string(hfile
, workdir
))
1733 hr
= HRESULT_FROM_WIN32(GetLastError());
1737 if (!write_unicode_string(hfile
, creator
))
1739 hr
= HRESULT_FROM_WIN32(GetLastError());
1743 if (!write_unicode_string(hfile
, comment
))
1745 hr
= HRESULT_FROM_WIN32(GetLastError());
1750 if (!write_user_data(hfile
, user_data
, user_data_size
))
1752 hr
= HRESULT_FROM_WIN32(GetLastError());
1757 if (!write_reserved_data(hfile
))
1759 hr
= HRESULT_FROM_WIN32(GetLastError());
1764 hr
= write_triggers(This
, hfile
);
1769 if (!write_signature(hfile
))
1771 hr
= HRESULT_FROM_WIN32(GetLastError());
1776 This
->is_dirty
= FALSE
;
1779 CoTaskMemFree(appname
);
1780 CoTaskMemFree(params
);
1781 CoTaskMemFree(workdir
);
1782 if (creator
!= authorW
)
1783 CoTaskMemFree(creator
);
1784 if (comment
!= commentW
)
1785 CoTaskMemFree(comment
);
1786 CoTaskMemFree(user_data
);
1788 if (hfile
!= INVALID_HANDLE_VALUE
)
1792 DeleteFileW(task_name
);
1795 heap_free(This
->task_name
);
1796 This
->task_name
= heap_strdupW(task_name
);
1802 static HRESULT WINAPI
MSTASK_IPersistFile_SaveCompleted(
1803 IPersistFile
* iface
,
1804 LPCOLESTR pszFileName
)
1806 FIXME("(%p, %p): stub\n", iface
, pszFileName
);
1810 static HRESULT WINAPI
MSTASK_IPersistFile_GetCurFile(IPersistFile
*iface
, LPOLESTR
*file_name
)
1812 TaskImpl
*This
= impl_from_IPersistFile(iface
);
1814 TRACE("(%p, %p)\n", iface
, file_name
);
1816 *file_name
= CoTaskMemAlloc((lstrlenW(This
->task_name
) + 1) * sizeof(WCHAR
));
1817 if (!*file_name
) return E_OUTOFMEMORY
;
1819 lstrcpyW(*file_name
, This
->task_name
);
1823 static const ITaskVtbl MSTASK_ITaskVtbl
=
1825 MSTASK_ITask_QueryInterface
,
1826 MSTASK_ITask_AddRef
,
1827 MSTASK_ITask_Release
,
1828 MSTASK_ITask_CreateTrigger
,
1829 MSTASK_ITask_DeleteTrigger
,
1830 MSTASK_ITask_GetTriggerCount
,
1831 MSTASK_ITask_GetTrigger
,
1832 MSTASK_ITask_GetTriggerString
,
1833 MSTASK_ITask_GetRunTimes
,
1834 MSTASK_ITask_GetNextRunTime
,
1835 MSTASK_ITask_SetIdleWait
,
1836 MSTASK_ITask_GetIdleWait
,
1838 MSTASK_ITask_Terminate
,
1839 MSTASK_ITask_EditWorkItem
,
1840 MSTASK_ITask_GetMostRecentRunTime
,
1841 MSTASK_ITask_GetStatus
,
1842 MSTASK_ITask_GetExitCode
,
1843 MSTASK_ITask_SetComment
,
1844 MSTASK_ITask_GetComment
,
1845 MSTASK_ITask_SetCreator
,
1846 MSTASK_ITask_GetCreator
,
1847 MSTASK_ITask_SetWorkItemData
,
1848 MSTASK_ITask_GetWorkItemData
,
1849 MSTASK_ITask_SetErrorRetryCount
,
1850 MSTASK_ITask_GetErrorRetryCount
,
1851 MSTASK_ITask_SetErrorRetryInterval
,
1852 MSTASK_ITask_GetErrorRetryInterval
,
1853 MSTASK_ITask_SetFlags
,
1854 MSTASK_ITask_GetFlags
,
1855 MSTASK_ITask_SetAccountInformation
,
1856 MSTASK_ITask_GetAccountInformation
,
1857 MSTASK_ITask_SetApplicationName
,
1858 MSTASK_ITask_GetApplicationName
,
1859 MSTASK_ITask_SetParameters
,
1860 MSTASK_ITask_GetParameters
,
1861 MSTASK_ITask_SetWorkingDirectory
,
1862 MSTASK_ITask_GetWorkingDirectory
,
1863 MSTASK_ITask_SetPriority
,
1864 MSTASK_ITask_GetPriority
,
1865 MSTASK_ITask_SetTaskFlags
,
1866 MSTASK_ITask_GetTaskFlags
,
1867 MSTASK_ITask_SetMaxRunTime
,
1868 MSTASK_ITask_GetMaxRunTime
1871 static const IPersistFileVtbl MSTASK_IPersistFileVtbl
=
1873 MSTASK_IPersistFile_QueryInterface
,
1874 MSTASK_IPersistFile_AddRef
,
1875 MSTASK_IPersistFile_Release
,
1876 MSTASK_IPersistFile_GetClassID
,
1877 MSTASK_IPersistFile_IsDirty
,
1878 MSTASK_IPersistFile_Load
,
1879 MSTASK_IPersistFile_Save
,
1880 MSTASK_IPersistFile_SaveCompleted
,
1881 MSTASK_IPersistFile_GetCurFile
1884 HRESULT
TaskConstructor(ITaskService
*service
, const WCHAR
*name
, ITask
**task
)
1887 WCHAR task_name
[MAX_PATH
];
1888 ITaskDefinition
*taskdef
;
1889 IActionCollection
*actions
;
1892 TRACE("(%s, %p)\n", debugstr_w(name
), task
);
1894 if (wcschr(name
, '.')) return E_INVALIDARG
;
1896 GetWindowsDirectoryW(task_name
, MAX_PATH
);
1897 lstrcatW(task_name
, L
"\\Tasks\\");
1898 lstrcatW(task_name
, name
);
1899 lstrcatW(task_name
, L
".job");
1901 hr
= ITaskService_NewTask(service
, 0, &taskdef
);
1902 if (hr
!= S_OK
) return hr
;
1904 This
= heap_alloc(sizeof(*This
));
1907 ITaskDefinition_Release(taskdef
);
1908 return E_OUTOFMEMORY
;
1911 This
->ITask_iface
.lpVtbl
= &MSTASK_ITaskVtbl
;
1912 This
->IPersistFile_iface
.lpVtbl
= &MSTASK_IPersistFileVtbl
;
1914 This
->task
= taskdef
;
1916 This
->data_count
= 0;
1917 This
->task_name
= heap_strdupW(task_name
);
1919 This
->status
= SCHED_S_TASK_NOT_SCHEDULED
;
1920 This
->exit_code
= 0;
1921 This
->idle_minutes
= 10;
1922 This
->deadline_minutes
= 60;
1923 This
->priority
= NORMAL_PRIORITY_CLASS
;
1924 This
->accountName
= NULL
;
1925 This
->trigger_count
= 0;
1926 This
->trigger
= NULL
;
1927 This
->is_dirty
= FALSE
;
1928 This
->instance_count
= 0;
1930 memset(&This
->last_runtime
, 0, sizeof(This
->last_runtime
));
1931 CoCreateGuid(&This
->uuid
);
1933 /* Default time is 3 days = 259200000 ms */
1934 This
->maxRunTime
= 259200000;
1936 hr
= ITaskDefinition_get_Actions(This
->task
, &actions
);
1939 hr
= IActionCollection_Create(actions
, TASK_ACTION_EXEC
, (IAction
**)&This
->action
);
1940 IActionCollection_Release(actions
);
1943 *task
= &This
->ITask_iface
;
1944 InterlockedIncrement(&dll_ref
);
1949 ITaskDefinition_Release(This
->task
);
1950 ITask_Release(&This
->ITask_iface
);