You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
101 lines
2.5 KiB
101 lines
2.5 KiB
//---------------------------------------------------------------------------
|
|
//
|
|
// Module: gpi.cpp
|
|
//
|
|
// Description:
|
|
//
|
|
// Graph Pin Info Class
|
|
//
|
|
//@@BEGIN_MSINTERNAL
|
|
// Development Team:
|
|
// Mike McLaughlin
|
|
//
|
|
// History: Date Author Comment
|
|
//
|
|
// To Do: Date Author Comment
|
|
//
|
|
//@@END_MSINTERNAL
|
|
//
|
|
// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
|
|
// KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
|
|
// IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR
|
|
// PURPOSE.
|
|
//
|
|
// Copyright (c) 1996-1999 Microsoft Corporation. All Rights Reserved.
|
|
//
|
|
//---------------------------------------------------------------------------
|
|
|
|
#include "common.h"
|
|
|
|
//---------------------------------------------------------------------------
|
|
//---------------------------------------------------------------------------
|
|
|
|
NTSTATUS
|
|
CGraphPinInfo::Create(
|
|
PGRAPH_PIN_INFO *ppGraphPinInfo,
|
|
PPIN_INFO pPinInfo,
|
|
ULONG ulFlags,
|
|
PGRAPH_NODE pGraphNode
|
|
)
|
|
{
|
|
PGRAPH_PIN_INFO pGraphPinInfo = NULL;
|
|
NTSTATUS Status = STATUS_SUCCESS;
|
|
|
|
Assert(pPinInfo);
|
|
Assert(pGraphNode);
|
|
|
|
FOR_EACH_LIST_ITEM(&pGraphNode->lstGraphPinInfo, pGraphPinInfo) {
|
|
|
|
if(pGraphPinInfo->pPinInfo == pPinInfo &&
|
|
((pGraphPinInfo->ulFlags ^ ulFlags) &
|
|
GPI_FLAGS_RESERVE_PIN_INSTANCE) == 0) {
|
|
|
|
pGraphPinInfo->AddRef();
|
|
goto exit;
|
|
}
|
|
|
|
} END_EACH_LIST_ITEM
|
|
|
|
pGraphPinInfo = new GRAPH_PIN_INFO(pPinInfo, ulFlags, pGraphNode);
|
|
if(pGraphPinInfo == NULL) {
|
|
Status = STATUS_INSUFFICIENT_RESOURCES;
|
|
goto exit;
|
|
}
|
|
DPF2(80, "CGraphPinInfo::Create %08x GN %08x", pGraphPinInfo, pGraphNode);
|
|
exit:
|
|
*ppGraphPinInfo = pGraphPinInfo;
|
|
return(Status);
|
|
}
|
|
|
|
CGraphPinInfo::CGraphPinInfo(
|
|
PPIN_INFO pPinInfo,
|
|
ULONG ulFlags,
|
|
PGRAPH_NODE pGraphNode
|
|
)
|
|
{
|
|
Assert(pPinInfo);
|
|
Assert(pGraphNode);
|
|
|
|
this->pPinInfo = pPinInfo;
|
|
this->ulFlags = ulFlags;
|
|
if(ulFlags & GPI_FLAGS_RESERVE_PIN_INSTANCE) {
|
|
this->cPinInstances.PossibleCount = 1;
|
|
this->cPinInstances.CurrentCount = 0;
|
|
}
|
|
else {
|
|
this->cPinInstances = pPinInfo->cPinInstances;
|
|
}
|
|
AddRef();
|
|
AddList(&pGraphNode->lstGraphPinInfo);
|
|
DPF2(80, "CGraphPinInfo: %08x GN %08x", this, pGraphNode);
|
|
}
|
|
|
|
CGraphPinInfo::~CGraphPinInfo(
|
|
)
|
|
{
|
|
DPF1(80, "~CGraphPinInfo: %08x", this);
|
|
Assert(this);
|
|
RemoveList();
|
|
}
|
|
|
|
//---------------------------------------------------------------------------
|