⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 nameidpool.c

📁 基于属性证书的访问控制源代码,由c++编写,包括openssl,xercesc等
💻 C
📖 第 1 页 / 共 2 页
字号:
    return findIt->fData;}template <class TElem> const TElem*NameIdPool<TElem>::getByKey(const XMLCh* const key) const{    unsigned int hashVal;    const NameIdPoolBucketElem<TElem>* findIt = findBucketElem(key, hashVal);    if (!findIt)        return 0;    return findIt->fData;}template <class TElem> TElem*NameIdPool<TElem>::getById(const unsigned int elemId){    // If its either zero or beyond our current id, its an error    if (!elemId || (elemId > fIdCounter))        ThrowXMLwithMemMgr(IllegalArgumentException, XMLExcepts::Pool_InvalidId, fMemoryManager);    return fIdPtrs[elemId];}template <class TElem>const TElem* NameIdPool<TElem>::getById(const unsigned int elemId) const{    // If its either zero or beyond our current id, its an error    if (!elemId || (elemId > fIdCounter))        ThrowXMLwithMemMgr(IllegalArgumentException, XMLExcepts::Pool_InvalidId, fMemoryManager);    return fIdPtrs[elemId];}template <class TElem>MemoryManager* NameIdPool<TElem>::getMemoryManager() const{    return fMemoryManager;}// ---------------------------------------------------------------------------//  NameIdPool: Setters// ---------------------------------------------------------------------------template <class TElem>unsigned int NameIdPool<TElem>::put(TElem* const elemToAdopt){    // First see if the key exists already. If so, its an error    unsigned int hashVal;    if (findBucketElem(elemToAdopt->getKey(), hashVal))    {        ThrowXMLwithMemMgr1        (            IllegalArgumentException            , XMLExcepts::Pool_ElemAlreadyExists            , elemToAdopt->getKey()            , fMemoryManager        );    }    // Create a new bucket element and add it to the appropriate list    NameIdPoolBucketElem<TElem>* newBucket = new (fMemoryManager) NameIdPoolBucketElem<TElem>    (        elemToAdopt        , fBucketList[hashVal]    );    fBucketList[hashVal] = newBucket;    //    //  Give this new one the next available id and add to the pointer list.    //  Expand the list if that is now required.    //    if (fIdCounter + 1 == fIdPtrsCount)    {        // Create a new count 1.5 times larger and allocate a new array        unsigned int newCount = (unsigned int)(fIdPtrsCount * 1.5);        TElem** newArray = (TElem**) fMemoryManager->allocate        (            newCount * sizeof(TElem*)        ); //new TElem*[newCount];        // Copy over the old contents to the new array        memcpy(newArray, fIdPtrs, fIdPtrsCount * sizeof(TElem*));        // Ok, toss the old array and store the new data        fMemoryManager->deallocate(fIdPtrs); //delete [] fIdPtrs;        fIdPtrs = newArray;        fIdPtrsCount = newCount;    }    const unsigned int retId = ++fIdCounter;    fIdPtrs[retId] = elemToAdopt;    // Set the id on the passed element    elemToAdopt->setId(retId);    // Return the id that we gave to this element    return retId;}// ---------------------------------------------------------------------------//  NameIdPool: Private methods// ---------------------------------------------------------------------------template <class TElem>NameIdPoolBucketElem<TElem>* NameIdPool<TElem>::findBucketElem(const XMLCh* const key, unsigned int& hashVal){    // Hash the key    hashVal = XMLString::hash(key, fHashModulus, fMemoryManager);    if (hashVal > fHashModulus)        ThrowXMLwithMemMgr(RuntimeException, XMLExcepts::Pool_BadHashFromKey, fMemoryManager);    // Search that bucket for the key    NameIdPoolBucketElem<TElem>* curElem = fBucketList[hashVal];    while (curElem)    {        if (XMLString::equals(key, curElem->fData->getKey()))            return curElem;        curElem = curElem->fNext;    }    return 0;}template <class TElem>const NameIdPoolBucketElem<TElem>* NameIdPool<TElem>::findBucketElem(const XMLCh* const key, unsigned int& hashVal) const{    // Hash the key    hashVal = XMLString::hash(key, fHashModulus, fMemoryManager);    if (hashVal > fHashModulus)        ThrowXMLwithMemMgr(RuntimeException, XMLExcepts::Pool_BadHashFromKey, fMemoryManager);    // Search that bucket for the key    const NameIdPoolBucketElem<TElem>* curElem = fBucketList[hashVal];    while (curElem)    {        if (XMLString::equals(key, curElem->fData->getKey()))            return curElem;        curElem = curElem->fNext;    }    return 0;}// ---------------------------------------------------------------------------//  NameIdPoolEnumerator: Constructors and Destructor// ---------------------------------------------------------------------------template <class TElem> NameIdPoolEnumerator<TElem>::NameIdPoolEnumerator(NameIdPool<TElem>* const toEnum                     , MemoryManager* const manager) :    XMLEnumerator<TElem>()    , fCurIndex(0)    , fToEnum(toEnum)    , fMemoryManager(manager){        Reset();}template <class TElem> NameIdPoolEnumerator<TElem>::NameIdPoolEnumerator(const NameIdPoolEnumerator<TElem>& toCopy) :    fCurIndex(toCopy.fCurIndex)    , fToEnum(toCopy.fToEnum)    , fMemoryManager(toCopy.fMemoryManager){}template <class TElem> NameIdPoolEnumerator<TElem>::~NameIdPoolEnumerator(){    // We don't own the pool being enumerated, so no cleanup required}// ---------------------------------------------------------------------------//  NameIdPoolEnumerator: Public operators// ---------------------------------------------------------------------------template <class TElem> NameIdPoolEnumerator<TElem>& NameIdPoolEnumerator<TElem>::operator=(const NameIdPoolEnumerator<TElem>& toAssign){    if (this == &toAssign)        return *this;    fMemoryManager = toAssign.fMemoryManager;    fCurIndex      = toAssign.fCurIndex;    fToEnum        = toAssign.fToEnum;    return *this;}// ---------------------------------------------------------------------------//  NameIdPoolEnumerator: Enum interface// ---------------------------------------------------------------------------template <class TElem> bool NameIdPoolEnumerator<TElem>::hasMoreElements() const{    // If our index is zero or past the end, then we are done    if (!fCurIndex || (fCurIndex > fToEnum->fIdCounter))        return false;    return true;}template <class TElem> TElem& NameIdPoolEnumerator<TElem>::nextElement(){    // If our index is zero or past the end, then we are done    if (!fCurIndex || (fCurIndex > fToEnum->fIdCounter))        ThrowXMLwithMemMgr(NoSuchElementException, XMLExcepts::Enum_NoMoreElements, fMemoryManager);    // Return the current element and bump the index    return *fToEnum->fIdPtrs[fCurIndex++];}template <class TElem> void NameIdPoolEnumerator<TElem>::Reset(){    //    //  Find the next available bucket element in the pool. We use the id    //  array since its very easy to enumerator through by just maintaining    //  an index. If the id counter is zero, then its empty and we leave the    //  current index to zero.    //    fCurIndex = fToEnum->fIdCounter ? 1:0;}template <class TElem> int NameIdPoolEnumerator<TElem>::size() const{    return fToEnum->fIdCounter;}XERCES_CPP_NAMESPACE_END

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -