void CCollectionFile::UpdateFileRatingCommentAvail() { // bool bOldHasComment = m_bHasComment; // uint32 uOldUserRatings = m_uUserRating; m_bHasComment = false; uint32 uRatings = 0; uint32 uUserRatings = 0; for(POSITION pos = m_kadNotes.GetHeadPosition(); pos != NULL; ) { Kademlia::CEntry* entry = m_kadNotes.GetNext(pos); if (!m_bHasComment && !entry->GetStrTagValue(TAG_DESCRIPTION).IsEmpty()) m_bHasComment = true; uint16 rating = entry->GetIntTagValue(TAG_FILERATING); if(rating!=0) { uRatings++; uUserRatings += rating; } } if(uRatings) m_uUserRating = uUserRatings / uRatings; else m_uUserRating = 0; // if (bOldHasComment != m_bHasComment || uOldUserRatings != m_uUserRating) // theApp.emuledlg->searchwnd->UpdateSearch(this); }
void CAbstractFile::RefilterKadNotes(bool bUpdate){ // check all availabe comments against our filter again if (thePrefs.GetCommentFilter().IsEmpty()) return; POSITION pos1, pos2; for (pos1 = m_kadNotes.GetHeadPosition();( pos2 = pos1 ) != NULL;) { m_kadNotes.GetNext(pos1); Kademlia::CEntry* entry = m_kadNotes.GetAt(pos2); if (!entry->GetStrTagValue(TAG_DESCRIPTION).IsEmpty()){ CString strCommentLower(entry->GetStrTagValue(TAG_DESCRIPTION)); strCommentLower.MakeLower(); int iPos = 0; CString strFilter(thePrefs.GetCommentFilter().Tokenize(_T("|"), iPos)); while (!strFilter.IsEmpty()) { // comment filters are already in lowercase, compare with temp. lowercased received comment if (strCommentLower.Find(strFilter) >= 0) { m_kadNotes.RemoveAt(pos2); delete entry; break; } strFilter = thePrefs.GetCommentFilter().Tokenize(_T("|"), iPos); } } } if (bUpdate) // untill updated rating and m_bHasComment might be wrong UpdateFileRatingCommentAvail(); }
CAbstractFile::CAbstractFile(const CAbstractFile* pAbstractFile) { m_strFileName = pAbstractFile->m_strFileName; md4cpy(m_abyFileHash, pAbstractFile->GetFileHash()); m_nFileSize = pAbstractFile->m_nFileSize; m_strComment = pAbstractFile->m_strComment; m_uRating = pAbstractFile->m_uRating; m_bCommentLoaded = pAbstractFile->m_bCommentLoaded; m_uUserRating = pAbstractFile->m_uUserRating; m_bHasComment = pAbstractFile->m_bHasComment; m_strFileType = pAbstractFile->m_strFileType; m_bKadCommentSearchRunning = pAbstractFile->m_bKadCommentSearchRunning; const CTypedPtrList<CPtrList, Kademlia::CEntry*>& list = pAbstractFile->getNotes(); for(POSITION pos = list.GetHeadPosition(); pos != NULL; ) { Kademlia::CEntry* entry = list.GetNext(pos); m_kadNotes.AddTail(entry->Copy()); } CopyTags(pAbstractFile->GetTags()); }
void CCollectionFile::UpdateFileRatingCommentAvail(bool /*bForceUpdate*/) { m_bHasComment = false; UINT uRatings = 0; UINT uUserRatings = 0; for(POSITION pos = m_kadNotes.GetHeadPosition(); pos != NULL; ) { Kademlia::CEntry* entry = m_kadNotes.GetNext(pos); if (!m_bHasComment && !entry->GetStrTagValue(TAG_DESCRIPTION).IsEmpty()) m_bHasComment = true; UINT rating = (UINT)entry->GetIntTagValue(TAG_FILERATING); if (rating != 0) { uRatings++; uUserRatings += rating; } } if (uRatings) m_uUserRating = uUserRatings / uRatings; else m_uUserRating = 0; }