PIBIO_SENSOR_DETACH_FN 콜백 함수(winbio_adapter.h)
센서 어댑터가 생체 인식 단위의 처리 파이프라인에서 제거되기 직전에 Windows 생체 인식 프레임워크에서 호출됩니다. 이 함수의 목적은 파이프라인에 연결된 어댑터 특정 리소스를 해제하는 것입니다.
구문
PIBIO_SENSOR_DETACH_FN PibioSensorDetachFn;
HRESULT PibioSensorDetachFn(
[in, out] PWINBIO_PIPELINE Pipeline
)
{...}
매개 변수
[in, out] Pipeline
작업을 수행하는 생체 인식 단위와 연결된 WINBIO_PIPELINE 구조체에 대한 포인터입니다.
반환 값
함수가 성공하면 S_OK를 반환합니다. 함수가 실패하는 경우 오류를 나타내려면 다음 HRESULT 값 중 하나를 반환해야 합니다.
반환 코드 | 설명 |
---|---|
|
Pipeline 매개 변수는 NULL일 수 없습니다. |
|
WINBIO_PIPELINE 구조체의 SensorContext 필드는 NULL일 수 없습니다. |
설명
메모리 누수 방지를 위해 SensorAdapterDetach 함수의 구현은 센서 컨텍스트에 연결된 다른 리소스와 함께 파이프라인의 SensorContext 멤버가 가리키는 프라이빗 WINBIO_SENSOR_CONTEXT 구조를 해제해야 합니다.
이 함수가 호출될 때 파이프라인 개체의 SensorContext 필드가 NULL 이면 파이프라인이 제대로 초기화되지 않았으며 windows 생체 인식 프레임워크에 문제를 알리기 위해 WINBIO_E_INVALID_DEVICE_STATE 반환해야 합니다.
S_OK 반환하기 전에 이 함수는 WINBIO_PIPELINE 구조체의 SensorContext 필드를 NULL로 설정해야 합니다.
이 함수는 파이프라인에서 스토리지 및 엔진 어댑터를 제거한 후에 호출되므로 이 함수의 구현은 파이프라인 개체의 EngineInterface 및 StorageInterface 멤버가 가리키는 WINBIO_ENGINE_INTERFACE 또는 WINBIO_STORAGE_INTERFACE 구조체에서 참조하는 함수를 호출해서는 안 됩니다.
WINBIO_PIPELINE 구조체의 SensorHandle 멤버는 SensorAdapterDetach가 호출된 후에도 유효한 핸들을 포함하므로 필요한 경우 핸들을 사용하여 센서 디바이스에 액세스할 수 있습니다. 이 함수는 센서 핸들을 닫아서는 안 됩니다. Windows 생체 인식 프레임워크는 SensorAdapterDetach가 반환된 후에 이 작업을 수행합니다.
예제
다음 의사 코드는 이 함수의 가능한 구현 중 하나를 보여 줍니다. 이 예제는 컴파일되지 않습니다. 목적에 맞게 조정해야 합니다.
//////////////////////////////////////////////////////////////////////////////////////////
//
// SensorAdapterDetach
//
// Purpose:
// Cancels all pending sensor operations.
//
// Parameters:
// Pipeline - Pointer to a WINBIO_PIPELINE structure associated with
// the biometric unit.
//
static HRESULT
WINAPI
SensorAdapterDetach(
__inout PWINBIO_PIPELINE Pipeline
)
{
PWINBIO_SENSOR_CONTEXT sensorContext = NULL;
// Verify that the Pipeline parameter is not NULL.
if (!ARGUMENT_PRESENT(Pipeline))
{
hr = E_POINTER;
goto cleanup;
}
// Validate the current state of the sensor.
if (Pipeline->SensorContext == NULL)
{
return WINBIO_E_INVALID_DEVICE_STATE;
}
// Cancel any pending I/O to the device.
SensorAdapterCancel(Pipeline);
// Take ownership of the sensor context from the pipeline.
sensorContext = (PWINBIO_SENSOR_CONTEXT)Pipeline->SensorContext;
Pipeline->SensorContext = NULL;
// Release any structures that remain attached to the context block.
// The following example assumes that your sensor adapter context
// contains pointers to a capture buffer and an attributes buffer.
if (sensorContext->CaptureBuffer != NULL)
{
// Zero the capture buffer.
SecureZeroMemory(
sensorContext->CaptureBuffer,
sensorContext->CaptureBufferSize);
// Release the capture buffer.
_AdapterRelease(sensorContext->CaptureBuffer);
sensorContext->CaptureBuffer = NULL;
sensorContext->CaptureBufferSize = 0;
}
if (sensorContext->AttributesBuffer != NULL)
{
// Zero the attributes buffer.
SecureZeroMemory(
sensorContext->AttributesBuffer,
sensorContext->AttributesBufferSize);
// Release the attributes buffer.
_AdapterRelease(sensorContext->AttributesBuffer);
sensorContext->AttributesBuffer = NULL;
sensorContext->AttributesBufferSize = 0;
}
// Close the overlapped I/O event handle.
CloseHandle(sensorContext->Overlapped.hEvent);
// Release the context structure.
_AdapterRelease(sensorContext);
sensorContext = NULL;
return S_OK;
}
요구 사항
요구 사항 | 값 |
---|---|
지원되는 최소 클라이언트 | Windows 7 [데스크톱 앱만 해당] |
지원되는 최소 서버 | Windows Server 2008 R2 [데스크톱 앱만 해당] |
대상 플랫폼 | Windows |
헤더 | winbio_adapter.h(Winbio_adapter.h 포함) |