本文整理汇总了C++中Item::GetDirID方法的典型用法代码示例。如果您正苦于以下问题:C++ Item::GetDirID方法的具体用法?C++ Item::GetDirID怎么用?C++ Item::GetDirID使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Item
的用法示例。
在下文中一共展示了Item::GetDirID方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: k
/*! \brief Returns the previous item belonging to the object.
\param foundItem Pointer to a pre-allocated Item that shall be set
to the found item.
\return \c B_OK, if everything went fine, \c B_ENTRY_NOT_FOUND, if we're
through.
*/
status_t
ObjectItemIterator::GetPrevious(Item *foundItem)
{
//PRINT(("ObjectItemIterator::GetPrevious()\n"));
status_t error = (foundItem ? InitCheck() : B_BAD_VALUE);
if (error == B_OK && fDone)
error = B_ENTRY_NOT_FOUND;
if (error == B_OK) {
// get the next item
Item item;
if (fFindFirst) {
// first invocation: find the rightmost item of the object
VKey k(fDirID, fObjectID, fOffset, 0xffffffffUL, KEY_FORMAT_3_5);
error = fItemIterator.FindRightMostClose(&k, &item);
fFindFirst = false;
} else {
// item iterator positioned, get the previous item
error = fItemIterator.GoToPrevious(&item);
}
// check whether the item belongs to our object
if (error == B_OK) {
VKey itemKey;
if (item.GetDirID() == fDirID && item.GetObjectID() == fObjectID) {
//PRINT((" found item: %lu, %lu, %Lu\n", fDirID, fObjectID, item.GetOffset()));
*foundItem = item;
} else
{
//PRINT((" item belongs to different object: (%lu, %lu)\n", item.GetDirID(), item.GetObjectID()));
error = B_ENTRY_NOT_FOUND;
}
}
if (error != B_OK)
fDone = true;
}
//PRINT(("ObjectItemIterator::GetPrevious() done: %s\n", strerror(error)));
return error;
}