ReactOS 0.4.15-dev-7942-gd23573b
fxiotargetself.hpp
Go to the documentation of this file.
1/*++
2
3Copyright (c) Microsoft Corporation. All rights reserved.
4
5Module Name:
6
7 FxIoTargetSelf.hpp
8
9Abstract:
10
11 Encapsulation of the Self target to which FxRequest are sent to.
12 FxSelfTarget represents the client itself and is used to send IO to
13 itself.
14
15 Unlike the the local and remote targets, the IO sent to an Self IO
16 target is routed to the sender's own top level queues. A dedicated queue
17 may also be configured as the target for requests dispatched to the Self
18 Io targets.
19
20Author:
21
22
23
24Environment:
25
26 Both kernel and user mode
27
28Revision History:
29
30--*/
31
32#ifndef _FXIOTARGETSELF_H_
33#define _FXIOTARGETSELF_H_
34
35class FxIoTargetSelf : public FxIoTarget {
36
37public:
38
40 _In_ PFX_DRIVER_GLOBALS FxDriverGlobals,
41 _In_ USHORT ObjectSize
42 );
43
44 virtual
49 )
50 /*++
51 Routine Description:
52 Returns the target device object of the Device. In case of an Self
53 Io Target it is the device itself.
54
55 Arguments:
56
57 Device - Handle to the Device Object
58
59 Returns:
60
61 MdDeviceObject for the Device.
62
63 --*/
64 {
65 return Device->GetDeviceObject();
66 }
67
71 );
72
73 VOID
75 _In_ FxIoQueue* DispatchQueue
76 )
77 /*++
78 Routine Description:
79 Sets a disapatch queue for the IO send to the Self IO Target.
80 --*/
81 {
83 m_DispatchQueue = DispatchQueue;
84 }
85
86 virtual
87 VOID
88 Send(
90 );
91
92protected:
93 //
94 // Hide destructor since we are reference counted object
95 //
97
98private:
99
100 //
101 // A Queue configured to dispatch IO sent to the Self IO Target.
102 //
104
105};
106
107#endif //_FXIOTARGETSELF_H_
virtual _Must_inspect_result_ MdDeviceObject GetTargetDeviceObject(_In_ CfxDeviceBase *Device)
FxIoQueue * GetDispatchQueue(_In_ UCHAR MajorFunction)
virtual VOID Send(_In_ MdIrp Irp)
VOID SetDispatchQueue(_In_ FxIoQueue *DispatchQueue)
FxIoQueue * m_DispatchQueue
_In_ PIRP Irp
Definition: csq.h:116
#define NULL
Definition: types.h:112
#define ASSERT(a)
Definition: mode.c:44
#define _Must_inspect_result_
Definition: ms_sal.h:558
#define _In_
Definition: ms_sal.h:308
IWudfIrp * MdIrp
Definition: mxum.h:103
unsigned short USHORT
Definition: pedump.c:61
_Must_inspect_result_ _In_ WDFDEVICE Device
Definition: wdfchildlist.h:474
_In_ UCHAR MajorFunction
Definition: wdfdevice.h:1697
unsigned char UCHAR
Definition: xmlstorage.h:181