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
|
// Copyright (C) Microsoft Corporation, All Rights Reserved.
//
// Abstract:
//
// This module contains the implementation of driver callback function
// from clx to clients.
//
// Environment:
//
// Windows User-Mode Driver Framework (WUDF)
#include "Clients.h"
#include "Clients.tmh"
static const UINT SYSTEM_TICK_COUNT_1MS = 1; // 1ms
//------------------------------------------------------------------------------
// Function: OnTimerExpire
//
// This callback is called when interval wait time has expired and driver is ready
// to collect new sample. The callback reads current value, compare value to threshold,
// pushes it up to CLX framework, and schedule next wake up time.
//
// Arguments:
// Timer: IN: WDF timer object
//
// Return Value:
// None
//------------------------------------------------------------------------------
VOID
OnTimerExpire(
_In_ WDFTIMER Timer
)
{
PComboDevice pDevice = nullptr;
NTSTATUS Status = STATUS_SUCCESS;
SENSOR_FunctionEnter();
pDevice = GetContextFromSensorInstance(WdfTimerGetParentObject(Timer));
if (pDevice == nullptr)
{
Status = STATUS_INSUFFICIENT_RESOURCES;
TraceError("COMBO %!FUNC! GetContextFromSensorInstance failed %!STATUS!", Status);
goto Exit;
}
// Get data and push to clx
Lock(pDevice->m_Lock);
Status = pDevice->GetData();
if (!NT_SUCCESS(Status) && Status != STATUS_DATA_NOT_ACCEPTED)
{
TraceError("COMBO %!FUNC! GetData Failed %!STATUS!", Status);
}
Unlock(pDevice->m_Lock);
// Schedule next wake up time
if (pDevice->m_MinimumIntervalMs <= pDevice->m_IntervalMs &&
FALSE != pDevice->m_PoweredOn &&
FALSE != pDevice->m_Started)
{
LONGLONG WaitTime = 0; // in unit of 100ns
if (pDevice->m_StartTime == 0)
{
// in case we fail to get sensor start time, use static wait time
WaitTime = WDF_REL_TIMEOUT_IN_MS(pDevice->m_IntervalMs);
}
else
{
ULONG CurrentTimeMs = 0;
// dynamically calculate wait time to avoid jitter
Status = GetPerformanceTime (&CurrentTimeMs);
if (!NT_SUCCESS(Status))
{
TraceError("COMBO %!FUNC! GetPerformanceTime %!STATUS!", Status);
WaitTime = WDF_REL_TIMEOUT_IN_MS(pDevice->m_IntervalMs);
}
else
{
pDevice->m_SampleCount++;
if (CurrentTimeMs > (pDevice->m_StartTime + (pDevice->m_IntervalMs * (pDevice->m_SampleCount + 1))))
{
// If we skipped two or more beats, reschedule the timer with a zero due time to catch up on missing samples
WaitTime = 0;
}
else
{
// Else, just compute the remaining time
WaitTime = (pDevice->m_StartTime +
(pDevice->m_IntervalMs * (pDevice->m_SampleCount + 1))) - CurrentTimeMs;
}
WaitTime = WDF_REL_TIMEOUT_IN_MS(WaitTime);
}
}
WdfTimerStart(pDevice->m_Timer, WaitTime);
}
Exit:
SENSOR_FunctionExit(Status);
}
//------------------------------------------------------------------------------
// Function: OnStart
//
// Called by Sensor CLX to begin continously sampling the sensor.
//
// Arguments:
// SensorInstance: IN: sensor device object
//
// Return Value:
// NTSTATUS code
//------------------------------------------------------------------------------
NTSTATUS
OnStart(
_In_ SENSOROBJECT SensorInstance
)
{
PComboDevice pDevice = GetContextFromSensorInstance(SensorInstance);
NTSTATUS Status = STATUS_SUCCESS;
SENSOR_FunctionEnter();
if (pDevice == nullptr)
{
Status = STATUS_INVALID_PARAMETER;
TraceError("COMBO %!FUNC! Sensor(%p) parameter is invalid. Failed %!STATUS!", static_cast<PVOID>(&SensorInstance), Status);
goto Exit;
}
if (pDevice->m_PoweredOn == FALSE)
{
Status = STATUS_DEVICE_NOT_READY;
TraceError("COMBO %!FUNC! Sensor is not powered on! %!STATUS!", Status);
goto Exit;
}
//
// Start worker thread
//
pDevice->m_IntervalMs;
pDevice->m_FirstSample = TRUE;
// Start polling
pDevice->m_Started = TRUE;
InitPropVariantFromUInt32(SensorState_Active,
&(pDevice->m_pProperties->List[SENSOR_COMMON_PROPERTY_STATE].Value));
WdfTimerStart(pDevice->m_Timer, WDF_REL_TIMEOUT_IN_MS(pDevice->m_MinimumIntervalMs));
Exit:
SENSOR_FunctionExit(Status);
return Status;
}
//------------------------------------------------------------------------------
// Function: OnStop
//
// Called by Sensor CLX to stop continously sampling the sensor.
//
// Arguments:
// SensorInstance: IN: sensor device object
//
// Return Value:
// NTSTATUS code
//------------------------------------------------------------------------------
NTSTATUS
OnStop(
_In_ SENSOROBJECT SensorInstance
)
{
PComboDevice pDevice = GetContextFromSensorInstance(SensorInstance);
NTSTATUS Status = STATUS_SUCCESS;
SENSOR_FunctionEnter();
if (pDevice == nullptr)
{
Status = STATUS_INVALID_PARAMETER;
TraceError("COMBO %!FUNC! Sensor(%p) parameter is invalid. Failed %!STATUS!", static_cast<PVOID>(&SensorInstance), Status);
goto Exit;
}
// Stop polling
pDevice->m_Started = FALSE;
WdfTimerStop(pDevice->m_Timer, TRUE);
InitPropVariantFromUInt32(SensorState_Idle,
&(pDevice->m_pProperties->List[SENSOR_COMMON_PROPERTY_STATE].Value));
//
// Restoring system time resolution
//
if (TIMERR_NOERROR != timeEndPeriod(SYSTEM_TICK_COUNT_1MS))
{
// not a failure, just log message
Status = STATUS_UNSUCCESSFUL;
TraceWarning("COMBO %!FUNC! timeEndPeriod failed to restore timer resolution! %!STATUS!", Status);
}
Exit:
SENSOR_FunctionExit(Status);
return Status;
}
//------------------------------------------------------------------------------
// Function: OnGetSupportedDataFields
//
// Called by Sensor CLX to get supported data fields. The typical usage is to call
// this function once with buffer pointer as NULL to acquire the required size
// for the buffer, allocate buffer, then call the function again to retrieve
// sensor information.
//
// Arguments:
// SensorInstance: IN: sensor device object
// pFields: INOUT_OPT: pointer to a list of supported properties
// pSize: OUT: number of bytes for the list of supported properties
//
// Return Value:
// NTSTATUS code
//------------------------------------------------------------------------------
NTSTATUS
OnGetSupportedDataFields(
_In_ SENSOROBJECT SensorInstance,
_Inout_opt_ PSENSOR_PROPERTY_LIST pFields,
_Out_ PULONG pSize
)
{
PComboDevice pDevice = GetContextFromSensorInstance(SensorInstance);
NTSTATUS Status = STATUS_SUCCESS;
SENSOR_FunctionEnter();
if (nullptr == pDevice || nullptr == pSize)
{
Status = STATUS_INVALID_PARAMETER;
TraceError("COMBO %!FUNC! Invalid parameters! %!STATUS!", Status);
goto Exit;
}
if (nullptr == pFields)
{
// Just return size
*pSize = pDevice->m_pSupportedDataFields->AllocatedSizeInBytes;
}
else
{
if (pFields->AllocatedSizeInBytes < pDevice->m_pSupportedDataFields->AllocatedSizeInBytes)
{
Status = STATUS_INSUFFICIENT_RESOURCES;
TraceError("COMBO %!FUNC! Buffer is too small. Failed %!STATUS!", Status);
goto Exit;
}
// Fill out data
Status = PropertiesListCopy (pFields, pDevice->m_pSupportedDataFields);
if (!NT_SUCCESS(Status))
{
TraceError("COMBO %!FUNC! PropertiesListCopy failed %!STATUS!", Status);
goto Exit;
}
*pSize = pDevice->m_pSupportedDataFields->AllocatedSizeInBytes;
}
Exit:
if (!NT_SUCCESS(Status))
{
*pSize = 0;
}
SENSOR_FunctionExit(Status);
return Status;
}
//------------------------------------------------------------------------------
// Function: OnGetProperties
//
// Called by Sensor CLX to get sensor properties. The typical usage is to call
// this function once with buffer pointer as NULL to acquire the required size
// for the buffer, allocate buffer, then call the function again to retrieve
// sensor information.
//
// Arguments:
// SensorInstance: IN: sensor device object
// pProperties: INOUT_OPT: pointer to a list of sensor properties
// pSize: OUT: number of bytes for the list of sensor properties
//
// Return Value:
// NTSTATUS code
//------------------------------------------------------------------------------
NTSTATUS
OnGetProperties(
_In_ SENSOROBJECT SensorInstance,
_Inout_opt_ PSENSOR_COLLECTION_LIST pProperties,
_Out_ PULONG pSize
)
{
PComboDevice pDevice = GetContextFromSensorInstance(SensorInstance);
NTSTATUS Status = STATUS_SUCCESS;
SENSOR_FunctionEnter();
if (nullptr == pDevice || nullptr == pSize)
{
Status = STATUS_INVALID_PARAMETER;
TraceError("COMBO %!FUNC! Invalid parameters! %!STATUS!", Status);
goto Exit;
}
if (nullptr == pProperties)
{
// Just return size
*pSize = CollectionsListGetMarshalledSize(pDevice->m_pProperties);
}
else
{
if (pProperties->AllocatedSizeInBytes <
CollectionsListGetMarshalledSize(pDevice->m_pProperties))
{
Status = STATUS_INSUFFICIENT_RESOURCES;
TraceError("COMBO %!FUNC! Buffer is too small. Failed %!STATUS!", Status);
goto Exit;
}
// Fill out all data
Status = CollectionsListCopyAndMarshall(pProperties, pDevice->m_pProperties);
if (!NT_SUCCESS(Status))
{
TraceError("COMBO %!FUNC! CollectionsListCopyAndMarshall failed %!STATUS!", Status);
goto Exit;
}
*pSize = CollectionsListGetMarshalledSize(pDevice->m_pProperties);
}
Exit:
if (!NT_SUCCESS(Status))
{
*pSize = 0;
}
SENSOR_FunctionExit(Status);
return Status;
}
//------------------------------------------------------------------------------
// Function: OnGetDataFieldProperties
//
// Called by Sensor CLX to get data field properties. The typical usage is to call
// this function once with buffer pointer as NULL to acquire the required size
// for the buffer, allocate buffer, then call the function again to retrieve
// sensor information.
//
// Arguments:
// SensorInstance: IN: sensor device object
// DataField: IN: pointer to the propertykey of requested property
// pProperties: INOUT_OPT: pointer to a list of sensor properties
// pSize: OUT: number of bytes for the list of sensor properties
//
// Return Value:
// NTSTATUS code
//------------------------------------------------------------------------------
NTSTATUS
OnGetDataFieldProperties(
_In_ SENSOROBJECT SensorInstance,
_In_ const PROPERTYKEY *DataField,
_Inout_opt_ PSENSOR_COLLECTION_LIST pProperties,
_Out_ PULONG pSize
)
{
PComboDevice pDevice = GetContextFromSensorInstance(SensorInstance);
NTSTATUS Status = STATUS_SUCCESS;
SENSOR_FunctionEnter();
if (nullptr == pDevice || nullptr == pSize || nullptr == DataField)
{
Status = STATUS_INVALID_PARAMETER;
TraceError("COMBO %!FUNC! Invalid parameters! %!STATUS!", Status);
goto Exit;
}
if (IsKeyPresentInPropertyList(pDevice->m_pSupportedDataFields, DataField) != FALSE)
{
if (nullptr == pProperties)
{
// Just return size
*pSize = CollectionsListGetMarshalledSize(pDevice->m_pDataFieldProperties);
}
else
{
if (pProperties->AllocatedSizeInBytes <
CollectionsListGetMarshalledSize(pDevice->m_pDataFieldProperties))
{
Status = STATUS_INSUFFICIENT_RESOURCES;
TraceError("COMBO %!FUNC! Buffer is too small. Failed %!STATUS!", Status);
goto Exit;
}
// Fill out all data
Status = CollectionsListCopyAndMarshall (pProperties, pDevice->m_pDataFieldProperties);
if (!NT_SUCCESS(Status))
{
TraceError("COMBO %!FUNC! CollectionsListCopyAndMarshall failed %!STATUS!", Status);
goto Exit;
}
*pSize = CollectionsListGetMarshalledSize(pDevice->m_pDataFieldProperties);
}
}
else
{
Status = STATUS_NOT_SUPPORTED;
TraceError("COMBO %!FUNC! Sensor does NOT have properties for this data field. Failed %!STATUS!", Status);
goto Exit;
}
Exit:
if (!NT_SUCCESS(Status))
{
*pSize = 0;
}
SENSOR_FunctionExit(Status);
return Status;
}
//------------------------------------------------------------------------------
// Function: OnGetDataInterval
//
// Called by Sensor CLX to get sampling rate of the sensor.
//
// Arguments:
// SensorInstance: IN: sensor device object
// DataRateMs: OUT: sampling rate in ms
//
// Return Value:
// NTSTATUS code
//------------------------------------------------------------------------------
NTSTATUS
OnGetDataInterval(
_In_ SENSOROBJECT SensorInstance,
_Out_ PULONG DataRateMs
)
{
PComboDevice pDevice = GetContextFromSensorInstance(SensorInstance);
NTSTATUS Status = STATUS_SUCCESS;
SENSOR_FunctionEnter();
if (pDevice == nullptr)
{
Status = STATUS_INVALID_PARAMETER;
TraceError("COMBO %!FUNC! Invalid parameter!");
goto Exit;
}
if (DataRateMs == nullptr)
{
Status = STATUS_INVALID_PARAMETER;
TraceError("COMBO %!FUNC! DataRateMs(%p) parameter is invalid. Failed %!STATUS!", static_cast<PVOID>(DataRateMs), Status);
goto Exit;
}
*DataRateMs = pDevice->m_IntervalMs;
Exit:
SENSOR_FunctionExit(Status);
return Status;
}
//------------------------------------------------------------------------------
// Function: OnSetDataInterval
//
// Called by Sensor CLX to set sampling rate of the sensor.
//
// Arguments:
// SensorInstance: IN: sensor device object
// DataRateMs: IN: sampling rate in ms
//
// Return Value:
// NTSTATUS code
//------------------------------------------------------------------------------
NTSTATUS
OnSetDataInterval(
_In_ SENSOROBJECT SensorInstance,
_In_ ULONG DataRateMs
)
{
PComboDevice pDevice = GetContextFromSensorInstance(SensorInstance);
NTSTATUS Status = STATUS_SUCCESS;
SENSOR_FunctionEnter();
if (pDevice == nullptr || DataRateMs == 0)
{
Status = STATUS_INVALID_PARAMETER;
TraceError("COMBO %!FUNC! Invalid parameter!");
goto Exit;
}
pDevice->m_IntervalMs = DataRateMs;
// reschedule sample to return as soon as possible if it's started
if (FALSE != pDevice->m_Started)
{
pDevice->m_Started = FALSE;
WdfTimerStop(pDevice->m_Timer, TRUE);
pDevice->m_Started = TRUE;
pDevice->m_FirstSample = TRUE;
WdfTimerStart(pDevice->m_Timer, WDF_REL_TIMEOUT_IN_MS(pDevice->m_MinimumIntervalMs));
}
Exit:
SENSOR_FunctionExit(Status);
return Status;
}
//------------------------------------------------------------------------------
// Function: OnGetDataThresholds
//
// Called by Sensor CLX to get data thresholds. The typical usage is to call
// this function once with buffer pointer as NULL to acquire the required size
// for the buffer, allocate buffer, then call the function again to retrieve
// sensor information.
//
// Arguments:
// SensorInstance: IN: sensor device object
// pThresholds: INOUT_OPT: pointer to a list of sensor thresholds
// pSize: OUT: number of bytes for the list of sensor thresholds
//
// Return Value:
// NTSTATUS code
//------------------------------------------------------------------------------
NTSTATUS
OnGetDataThresholds(
_In_ SENSOROBJECT SensorInstance,
_Inout_opt_ PSENSOR_COLLECTION_LIST pThresholds,
_Out_ PULONG pSize
)
{
PComboDevice pDevice = GetContextFromSensorInstance(SensorInstance);
NTSTATUS Status = STATUS_SUCCESS;
SENSOR_FunctionEnter();
if (nullptr == pDevice || nullptr == pSize)
{
Status = STATUS_INVALID_PARAMETER;
TraceError("COMBO %!FUNC! Invalid parameters!");
goto Exit;
}
if (nullptr == pThresholds)
{
// Just return size
*pSize = CollectionsListGetMarshalledSize(pDevice->m_pThresholds);
}
else
{
if (pThresholds->AllocatedSizeInBytes <
CollectionsListGetMarshalledSize(pDevice->m_pThresholds))
{
Status = STATUS_INSUFFICIENT_RESOURCES;
TraceError("COMBO %!FUNC! Buffer is too small!");
goto Exit;
}
// Fill out all data
Status = CollectionsListCopyAndMarshall (pThresholds, pDevice->m_pThresholds);
if (!NT_SUCCESS(Status))
{
TraceError("COMBO %!FUNC! CollectionsListCopyAndMarshall failed %!STATUS!", Status);
goto Exit;
}
*pSize = CollectionsListGetMarshalledSize(pDevice->m_pThresholds);
}
Exit:
if (!NT_SUCCESS(Status))
{
*pSize = 0;
}
SENSOR_FunctionExit(Status);
return Status;
}
//------------------------------------------------------------------------------
// Function: OnSetDataThresholds
//
// Called by Sensor CLX to set data thresholds.
//
// Arguments:
// SensorInstance: IN: sensor device object
// pThresholds: IN: pointer to a list of sensor thresholds
//
// Return Value:
// NTSTATUS code
//------------------------------------------------------------------------------
NTSTATUS
OnSetDataThresholds(
_In_ SENSOROBJECT SensorInstance,
_In_ PSENSOR_COLLECTION_LIST pThresholds
)
{
ULONG Element;
BOOLEAN IsLocked = FALSE;
PComboDevice pDevice = GetContextFromSensorInstance(SensorInstance);
NTSTATUS Status = STATUS_SUCCESS;
SENSOR_FunctionEnter();
if (pDevice == nullptr)
{
Status = STATUS_INVALID_PARAMETER;
TraceError("COMBO %!FUNC! Invalid parameter!");
goto Exit;
}
Lock(pDevice->m_Lock);
IsLocked = TRUE;
for (Element = 0; Element < pThresholds->Count; Element++)
{
Status = PropKeyFindKeySetPropVariant(pDevice->m_pThresholds,
&(pThresholds->List[Element].Key),
TRUE,
&(pThresholds->List[Element].Value));
if (!NT_SUCCESS(Status))
{
Status = STATUS_INVALID_PARAMETER;
TraceError("COMBO %!FUNC! Sensor does NOT have threshold for this data field. Failed %!STATUS!", Status);
goto Exit;
}
}
// Update cached threshholds
Status = pDevice->UpdateCachedThreshold();
if (!NT_SUCCESS(Status))
{
TraceError("COMBO %!FUNC! UpdateCachedThreshold failed! %!STATUS!", Status);
goto Exit;
}
Exit:
if (IsLocked)
{
Unlock(pDevice->m_Lock);
IsLocked = FALSE;
}
SENSOR_FunctionExit(Status);
return Status;
}
//------------------------------------------------------------------------------
// Function: OnIoControl
//
// Called by Sensor CLX to handle IOCTLs that clx does not support
//
// Arguments:
// SensorInstance: IN: Sensor object
// Request: IN: WDF request object
// OutputBufferLength: IN: number of bytes to retrieve from output buffer
// InputBufferLength: IN: number of bytes to retrieve from input buffer
// IoControlCode: IN: IOCTL control code
//
// Return Value:
// NTSTATUS code
//------------------------------------------------------------------------------
NTSTATUS OnIoControl(
_In_ SENSOROBJECT /*SensorInstance*/, // Sensor object
_In_ WDFREQUEST /*Request*/, // WDF request object
_In_ size_t /*OutputBufferLength*/, // number of bytes to retrieve from output buffer
_In_ size_t /*InputBufferLength*/, // number of bytes to retrieve from input buffer
_In_ ULONG /*IoControlCode*/ // IOCTL control code
)
{
NTSTATUS Status = STATUS_NOT_SUPPORTED;
SENSOR_FunctionEnter();
SENSOR_FunctionExit(Status);
return Status;
}
// Called by Sensor CLX to begin keeping history
NTSTATUS OnStartHistory(_In_ SENSOROBJECT SensorInstance)
{
PComboDevice pDevice = GetContextFromSensorInstance(SensorInstance);
NTSTATUS Status = STATUS_SUCCESS;
SENSOR_FunctionEnter();
if (nullptr == pDevice)
{
Status = STATUS_INVALID_PARAMETER;
TraceError("COMBO %!FUNC! GetContextFromSensorInstance failed %!STATUS!", Status);
}
else
{
Status = pDevice->StartHistory();
}
SENSOR_FunctionExit(Status);
return Status;
}
// Called by Sensor CLX to stop keeping history.
NTSTATUS OnStopHistory(_In_ SENSOROBJECT SensorInstance)
{
PComboDevice pDevice = GetContextFromSensorInstance(SensorInstance);
NTSTATUS Status = STATUS_SUCCESS;
SENSOR_FunctionEnter();
if (nullptr == pDevice)
{
Status = STATUS_INVALID_PARAMETER;
TraceError("COMBO %!FUNC! GetContextFromSensorInstance failed %!STATUS!", Status);
}
else
{
Status = pDevice->StopHistory();
}
SENSOR_FunctionExit(Status);
return Status;
}
// Called by Sensor CLX to enable wake
NTSTATUS OnEnableWake(_In_ SENSOROBJECT SensorInstance)
{
PComboDevice pDevice = GetContextFromSensorInstance(SensorInstance);
NTSTATUS Status = STATUS_SUCCESS;
SENSOR_FunctionEnter();
if (nullptr == pDevice)
{
Status = STATUS_INVALID_PARAMETER;
TraceError("COMBO %!FUNC! GetContextFromSensorInstance failed %!STATUS!", Status);
}
else
{
pDevice->m_WakeEnabled = TRUE;
Status = pDevice->EnableWake();
}
SENSOR_FunctionExit(Status);
return Status;
}
// Called by Sensor CLX to disable wake
NTSTATUS OnDisableWake(_In_ SENSOROBJECT SensorInstance)
{
PComboDevice pDevice = GetContextFromSensorInstance(SensorInstance);
NTSTATUS Status = STATUS_SUCCESS;
SENSOR_FunctionEnter();
if (nullptr == pDevice)
{
Status = STATUS_INVALID_PARAMETER;
TraceError("COMBO %!FUNC! GetContextFromSensorInstance failed %!STATUS!", Status);
}
else
{
pDevice->m_WakeEnabled = FALSE;
Status = pDevice->DisableWake();
}
SENSOR_FunctionExit(Status);
return Status;
}
// Called by Sensor CLX to clear all history stored in the sensor.
NTSTATUS OnClearHistory(_In_ SENSOROBJECT SensorInstance)
{
PComboDevice pDevice = GetContextFromSensorInstance(SensorInstance);
NTSTATUS Status = STATUS_SUCCESS;
SENSOR_FunctionEnter();
if (nullptr == pDevice)
{
Status = STATUS_INVALID_PARAMETER;
TraceError("COMBO %!FUNC! GetContextFromSensorInstance failed %!STATUS!", Status);
}
else
{
Status = pDevice->ClearHistory();
}
SENSOR_FunctionExit(Status);
return Status;
}
// Called by Sensor CLX to start retrieving history.
NTSTATUS OnStartHistoryRetrieval(
_In_ SENSOROBJECT SensorInstance,
_Inout_updates_bytes_(HistorySizeInBytes) PSENSOR_COLLECTION_LIST pHistoryBuffer,
_In_ ULONG HistorySizeInBytes)
{
PComboDevice pDevice = GetContextFromSensorInstance(SensorInstance);
NTSTATUS Status = STATUS_SUCCESS;
SENSOR_FunctionEnter();
if (nullptr == pDevice)
{
Status = STATUS_INVALID_PARAMETER;
TraceError("COMBO %!FUNC! GetContextFromSensorInstance failed %!STATUS!", Status);
}
else if (sizeof(SENSOR_COLLECTION_LIST) > HistorySizeInBytes)
{
Status = STATUS_BUFFER_TOO_SMALL;
TraceError("COMBO %!FUNC! HistorySizeInBytes is too small %!STATUS!", Status);
}
else
{
Status = pDevice->StartHistoryRetrieval(pHistoryBuffer, HistorySizeInBytes);
}
SENSOR_FunctionExit(Status);
return Status;
}
// Called by Sensor CLX to cancel history retrieval.
NTSTATUS OnCancelHistoryRetrieval(_In_ SENSOROBJECT SensorInstance, _Out_ PULONG pBytesWritten)
{
PComboDevice pDevice = GetContextFromSensorInstance(SensorInstance);
NTSTATUS Status = STATUS_SUCCESS;
SENSOR_FunctionEnter();
if (nullptr == pDevice)
{
Status = STATUS_INVALID_PARAMETER;
TraceError("COMBO %!FUNC! GetContextFromSensorInstance failed %!STATUS!", Status);
}
else
{
Status = pDevice->CancelHistoryRetrieval(pBytesWritten);
}
SENSOR_FunctionExit(Status);
return Status;
}
|