Skip to content

Python-side evaluation of MongoDB filter documents. #5

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions marrow/mongo/evaluate.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# encoding: utf-8






def matches(data, query):
pass


def filter(records, query):
for record in records:
if matches(record, query):
yield record


def project(data, query):
"""MongoDB-style record projection."""
include = {'_id'} if '_id' in data else set()
exclude = set()

for field in query:
if field not in data:
continue

if query[field]:
include.add(field)
continue

exclude.add(field)

if field in include:
include.remove(field)

if exclude and exclude != {'_id'}:
return data.__class__({i: data[i] for i in data if i not in exclude})

return data.__class__({i: data[i] for i in include})