Leaked source code of windows server 2003
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.
|
|
//+---------------------------------------------------------------------------
//
// Microsoft Windows
// Copyright (C) Microsoft Corporation, 1992 - 1992.
//
// File: cntxlist.hxx
//
// Contents: CContextList header
//
// Classes: CContext
// CContextList
//
// History: 26-Oct-92 DrewB Created
//
//----------------------------------------------------------------------------
#ifndef __CNTXLIST_HXX__
#define __CNTXLIST_HXX__
#include <ole.hxx>
#include <cntxtid.hxx>
//+---------------------------------------------------------------------------
//
// Class: CContext (ctx)
//
// Purpose: Holds a context's data
//
// Interface: See below
//
// History: 26-Oct-92 DrewB Created
// 18-May-93 AlexT Added CMallocBased
//
//----------------------------------------------------------------------------
class CContext; // forward declaration for SAFE macro
SAFE_DFBASED_PTR(CBasedContextPtr, CContext); class CContext : public CMallocBased { public: ContextId ctxid; CBasedContextPtr pctxNext; };
//+---------------------------------------------------------------------------
//
// Class: CContextList (cl)
//
// Purpose: Maintains a list of objects that are context-sensitive
//
// Interface: See below
//
// History: 26-Oct-92 DrewB Created
// 18-May-93 AlexT Added CMallocBased
//
//----------------------------------------------------------------------------
class CContextList : public CMallocBased { protected: inline CContextList(void); inline ~CContextList(void);
public: inline void AddRef(void); inline void Release(void);
inline CContext *_GetHead(void) const; CContext *_Find(ContextId ctxid); void Add(CContext *pctx); void Remove(CContext *pctx); inline ULONG CountContexts(void);
private: CBasedContextPtr _pctxHead; LONG _cReferences; };
// Macro to define methods for a derived class
#define DECLARE_CONTEXT_LIST(type) \
inline type *Find(ContextId cid) { return (type *)_Find(cid); }\ inline type *GetHead(void) const { return (type *)_GetHead(); }\
//+---------------------------------------------------------------------------
//
// Member: CContextList::CContextList, public
//
// Synopsis: Constructor
//
// History: 27-Oct-92 DrewB Created
//
//----------------------------------------------------------------------------
inline CContextList::CContextList(void) { _pctxHead = NULL; _cReferences = 1; }
//+---------------------------------------------------------------------------
//
// Member: CContextList::~CContextList, public
//
// Synopsis: Destructor
//
// History: 27-Oct-92 DrewB Created
//
//----------------------------------------------------------------------------
inline CContextList::~CContextList(void) { olAssert(_pctxHead == NULL); olAssert(_cReferences == 0); }
//+---------------------------------------------------------------------------
//
// Member: CContextList::AddRef, public
//
// Synopsis: Increments the ref count
//
// History: 27-Oct-92 DrewB Created
//
//----------------------------------------------------------------------------
inline void CContextList::AddRef(void) { AtomicInc(&_cReferences); }
//+---------------------------------------------------------------------------
//
// Member: CContextList::Release, public
//
// Synopsis: Decrements the ref count
//
// History: 27-Oct-92 DrewB Created
//
//----------------------------------------------------------------------------
inline void CContextList::Release(void) { LONG lRet;
olAssert(_cReferences > 0); lRet = AtomicDec(&_cReferences); if (lRet == 0) delete this; }
//+---------------------------------------------------------------------------
//
// Member: CContextList::_GetHead, public
//
// Synopsis: Returns the head of the list
//
// History: 26-Oct-92 DrewB Created
//
//----------------------------------------------------------------------------
inline CContext *CContextList::_GetHead(void) const { return (CContext *)_pctxHead; }
//+---------------------------------------------------------------------------
//
// Member: CContextList::Count, public
//
// Synopsis: Counts the number of contexts
//
// Arguments:
//
// Returns: Count of the number of contexts
//
// History: 18-Mar-97 BChapman Created
//
//----------------------------------------------------------------------------
inline ULONG CContextList::CountContexts() { CBasedContextPtr pctx; ULONG cnt=0;
for (pctx = _pctxHead; pctx; pctx = pctx->pctxNext) ++cnt;
return cnt; }
#endif // #ifndef __CNTXLIST_HXX__
|