Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
7e4d4a7e
Commit
7e4d4a7e
authored
Jul 15, 2022
by
Paul Gofman
Committed by
Alexandre Julliard
Jul 18, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
taskschd: Implement writing settings to XML.
parent
e61d4853
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
106 additions
and
1 deletion
+106
-1
task.c
dlls/taskschd/task.c
+106
-1
No files found.
dlls/taskschd/task.c
View file @
7e4d4a7e
...
...
@@ -2457,6 +2457,19 @@ static inline HRESULT write_text_value(IStream *stream, const WCHAR *name, const
return
write_stringW
(
stream
,
L">
\n
"
);
}
static
HRESULT
write_bool_value
(
IStream
*
stream
,
const
WCHAR
*
name
,
VARIANT_BOOL
value
)
{
return
write_text_value
(
stream
,
name
,
value
?
L"true"
:
L"false"
);
}
static
HRESULT
write_int_value
(
IStream
*
stream
,
const
WCHAR
*
name
,
int
val
)
{
WCHAR
s
[
32
];
swprintf
(
s
,
ARRAY_SIZE
(
s
),
L"%d"
,
val
);
return
write_text_value
(
stream
,
name
,
s
);
}
static
HRESULT
write_task_attributes
(
IStream
*
stream
,
ITaskDefinition
*
taskdef
)
{
HRESULT
hr
;
...
...
@@ -2684,12 +2697,104 @@ static HRESULT write_principal(IStream *stream, IPrincipal *principal)
return
write_element_end
(
stream
,
L"Principals"
);
}
const
WCHAR
*
string_from_instances_policy
(
TASK_INSTANCES_POLICY
policy
)
{
switch
(
policy
)
{
case
TASK_INSTANCES_PARALLEL
:
return
L"Parallel"
;
case
TASK_INSTANCES_QUEUE
:
return
L"Queue"
;
case
TASK_INSTANCES_IGNORE_NEW
:
return
L"IgnoreNew"
;
case
TASK_INSTANCES_STOP_EXISTING
:
return
L"StopExisting"
;
}
return
L"<error>"
;
}
static
HRESULT
write_settings
(
IStream
*
stream
,
ITaskSettings
*
settings
)
{
INetworkSettings
*
network_settings
;
TASK_INSTANCES_POLICY
policy
;
IIdleSettings
*
idle_settings
;
VARIANT_BOOL
bval
;
HRESULT
hr
;
INT
ival
;
BSTR
s
;
if
(
!
settings
)
return
write_empty_element
(
stream
,
L"Settings"
);
FIXME
(
"stub
\n
"
);
if
(
FAILED
(
hr
=
write_element
(
stream
,
L"Settings"
)))
return
hr
;
push_indent
();
#define WRITE_BOOL_OPTION(name) \
{ \
if (FAILED(hr = ITaskSettings_get_##name(settings, &bval))) \
return hr; \
if (FAILED(hr = write_bool_value(stream, L ## #name, bval))) \
return hr; \
}
if
(
FAILED
(
hr
=
ITaskSettings_get_AllowDemandStart
(
settings
,
&
bval
)))
return
hr
;
if
(
FAILED
(
hr
=
write_bool_value
(
stream
,
L"AllowStartOnDemand"
,
bval
)))
return
hr
;
if
(
SUCCEEDED
(
hr
=
TaskSettings_get_RestartInterval
(
settings
,
&
s
))
&&
s
)
{
FIXME
(
"RestartInterval not handled.
\n
"
);
SysFreeString
(
s
);
}
if
(
FAILED
(
hr
=
ITaskSettings_get_MultipleInstances
(
settings
,
&
policy
)))
return
hr
;
if
(
FAILED
(
hr
=
write_text_value
(
stream
,
L"MultipleInstancesPolicy"
,
string_from_instances_policy
(
policy
))))
return
hr
;
WRITE_BOOL_OPTION
(
DisallowStartIfOnBatteries
);
WRITE_BOOL_OPTION
(
StopIfGoingOnBatteries
);
WRITE_BOOL_OPTION
(
AllowHardTerminate
);
WRITE_BOOL_OPTION
(
StartWhenAvailable
);
WRITE_BOOL_OPTION
(
RunOnlyIfNetworkAvailable
);
WRITE_BOOL_OPTION
(
WakeToRun
);
WRITE_BOOL_OPTION
(
Enabled
);
WRITE_BOOL_OPTION
(
Hidden
);
if
(
SUCCEEDED
(
hr
=
TaskSettings_get_DeleteExpiredTaskAfter
(
settings
,
&
s
))
&&
s
)
{
hr
=
write_text_value
(
stream
,
L"DeleteExpiredTaskAfter"
,
s
);
SysFreeString
(
s
);
if
(
FAILED
(
hr
))
return
hr
;
}
if
(
SUCCEEDED
(
hr
=
TaskSettings_get_IdleSettings
(
settings
,
&
idle_settings
)))
{
FIXME
(
"IdleSettings not handled.
\n
"
);
IIdleSettings_Release
(
idle_settings
);
}
if
(
SUCCEEDED
(
hr
=
TaskSettings_get_NetworkSettings
(
settings
,
&
network_settings
)))
{
FIXME
(
"NetworkSettings not handled.
\n
"
);
INetworkSettings_Release
(
network_settings
);
}
if
(
SUCCEEDED
(
hr
=
TaskSettings_get_ExecutionTimeLimit
(
settings
,
&
s
))
&&
s
)
{
hr
=
write_text_value
(
stream
,
L"ExecutionTimeLimit"
,
s
);
SysFreeString
(
s
);
if
(
FAILED
(
hr
))
return
hr
;
}
if
(
FAILED
(
hr
=
ITaskSettings_get_Priority
(
settings
,
&
ival
)))
return
hr
;
if
(
FAILED
(
hr
=
write_int_value
(
stream
,
L"Priority"
,
ival
)))
return
hr
;
WRITE_BOOL_OPTION
(
RunOnlyIfIdle
);
#undef WRITE_BOOL_OPTION
pop_indent
();
write_element_end
(
stream
,
L"Settings"
);
return
S_OK
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment