0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 01:21:03 +01:00
mongodb/db/matcher.h

158 lines
4.5 KiB
C
Raw Normal View History

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
#include "jsobj.h"
2008-12-29 02:28:49 +01:00
#include <pcrecpp.h>
2009-01-14 23:09:51 +01:00
namespace mongo {
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
class Where;
class DiskLoc;
2008-11-18 21:47:37 +01:00
/* Match BSON objects against a query pattern.
2008-11-18 21:47:37 +01:00
e.g.
db.foo.find( { a : 3 } );
2008-11-18 21:47:37 +01:00
{ a : 3 } is the pattern object.
2008-11-18 21:47:37 +01:00
GT/LT:
{ a : { $gt : 3 } }
2008-11-18 21:47:37 +01:00
Not equal:
{ a : { $ne : 3 } }
2008-11-18 21:47:37 +01:00
TODO: we should rewrite the matcher to be more an AST style.
*/
class JSMatcher : boost::noncopyable {
int matchesDotted(
const char *fieldName,
const BSONElement& toMatch, const BSONObj& obj,
int compareOp, bool *deep, bool isArr = false);
struct element_lt
2008-12-29 02:28:49 +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:
enum MatchType {
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,
};
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
// 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
~JSMatcher();
2008-11-18 21:47:37 +01:00
/* deep - means we looked into arrays for a match
*/
bool matches(const BSONObj& j, bool *deep = 0);
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; }
private:
2009-03-20 21:20:46 +01:00
void addBasic(const BSONElement &e, int c) {
// 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;
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
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
Where *where; // set if query uses $where
BSONObj jsobj; // the query pattern. e.g., { name: "joe" }
BSONObj constrainIndexKey_;
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
RegexMatcher regexs[4];
int nRegex;
2008-11-18 21:47:37 +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