-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcommon.cpp
More file actions
2017 lines (1535 loc) · 41.1 KB
/
common.cpp
File metadata and controls
2017 lines (1535 loc) · 41.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*++
Copyright (c) 1997-2000 Microsoft Corporation All Rights Reserved
Module Name:
common.cpp
Abstract:
Implementation of the AdapterCommon class.
--*/
#pragma warning (disable : 4127)
// Disable the 28204 warning due to annotation mismatches between DDK headers
// for QueryInterface().
//
#pragma warning(disable:28204)
#include <msvad.h>
#include "common.h"
#include "hw.h"
#include "savedata.h"
#define HNS_PER_MS 10000
#define INSTANTIATE_INTERVAL_MS 10000 // 10 seconds between instantiate and uninstantiate
//-----------------------------------------------------------------------------
// Externals
//-----------------------------------------------------------------------------
PSAVEWORKER_PARAM CSaveData::m_pWorkItems = NULL;
PDEVICE_OBJECT CSaveData::m_pDeviceObject = NULL;
typedef
NTSTATUS
(*PMSVADMINIPORTCREATE)
(
_Out_ PUNKNOWN *,
_In_ REFCLSID,
_In_opt_ PUNKNOWN,
_In_ POOL_TYPE
);
NTSTATUS
CreateMiniportWaveCyclicMSVAD
(
OUT PUNKNOWN *,
IN REFCLSID,
IN PUNKNOWN,
_When_((PoolType & NonPagedPoolMustSucceed) != 0,
__drv_reportError("Must succeed pool allocations are forbidden. "
"Allocation failures cause a system crash"))
IN POOL_TYPE PoolType
);
NTSTATUS
CreateMiniportTopologyMSVAD
(
OUT PUNKNOWN *,
IN REFCLSID,
IN PUNKNOWN,
_When_((PoolType & NonPagedPoolMustSucceed) != 0,
__drv_reportError("Must succeed pool allocations are forbidden. "
"Allocation failures cause a system crash"))
IN POOL_TYPE PoolType
);
//=============================================================================
// Helper Routines
//=============================================================================
//=============================================================================
#pragma code_seg("PAGE")
NTSTATUS
InstallSubdevice
(
_In_ PDEVICE_OBJECT DeviceObject,
_In_opt_ PIRP Irp,
_In_ PWSTR Name,
_In_ REFGUID PortClassId,
_In_ REFGUID MiniportClassId,
_In_opt_ PMSVADMINIPORTCREATE MiniportCreate,
_In_opt_ PUNKNOWN UnknownAdapter,
_In_opt_ PRESOURCELIST ResourceList,
_Out_opt_ PUNKNOWN * OutPortUnknown,
_Out_opt_ PUNKNOWN * OutMiniportUnknown
)
{
/*++
Routine Description:
This function creates and registers a subdevice consisting of a port
driver, a minport driver and a set of resources bound together. It will
also optionally place a pointer to an interface on the port driver in a
specified location before initializing the port driver. This is done so
that a common ISR can have access to the port driver during
initialization, when the ISR might fire.
Arguments:
DeviceObject - pointer to the driver object
Irp - pointer to the irp object.
Name - name of the miniport. Passes to PcRegisterSubDevice
PortClassId - port class id. Passed to PcNewPort.
MiniportClassId - miniport class id. Passed to PcNewMiniport.
MiniportCreate - pointer to a miniport creation function. If NULL,
PcNewMiniport is used.
UnknownAdapter - pointer to the adapter object.
Used for initializing the port.
ResourceList - pointer to the resource list.
PortInterfaceId - GUID that represents the port interface.
OutPortInterface - pointer to store the port interface
OutPortUnknown - pointer to store the unknown port interface.
Return Value:
NT status code.
--*/
PAGED_CODE();
ASSERT(DeviceObject);
ASSERT(Name);
NTSTATUS ntStatus;
PPORT port = NULL;
PUNKNOWN miniport = NULL;
DPF_ENTER(("[InstallSubDevice %S]", Name));
// Create the port driver object
//
ntStatus = PcNewPort(&port, PortClassId);
// Create the miniport object
//
if (NT_SUCCESS(ntStatus))
{
if (MiniportCreate)
{
ntStatus =
MiniportCreate
(
&miniport,
MiniportClassId,
NULL,
NonPagedPool
);
}
else
{
ntStatus =
PcNewMiniport
(
(PMINIPORT *) &miniport,
MiniportClassId
);
}
}
// Init the port driver and miniport in one go.
//
if (NT_SUCCESS(ntStatus))
{
#pragma warning(push)
// IPort::Init's annotation on ResourceList requires it to be non-NULL. However,
// for dynamic devices, we may no longer have the resource list and this should
// still succeed.
//
#pragma warning(disable:6387)
ntStatus =
port->Init
(
DeviceObject,
Irp,
miniport,
UnknownAdapter,
ResourceList
);
#pragma warning(pop)
if (NT_SUCCESS(ntStatus))
{
// Register the subdevice (port/miniport combination).
//
ntStatus =
PcRegisterSubdevice
(
DeviceObject,
Name,
port
);
}
}
// Deposit the port interfaces if it's needed.
//
if (NT_SUCCESS(ntStatus))
{
if (OutPortUnknown)
{
ntStatus =
port->QueryInterface
(
IID_IUnknown,
(PVOID *)OutPortUnknown
);
}
if (OutMiniportUnknown)
{
ntStatus =
miniport->QueryInterface
(
IID_IUnknown,
(PVOID *) OutMiniportUnknown
);
}
}
if (port)
{
port->Release();
}
if (miniport)
{
miniport->Release();
}
return ntStatus;
} // InstallSubDevice
//=============================================================================
#pragma code_seg("PAGE")
IO_WORKITEM_ROUTINE InstantiateTimerWorkRoutine;
void InstantiateTimerWorkRoutine
(
_In_ DEVICE_OBJECT *_DeviceObject,
_In_opt_ PVOID _Context
)
{
PAGED_CODE();
UNREFERENCED_PARAMETER(_DeviceObject);
PADAPTERCOMMON pCommon = (PADAPTERCOMMON) _Context;
if (NULL == pCommon)
{
// This is completely unexpected, assert here.
//
ASSERT(pCommon);
return;
}
// Loop through various states of instantiated and
// plugged in.
//
if (pCommon->IsInstantiated() && pCommon->IsPluggedIn())
{
pCommon->UninstantiateDevices();
}
else if (pCommon->IsInstantiated() && !pCommon->IsPluggedIn())
{
pCommon->Plugin();
}
else if (!pCommon->IsInstantiated())
{
pCommon->InstantiateDevices();
pCommon->Unplug();
}
// Free the work item that was allocated in the DPC.
//
pCommon->FreeInstantiateWorkItem();
}
//=============================================================================
#pragma code_seg()
KDEFERRED_ROUTINE InstantiateTimerNotify;
void InstantiateTimerNotify
(
IN PKDPC Dpc,
IN PVOID DeferredContext,
IN PVOID SA1,
IN PVOID SA2
)
/*++
Routine Description:
Dpc routine. This simulates an interrupt service routine to simulate
a jack plug/unplug.
Arguments:
Dpc - the Dpc object
DeferredContext - Pointer to a caller-supplied context to be passed to
the DeferredRoutine when it is called
SA1 - System argument 1
SA2 - System argument 2
Return Value:
NT status code.
--*/
{
UNREFERENCED_PARAMETER(Dpc);
UNREFERENCED_PARAMETER(SA1);
UNREFERENCED_PARAMETER(SA2);
PIO_WORKITEM pWorkItem = NULL;
PADAPTERCOMMON pCommon = (PADAPTERCOMMON) DeferredContext;
if (NULL == pCommon)
{
// This is completely unexpected, assert here.
//
ASSERT(pCommon);
return;
}
// Queue a work item to run at PASSIVE_LEVEL so we can call
// PortCls in order to register or unregister subdevices.
//
pWorkItem = IoAllocateWorkItem(pCommon->GetDeviceObject());
if (NULL != pWorkItem)
{
// Store the work item in the adapter common object and queue it.
//
if (NT_SUCCESS(pCommon->SetInstantiateWorkItem(pWorkItem)))
{
IoQueueWorkItem(pWorkItem, InstantiateTimerWorkRoutine, DelayedWorkQueue, DeferredContext);
}
else
{
// If we failed to stash the work item in the common adapter object,
// free it now or else we'll leak it.
//
IoFreeWorkItem(pWorkItem);
}
}
} // InstantiateTimerNotify
//=============================================================================
// Classes
//=============================================================================
///////////////////////////////////////////////////////////////////////////////
// CAdapterCommon
//
class CAdapterCommon :
public IAdapterCommon,
public IAdapterPowerManagement,
public CUnknown
{
private:
PUNKNOWN m_pPortWave; // Port Wave Interface
PUNKNOWN m_pMiniportWave; // Miniport Wave Interface
PUNKNOWN m_pPortTopology; // Port Mixer Topology Interface
PUNKNOWN m_pMiniportTopology; // Miniport Mixer Topology Interface
PSERVICEGROUP m_pServiceGroupWave;
PDEVICE_OBJECT m_pDeviceObject;
DEVICE_POWER_STATE m_PowerState;
PCMSVADHW m_pHW; // Virtual MSVAD HW object
PKTIMER m_pInstantiateTimer; // Timer object
PRKDPC m_pInstantiateDpc; // Deferred procedure call object
BOOL m_bInstantiated; // Flag indicating whether or not subdevices are exposed
BOOL m_bPluggedIn; // Flag indicating whether or not a jack is plugged in
PIO_WORKITEM m_pInstantiateWorkItem; // Work Item for instantiate timer callback
//=====================================================================
// Helper routines for managing the states of topologies being exposed
STDMETHODIMP_(NTSTATUS) ExposeMixerTopology();
STDMETHODIMP_(NTSTATUS) ExposeWaveTopology();
STDMETHODIMP_(NTSTATUS) UnexposeMixerTopology();
STDMETHODIMP_(NTSTATUS) UnexposeWaveTopology();
STDMETHODIMP_(NTSTATUS) ConnectTopologies();
STDMETHODIMP_(NTSTATUS) DisconnectTopologies();
public:
//=====================================================================
// Default CUnknown
DECLARE_STD_UNKNOWN();
DEFINE_STD_CONSTRUCTOR(CAdapterCommon);
~CAdapterCommon();
//=====================================================================
// Default IAdapterPowerManagement
IMP_IAdapterPowerManagement;
//=====================================================================
// IAdapterCommon methods
STDMETHODIMP_(NTSTATUS) Init
(
IN PDEVICE_OBJECT DeviceObject
);
STDMETHODIMP_(PDEVICE_OBJECT) GetDeviceObject(void);
STDMETHODIMP_(NTSTATUS) InstantiateDevices(void);
STDMETHODIMP_(NTSTATUS) UninstantiateDevices(void);
STDMETHODIMP_(NTSTATUS) Plugin(void);
STDMETHODIMP_(NTSTATUS) Unplug(void);
STDMETHODIMP_(PUNKNOWN *) WavePortDriverDest(void);
STDMETHODIMP_(void) SetWaveServiceGroup
(
IN PSERVICEGROUP ServiceGroup
);
STDMETHODIMP_(BOOL) bDevSpecificRead();
STDMETHODIMP_(void) bDevSpecificWrite
(
IN BOOL bDevSpecific
);
STDMETHODIMP_(INT) iDevSpecificRead();
STDMETHODIMP_(void) iDevSpecificWrite
(
IN INT iDevSpecific
);
STDMETHODIMP_(UINT) uiDevSpecificRead();
STDMETHODIMP_(void) uiDevSpecificWrite
(
IN UINT uiDevSpecific
);
STDMETHODIMP_(BOOL) MixerMuteRead
(
IN ULONG Index
);
STDMETHODIMP_(void) MixerMuteWrite
(
IN ULONG Index,
IN BOOL Value
);
STDMETHODIMP_(ULONG) MixerMuxRead(void);
STDMETHODIMP_(void) MixerMuxWrite
(
IN ULONG Index
);
STDMETHODIMP_(void) MixerReset(void);
STDMETHODIMP_(LONG) MixerVolumeRead
(
IN ULONG Index,
IN LONG Channel
);
STDMETHODIMP_(void) MixerVolumeWrite
(
IN ULONG Index,
IN LONG Channel,
IN LONG Value
);
STDMETHODIMP_(BOOL) IsInstantiated() { return m_bInstantiated; };
STDMETHODIMP_(BOOL) IsPluggedIn() { return m_bPluggedIn; }
STDMETHODIMP_(NTSTATUS) SetInstantiateWorkItem
(
_In_ __drv_aliasesMem PIO_WORKITEM WorkItem
);
STDMETHODIMP_(NTSTATUS) FreeInstantiateWorkItem();
//=====================================================================
// friends
friend NTSTATUS NewAdapterCommon
(
OUT PADAPTERCOMMON * OutAdapterCommon,
IN PRESOURCELIST ResourceList
);
};
//-----------------------------------------------------------------------------
// Functions
//-----------------------------------------------------------------------------
//=============================================================================
#pragma code_seg("PAGE")
NTSTATUS
NewAdapterCommon
(
OUT PUNKNOWN * Unknown,
IN REFCLSID,
IN PUNKNOWN UnknownOuter OPTIONAL,
_When_((PoolType & NonPagedPoolMustSucceed) != 0,
__drv_reportError("Must succeed pool allocations are forbidden. "
"Allocation failures cause a system crash"))
IN POOL_TYPE PoolType
)
/*++
Routine Description:
Creates a new CAdapterCommon
Arguments:
Unknown -
UnknownOuter -
PoolType
Return Value:
NT status code.
--*/
{
PAGED_CODE();
ASSERT(Unknown);
STD_CREATE_BODY_
(
CAdapterCommon,
Unknown,
UnknownOuter,
PoolType,
PADAPTERCOMMON
);
} // NewAdapterCommon
//=============================================================================
CAdapterCommon::~CAdapterCommon
(
void
)
/*++
Routine Description:
Destructor for CAdapterCommon.
Arguments:
Return Value:
void
--*/
{
PAGED_CODE();
DPF_ENTER(("[CAdapterCommon::~CAdapterCommon]"));
if (m_pInstantiateTimer)
{
KeCancelTimer(m_pInstantiateTimer);
ExFreePoolWithTag(m_pInstantiateTimer, MSVAD_POOLTAG);
}
// Since we just cancelled the the instantiate timer, wait for all
// queued DPCs to complete before we free the instantiate DPC.
//
KeFlushQueuedDpcs();
if (m_pInstantiateDpc)
{
ExFreePoolWithTag( m_pInstantiateDpc, MSVAD_POOLTAG );
// Should also ensure that this destructor is synchronized
// with the instantiate timer DPC and work item.
//
}
if (m_pHW)
{
delete m_pHW;
}
CSaveData::DestroyWorkItems();
if (m_pMiniportWave)
{
m_pMiniportWave->Release();
m_pMiniportWave = NULL;
}
if (m_pPortWave)
{
m_pPortWave->Release();
m_pPortWave = NULL;
}
if (m_pMiniportTopology)
{
m_pMiniportTopology->Release();
m_pMiniportTopology = NULL;
}
if (m_pPortTopology)
{
m_pPortTopology->Release();
m_pPortTopology = NULL;
}
if (m_pServiceGroupWave)
{
m_pServiceGroupWave->Release();
}
} // ~CAdapterCommon
//=============================================================================
#pragma code_seg()
STDMETHODIMP_(PDEVICE_OBJECT)
CAdapterCommon::GetDeviceObject
(
void
)
/*++
Routine Description:
Returns the deviceobject
Arguments:
Return Value:
PDEVICE_OBJECT
--*/
{
return m_pDeviceObject;
} // GetDeviceObject
//=============================================================================
#pragma code_seg("PAGE")
NTSTATUS
CAdapterCommon::Init
(
IN PDEVICE_OBJECT DeviceObject
)
/*++
Routine Description:
Initialize adapter common object.
Arguments:
DeviceObject - pointer to the device object
Return Value:
NT status code.
--*/
{
PAGED_CODE();
ASSERT(DeviceObject);
NTSTATUS ntStatus = STATUS_SUCCESS;
DPF_ENTER(("[CAdapterCommon::Init]"));
m_pDeviceObject = DeviceObject;
m_PowerState = PowerDeviceD0;
m_pPortWave = NULL;
m_pMiniportWave = NULL;
m_pPortTopology = NULL;
m_pMiniportTopology = NULL;
m_pInstantiateTimer = NULL;
m_pInstantiateDpc = NULL;
m_bInstantiated = FALSE;
m_bPluggedIn = FALSE;
m_pInstantiateWorkItem = NULL;
// Initialize HW.
//
m_pHW = new (NonPagedPool, MSVAD_POOLTAG) CMSVADHW;
if (!m_pHW)
{
DPF(D_TERSE, ("Insufficient memory for MSVAD HW"));
ntStatus = STATUS_INSUFFICIENT_RESOURCES;
}
else
{
m_pHW->MixerReset();
}
CSaveData::SetDeviceObject(DeviceObject); //device object is needed by CSaveData
// Allocate DPC for instantiation timer.
//
if (NT_SUCCESS(ntStatus))
{
m_pInstantiateDpc = (PRKDPC)
ExAllocatePoolWithTag
(
NonPagedPool,
sizeof(KDPC),
MSVAD_POOLTAG
);
if (!m_pInstantiateDpc)
{
DPF(D_TERSE, ("[Could not allocate memory for DPC]"));
ntStatus = STATUS_INSUFFICIENT_RESOURCES;
}
}
// Allocate timer for instantiation.
//
if (NT_SUCCESS(ntStatus))
{
m_pInstantiateTimer = (PKTIMER)
ExAllocatePoolWithTag
(
NonPagedPool,
sizeof(KTIMER),
MSVAD_POOLTAG
);
if (!m_pInstantiateTimer)
{
DPF(D_TERSE, ("[Could not allocate memory for Timer]"));
ntStatus = STATUS_INSUFFICIENT_RESOURCES;
}
}
// Initialize instantiation timer and DPC.
//
if (NT_SUCCESS(ntStatus))
{
KeInitializeDpc(m_pInstantiateDpc, InstantiateTimerNotify, this);
KeInitializeTimerEx(m_pInstantiateTimer, NotificationTimer);
#ifdef _ENABLE_INSTANTIATION_INTERVAL_
// Set the timer to expire every INSTANTIATE_INTERVAL_MS milliseconds.
//
LARGE_INTEGER liInstantiateInterval = {0};
liInstantiateInterval.QuadPart = -1 * INSTANTIATE_INTERVAL_MS * HNS_PER_MS;
KeSetTimerEx
(
m_pInstantiateTimer,
liInstantiateInterval,
INSTANTIATE_INTERVAL_MS,
m_pInstantiateDpc
);
#endif
}
return ntStatus;
} // Init
//=============================================================================
STDMETHODIMP_(void)
CAdapterCommon::MixerReset
(
void
)
/*++
Routine Description:
Reset mixer registers from registry.
Arguments:
Return Value:
void
--*/
{
PAGED_CODE();
if (m_pHW)
{
m_pHW->MixerReset();
}
} // MixerReset
//=============================================================================
STDMETHODIMP
CAdapterCommon::NonDelegatingQueryInterface
(
_In_ REFIID Interface,
_COM_Outptr_ PVOID * Object
)
/*++
Routine Description:
QueryInterface routine for AdapterCommon
Arguments:
Interface -
Object -
Return Value:
NT status code.
--*/
{
PAGED_CODE();
ASSERT(Object);
if (IsEqualGUIDAligned(Interface, IID_IUnknown))
{
*Object = PVOID(PUNKNOWN(PADAPTERCOMMON(this)));
}
else if (IsEqualGUIDAligned(Interface, IID_IAdapterCommon))
{
*Object = PVOID(PADAPTERCOMMON(this));
}
else if (IsEqualGUIDAligned(Interface, IID_IAdapterPowerManagement))
{
*Object = PVOID(PADAPTERPOWERMANAGEMENT(this));
}
else
{
*Object = NULL;
}
if (*Object)
{
PUNKNOWN(*Object)->AddRef();
return STATUS_SUCCESS;
}
return STATUS_INVALID_PARAMETER;
} // NonDelegatingQueryInterface
//=============================================================================
STDMETHODIMP_(void)
CAdapterCommon::SetWaveServiceGroup
(
IN PSERVICEGROUP ServiceGroup
)
/*++
Routine Description:
Arguments:
Return Value:
NT status code.
--*/
{
PAGED_CODE();
DPF_ENTER(("[CAdapterCommon::SetWaveServiceGroup]"));
if (m_pServiceGroupWave)
{
m_pServiceGroupWave->Release();
}
m_pServiceGroupWave = ServiceGroup;
if (m_pServiceGroupWave)
{
m_pServiceGroupWave->AddRef();
}
} // SetWaveServiceGroup
//=============================================================================
STDMETHODIMP_(NTSTATUS)
CAdapterCommon::InstantiateDevices
(
void
)
/*++
Routine Description:
Instantiates the wave and topology ports and exposes them.
Arguments:
Return Value:
NTSTATUS
--*/
{
PAGED_CODE();
NTSTATUS ntStatus = STATUS_SUCCESS;
if (m_bInstantiated)
{
return STATUS_SUCCESS;
}
// If the mixer topology port is not exposed, create and expose it.
//
ntStatus = ExposeMixerTopology();
// Create and expose the wave topology.
//
if (NT_SUCCESS(ntStatus))
{
ntStatus = ExposeWaveTopology();
}
// Register the physical connection between wave and mixer topologies.
//
if (NT_SUCCESS(ntStatus))
{
ntStatus = ConnectTopologies();
}
if (NT_SUCCESS(ntStatus))
{
m_bInstantiated = TRUE;
m_bPluggedIn = TRUE;
}
return ntStatus;
} // InstantiateDevices
//=============================================================================
STDMETHODIMP_(NTSTATUS)
CAdapterCommon::UninstantiateDevices
(
void
)
/*++
Routine Description:
Uninstantiates the wave and topology ports.
Arguments:
Return Value:
NTSTATUS
--*/
{
PAGED_CODE();
NTSTATUS ntStatus = STATUS_SUCCESS;
// Check if we're already uninstantiated
//
if (!m_bInstantiated)
{
return ntStatus;
}
// Unregister the physical connection between wave and mixer topologies
// and unregister/unexpose the wave topology. This is the same as being
// unplugged.
//
if (NT_SUCCESS(ntStatus))
{
ntStatus = Unplug();
}
// Unregister the topo port
//
if (NT_SUCCESS(ntStatus))
{
ntStatus = UnexposeMixerTopology();
}
if (NT_SUCCESS(ntStatus))
{