本文整理汇总了C++中MongoMMF::dirty方法的典型用法代码示例。如果您正苦于以下问题:C++ MongoMMF::dirty方法的具体用法?C++ MongoMMF::dirty怎么用?C++ MongoMMF::dirty使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MongoMMF
的用法示例。
在下文中一共展示了MongoMMF::dirty方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: remap
/** we need to remap the private view periodically. otherwise it would become very large.
locking: in read lock when called
*/
static void remap(MongoFile *f) {
MongoMMF *mmf = dynamic_cast<MongoMMF*>(f);
if( mmf && mmf->dirty() ) {
mmf->dirty() = false;
log() << "finish remap " << endl;
}
}
示例2: PREPLOGBUFFER
/** caller handles locking */
static bool PREPLOGBUFFER(AlignedBuilder& bb) {
bb.reset();
unsigned *lenInBlockHeader;
{
// JSectHeader
bb.appendStr("\nHH\n", false);
lenInBlockHeader = (unsigned *) bb.skip(4);
}
string lastFilePath;
{
scoped_lock lk(privateViews._mutex());
for( vector<WriteIntent>::iterator i = wi._writes.begin(); i != wi._writes.end(); i++ ) {
size_t ofs;
MongoMMF *mmf = privateViews._find(i->p, ofs);
if( mmf == 0 ) {
journalingFailure("view pointer cannot be resolved");
}
else {
if( !mmf->dirty() )
mmf->dirty() = true; // usually it will already be dirty so don't bother writing then
{
size_t ofs = ((char *)i->p) - ((char*)mmf->getView().p);
i->w_ptr = ((char*)mmf->view_write()) + ofs;
}
if( mmf->filePath() != lastFilePath ) {
lastFilePath = mmf->filePath();
JDbContext c;
bb.appendStruct(c);
bb.appendStr(lastFilePath);
}
JEntry e;
e.len = i->len;
e.fileNo = mmf->fileSuffixNo();
bb.appendStruct(e);
bb.appendBuf(i->p, i->len);
}
}
}
{
JSectFooter f;
f.hash = 0;
bb.appendStruct(f);
}
{
unsigned L = (bb.len() + 8191) & 0xffffe000; // fill to alignment
dassert( L >= (unsigned) bb.len() );
*lenInBlockHeader = L;
unsigned padding = L - bb.len();
bb.skip(padding);
dassert( bb.len() % 8192 == 0 );
}
return true;
}