mirror of
https://github.com/mongodb/mongo.git
synced 2024-11-29 00:32:18 +01:00
73 lines
1.8 KiB
C++
73 lines
1.8 KiB
C++
// cursors.h
|
|
/*
|
|
* Copyright (C) 2010 10gen Inc.
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
* as published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
|
|
#pragma once
|
|
|
|
#include "../pch.h"
|
|
|
|
#include "../db/jsobj.h"
|
|
#include "../db/dbmessage.h"
|
|
#include "../client/dbclient.h"
|
|
#include "../client/parallel.h"
|
|
|
|
#include "request.h"
|
|
|
|
namespace mongo {
|
|
|
|
class ShardedClientCursor {
|
|
public:
|
|
ShardedClientCursor( QueryMessage& q , ClusteredCursor * cursor );
|
|
virtual ~ShardedClientCursor();
|
|
|
|
long long getId(){ return _id; }
|
|
|
|
/**
|
|
* @return whether there is more data left
|
|
*/
|
|
bool sendNextBatch( Request& r ){ return sendNextBatch( r , _ntoreturn ); }
|
|
bool sendNextBatch( Request& r , int ntoreturn );
|
|
|
|
protected:
|
|
|
|
ClusteredCursor * _cursor;
|
|
|
|
int _skip;
|
|
int _ntoreturn;
|
|
|
|
int _totalSent;
|
|
bool _done;
|
|
|
|
long long _id;
|
|
};
|
|
|
|
class CursorCache {
|
|
public:
|
|
CursorCache();
|
|
~CursorCache();
|
|
|
|
ShardedClientCursor * get( long long id );
|
|
void store( ShardedClientCursor* cursor );
|
|
void remove( long long id );
|
|
|
|
private:
|
|
map<long long,ShardedClientCursor*> _cursors;
|
|
};
|
|
|
|
extern CursorCache cursorCache;
|
|
}
|