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
c0858ec0
Commit
c0858ec0
authored
Nov 30, 2017
by
Hans Leidekker
Committed by
Alexandre Julliard
Nov 30, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
taskschd: Implement ITaskDefinition_get_Actions.
Signed-off-by:
Hans Leidekker
<
hans@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
acacbbcb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
204 additions
and
9 deletions
+204
-9
task.c
dlls/taskschd/task.c
+197
-6
scheduler.c
dlls/taskschd/tests/scheduler.c
+7
-3
No files found.
dlls/taskschd/task.c
View file @
c0858ec0
...
...
@@ -1636,6 +1636,182 @@ static HRESULT Principal_create(IPrincipal **obj)
typedef
struct
{
IActionCollection
IActionCollection_iface
;
LONG
ref
;
}
Actions
;
static
inline
Actions
*
impl_from_IActionCollection
(
IActionCollection
*
iface
)
{
return
CONTAINING_RECORD
(
iface
,
Actions
,
IActionCollection_iface
);
}
static
ULONG
WINAPI
Actions_AddRef
(
IActionCollection
*
iface
)
{
Actions
*
actions
=
impl_from_IActionCollection
(
iface
);
return
InterlockedIncrement
(
&
actions
->
ref
);
}
static
ULONG
WINAPI
Actions_Release
(
IActionCollection
*
iface
)
{
Actions
*
actions
=
impl_from_IActionCollection
(
iface
);
LONG
ref
=
InterlockedDecrement
(
&
actions
->
ref
);
if
(
!
ref
)
{
TRACE
(
"destroying %p
\n
"
,
iface
);
heap_free
(
actions
);
}
return
ref
;
}
static
HRESULT
WINAPI
Actions_QueryInterface
(
IActionCollection
*
iface
,
REFIID
riid
,
void
**
obj
)
{
if
(
!
riid
||
!
obj
)
return
E_INVALIDARG
;
TRACE
(
"%p,%s,%p
\n
"
,
iface
,
debugstr_guid
(
riid
),
obj
);
if
(
IsEqualGUID
(
riid
,
&
IID_IActionCollection
)
||
IsEqualGUID
(
riid
,
&
IID_IDispatch
)
||
IsEqualGUID
(
riid
,
&
IID_IUnknown
))
{
IActionCollection_AddRef
(
iface
);
*
obj
=
iface
;
return
S_OK
;
}
FIXME
(
"interface %s is not implemented
\n
"
,
debugstr_guid
(
riid
));
*
obj
=
NULL
;
return
E_NOINTERFACE
;
}
static
HRESULT
WINAPI
Actions_GetTypeInfoCount
(
IActionCollection
*
iface
,
UINT
*
count
)
{
FIXME
(
"%p,%p: stub
\n
"
,
iface
,
count
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
Actions_GetTypeInfo
(
IActionCollection
*
iface
,
UINT
index
,
LCID
lcid
,
ITypeInfo
**
info
)
{
FIXME
(
"%p,%u,%u,%p: stub
\n
"
,
iface
,
index
,
lcid
,
info
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
Actions_GetIDsOfNames
(
IActionCollection
*
iface
,
REFIID
riid
,
LPOLESTR
*
names
,
UINT
count
,
LCID
lcid
,
DISPID
*
dispid
)
{
FIXME
(
"%p,%s,%p,%u,%u,%p: stub
\n
"
,
iface
,
debugstr_guid
(
riid
),
names
,
count
,
lcid
,
dispid
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
Actions_Invoke
(
IActionCollection
*
iface
,
DISPID
dispid
,
REFIID
riid
,
LCID
lcid
,
WORD
flags
,
DISPPARAMS
*
params
,
VARIANT
*
result
,
EXCEPINFO
*
excepinfo
,
UINT
*
argerr
)
{
FIXME
(
"%p,%d,%s,%04x,%04x,%p,%p,%p,%p: stub
\n
"
,
iface
,
dispid
,
debugstr_guid
(
riid
),
lcid
,
flags
,
params
,
result
,
excepinfo
,
argerr
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
Actions_get_Count
(
IActionCollection
*
iface
,
LONG
*
count
)
{
FIXME
(
"%p,%p: stub
\n
"
,
iface
,
count
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
Actions_get_Item
(
IActionCollection
*
iface
,
LONG
index
,
IAction
**
action
)
{
FIXME
(
"%p,%d,%p: stub
\n
"
,
iface
,
index
,
action
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
Actions_get__NewEnum
(
IActionCollection
*
iface
,
IUnknown
**
penum
)
{
FIXME
(
"%p,%p: stub
\n
"
,
iface
,
penum
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
Actions_get_XmlText
(
IActionCollection
*
iface
,
BSTR
*
xml
)
{
FIXME
(
"%p,%p: stub
\n
"
,
iface
,
xml
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
Actions_put_XmlText
(
IActionCollection
*
iface
,
BSTR
xml
)
{
FIXME
(
"%p,%s: stub
\n
"
,
iface
,
debugstr_w
(
xml
));
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
Actions_Create
(
IActionCollection
*
iface
,
TASK_ACTION_TYPE
type
,
IAction
**
action
)
{
FIXME
(
"%p,%u,%p: stub
\n
"
,
iface
,
type
,
action
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
Actions_Remove
(
IActionCollection
*
iface
,
VARIANT
index
)
{
FIXME
(
"%p,%s: stub
\n
"
,
iface
,
debugstr_variant
(
&
index
));
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
Actions_Clear
(
IActionCollection
*
iface
)
{
FIXME
(
"%p: stub
\n
"
,
iface
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
Actions_get_Context
(
IActionCollection
*
iface
,
BSTR
*
ctx
)
{
FIXME
(
"%p,%p: stub
\n
"
,
iface
,
ctx
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
Actions_put_Context
(
IActionCollection
*
iface
,
BSTR
ctx
)
{
FIXME
(
"%p,%s: stub
\n
"
,
iface
,
debugstr_w
(
ctx
));
return
S_OK
;
}
static
const
IActionCollectionVtbl
Actions_vtbl
=
{
Actions_QueryInterface
,
Actions_AddRef
,
Actions_Release
,
Actions_GetTypeInfoCount
,
Actions_GetTypeInfo
,
Actions_GetIDsOfNames
,
Actions_Invoke
,
Actions_get_Count
,
Actions_get_Item
,
Actions_get__NewEnum
,
Actions_get_XmlText
,
Actions_put_XmlText
,
Actions_Create
,
Actions_Remove
,
Actions_Clear
,
Actions_get_Context
,
Actions_put_Context
};
static
HRESULT
Actions_create
(
IActionCollection
**
obj
)
{
Actions
*
actions
;
actions
=
heap_alloc
(
sizeof
(
*
actions
));
if
(
!
actions
)
return
E_OUTOFMEMORY
;
actions
->
IActionCollection_iface
.
lpVtbl
=
&
Actions_vtbl
;
actions
->
ref
=
1
;
*
obj
=
&
actions
->
IActionCollection_iface
;
TRACE
(
"created %p
\n
"
,
*
obj
);
return
S_OK
;
}
typedef
struct
{
ITaskDefinition
ITaskDefinition_iface
;
LONG
ref
;
IRegistrationInfo
*
reginfo
;
...
...
@@ -1896,8 +2072,23 @@ static HRESULT WINAPI TaskDefinition_put_Principal(ITaskDefinition *iface, IPrin
static
HRESULT
WINAPI
TaskDefinition_get_Actions
(
ITaskDefinition
*
iface
,
IActionCollection
**
actions
)
{
FIXME
(
"%p,%p: stub
\n
"
,
iface
,
actions
);
return
E_NOTIMPL
;
TaskDefinition
*
taskdef
=
impl_from_ITaskDefinition
(
iface
);
HRESULT
hr
;
TRACE
(
"%p,%p
\n
"
,
iface
,
actions
);
if
(
!
actions
)
return
E_POINTER
;
if
(
!
taskdef
->
actions
)
{
hr
=
Actions_create
(
&
taskdef
->
actions
);
if
(
hr
!=
S_OK
)
return
hr
;
}
IActionCollection_AddRef
(
taskdef
->
actions
);
*
actions
=
taskdef
->
actions
;
return
S_OK
;
}
static
HRESULT
WINAPI
TaskDefinition_put_Actions
(
ITaskDefinition
*
iface
,
IActionCollection
*
actions
)
...
...
@@ -1938,7 +2129,7 @@ static const WCHAR S4U[] = {'S','4','U',0};
static
const
WCHAR
InteractiveToken
[]
=
{
'I'
,
'n'
,
't'
,
'e'
,
'r'
,
'a'
,
'c'
,
't'
,
'i'
,
'v'
,
'e'
,
'T'
,
'o'
,
'k'
,
'e'
,
'n'
,
0
};
static
const
WCHAR
RunLevel
[]
=
{
'R'
,
'u'
,
'n'
,
'L'
,
'e'
,
'v'
,
'e'
,
'l'
,
0
};
static
const
WCHAR
LeastPrivilege
[]
=
{
'L'
,
'e'
,
'a'
,
's'
,
't'
,
'P'
,
'r'
,
'i'
,
'v'
,
'i'
,
'l'
,
'e'
,
'g'
,
'e'
,
0
};
static
const
WCHAR
Actions
[]
=
{
'A'
,
'c'
,
't'
,
'i'
,
'o'
,
'n'
,
's'
,
0
};
static
const
WCHAR
actionsW
[]
=
{
'A'
,
'c'
,
't'
,
'i'
,
'o'
,
'n'
,
's'
,
0
};
static
const
WCHAR
Exec
[]
=
{
'E'
,
'x'
,
'e'
,
'c'
,
0
};
static
const
WCHAR
MultipleInstancesPolicy
[]
=
{
'M'
,
'u'
,
'l'
,
't'
,
'i'
,
'p'
,
'l'
,
'e'
,
'I'
,
'n'
,
's'
,
't'
,
'a'
,
'n'
,
'c'
,
'e'
,
's'
,
'P'
,
'o'
,
'l'
,
'i'
,
'c'
,
'y'
,
0
};
static
const
WCHAR
IgnoreNew
[]
=
{
'I'
,
'g'
,
'n'
,
'o'
,
'r'
,
'e'
,
'N'
,
'e'
,
'w'
,
0
};
...
...
@@ -2298,11 +2489,11 @@ static HRESULT write_actions(IStream *stream, IActionCollection *actions)
{
if
(
!
actions
)
{
write_element
(
stream
,
Actions
);
write_element
(
stream
,
actionsW
);
push_indent
();
write_empty_element
(
stream
,
Exec
);
pop_indent
();
return
write_element_end
(
stream
,
Actions
);
return
write_element_end
(
stream
,
actionsW
);
}
FIXME
(
"stub
\n
"
);
...
...
@@ -2958,7 +3149,7 @@ static HRESULT read_task(IXmlReader *reader, ITaskDefinition *taskdef)
hr
=
read_triggers
(
reader
,
taskdef
);
else
if
(
!
lstrcmpW
(
name
,
Principals
))
hr
=
read_principals
(
reader
,
taskdef
);
else
if
(
!
lstrcmpW
(
name
,
Actions
))
else
if
(
!
lstrcmpW
(
name
,
actionsW
))
hr
=
read_actions
(
reader
,
taskdef
);
else
FIXME
(
"unhandled Task element %s
\n
"
,
debugstr_w
(
name
));
...
...
dlls/taskschd/tests/scheduler.c
View file @
c0858ec0
...
...
@@ -1227,13 +1227,17 @@ static void create_action(ITaskDefinition *taskdef)
IExecAction
*
exec_action
;
hr
=
ITaskDefinition_get_Actions
(
taskdef
,
&
actions
);
todo_wine
ok
(
hr
==
S_OK
,
"get_Actions error %#x
\n
"
,
hr
);
/* FIXME: Remove once implemented */
if
(
hr
!=
S_OK
)
return
;
hr
=
IActionCollection_Create
(
actions
,
TASK_ACTION_EXEC
,
&
action
);
todo_wine
ok
(
hr
==
S_OK
,
"Create action error %#x
\n
"
,
hr
);
/* FIXME: Remove once implemented */
if
(
hr
!=
S_OK
)
{
IActionCollection_Release
(
actions
);
return
;
}
hr
=
IAction_QueryInterface
(
action
,
&
IID_IExecAction
,
(
void
**
)
&
exec_action
);
ok
(
hr
==
S_OK
,
"QueryInterface error %#x
\n
"
,
hr
);
...
...
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