2008-11-30 02:01:58 +01:00
|
|
|
// matcher.h
|
|
|
|
|
2008-11-18 21:47:37 +01:00
|
|
|
/* JSMatcher is our boolean expression evaluator for "where" clauses */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Copyright (C) 2008 10gen Inc.
|
2008-12-29 02:28:49 +01:00
|
|
|
*
|
2008-11-18 21:47:37 +01:00
|
|
|
* 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.
|
2008-12-29 02:28:49 +01:00
|
|
|
*
|
2008-11-18 21:47:37 +01:00
|
|
|
* 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.
|
2008-12-29 02:28:49 +01:00
|
|
|
*
|
2008-11-18 21:47:37 +01:00
|
|
|
* 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
|
|
|
|
|
2009-01-20 21:44:40 +01:00
|
|
|
#include "jsobj.h"
|
2008-12-29 02:28:49 +01:00
|
|
|
#include <pcrecpp.h>
|
2008-12-02 18:50:19 +01:00
|
|
|
|
2009-01-14 23:09:51 +01:00
|
|
|
namespace mongo {
|
|
|
|
|
2009-01-15 16:17:11 +01:00
|
|
|
class RegexMatcher {
|
|
|
|
public:
|
|
|
|
const char *fieldName;
|
|
|
|
pcrecpp::RE *re;
|
|
|
|
RegexMatcher() {
|
|
|
|
re = 0;
|
|
|
|
}
|
|
|
|
~RegexMatcher() {
|
|
|
|
delete re;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
class BasicMatcher {
|
|
|
|
public:
|
|
|
|
BSONElement toMatch;
|
|
|
|
int compareOp;
|
|
|
|
};
|
2008-11-18 21:47:37 +01:00
|
|
|
|
|
|
|
// SQL where clause equivalent
|
2009-01-15 16:17:11 +01:00
|
|
|
class Where;
|
2009-03-02 16:41:36 +01:00
|
|
|
class DiskLoc;
|
2008-11-18 21:47:37 +01:00
|
|
|
|
2009-01-15 16:17:11 +01:00
|
|
|
/* Match BSON objects against a query pattern.
|
2008-11-18 21:47:37 +01:00
|
|
|
|
2009-01-15 16:17:11 +01:00
|
|
|
e.g.
|
|
|
|
db.foo.find( { a : 3 } );
|
2008-11-18 21:47:37 +01:00
|
|
|
|
2009-01-15 16:17:11 +01:00
|
|
|
{ a : 3 } is the pattern object.
|
2008-11-18 21:47:37 +01:00
|
|
|
|
2009-01-15 16:17:11 +01:00
|
|
|
GT/LT:
|
|
|
|
{ a : { $gt : 3 } }
|
2008-11-18 21:47:37 +01:00
|
|
|
|
2009-01-15 16:17:11 +01:00
|
|
|
Not equal:
|
|
|
|
{ a : { $ne : 3 } }
|
2008-11-18 21:47:37 +01:00
|
|
|
|
2009-01-15 16:17:11 +01:00
|
|
|
TODO: we should rewrite the matcher to be more an AST style.
|
|
|
|
*/
|
|
|
|
class JSMatcher : boost::noncopyable {
|
|
|
|
int matchesDotted(
|
|
|
|
const char *fieldName,
|
2009-01-20 21:44:40 +01:00
|
|
|
const BSONElement& toMatch, const BSONObj& obj,
|
2009-01-15 16:17:11 +01:00
|
|
|
int compareOp, bool *deep, bool isArr = false);
|
|
|
|
|
|
|
|
struct element_lt
|
2008-12-29 02:28:49 +01:00
|
|
|
{
|
2009-01-15 16:17:11 +01:00
|
|
|
bool operator()(const BSONElement& l, const BSONElement& r) const
|
|
|
|
{
|
|
|
|
int x = (int) l.type() - (int) r.type();
|
|
|
|
if ( x < 0 ) return true;
|
|
|
|
if ( x > 0 ) return false;
|
|
|
|
return compareElementValues(l,r) < 0;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
public:
|
2009-04-06 23:57:16 +02:00
|
|
|
enum MatchType {
|
2009-01-15 16:17:11 +01:00
|
|
|
Equality = 0,
|
|
|
|
LT = 0x1,
|
|
|
|
LTE = 0x3,
|
|
|
|
GTE = 0x6,
|
|
|
|
GT = 0x4,
|
|
|
|
opIN = 0x8, // { x : { $in : [1,2,3] } }
|
2009-03-25 19:47:04 +01:00
|
|
|
NE = 0x9,
|
2009-04-06 17:27:43 +02:00
|
|
|
opSIZE = 0x0A,
|
|
|
|
opALL = 0x0B,
|
2009-01-15 16:17:11 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
static int opDirection(int op) {
|
|
|
|
return op <= LTE ? -1 : 1;
|
2008-12-29 02:28:49 +01:00
|
|
|
}
|
2008-11-18 21:47:37 +01:00
|
|
|
|
2009-03-02 19:42:31 +01:00
|
|
|
// Only specify constrainIndexKey if matches() will be called with
|
|
|
|
// index keys having empty string field names.
|
|
|
|
JSMatcher(const BSONObj &pattern, const BSONObj &constrainIndexKey = BSONObj());
|
2008-11-18 21:47:37 +01:00
|
|
|
|
2009-01-15 16:17:11 +01:00
|
|
|
~JSMatcher();
|
2008-11-18 21:47:37 +01:00
|
|
|
|
2009-01-15 16:17:11 +01:00
|
|
|
/* deep - means we looked into arrays for a match
|
|
|
|
*/
|
2009-01-20 21:44:40 +01:00
|
|
|
bool matches(const BSONObj& j, bool *deep = 0);
|
2009-03-02 16:41:36 +01:00
|
|
|
|
2009-01-15 16:17:11 +01:00
|
|
|
int getN() {
|
|
|
|
return n;
|
|
|
|
}
|
2008-11-18 21:47:37 +01:00
|
|
|
|
2009-03-02 22:03:48 +01:00
|
|
|
bool trivial() const { return n == 0 && nRegex == 0 && where == 0; }
|
2009-04-06 17:27:43 +02:00
|
|
|
bool keyMatch() const { return !all && !haveSize; }
|
2009-01-15 16:17:11 +01:00
|
|
|
private:
|
2009-03-20 21:20:46 +01:00
|
|
|
void addBasic(const BSONElement &e, int c) {
|
2009-03-02 19:42:31 +01:00
|
|
|
// TODO May want to selectively ignore these element types based on op type.
|
2009-02-27 20:04:19 +01:00
|
|
|
if ( e.type() == MinKey || e.type() == MaxKey )
|
|
|
|
return;
|
2009-01-15 16:17:11 +01:00
|
|
|
BasicMatcher bm;
|
|
|
|
bm.toMatch = e;
|
|
|
|
bm.compareOp = c;
|
|
|
|
basics.push_back(bm);
|
|
|
|
n++;
|
|
|
|
}
|
2008-11-18 21:47:37 +01:00
|
|
|
|
2009-04-06 17:27:43 +02:00
|
|
|
int valuesMatch(const BSONElement& l, const BSONElement& r, int op, bool *deep=0);
|
2008-11-18 21:47:37 +01:00
|
|
|
|
2009-01-15 16:17:11 +01:00
|
|
|
set<BSONElement,element_lt> *in; // set if query uses $in
|
2009-04-06 17:27:43 +02:00
|
|
|
set<BSONElement,element_lt> *all; // set if query uses $all
|
2009-01-15 16:17:11 +01:00
|
|
|
Where *where; // set if query uses $where
|
2009-03-02 19:42:31 +01:00
|
|
|
BSONObj jsobj; // the query pattern. e.g., { name: "joe" }
|
|
|
|
BSONObj constrainIndexKey_;
|
|
|
|
|
2009-01-15 16:17:11 +01:00
|
|
|
vector<BasicMatcher> basics;
|
|
|
|
int n; // # of basicmatcher items
|
2009-04-06 17:27:43 +02:00
|
|
|
bool haveSize;
|
2008-11-18 21:47:37 +01:00
|
|
|
|
2009-01-15 16:17:11 +01:00
|
|
|
RegexMatcher regexs[4];
|
|
|
|
int nRegex;
|
2008-11-18 21:47:37 +01:00
|
|
|
|
2009-01-15 16:17:11 +01:00
|
|
|
// so we delete the mem when we're done:
|
|
|
|
BSONObjBuilder *builders[8];
|
|
|
|
int nBuilders;
|
2009-03-02 17:31:13 +01:00
|
|
|
};
|
|
|
|
|
2009-04-07 16:40:10 +02:00
|
|
|
// If match succeeds on index key, then attempt to match full record.
|
|
|
|
class KeyValJSMatcher : boost::noncopyable {
|
|
|
|
public:
|
|
|
|
KeyValJSMatcher(const BSONObj &pattern, const BSONObj &indexKeyPattern);
|
|
|
|
bool matches(const BSONObj &j, bool *deep = 0);
|
|
|
|
bool matches(const BSONObj &key, const DiskLoc &recLoc, bool *deep = 0);
|
|
|
|
private:
|
|
|
|
JSMatcher keyMatcher_;
|
|
|
|
JSMatcher recordMatcher_;
|
|
|
|
};
|
2009-01-14 23:09:51 +01:00
|
|
|
|
|
|
|
} // namespace mongo
|